:root {
    --teal: #0a9396;
    --teal-dark: #005f73;
    --teal-light: #94d2bd;
    --cream: #faf9f6;
    --sand: #e9d8a6;
    --dark: #001219;
    --mid: #1a3a4a;
    --text: #2c3e50;
    --muted: #6c7a84;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 48px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(250,249,246,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(10,147,150,0.12);
  }

  .logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--teal-dark);
    letter-spacing: -0.5px;
  }
  .logo span { color: var(--teal); }

  nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--mid);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }
  nav a:hover { color: var(--teal); }

  .nav-links { display: flex; gap: 36px; align-items: center; }

  .nav-cta {
    background: var(--teal-dark) !important;
    color: white !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 0.88rem !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--teal) !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    background: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 64px 80px 64px;
    position: relative;
    overflow: hidden;
  }

  .hero-left::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10,147,150,0.18) 0%, transparent 70%);
    top: -100px; left: -200px;
    pointer-events: none;
  }

  .hero-left::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(148,210,189,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10,147,150,0.15);
    border: 1px solid rgba(10,147,150,0.3);
    color: var(--teal-light);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 100px;
    margin-bottom: 32px;
    width: fit-content;
    animation: fadeUp 0.6s ease both;
  }

  .hero-tag::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.05;
    color: white;
    letter-spacing: -1.5px;
    margin-bottom: 28px;
    animation: fadeUp 0.6s 0.1s ease both;
  }

  h1 em {
    font-style: normal;
    color: var(--teal-light);
  }

  .hero-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 420px;
    margin-bottom: 44px;
    font-weight: 300;
    animation: fadeUp 0.6s 0.2s ease both;
  }

  .hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
  }

  .btn-primary {
    background: var(--teal);
    color: white;
    padding: 15px 32px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
  }
  .btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(10,147,150,0.3); }

  .btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.7);
    padding: 15px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 400;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.2s;
    letter-spacing: 0.02em;
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: white; }

  .hero-right {
    background: var(--teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 48px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
      repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.02) 40px,
        rgba(255,255,255,0.02) 41px
      );
  }

  .stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
    width: 360px;
    height: 300px;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.8s 0.4s ease both;
  }

  .stat-card {
    background: rgba(255,255,255,0.06);
    padding: 16px 24px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .stat-card:first-child { border-radius: 16px 0 0 0; }
  .stat-card:nth-child(2) { border-radius: 0 16px 0 0; }
  .stat-card:nth-child(3) { border-radius: 0 0 0 16px; }
  .stat-card:last-child { border-radius: 0 0 16px 0; }
  .stat-card:hover { background: rgba(255,255,255,0.1); }

  .stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--teal-light);
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── HOW IT WORKS ── */
  .section {
    padding: 100px 48px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
  }

  h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark);
    letter-spacing: -1px;
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 520px;
    font-weight: 300;
    margin-bottom: 64px;
  }

  /* ── SERVICES ── */
  .services-wrap {
    background: var(--dark);
    padding: 100px 48px;
  }

  .services-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .services-inner .section-label { color: var(--teal-light); }
  .services-inner h2 { color: white; }
  .services-inner .section-sub { color: rgba(255,255,255,0.45); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 44px 36px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .service-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-3px); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(10,147,150,0.2);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    font-size: 1.4rem;
  }

  .service-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
  }

  .service-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ── PROCESS ── */
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }

  .process-grid::before {
    content: '';
    position: absolute;
    top: 28px; left: 6%; right: 6%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--teal-light), var(--teal-light), transparent);
    opacity: 0.3;
    z-index: 0;
  }

  .process-step {
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }

  .step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--teal-dark);
    color: white;
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    border: 3px solid var(--cream);
    box-shadow: 0 0 0 1px var(--teal-light);
  }

  .step-title {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
  }

  .step-desc {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300;
  }

  /* ── TRUST STRIP ── */
  .trust-strip {
    background: var(--teal);
    padding: 28px 48px;
    overflow: hidden;
  }

  .trust-inner {
    display: flex;
    gap: 64px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
  }

  .trust-item span:first-child { font-size: 1.1rem; }

  /* ── TESTIMONIAL ── */
  .testimonial-wrap {
    background: var(--sand);
    padding: 100px 48px;
  }

  .testimonial-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
  }

  .testimonial-left h2 { color: var(--dark); }
  .testimonial-left .section-label { color: var(--teal-dark); }

  .testimonial-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .t-card {
    background: white;
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
  }

  .t-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 16px;
  }

  .t-author {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--teal-dark);
    letter-spacing: 0.03em;
  }

  .t-stars {
    color: #f4a261;
    font-size: 0.85rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
  }

  /* ── PRICING ── */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
  }

  .price-card {
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    background: white;
    transition: all 0.25s;
  }

  .price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }

  .price-card.featured {
    border-color: var(--teal);
    background: var(--teal-dark);
    color: white;
  }

  .featured-tag {
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--teal);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    white-space: nowrap;
  }

  .price-tier {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 8px;
  }

  .price-card.featured .price-tier { color: var(--teal-light); }

  .price-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
  }
  .price-card.featured .price-name { color: white; }

  .price-desc {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 28px;
    font-weight: 300;
  }
  .price-card.featured .price-desc { color: rgba(255,255,255,0.5); }

  .price-from {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 2px;
  }
  .price-card.featured .price-from { color: rgba(255,255,255,0.5); }

  .price-amount {
    font-family: 'Syne', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 4px;
  }
  .price-card.featured .price-amount { color: white; }

  .price-unit {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 32px;
  }
  .price-card.featured .price-unit { color: rgba(255,255,255,0.5); }

  .price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
  }

  .price-features li {
    font-size: 0.88rem;
    color: var(--text);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-weight: 300;
    line-height: 1.4;
  }
  .price-card.featured .price-features li { color: rgba(255,255,255,0.8); }

  .price-features li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .price-card.featured .price-features li::before { color: var(--teal-light); }

  .btn-price {
    display: block;
    text-align: center;
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.02em;
  }

  .btn-price-outline {
    border: 1px solid var(--teal);
    color: var(--teal);
    background: transparent;
  }
  .btn-price-outline:hover { background: var(--teal); color: white; }

  .btn-price-solid {
    background: var(--teal-light);
    color: var(--teal-dark);
    border: none;
    font-weight: 600;
  }
  .btn-price-solid:hover { background: white; }

  .pricing-footnote {
    margin-top: 36px;
    text-align: center;
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 300;
  }

  .pricing-footnote a {
    color: var(--teal);
    font-weight: 500;
    text-decoration: none;
  }
  .pricing-footnote a:hover { text-decoration: underline; }

  /* ── FAQ ── */
  .faq-wrap {
    background: #005f73;
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
  }

  .faq-wrap::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 65%);
    top: -200px; right: -200px;
    pointer-events: none;
  }

  .faq-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
  }

  .faq-header { position: sticky; top: 120px; }
  .faq-header .section-label { color: rgba(255,255,255,0.7); }
  .faq-header h2 { color: white; margin-bottom: 16px; }
  .faq-header .section-sub { color: rgba(255,255,255,0.7); margin-bottom: 0; }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .faq-item {
    background: #d4eef0;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.2s;
  }

  .faq-item:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  }

  .faq-item.open {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  }

  .faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 28px;
    text-align: left;
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: -0.2px;
    transition: color 0.2s;
  }

  .faq-q:hover { color: var(--teal-dark); }
  .faq-item.open .faq-q { color: var(--teal-dark); }

  .faq-icon {
    color: var(--teal);
    flex-shrink: 0;
    transition: color 0.2s, transform 0.35s ease;
    display: flex;
    align-items: center;
  }

  .faq-q:hover .faq-icon { color: var(--teal-dark); }
  .faq-item.open .faq-icon {
    color: var(--teal-dark);
    transform: rotate(45deg);
  }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
  }

  .faq-item.open .faq-a {
    max-height: 400px;
    opacity: 1;
    pointer-events: auto;
  }

  .faq-a p {
    font-size: 0.93rem;
    color: #1a1a1a;
    line-height: 1.8;
    font-weight: 400;
    padding: 0 28px 24px 28px;
  }

  /* ── CTA ── */
  .cta-section {
    background: var(--dark);
    padding: 100px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    width: 800px; height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10,147,150,0.12) 0%, transparent 65%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
  }

  .cta-inner h2 { color: white; margin-bottom: 16px; }
  .cta-inner p { color: rgba(255,255,255,0.5); margin-bottom: 40px; font-size: 1.05rem; line-height: 1.7; font-weight: 300; }

  .cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ── FOOTER ── */
  footer {
    background: #000d12;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  footer .logo { font-size: 1.2rem; }

  .footer-links {
    display: flex;
    gap: 28px;
  }

  .footer-links a {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--teal-light); }

  .footer-legal {
    display: flex;
    gap: 20px;
  }

  .footer-legal a {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-legal a:hover { color: var(--teal-light); }

  .footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.2);
  }

  /* ── HAMBURGER ── */
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--mid);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── TABLET (max 1024px) ── */
  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .hero-left { padding: 110px 48px 60px; min-height: auto; }
    .hero-right { padding: 60px 48px 80px; min-height: auto; justify-content: center; }
    .stat-grid { width: 100%; max-width: 480px; height: auto; grid-template-rows: auto; }
    .stat-card { aspect-ratio: 1; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; }
    .process-grid::before { display: none; }
    .testimonial-inner { grid-template-columns: 1fr; gap: 40px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .faq-inner { grid-template-columns: 1fr; gap: 40px; }
    .faq-header { position: static; }
  }

  /* ── MOBILE (max 768px) ── */
  @media (max-width: 768px) {
    /* Nav */
    nav { padding: 16px 24px; }
    .nav-toggle { display: flex; }
    .nav-links {
      display: none;
      position: fixed;
      top: 61px; left: 0; right: 0;
      background: rgba(250,249,246,0.98);
      backdrop-filter: blur(12px);
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 12px 0 20px;
      border-bottom: 1px solid rgba(10,147,150,0.12);
      z-index: 99;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
      padding: 14px 24px;
      font-size: 1rem;
      border-bottom: 1px solid rgba(0,0,0,0.04);
    }
    .nav-cta {
      margin: 12px 24px 0;
      text-align: center;
      border-radius: 8px !important;
      padding: 14px 24px !important;
    }

    /* Hero */
    .hero { grid-template-columns: 1fr; }
    .hero-left { padding: 96px 24px 52px; }
    h1 { font-size: clamp(2.2rem, 8vw, 3rem); letter-spacing: -1px; }
    .hero-sub { font-size: 1rem; }
    .hero-btns { flex-direction: column; }
    .btn-primary, .btn-ghost { text-align: center; }
    .hero-right { padding: 48px 24px 60px; }
    .stat-grid { width: 100%; max-width: 100%; height: auto; }
    .stat-card { aspect-ratio: 1; padding: 16px; }
    .stat-number { font-size: 1.8rem; }
    .stat-label { font-size: 0.75rem; }

    /* Trust strip */
    .trust-strip { padding: 20px 24px; }
    .trust-inner { gap: 16px; justify-content: flex-start; }
    .trust-item { font-size: 0.82rem; }

    /* Services */
    .services-wrap { padding: 72px 24px; }
    .services-grid { grid-template-columns: 1fr; gap: 2px; }

    /* How it works */
    .section { padding: 72px 24px; }
    .process-grid { grid-template-columns: 1fr; gap: 40px; }
    .process-step { padding: 0; }

    /* Testimonials */
    .testimonial-wrap { padding: 72px 24px; }
    .testimonial-inner { grid-template-columns: 1fr; gap: 32px; }

    /* Pricing */
    .pricing-grid { grid-template-columns: 1fr; max-width: 100%; margin-top: 40px; }

    /* FAQ */
    .faq-wrap { padding: 72px 24px; }
    .faq-inner { grid-template-columns: 1fr; gap: 32px; }
    .faq-header { position: static; }
    .faq-q { padding: 20px 20px; font-size: 0.93rem; }
    .faq-a p { padding: 0 20px 20px 20px; }

    /* CTA */
    .cta-section { padding: 72px 24px; }
    .cta-btns { flex-direction: column; align-items: center; }

    /* Footer */
    footer { padding: 36px 24px; flex-direction: column; align-items: flex-start; gap: 20px; }
    .footer-links { flex-wrap: wrap; gap: 16px; }
    .footer-legal { flex-wrap: wrap; gap: 16px; }

    /* Section headings */
    h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
    .section-sub { font-size: 0.95rem; }
  }

  /* ── SMALL MOBILE (max 420px) ── */
  @media (max-width: 420px) {
    .hero-left { padding: 88px 20px 48px; }
    .hero-right { padding: 40px 20px 52px; }
    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: 0.7rem; }
    .services-wrap { padding: 60px 20px; }
    .section { padding: 60px 20px; }
    .testimonial-wrap { padding: 60px 20px; }
    .faq-wrap { padding: 60px 20px; }
    .cta-section { padding: 60px 20px; }
    footer { padding: 32px 20px; }
    .offer-badge { font-size: 0.72rem; }
  }
