*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --blue: #4DAAE0;
    --yellow: #FFC814;
    --sky: #B6E0F3;
    --gold: #FFDA68;
    --light-yellow: #FFE08A;
    --off-white: #F7F8FA;
    --dark-text: #1A2332;
    --mid-text: #4A5568;
    --border: #E2E8F0;
    --white: #ffffff;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark-text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .nav-logo-icon {
    width: 36px; height: 36px;
    background: var(--blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-logo-icon svg { width: 20px; height: 20px; }

  .nav-logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    color: var(--dark-text);
    letter-spacing: -0.01em;
  }

  .nav-logo-text span { color: var(--blue); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--mid-text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--blue); }

  .nav-cta {
    background: var(--light-yellow) !important;
    color: #6b4800 !important;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: #ffd96a !important; }

  /* ── PAGE HEADER ── */
  .page-header {
    padding: 8rem 2rem 5rem;
    background: linear-gradient(160deg, #f0f9ff 0%, #fffdf0 60%, #f7f8fa 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
  }

  .page-header::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(77,170,224,0.10) 0%, transparent 70%);
    pointer-events: none;
  }

  .page-header::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,200,20,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .page-header-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
  }

  .page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(77,170,224,0.12);
    color: #2a7aaa;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(77,170,224,0.25);
  }

  .page-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--blue);
  }

  .page-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--dark-text);
    margin-bottom: 1.25rem;
  }

  .page-title em { font-style: italic; color: var(--yellow); }

  .page-sub {
    font-size: 1.1rem;
    color: var(--mid-text);
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto;
  }

  /* ── STEPS SECTION ── */
  .steps-section {
    padding: 6rem 2rem;
    background: var(--white);
  }

  .steps-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  /* Each step: alternating layout like the homepage feature rows */
  .step-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 7rem;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .step-row.visible { opacity: 1; transform: none; }
  .step-row.reverse { direction: rtl; }
  .step-row.reverse > * { direction: ltr; }

  .step-text {}

  .step-number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--blue);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'DM Serif Display', serif;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 16px rgba(77,170,224,0.30);
  }

  .step-tag {
    display: inline-block;
    background: rgba(77,170,224,0.10);
    color: #2a7aaa;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    border: 1px solid rgba(77,170,224,0.2);
    margin-bottom: 0.85rem;
  }

  .step-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark-text);
    margin-bottom: 1rem;
  }

  .step-body {
    font-size: 1rem;
    color: var(--mid-text);
    line-height: 1.8;
  }

  /* ── VISUAL PANELS (matching homepage style) ── */
  .step-visual {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: stretch;
  }

  .panel {
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    width: 100%;
    min-height: 320px;
    overflow: hidden;
  }

  .panel-1 {
    background: linear-gradient(135deg, #EBF8FF 0%, #DBEAFE 100%);
    border: 1px solid rgba(77,170,224,0.2);
  }

  .panel-2 {
    background: linear-gradient(135deg, #F0FFF4 0%, #DCFCE7 100%);
    border: 1px solid rgba(52,211,153,0.2);
  }

  .panel-3 {
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
    border: 1px solid rgba(255,200,20,0.25);
  }

  .panel-4 {
    background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%);
    border: 1px solid rgba(167,139,250,0.2);
  }

  .panel-5 {
    background: linear-gradient(135deg, #FFF0F6 0%, #FCE7F3 100%);
    border: 1px solid rgba(236,72,153,0.15);
  }

  /* Mini UI elements inside panels */
  .mini-label { font-size: 0.68rem; font-weight: 600; color: #9CA3AF; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 2px; }
  .mini-value { font-size: 0.95rem; font-weight: 700; color: var(--dark-text); }

  .pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
  }

  .pill-blue { background: rgba(77,170,224,0.15); color: #2a7aaa; }
  .pill-green { background: rgba(52,211,153,0.15); color: #065F46; }
  .pill-yellow { background: rgba(255,200,20,0.18); color: #92400E; }
  .pill-purple { background: rgba(167,139,250,0.18); color: #5B21B6; }

  .user-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 10px;
    padding: 0.6rem 0.85rem;
    margin-bottom: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  }

  .avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
  }

  .store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-text);
    border-radius: 12px;
    padding: 0.65rem 1rem;
    margin-bottom: 10px;
  }

  .store-btn-text { line-height: 1.2; }
  .store-btn-sub { font-size: 0.65rem; color: rgba(255,255,255,0.6); font-weight: 400; }
  .store-btn-name { font-size: 0.85rem; color: white; font-weight: 700; }

  .otp-box {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 1rem 0;
  }

  .otp-digit {
    width: 38px; height: 46px;
    border: 2px solid var(--blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-text);
    background: white;
  }

  .otp-digit.empty { border-color: var(--border); color: transparent; }

  /* ── PRICING STRIP ── */
  .pricing-strip {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 2rem;
  }

  .pricing-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .pricing-text .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #2a7aaa;
    margin-bottom: 1rem;
  }

  .pricing-text h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark-text);
    margin-bottom: 1rem;
  }

  .pricing-text p {
    font-size: 1rem;
    color: var(--mid-text);
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }

  .pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .pricing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: box-shadow 0.2s, border-color 0.2s;
  }

  .pricing-card:hover {
    box-shadow: 0 4px 20px rgba(77,170,224,0.12);
    border-color: rgba(77,170,224,0.3);
  }

  .pricing-card-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
  }

  .pricing-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.3rem;
  }

  .pricing-card p {
    font-size: 0.9rem;
    color: var(--mid-text);
    line-height: 1.6;
    margin: 0;
  }

  /* ── REFERRAL SECTION ── */
  .referral-section {
    padding: 5rem 2rem;
    background: var(--white);
  }

  .referral-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .referral-card {
    background: linear-gradient(135deg, #fffdf0 0%, #fff8dc 100%);
    border: 1px solid rgba(255,200,20,0.3);
    border-radius: 24px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
  }

  .referral-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,200,20,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .referral-icon {
    width: 64px; height: 64px;
    background: var(--yellow);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 24px rgba(255,200,20,0.35);
  }

  .referral-card h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    letter-spacing: -0.02em;
    color: var(--dark-text);
    margin-bottom: 1rem;
  }

  .referral-card p {
    font-size: 1rem;
    color: var(--mid-text);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 1.5rem;
  }

  .referral-steps {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
  }

  .referral-step {
    background: white;
    border: 1px solid rgba(255,200,20,0.25);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    flex: 1;
    min-width: 160px;
    max-width: 200px;
    text-align: center;
  }

  .referral-step-num {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--yellow);
    color: #6b4800;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.65rem;
  }

  .referral-step p {
    font-size: 0.88rem;
    color: var(--mid-text);
    margin: 0;
    line-height: 1.5;
  }

  .tcs-note {
    font-size: 0.82rem !important;
    color: #9CA3AF !important;
    margin-top: 1rem !important;
  }

  /* ── CTA STRIP ── */
  .cta-strip {
    background: var(--dark-text);
    padding: 5rem 2rem;
    text-align: center;
  }

  .cta-strip h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
  }

  .cta-strip p {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    margin: 0 auto 2rem;
    line-height: 1.75;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-yellow);
    color: #6b4800;
    padding: 0.85rem 1.75rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 20px rgba(255,224,138,0.35);
  }

  .btn-primary:hover { background: #ffd96a; transform: translateY(-1px); }


  
/* ====================== LOGO SCALING ====================== */
.logo-image {
    width: 70px;           /* Default size for tablets & large screens */
    height: auto;
    display: block;
    object-fit: contain;    /* Maintains aspect ratio */
    transition: width 0.3s ease;
}

/* Larger screens */
@media (min-width: 1024px) {
    .logo-image {
        width: 70px;
    }
}

/* Medium screens (tablets) */
@media (max-width: 1023px) and (min-width: 768px) {
    .logo-image {
        width: 70px;
    }
}

/* Mobile phones */
@media (max-width: 767px) {
    .logo-image {
        width: 70px;       /* Smaller on mobile */
    }
}

/* Optional: Extra small phones */
@media (max-width: 480px) {
    .logo-image {
        width: 70px;
    }
}



/* ====================== CONTENT IMAGE SCALING ====================== */
.content-image {
    height: 600px;           /* Default size for tablets & large screens */
    width: auto;
    display: block;
    object-fit: contain;    /* Maintains aspect ratio */
    transition: width 0.3s ease;
}

/* Larger screens */
@media (min-height: 1024px) {
    .content-image {
        height: 500px;
    }
}

/* Medium screens (tablets) */
@media (max-height: 1023px) and (min-height: 768px) {
    .content-image {
        height: 500px;
    }
}

/* Mobile phones */
@media (max-height: 767px) {
    .content-image {
        height: 300px;       /* Smaller on mobile */
    }
}

/* Optional: Extra small phones */
@media (max-height: 480px) {
    .content-image {
        height: 280px;
    }
}



/* ====================== HAMBURGER MENU ====================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--dark-text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 100;
    padding: 1rem 2rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    margin-bottom: 1rem;
}

.mobile-nav-links a {
    font-size: 1.1rem;
    color: var(--mid-text);
    text-decoration: none;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
    .desktop-menu { display: none; }
    .hamburger { display: flex; }
}


  /* ── FOOTER ── */
  footer {
    background: var(--dark-text);
    color: rgba(255,255,255,0.65);
    padding: 3.5rem 2rem 2rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .footer-inner { max-width: 1100px; margin: 0 auto; }

  .footer-top {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
  }

  .footer-brand p {
    max-width: 260px;
    line-height: 1.7;
    font-size: 0.88rem;
    margin-top: 0.5rem;
  }

  .footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }

  .footer-col h4 {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.6rem; }

  .footer-col ul li a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.88rem;
  }

  .footer-col ul li a:hover { color: var(--blue); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
  }

  .footer-legal { display: flex; gap: 1.5rem; }

  .footer-legal a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-legal a:hover { color: var(--blue); }


  

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .step-row, .step-row.reverse {
      grid-template-columns: 1fr;
      direction: ltr;
      gap: 2.5rem;
      margin-bottom: 4rem;
    }
    .pricing-strip-inner { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .footer-top { flex-direction: column; }
    .footer-links { flex-direction: column; gap: 2rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .referral-card { padding: 2.5rem 1.5rem; }
    .referral-steps { flex-direction: column; align-items: center; }
  }