  /* ===== HOME PAGE SPECIFIC STYLES ===== */

  /* Hero Section */
  .hero-section {
      padding: var(--space-2xl) var(--space-md) var(--space-3xl);
      background: var(--smoke-bg);
      position: relative;
  }

  .hero-title {
      font-size: var(--font-h1);
      font-weight: 700;
      line-height: var(--line-tight);
      color: var(--text-dark);
      margin-bottom: var(--space-md);
  }

  .hero-title span {
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .hero-sub {
      font-size: var(--font-h4);
      color: var(--text-soft);
      margin: var(--space-md) 0 var(--space-xl);
      max-width: 520px;
  }

  .feature-card.mini {
      background: white;
      border-radius: var(--radius-full);
      padding: 0.6rem 1.5rem;
      font-weight: 500;
      color: var(--text-dark);
      border: 1px solid var(--border-light);
      font-size: var(--font-small);
      display: inline-flex;
      align-items: center;
      gap: var(--space-xs);
  }

  .feature-card.mini i {
      color: var(--sky-primary);
      font-size: 1.2rem;
  }

  /* Phone Mockup */
  .phone-mockup {
      width: 100%;
      max-width: 310px;
      margin: 0 auto;
  }

  .phone-frame {
      background: linear-gradient(145deg, #ffffff, #f2f9ff);
      border-radius: 44px;
      padding: 14px 8px 18px 8px;
      box-shadow: 0 40px 50px -18px #7bb3ff;
      border: 1px solid rgba(255, 255, 255, 0.8);
  }

  .phone-notch {
      background: #daeaf7;
      width: 120px;
      height: 28px;
      border-radius: 30px;
      margin: -8px auto 14px auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      border: 1px solid white;
  }

  .notch-speaker {
      width: 40px;
      height: 7px;
      background: #a6c2e0;
      border-radius: 10px;
  }

  .notch-camera {
      width: 11px;
      height: 11px;
      background: #7f9fc7;
      border-radius: 50%;
      border: 2px solid white;
  }

  .phone-screen {
      background: linear-gradient(145deg, #ecf5fd, #dae9f7);
      border-radius: 36px;
      padding: 1.5rem 1rem;
      border: 2px solid white;
      min-height: 380px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .app-interface {
      text-align: center;
      width: 100%;
  }

  .app-icon-large {
      background: var(--gradient-soft);
      width: 75px;
      height: 75px;
      border-radius: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto var(--space-lg) auto;
      box-shadow: 0 12px 20px -8px #7bb3ff;
  }

  .app-icon-large i {
      font-size: 3.5rem;
      color: white;
  }

  .app-title-logo {
      height: 48px;
      width: auto;
      max-width: 180px;
      object-fit: contain;
      background: transparent;
      margin: 0 auto;
  }

  .app-title {
      font-size: var(--font-h2);
      font-weight: 700;
      color: var(--text-dark);
      background: rgba(255, 255, 255, 0.5);
      padding: 0.2rem 1.4rem;
      border-radius: var(--radius-full);
      backdrop-filter: blur(4px);
      border: 1px solid white;
      margin-bottom: var(--space-md);
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .app-badge-row {
      display: flex;
      justify-content: center;
      gap: 14px;
      margin: var(--space-md) 0;
  }

  .app-badge {
      background: white;
      padding: 0.4rem 1.2rem;
      border-radius: var(--radius-full);
      color: var(--sky-deep);
      font-weight: 550;
      font-size: var(--font-small);
      border: 1px solid var(--sky-light);
  }

  .app-features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px 14px;
      margin: var(--space-lg) 0;
  }

  .app-features span {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(4px);
      padding: 0.4rem 1.2rem;
      border-radius: var(--radius-full);
      font-size: var(--font-small);
      color: var(--text-dark);
      border: 1px solid white;
  }

  .home-bar {
      width: 120px;
      height: 5px;
      background: #b3cde5;
      border-radius: 20px;
      margin: 15px auto 5px;
  }

  /* Why Choose Section */
  .choose-section {
      padding: var(--space-2xl) var(--space-md);
      background: var(--smoke-bg);
  }

  .section-headline {
      font-size: var(--font-h1);
      font-weight: 700;
      color: var(--text-dark);
      letter-spacing: -0.02em;
      margin-bottom: var(--space-xl);
      text-align: center;
      line-height: var(--line-tight);
  }

  .section-headline span {
      color: var(--sky-deep);
  }

  .feature-card-lg {
      background: var(--pure-white);
      border-radius: var(--radius-lg);
      padding: var(--space-lg);
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-light);
      transition: transform 0.25s ease, box-shadow 0.3s;
      height: 100%;
      display: flex;
      flex-direction: column;
  }

  .feature-card-lg:hover {
      transform: translateY(-5px);
      box-shadow: var(--card-glow);
      border-color: var(--sky-primary);
  }

  .icon-circle {
      background-color: var(--sky-light);
      width: 60px;
      height: 60px;
      border-radius: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-lg);
      border: 1px solid rgba(61, 126, 185, 0.25);
  }

  .icon-circle i {
      font-size: 2.2rem;
      color: var(--sky-deep);
  }

  .feature-title {
      font-size: var(--font-h3);
      font-weight: 700;
      line-height: var(--line-tight);
      color: var(--text-dark);
      margin-bottom: var(--space-sm);
  }

  .feature-highlight {
      font-weight: 600;
      font-size: var(--font-small);
      color: var(--sky-deep);
      margin-bottom: var(--space-xs);
  }

  .feature-text {
      color: var(--text-soft);
      font-size: var(--font-small);
      line-height: var(--line-normal);
      flex-grow: 1;
  }

  .mini-tag {
      background-color: var(--sky-light);
      color: var(--sky-deep);
      border-radius: var(--radius-full);
      padding: 0.25rem 0.9rem;
      font-size: var(--font-tiny);
      font-weight: 600;
      display: inline-block;
      margin-top: var(--space-sm);
      border: 1px solid var(--sky-primary);
      width: fit-content;
      white-space: nowrap;
  }

  .image-block {
      background: linear-gradient(145deg, var(--sky-light), var(--smoke-bg));
      border-radius: var(--radius-xl);
      padding: var(--space-xl);
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-light);
      text-align: center;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  .image-icon-stack {
      font-size: 4.2rem;
      color: var(--sky-deep);
      background: rgba(255, 255, 255, 0.5);
      width: 120px;
      height: 120px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto var(--space-lg);
      backdrop-filter: blur(6px);
      border: 2px dashed var(--sky-primary);
  }

  /* Paperless Section */
  .paperless-section {
      background: var(--smoke-bg);
      padding: var(--space-2xl) var(--space-md);
  }

  .hero-badge {
      display: inline-flex;
      align-items: center;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(10px);
      padding: 0.55rem 2rem;
      border-radius: var(--radius-full);
      font-weight: 600;
      font-size: var(--font-small);
      color: var(--sky-deep);
      border: 1px solid rgba(61, 126, 185, 0.3);
      box-shadow: 0 12px 22px -12px rgba(61, 126, 185, 0.2);
  }

  .paperless-card {
      background: var(--pure-white);
      border-radius: var(--radius-xl);
      padding: var(--space-xl);
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-light);
      background: var(--gradient-card);
      height: 100%;
      display: flex;
      flex-direction: column;
  }

  .paperless-icon-lg {
      background: var(--sky-light);
      width: 88px;
      height: 88px;
      border-radius: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-lg);
      border: 1px solid var(--sky-primary);
      box-shadow: 0 10px 18px -10px rgba(61, 126, 185, 0.5);
      flex-shrink: 0;
  }

  .paperless-icon-lg i {
      font-size: 3.2rem;
      color: var(--sky-deep);
  }

  .paperless-step {
      font-size: var(--font-tiny);
      font-weight: 700;
      letter-spacing: 1.5px;
      color: var(--sky-deep);
      text-transform: uppercase;
      margin-bottom: var(--space-xs);
  }

  .paperless-title {
      font-size: var(--font-h3);
      font-weight: 700;
      color: var(--text-dark);
      line-height: var(--line-tight);
      margin-bottom: var(--space-sm);
  }

  .paperless-desc {
      color: var(--text-soft);
      font-size: var(--font-small);
      line-height: var(--line-normal);
      flex-grow: 1;
  }

  .badge-disbursed {
      background: #dae8ff;
      color: var(--sky-deep);
      border-radius: var(--radius-full);
      padding: 0.5rem 1.8rem;
      font-weight: 700;
      font-size: var(--font-small);
      display: inline-flex;
      align-items: center;
      border: 1px solid var(--sky-primary);
      box-shadow: 0 10px 22px -12px var(--sky-deep);
      align-self: flex-start;
      margin-top: var(--space-sm);
      gap: var(--space-xs);
  }

  /* How It Works Section */
  .how-section {
      padding: var(--space-2xl) var(--space-md);
      background: var(--smoke-bg);
  }

  .how-card {
      background-color: #ffffff;
      border-radius: 34px;
      padding: var(--space-lg);
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-light);
      height: 100%;
      display: flex;
      flex-direction: column;
  }

  .step-number {
      font-size: 3.2rem;
      font-weight: 800;
      line-height: 1;
      color: rgba(61, 126, 185, 0.15);
      margin-bottom: var(--space-xs);
      letter-spacing: -2px;
  }

  .step-icon-circle {
      background-color: var(--sky-light);
      width: 70px;
      height: 70px;
      border-radius: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-lg);
      border: 1px solid var(--sky-primary);
      flex-shrink: 0;
  }

  .step-icon-circle i {
      font-size: 2.6rem;
      color: var(--sky-deep);
  }

  .step-title {
      font-size: var(--font-h3);
      font-weight: 700;
      color: var(--sky-deep);
      line-height: var(--line-tight);
      margin-bottom: var(--space-sm);
  }

  .step-desc {
      color: var(--text-soft);
      font-size: var(--font-small);
      line-height: var(--line-normal);
      flex-grow: 1;
  }

  .small-note {
      background-color: var(--sky-light);
      border-radius: var(--radius-full);
      padding: 0.3rem 1rem;
      font-size: var(--font-tiny);
      font-weight: 600;
      color: var(--sky-deep);
      display: inline-block;
      margin-top: var(--space-sm);
      border: 1px solid var(--sky-primary);
      align-self: flex-start;
  }

  .badge-timer {
      background: white;
      border-radius: var(--radius-full);
      border: 1px dashed var(--sky-primary);
      padding: 0.4rem 1.3rem;
      font-weight: 600;
      color: var(--sky-deep);
      margin-top: var(--space-sm);
      align-self: flex-start;
      font-size: var(--font-tiny);
  }

  .bottom-note {
      display: inline-block;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(12px);
      padding: 0.9rem 2.8rem;
      border-radius: var(--radius-full);
      font-weight: 500;
      font-size: var(--font-small);
      color: var(--sky-deep);
      border: 1px solid rgba(61, 126, 185, 0.3);
      box-shadow: 0 18px 30px -14px var(--sky-deep);
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
      .hero-section {
          padding: var(--space-lg) var(--space-sm) var(--space-xl);
      }

      .phone-mockup {
          max-width: 260px;
          margin-top: var(--space-md);
      }

      .phone-screen {
          min-height: 320px;
          padding: var(--space-md) var(--space-sm);
      }

      .app-icon-large {
          width: 60px;
          height: 60px;
          margin-bottom: var(--space-sm);
      }

      .app-icon-large i {
          font-size: 2.8rem;
      }

      .app-title {
          font-size: var(--font-h3);
          padding: 0.2rem 1rem;
      }

      .app-features {
          margin: var(--space-sm) 0;
      }

      .app-features span {
          font-size: var(--font-tiny);
          padding: 0.3rem 0.8rem;
      }

      .home-bar {
          width: 100px;
      }

      .bottom-note {
          padding: 0.7rem 1.5rem;
          font-size: var(--font-tiny);
      }

      .feature-card-lg,
      .paperless-card,
      .how-card {
          padding: var(--space-md);
      }
  }