*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy: #0B1D3A;
    --navy2: #112347;
    --gold: #ff0000;
    --gold2: #ff0000;
    --blue: #1A56DB;
    --blue-light: #EEF3FF;
    --green-wa: #ff0000;
    --green-wa-dark: #990505;
    --red: #DC2626;
    --text: #0F172A;
    --text2: #475569;
    --text3: #94A3B8;
    --border: #E2E8F0;
    --bg: #F8FAFC;
    --white: #FFFFFF;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(11,29,58,0.10);
    --shadow-lg: 0 8px 40px rgba(11,29,58,0.15);
    --font-head: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
  }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ── HEADER ── */
  .header {
    position: sticky; top: 0; z-index: 100;
    background: var(--navy);
    padding: 0 24px;
    height: 60px;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  }
  .header-logo {
    font-family: var(--font-head);
    font-size: 22px; font-weight: 800;
    color: var(--white); text-decoration: none;
    display: flex; align-items: center; gap: 6px;
    letter-spacing: -0.3px;
  }
  .header-logo span { color: var(--gold); }
  .header-logo-shield {
    width: 30px; height: 30px;
    background: var(--gold);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 900; color: var(--navy);
  }
  .header-cta {
    display: flex; gap: 8px; align-items: center;
  }
  .btn-call-header {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px; font-weight: 500;
    padding: 7px 14px;
    border-radius: 8px;
    text-decoration: none;
    display: flex; align-items: center; gap: 6px;
    transition: all .2s;
  }
  .btn-call-header:hover { background: rgba(255,255,255,0.1); }
  .btn-wa-header {
    background: var(--green-wa);
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px; font-weight: 600;
    padding: 8px 16px;
    border-radius: 3px;
    text-decoration: none;
    display: flex; align-items: center; gap: 6px;
    transition: all .2s;
  }
  .btn-wa-header:hover { background: var(--green-wa-dark); }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, var(--navy) 0%, #162d5a 60%, #0d2248 100%);
    padding: 56px 24px 48px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(232,160,32,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute; bottom: -60px; left: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(26,86,219,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 420px;
    gap: 48px; align-items: center;
    position: relative; z-index: 1;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(232,160,32,0.15);
    border: 1px solid rgba(232,160,32,0.35);
    color: var(--gold2);
    font-size: 12px; font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: .03em;
  }
  .hero-badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold2);
    animation: pulse 2s infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
  .hero h1 {
    font-family: var(--font-head);
    font-size: 42px; font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
  }
  .hero h1 em { color: var(--gold2); font-style: normal; }
  .hero-sub {
    font-size: 16px; color: rgba(255,255,255,0.72);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 480px;
  }
  .hero-trust-row {
    display: flex; gap: 20px; flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .hero-trust-item {
    display: flex; align-items: center; gap: 7px;
    font-size: 13px; color: rgba(255,255,255,0.85);
  }
  .hero-trust-item svg { flex-shrink: 0; }
  .hero-trust-icon {
    width: 28px; height: 28px; border-radius: 6px;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
  }
  .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-wa-hero {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--green-wa);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 15px; font-weight: 700;
    padding: 15px 28px;
    border-radius:4px;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
    white-space: nowrap;
  }
  .btn-wa-hero:hover { background: var(--green-wa-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  .btn-call-hero {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.35);
    font-family: var(--font-head);
    font-size: 15px; font-weight: 600;
    padding: 14px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
  }
  .btn-call-hero:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

  /* HERO FORM CARD */
  .hero-form-card {
    background: var(--white);
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: var(--shadow-lg);
  }
  .hero-form-title {
    font-family: var(--font-head);
    font-size: 18px; font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .hero-form-sub {
    font-size: 13px; color: var(--text2);
    margin-bottom: 22px;
  }
  .hero-form-sub strong { color: var(--green-wa); }
  .form-group { margin-bottom: 14px; }
  .form-group label {
    display: block;
    font-size: 12px; font-weight: 600; color: var(--text2);
    margin-bottom: 5px; text-transform: uppercase; letter-spacing: .04em;
  }
  .form-group input,
  .form-group select {
    width: 100%;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    outline: none;
    transition: border-color .2s;
    -webkit-appearance: none; appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus { border-color: var(--blue); background: var(--white); }
  .form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
  .btn-form-submit {
    width: 100%;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--green-wa);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 15px; font-weight: 700;
    padding: 14px;
    border: none; border-radius: var(--radius);
    cursor: pointer;
    transition: all .2s;
    box-shadow: 0 4px 14px rgba(37,211,102,0.3);
    margin-top: 6px;
    text-decoration: none;
  }
  .btn-form-submit:hover { background: var(--green-wa-dark); transform: translateY(-1px); }
  .form-disclaimer {
    text-align: center;
    font-size: 11px; color: var(--text3);
    margin-top: 10px;
    line-height: 1.5;
  }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 18px 24px;
  }
  .trust-bar-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; gap: 0; justify-content: center; flex-wrap: wrap;
  }
  .trust-item {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 24px;
    border-right: 1px solid rgba(255,255,255,0.1);
    flex: 1; min-width: 140px; justify-content: center;
  }
  .trust-item:last-child { border-right: none; }
  .trust-icon { font-size: 22px; }
  .trust-val {
    font-family: var(--font-head);
    font-size: 18px; font-weight: 800; color: var(--gold2);
    line-height: 1;
  }
  .trust-lbl { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 2px; }

  /* ── SECTIONS GENERAL ── */
  section { padding: 64px 24px; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-label {
    font-size: 11px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--blue);
    margin-bottom: 10px;
  }
  .section-title {
    font-family: var(--font-head);
    font-size: 32px; font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.4px;
    margin-bottom: 12px;
  }
  .section-sub {
    font-size: 16px; color: var(--text2);
    line-height: 1.65;
    max-width: 540px;
  }
  .section-header { margin-bottom: 40px; }
  .section-header.center { text-align: center; }
  .section-header.center .section-sub { margin: 0 auto; }

  /* ── SERVICES ── */
  .services-section { background: var(--bg); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
  .service-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all .25s;
    display: block;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gold);
    transform: scaleX(0); transition: transform .25s;
    transform-origin: left;
  }
  .service-card:hover { border-color: var(--blue); box-shadow: 0 8px 32px rgba(26,86,219,0.12); transform: translateY(-2px); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
  }
  .service-name {
    font-family: var(--font-head);
    font-size: 14px; font-weight: 700;
    color: var(--navy); margin-bottom: 6px;
    line-height: 1.3;
  }
  .service-price {
    font-size: 18px; font-weight: 800;
    color: var(--blue); margin-bottom: 4px;
    font-family: var(--font-head);
  }
  .service-time {
    font-size: 11px; color: var(--text3);
    margin-bottom: 14px;
  }
  .service-cta {
    display: block;
    background: var(--navy);
    color: var(--white);
    font-size: 12px; font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: background .2s;
  }
  .service-card:hover .service-cta { background: var(--blue); }

  /* ── WHY US ── */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .why-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
  }
  .why-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--blue));
  }
  .why-icon {
    width: 48px; height: 48px;
    background: var(--blue-light);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
  }
  .why-stat {
    font-family: var(--font-head);
    font-size: 28px; font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .why-title {
    font-family: var(--font-head);
    font-size: 16px; font-weight: 700;
    color: var(--navy); margin-bottom: 8px;
  }
  .why-desc { font-size: 14px; color: var(--text2); line-height: 1.6; }

  /* ── PROCESS ── */
  .process-section { background: var(--navy); }
  .process-section .section-label { color: var(--gold2); }
  .process-section .section-title { color: var(--white); }
  .process-section .section-sub { color: rgba(255,255,255,0.65); }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute; top: 36px; left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold2) 0%, var(--blue) 100%);
    opacity: .3;
    pointer-events: none;
  }
  .process-step {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 28px 20px 24px;
    text-align: center;
    position: relative;
  }
  .step-num {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--gold2);
    color: var(--navy);
    font-family: var(--font-head);
    font-size: 20px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    position: relative; z-index: 1;
  }
  .step-title {
    font-family: var(--font-head);
    font-size: 15px; font-weight: 700;
    color: var(--white); margin-bottom: 8px;
  }
  .step-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.55; }

  /* ── PRICING ── */
  .pricing-section { background: var(--bg); }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
  .price-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 24px 20px;
    position: relative;
    transition: all .2s;
  }
  .price-card.featured {
    border-color: var(--blue);
    box-shadow: 0 8px 32px rgba(26,86,219,0.15);
    transform: scale(1.02);
  }
  .price-badge-top {
    position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
    background: var(--blue);
    color: var(--white);
    font-size: 10px; font-weight: 700;
    padding: 3px 12px; border-radius: 20px;
    white-space: nowrap;
    letter-spacing: .04em;
  }
  .price-service { font-size: 12px; font-weight: 600; color: var(--text2); margin-bottom: 8px; letter-spacing: .04em; text-transform: uppercase; }
  .price-amount {
    font-family: var(--font-head);
    font-size: 26px; font-weight: 800;
    color: var(--navy); margin-bottom: 2px;
  }
  .price-amount span { font-size: 14px; font-weight: 500; color: var(--text3); }
  .price-govt { font-size: 11px; color: var(--text3); margin-bottom: 14px; }
  .price-includes { list-style: none; margin-bottom: 16px; }
  .price-includes li {
    font-size: 12px; color: var(--text2);
    padding: 4px 0; display: flex; gap: 6px; align-items: flex-start;
    border-bottom: 1px solid var(--bg);
  }
  .price-includes li span { color: #22c55e; font-size: 13px; flex-shrink: 0; }
  .btn-price {
    width: 100%; padding: 10px;
    background: var(--navy); color: var(--white);
    font-family: var(--font-head);
    font-size: 13px; font-weight: 700;
    border: none; border-radius: var(--radius-sm);
    cursor: pointer; text-decoration: none;
    display: block; text-align: center;
    transition: background .2s;
  }
  .price-card.featured .btn-price { background: var(--blue); }
  .btn-price:hover { background: var(--blue); }

  /* ── REVIEWS ── */
  .reviews-section { background: var(--white); }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .review-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 24px 22px;
  }
  .review-stars { font-size: 16px; margin-bottom: 10px; color: var(--gold); }
  .review-text { font-size: 14px; color: var(--text); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
  .review-author { display: flex; align-items: center; gap: 12px; }
  .review-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: 14px; font-weight: 700;
    color: var(--white); flex-shrink: 0;
  }
  .review-name { font-size: 14px; font-weight: 600; color: var(--navy); }
  .review-meta { font-size: 12px; color: var(--text3); }
  .google-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px; font-weight: 600; color: var(--text);
    margin-bottom: 32px;
  }

  /* ── FAQ ── */
  .faq-section { background: var(--bg); }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 860px; margin: 0 auto;
  }
  .faq-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .faq-q {
    width: 100%; background: none; border: none;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 18px 20px;
    font-family: var(--font-body);
    font-size: 14px; font-weight: 600;
    color: var(--navy);
    cursor: pointer; text-align: left;
    transition: background .15s;
  }
  .faq-q:hover { background: var(--bg); }
  .faq-icon {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--blue-light); color: var(--blue);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 700; flex-shrink: 0;
    transition: transform .2s;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-a {
    padding: 0 20px;
    font-size: 14px; color: var(--text2); line-height: 1.65;
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
  }
  .faq-item.open .faq-a { max-height: 200px; padding: 0 20px 18px; }

  /* ── FINAL CTA ── */
  .final-cta {
    background: linear-gradient(135deg, var(--navy) 0%, #162d5a 100%);
    padding: 72px 24px;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232,160,32,0.1) 0%, transparent 60%);
    pointer-events: none;
  }
  .final-cta-inner { position: relative; z-index: 1; }
  .final-cta-label {
    font-size: 12px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--gold2);
    margin-bottom: 12px;
  }
  .final-cta h2 {
    font-family: var(--font-head);
    font-size: 36px; font-weight: 800;
    color: var(--white); line-height: 1.2;
    letter-spacing: -0.4px; margin-bottom: 14px;
  }
  .final-cta p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 36px; }
  .final-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-wa-final {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--green-wa); color: var(--white);
    font-family: var(--font-head); font-size: 16px; font-weight: 700;
    padding: 16px 32px; border-radius: var(--radius);
    text-decoration: none; transition: all .2s;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    border-radius: 4px;
  }
  .btn-wa-final:hover { background: var(--green-wa-dark); transform: translateY(-2px); }
  .btn-call-final {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    font-family: var(--font-head); font-size: 16px; font-weight: 600;
    padding: 14px 28px; border-radius: var(--radius);
    text-decoration: none; transition: all .2s;
    border-radius: 4px;
  }
  .btn-call-final:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7); }
  .final-urgency {
    margin-top: 22px;
    font-size: 13px; color: rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center; gap: 6px;
  }
  .final-urgency-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-wa); animation: pulse 2s infinite; }

  /* ── FOOTER ── */
  .footer {
    background: #070F1E;
    padding: 20px 24px;
    text-align: center;
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 14px;
  }
  .footer a {
    font-size: 12px; color: rgba(255,255,255,0.45);
    text-decoration: none;
  }
  .footer a:hover { color: rgba(255,255,255,0.8); }
  .footer-divider { color: rgba(255,255,255,0.2); font-size: 12px; }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

  /* ── STICKY BOTTOM BAR (MOBILE) ── */
  .sticky-bar {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 10px 14px 10px;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  }
  .sticky-bar a {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
    padding: 13px 10px;
    border-radius: var(--radius-sm);
    font-family: var(--font-head);
    font-size: 14px; font-weight: 700;
    text-decoration: none; color: var(--white);
    transition: all .15s;
  }
  .sticky-wa { background: var(--green-wa); }
  .sticky-wa:hover { background: var(--green-wa-dark); }
  .sticky-call { background: var(--blue); }
  .sticky-call:hover { background: #1548c0; }

  /* ── DIVIDER BANNER ── */
  .divider-banner {
    background: var(--gold);
    padding: 14px 24px;
    text-align: center;
  }
  .divider-banner p {
    font-family: var(--font-head);
    font-size: 14px; font-weight: 700;
    color: white;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    flex-wrap: wrap;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .hero-form-card { max-width: 480px; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
    .price-card.featured { transform: none; }
  }

  @media (max-width: 768px) {
    .header { padding: 0 16px; }
    .btn-wa-header { display: none; }
    section { padding: 44px 16px; }
    .hero { padding: 36px 16px 40px; }
    .hero h1 { font-size: 28px; letter-spacing: -0.3px; }
    .hero-sub { font-size: 15px; }
    .hero-trust-row { gap: 12px; }
    .hero-ctas { flex-direction: column; }
    .btn-wa-hero, .btn-call-hero { width: 100%; justify-content: center; border-radius: 4px !important; }
    .hero-form-card { padding: 22px 18px; }
    .trust-bar-inner { gap: 0; }
    .trust-item { padding: 8px 12px; min-width: 110px; }
    .trust-val { font-size: 15px; }
    .section-title { font-size: 24px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .why-grid { grid-template-columns: 1fr; gap: 16px; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 12px; }
    .process-steps::before { display: none; }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .final-cta { padding: 48px 16px; }
    .final-cta h2 { font-size: 26px; }
    .final-cta-btns { flex-direction: column; align-items: center; }
    .btn-wa-final, .btn-call-final { width: 100%; max-width: 340px; justify-content: center; }
    .sticky-bar { display: flex; }
    body { padding-bottom: 74px; }
    .hero-inner { display: flex; flex-direction: column; }
  }

  @media (max-width: 480px) {
    .hero h1 { font-size: 24px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .trust-bar-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
    .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  }

  /* ── ANIMATIONS ── */
  @media (prefers-reduced-motion: no-preference) {
    .service-card, .why-card, .price-card, .review-card { animation: fadeUp .5s ease both; }
    @keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
    .service-card:nth-child(1) { animation-delay:.05s }
    .service-card:nth-child(2) { animation-delay:.1s }
    .service-card:nth-child(3) { animation-delay:.15s }
    .service-card:nth-child(4) { animation-delay:.2s }
    .service-card:nth-child(5) { animation-delay:.25s }
  }

  /* ── WHATSAPP SVG icon ── */
  .wa-icon { width:20px; height:20px; flex-shrink:0; }
  .phone-icon { width:16px; height:16px; flex-shrink:0; }