 
    :root {
      --carehive-primary: #1089b9;
      --carehive-secondary: #0d6e91;
      --carehive-accent: #10B981;
      --carehive-text: #1F2937;
      --carehive-light: #F0FDF4;
      --carehive-gradient: linear-gradient(135deg, #1089b9 0%, #10B981 100%);
    }

    * {
      box-sizing: border-box;
    }

    body {
      overflow-x: hidden;
    }

    .hero-cta-buttons {
      display: flex;
      gap: 20px;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .btn-client {
      background: var(--carehive-gradient);
      color: white;
      padding: 16px 32px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 4px 15px rgba(16, 137, 185, 0.3);
      position: relative;
      overflow: hidden;
    }

    .btn-worker {
      background: white;
      color: var(--carehive-primary);
      border: 2px solid var(--carehive-primary);
      padding: 16px 32px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 4px 15px rgba(16, 137, 185, 0.15);
    }

    .btn-client:hover {
      background: var(--carehive-secondary);
      transform: translateY(-3px);
      color: white;
      box-shadow: 0 8px 25px rgba(16, 137, 185, 0.4);
    }

    .btn-worker:hover {
      background: var(--carehive-primary);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(16, 137, 185, 0.3);
    }

    .mini-steps {
      display: flex;
      justify-content: space-between;
      margin: 60px 0;
      gap: 30px;
    }

    .step-card {
      background: white;
      padding: 30px 20px;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(16, 137, 185, 0.1);
      border: 2px solid transparent;
      flex: 1;
      transition: all 0.3s ease;
      position: relative;
    }

    .step-card:hover {
      transform: translateY(-5px);
      border-color: var(--carehive-primary);
      box-shadow: 0 15px 40px rgba(16, 137, 185, 0.2);
    }

    .step-number {
      background: var(--carehive-primary);
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-weight: bold;
      font-size: 18px;
    }

    .pricing-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin: 40px 0;
    }

    .pricing-card {
      background: white;
      border-radius: 24px;
      padding: 40px 30px;
      text-align: center;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      border: 3px solid transparent;
    }

    .pricing-card:hover {
      transform: translateY(-8px);
      border-color: var(--carehive-primary);
      box-shadow: 0 20px 60px rgba(16, 137, 185, 0.15);
    }

    .pricing-card.featured {
      border-color: var(--carehive-primary);
      background: linear-gradient(135deg, var(--carehive-light) 0%, white 100%);
      transform: scale(1.05);
      box-shadow: 0 15px 50px rgba(16, 137, 185, 0.2);
    }

    .pricing-card.featured:hover {
      transform: scale(1.05) translateY(-8px);
    }

    .pricing-card.featured::before {
      content: "Most Popular";
      position: absolute;
      top: -18px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--carehive-gradient);
      color: white;
      padding: 10px 24px;
      border-radius: 25px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 15px rgba(16, 137, 185, 0.3);
    }

    .pricing-card ul li {
      padding: 8px 0;
      font-size: 0.95rem;
    }

    .price {
      font-size: 2.5rem;
      font-weight: bold;
      color: var(--carehive-primary);
      margin: 20px 0;
    }

    .package-type {
      background: var(--carehive-primary);
      color: white;
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: bold;
      margin-bottom: 20px;
      display: inline-block;
    }

    .faq-item {
      background: white;
      margin-bottom: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .faq-question {
      padding: 25px;
      cursor: pointer;
      font-weight: 600;
      color: var(--carehive-text);
      border: none;
      background: none;
      width: 100%;
      text-align: left;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-answer {
      padding: 0 25px 25px;
      color: #6B7280;
      display: none;
    }

    .faq-answer.show {
      display: block;
    }

    .social-icons {
      display: flex;
      gap: 15px;
      justify-content: center;
      margin-top: 20px;
    }

    .social-icons a {
      width: 50px;
      height: 50px;
      background: var(--carehive-primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      text-decoration: none;
      transition: transform 0.3s ease;
    }

    .social-icons a:hover {
      transform: scale(1.1);
      background: var(--carehive-secondary);
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin: 40px 0;
    }

    .feature-card {
      background: white;
      padding: 35px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      text-align: center;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: 2px solid transparent;
      position: relative;
    }

    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(16, 137, 185, 0.15);
      border-color: var(--carehive-primary);
    }

    .feature-card h4 {
      color: var(--carehive-text);
      font-size: 1.25rem;
      font-weight: 600;
      margin: 20px 0 15px;
    }

    .feature-card p {
      color: #6B7280;
      line-height: 1.6;
      margin-bottom: 0;
    }

    .feature-icon {
      background: var(--carehive-light);
      color: var(--carehive-primary);
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 2rem;
    }

    /* Hero Section Enhancements */
    .hero {
      padding: 120px 0 80px;
      min-height: 90vh;
      display: flex;
      align-items: center;
    }

    .hero-title {
      font-size: clamp(2rem, 5vw, 3.5rem);
      line-height: 1.2;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .hero-description {
      font-size: clamp(1rem, 2.5vw, 1.25rem);
      line-height: 1.6;
    }

    .badge-wrapper {
      margin-bottom: 1.5rem;
    }

    .icon-circle {
      width: 32px;
      height: 32px;
      background: var(--carehive-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--carehive-primary);
    }

    .badge-text {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--carehive-text);
    }

    .hero-image img {
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s ease;
    }

    .hero-image img:hover {
      transform: scale(1.02);
    }

    /* Section Enhancements */
    .section {
      padding: 80px 0;
    }

    .section-title h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .section-title p {
      font-size: clamp(1rem, 2vw, 1.125rem);
      color: #6B7280;
    }

    /* Tablet Styles */
    @media (max-width: 991px) {
      .hero {
        padding: 100px 0 60px;
        min-height: auto;
      }

      .hero-title {
        font-size: 2.5rem;
      }

      .step-card {
        padding: 25px 15px;
      }

      .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
      }

      .section {
        padding: 60px 0;
      }
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
      .hero {
        padding: 80px 0 40px;
        text-align: center;
      }

      .hero-title {
        font-size: 2rem;
      }

      .hero-description {
        font-size: 1.1rem;
      }

      .hero-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
      }

      .btn-client,
      .btn-worker {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
      }

      .hero-image {
        margin-top: 40px;
      }

      .hero-image img {
        max-width: 100% !important;
      }

      .mini-steps {
        flex-direction: column;
        gap: 20px;
        margin: 40px 0;
      }

      .step-card {
        padding: 25px 20px;
      }

      .step-card h4 {
        font-size: 1.25rem;
      }

      .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .pricing-card {
        padding: 30px 20px;
      }

      .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .feature-card {
        padding: 25px 20px;
      }

      .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
      }

      .section {
        padding: 50px 0;
      }

      .section-title h2 {
        font-size: 1.875rem;
      }

      .faq-question {
        padding: 20px;
        font-size: 0.95rem;
      }

      .faq-answer {
        padding: 0 20px 20px;
        font-size: 0.9rem;
      }

      .social-icons {
        justify-content: center;
      }

      .badge-wrapper {
        display: flex;
        justify-content: center;
      }
    }

    /* Small Mobile Styles */
    @media (max-width: 576px) {
      .hero {
        padding: 60px 0 30px;
      }

      .hero-title {
        font-size: 1.75rem;
      }

      .hero-description {
        font-size: 1rem;
      }

      .btn-client,
      .btn-worker {
        padding: 12px 20px;
        font-size: 0.9rem;
      }

      .step-number {
        width: 45px;
        height: 45px;
        font-size: 16px;
      }

      .price {
        font-size: 2rem;
      }

      .section {
        padding: 40px 0;
      }

      .section-title h2 {
        font-size: 1.625rem;
      }

      .footer {
        padding: 40px 0 15px !important;
      }
      
      /* Ultra-small screen specific improvements */
      .feature-card {
        padding: 20px 16px;
      }
      
      .feature-card h4 {
        font-size: 1.1rem;
        margin: 16px 0 12px;
      }
      
      .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 16px;
      }
      
      .step-card {
        padding: 20px 16px;
      }
      
      .step-card h4 {
        font-size: 1.1rem;
      }
      
      .pricing-card {
        padding: 24px 16px;
      }
      
      .pricing-card.featured {
        transform: scale(1.02);
      }
      
      .pricing-card.featured:hover {
        transform: scale(1.02) translateY(-4px);
      }
      
      .social-icons a {
        width: 44px;
        height: 44px;
        font-size: 18px;
      }
      
      /* Better touch targets */
      .faq-question {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
    }
    
    /* Additional responsive utilities */
    .text-center-mobile {
      text-align: center;
    }
    
    .hide-mobile {
      display: none;
    }
    
    @media (min-width: 769px) {
      .text-center-mobile {
        text-align: inherit;
      }
      
      .hide-mobile {
        display: block;
      }
      
      .hide-desktop {
        display: none;
      }
    }
    
    /* Touch device optimizations */
    @media (hover: none) and (pointer: coarse) {
      .btn:hover {
        transform: none;
      }
      
      .step-card:hover,
      .feature-card:hover,
      .pricing-card:hover {
        transform: none;
      }
      
      /* Larger touch targets */
      .btn {
        min-height: 48px;
        padding: 14px 24px;
      }
    } 
