*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy:    #0B1D3A;
    --navy2:   #112347;
    --orange:  #E07B20;
    --orange2: #F59132;
    --orange-light: #FFF4EA;
    --blue:    #b86111;
    --blue-light: #EEF3FF;
    --green-wa: #F59132;
    --green-wa-dark: #F59132;
    --green:   #F59132;
    --green-light: #F0FDF4;
    --red:     #DC2626;
    --red-light: #FEF2F2;
    --text:    #0F172A;
    --text2:   #475569;
    --text3:   #94A3B8;
    --border:  #E2E8F0;
    --bg:      #F8FAFC;
    --white:   #FFFFFF;
    --radius:  5px;
    --radius-sm: 5px;
    --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.20);
  }
  .header-logo {
    font-family: var(--font-head);
    font-size: 21px; font-weight: 800;
    color: var(--white); text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    letter-spacing: -0.3px;
  }
  .logo-shield {
    width: 32px; height: 32px;
    background: var(--orange2);
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 900; color: var(--navy);
    flex-shrink: 0;
  }
  .header-logo em { color: var(--orange2); font-style: normal; }
  .header-right { display: flex; gap: 8px; align-items: center; }
  .btn-hd-call {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.25);
    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-hd-call:hover { background: rgba(255,255,255,0.08); }
  .btn-hd-wa {
    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: 4px;
    text-decoration: none;
    display: flex; align-items: center; gap: 6px;
    transition: all .2s;
  }
  .btn-hd-wa:hover { background: var(--green-wa-dark); }

  /* ═══════════════════════════
     HERO
  ═══════════════════════════ */
  .hero {
    background: linear-gradient(135deg, var(--navy) 0%, #16284F 55%, #0D1F3C 100%);
    padding: 56px 24px 52px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(224,123,32,0.13) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute; bottom: -60px; left: -60px;
    width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(26,86,219,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 420px;
    gap: 52px; align-items: center;
    position: relative; z-index: 1;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(224,123,32,0.15);
    border: 1px solid rgba(224,123,32,0.35);
    color: var(--orange2);
    font-size: 12px; font-weight: 600;
    padding: 5px 13px; border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: .04em;
  }
  .tag-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--orange2);
    animation: blink 2s infinite;
  }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }
  .hero h1 {
    font-family: var(--font-head);
    font-size: 40px; font-weight: 800;
    color: var(--white);
    line-height: 1.15; letter-spacing: -0.7px;
    margin-bottom: 16px;
  }
  .hero h1 em { color: var(--orange2); font-style: normal; }
  .hero-sub {
    font-size: 16px; color: rgba(255,255,255,0.70);
    line-height: 1.70; margin-bottom: 26px;
    max-width: 490px;
  }

  /* penalty alert box */
  .penalty-box {
    display: flex; gap: 12px; align-items: flex-start;
    background: rgba(220,38,38,0.12);
    border: 1px solid rgba(220,38,38,0.30);
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-bottom: 28px;
    max-width: 490px;
  }
  .penalty-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
  .penalty-text { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.55; }
  .penalty-text strong { color: #FCA5A5; }

  .hero-trust-row {
    display: flex; gap: 18px; flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .h-trust {
    display: flex; align-items: center; gap: 7px;
    font-size: 13px; color: rgba(255,255,255,0.82);
  }
  .h-trust-ic {
    width: 28px; height: 28px; border-radius: 6px;
    background: rgba(255,255,255,0.10);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; flex-shrink: 0;
  }
  .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: var(--radius);
    text-decoration: none; white-space: nowrap;
    box-shadow: 0 4px 18px rgba(37,211,102,0.35);
    transition: all .2s;
  }
  .btn-wa-hero:hover { background: var(--green-wa-dark); transform: translateY(-1px); }
  .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.32);
    font-family: var(--font-head); font-size: 15px; font-weight: 600;
    padding: 14px 24px; border-radius: var(--radius);
    text-decoration: none; white-space: nowrap;
    transition: all .2s;
  }
  .btn-call-hero:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.60); }

  /* ── HERO FORM ── */
  .hero-form-card {
    background: var(--white);
    border-radius: 18px;
    padding: 30px 26px;
    box-shadow: var(--shadow-lg);
  }
  .form-card-title {
    font-family: var(--font-head);
    font-size: 18px; font-weight: 700;
    color: var(--navy); margin-bottom: 4px;
  }
  .form-card-sub {
    font-size: 13px; color: var(--text2);
    margin-bottom: 20px;
    line-height: 1.5;
  }
  .form-card-sub strong { color: var(--green-wa); }
  .fg { margin-bottom: 13px; }
  .fg label {
    display: block;
    font-size: 11px; font-weight: 600; color: var(--text2);
    text-transform: uppercase; letter-spacing: .05em;
    margin-bottom: 5px;
  }
  .fg input, .fg 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 13px;
    outline: none;
    transition: border-color .2s;
    -webkit-appearance: none; appearance: none;
  }
  .fg input:focus, .fg select:focus { border-color: var(--blue); background: var(--white); }
  .fg select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%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-go {
    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; margin-top: 4px;
    box-shadow: 0 4px 14px rgba(37,211,102,0.30);
    text-decoration: none; transition: all .2s;
  }
  .btn-form-go:hover { background: var(--green-wa-dark); transform: translateY(-1px); }
  .form-note {
    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: 16px 24px;
  }
  .trust-bar-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; justify-content: center; flex-wrap: wrap;
  }
  .t-item {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 22px;
    border-right: 1px solid rgba(255,255,255,0.09);
    flex: 1; min-width: 130px; justify-content: center;
  }
  .t-item:last-child { border-right: none; }
  .t-ic { font-size: 22px; }
  .t-val {
    font-family: var(--font-head);
    font-size: 17px; font-weight: 800;
    color: var(--orange2); line-height: 1;
  }
  .t-lbl { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 2px; }

  /* ═══════════════════════════
     SECTIONS COMMON
  ═══════════════════════════ */
  section { padding: 64px 24px; }
  .s-inner { max-width: 1100px; margin: 0 auto; }
  .s-label {
    font-size: 11px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--orange);
    margin-bottom: 10px;
  }
  .s-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;
  }
  .s-sub {
    font-size: 16px; color: var(--text2);
    line-height: 1.65; max-width: 540px;
  }
  .s-hd { margin-bottom: 40px; }
  .s-hd.center { text-align: center; }
  .s-hd.center .s-sub { margin: 0 auto; }

  /* ═══════════════════════════
     WHO NEEDS GST (PROBLEM)
  ═══════════════════════════ */
  .who-section { background: var(--bg); }
  .who-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  }
  .who-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 13px;
    padding: 22px 20px;
    display: flex; gap: 14px; align-items: flex-start;
  }
  .who-icon {
    font-size: 26px; flex-shrink: 0; margin-top: 2px;
  }
  .who-title {
    font-family: var(--font-head);
    font-size: 14px; font-weight: 700;
    color: var(--navy); margin-bottom: 5px;
  }
  .who-desc { font-size: 13px; color: var(--text2); line-height: 1.55; }

  /* ═══════════════════════════
     SERVICES GRID
  ═══════════════════════════ */
  .services-section { background: var(--white); }
  .svc-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  }
  .svc-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 26px 22px;
    position: relative; overflow: hidden;
    transition: all .25s;
    text-decoration: none; color: inherit; display: block;
  }
  .svc-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange2));
    transform: scaleX(0); transition: transform .25s; transform-origin: left;
  }
  .svc-card:hover { border-color: var(--orange); box-shadow: 0 8px 32px rgba(224,123,32,0.12); transform: translateY(-2px); }
  .svc-card:hover::before { transform: scaleX(1); }
  .svc-card.popular {
    border-color: var(--blue);
    background: var(--blue-light);
  }
  .svc-card.popular::before { background: linear-gradient(90deg, var(--blue), #4f8ef7); transform: scaleX(1); }
  .popular-badge {
    position: absolute; top: 14px; right: 14px;
    background: var(--blue); color: var(--white);
    font-size: 10px; font-weight: 700;
    padding: 3px 10px; border-radius: 20px;
    letter-spacing: .04em;
  }
  .svc-icon {
    width: 50px; height: 50px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 14px;
  }
  .svc-name {
    font-family: var(--font-head);
    font-size: 16px; font-weight: 700;
    color: var(--navy); margin-bottom: 6px;
  }
  .svc-price {
    font-family: var(--font-head);
    font-size: 22px; font-weight: 800;
    color: var(--blue); margin-bottom: 4px;
  }
  .svc-freq { font-size: 12px; color: var(--text3); margin-bottom: 12px; }
  .svc-includes { list-style: none; margin-bottom: 16px; }
  .svc-includes li {
    font-size: 13px; color: var(--text2);
    padding: 4px 0; display: flex; gap: 7px; align-items: flex-start;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  .svc-includes li:last-child { border-bottom: none; }
  .svc-includes li span { color: var(--green); font-size: 14px; flex-shrink: 0; }
  .btn-svc {
    display: block; width: 100%;
    background: var(--navy); color: var(--white);
    font-family: var(--font-head); font-size: 13px; font-weight: 700;
    padding: 10px 14px; border-radius: var(--radius-sm);
    text-align: center; text-decoration: none;
    transition: background .2s;
  }
  .svc-card:hover .btn-svc { background: var(--orange); }
  .svc-card.popular .btn-svc { background: var(--blue); }
  .svc-card.popular:hover .btn-svc { background: #1448c4; }

  /* ═══════════════════════════
     PENALTY ALERT SECTION
  ═══════════════════════════ */
  .alert-section { background: var(--red-light); padding: 36px 24px; }
  .alert-inner {
    max-width: 900px; margin: 0 auto;
    display: flex; gap: 24px; align-items: center;
  }
  .alert-icon-big { font-size: 52px; flex-shrink: 0; }
  .alert-content { flex: 1; }
  .alert-title {
    font-family: var(--font-head);
    font-size: 20px; font-weight: 800;
    color: var(--red); margin-bottom: 8px;
  }
  .alert-desc { font-size: 14px; color: #7f1d1d; line-height: 1.6; margin-bottom: 14px; }
  .penalty-chips { display: flex; gap: 8px; flex-wrap: wrap; }
  .p-chip {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    font-size: 12px; font-weight: 600;
    padding: 4px 12px; border-radius: 20px;
  }
  .alert-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red); color: var(--white);
    font-family: var(--font-head); font-size: 14px; font-weight: 700;
    padding: 11px 22px; border-radius: var(--radius);
    text-decoration: none; white-space: nowrap; flex-shrink: 0;
    transition: all .2s;
  }
  .alert-cta:hover { background: #b91c1c; }

  /* ═══════════════════════════
     WHY CORPARMOUR
  ═══════════════════════════ */
  .why-section { background: var(--bg); }
  .why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
  .why-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 26px 22px;
    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-ico {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--orange-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 16px;
  }
  .why-stat {
    font-family: var(--font-head);
    font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 4px;
  }
  .why-name {
    font-family: var(--font-head);
    font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px;
  }
  .why-desc { font-size: 13px; color: var(--text2); line-height: 1.60; }

  /* ═══════════════════════════
     PROCESS
  ═══════════════════════════ */
  .process-section { background: var(--navy); }
  .process-section .s-label { color: var(--orange2); }
  .process-section .s-title { color: var(--white); }
  .process-section .s-sub { color: rgba(255,255,255,0.62); }
  .process-grid {
    display: grid; grid-template-columns: repeat(5,1fr); gap: 14px;
    position: relative;
  }
  .process-grid::before {
    content: '';
    position: absolute; top: 34px; left: 8%; right: 8%; height: 2px;
    background: linear-gradient(90deg, var(--orange2), var(--blue));
    opacity: .25; pointer-events: none;
  }
  .p-step {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 13px;
    padding: 26px 16px 22px;
    text-align: center;
  }
  .p-num {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--orange2); color: var(--navy);
    font-family: var(--font-head); font-size: 18px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px; position: relative; z-index: 1;
  }
  .p-title {
    font-family: var(--font-head);
    font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 7px;
  }
  .p-desc { font-size: 12px; color: rgba(255,255,255,0.58); line-height: 1.55; }

  /* ═══════════════════════════
     PRICING
  ═══════════════════════════ */
  .pricing-section { background: var(--bg); }
  .pricing-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  }
  .pr-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 15px;
    padding: 28px 24px;
    position: relative; transition: all .2s;
  }
  .pr-card.featured {
    border-color: var(--orange);
    box-shadow: 0 8px 36px rgba(224,123,32,0.15);
    transform: scale(1.025);
  }
  .pr-top-badge {
    position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
    background: var(--orange); color: var(--white);
    font-size: 10px; font-weight: 700;
    padding: 3px 14px; border-radius: 20px;
    white-space: nowrap; letter-spacing: .05em;
  }
  .pr-plan { font-size: 12px; font-weight: 600; color: var(--text2); letter-spacing: .05em; text-transform: uppercase; margin-bottom: 8px; }
  .pr-price {
    font-family: var(--font-head);
    font-size: 30px; font-weight: 800; color: var(--navy); margin-bottom: 2px;
  }
  .pr-price sup { font-size: 16px; vertical-align: top; margin-top: 6px; }
  .pr-price span { font-size: 14px; font-weight: 500; color: var(--text3); }
  .pr-note { font-size: 12px; color: var(--text3); margin-bottom: 18px; }
  .pr-list { list-style: none; margin-bottom: 18px; }
  .pr-list li {
    font-size: 13px; color: var(--text2);
    padding: 5px 0; display: flex; gap: 7px; align-items: flex-start;
    border-bottom: 1px solid var(--bg);
  }
  .pr-list li:last-child { border-bottom: none; }
  .pr-list li span { color: var(--green); font-size: 14px; flex-shrink: 0; }
  .pr-list li span.x { color: var(--red); }
  .btn-pr {
    width: 100%; display: block; text-align: center;
    background: var(--navy); color: var(--white);
    font-family: var(--font-head); font-size: 13px; font-weight: 700;
    padding: 11px 14px; border-radius: var(--radius-sm);
    text-decoration: none; border: none; cursor: pointer;
    transition: background .2s;
  }
  .pr-card.featured .btn-pr { background: var(--orange); }
  .btn-pr:hover { background: var(--orange); }
  .pr-card.featured .btn-pr:hover { background: #c96f1a; }

  /* ═══════════════════════════
     COMPLIANCE CALENDAR
  ═══════════════════════════ */
  .calendar-section { background: var(--white); }
  .cal-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
  .cal-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 18px 16px;
  }
  .cal-return {
    font-family: var(--font-head);
    font-size: 18px; font-weight: 800;
    color: var(--navy); margin-bottom: 4px;
  }
  .cal-name { font-size: 12px; font-weight: 600; color: var(--text2); margin-bottom: 10px; }
  .cal-due {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--orange-light);
    border: 1px solid rgba(224,123,32,0.25);
    color: var(--orange); font-size: 11px; font-weight: 700;
    padding: 3px 9px; border-radius: 6px; margin-bottom: 8px;
  }
  .cal-desc { font-size: 12px; color: var(--text3); line-height: 1.5; }
  .cal-penalty { font-size: 11px; color: var(--red); margin-top: 6px; font-weight: 600; }

  /* ═══════════════════════════
     REVIEWS
  ═══════════════════════════ */
  .reviews-section { background: var(--bg); }
  .reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
  .rv-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 22px 20px;
  }
  .rv-stars { font-size: 15px; color: #F59E0B; margin-bottom: 10px; }
  .rv-text { font-size: 14px; color: var(--text); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
  .rv-author { display: flex; align-items: center; gap: 10px; }
  .rv-av {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: 13px; font-weight: 700;
    color: var(--white); flex-shrink: 0;
  }
  .rv-name { font-size: 13px; font-weight: 600; color: var(--navy); }
  .rv-meta { font-size: 11px; color: var(--text3); }
  .g-badge {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: 9px; padding: 9px 18px;
    font-size: 13px; font-weight: 600; color: var(--text);
    margin-bottom: 30px;
  }

  /* ═══════════════════════════
     FAQ
  ═══════════════════════════ */
  .faq-section { background: var(--white); }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 880px; margin: 0 auto; }
  .faq-item {
    background: var(--bg);
    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: 17px 18px;
    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: rgba(0,0,0,0.02); }
  .faq-ico {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--orange-light); color: var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 700; flex-shrink: 0;
    transition: transform .2s;
  }
  .faq-item.open .faq-ico { transform: rotate(45deg); }
  .faq-a {
    font-size: 13px; color: var(--text2); line-height: 1.65;
    padding: 0 18px; max-height: 0; overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
  }
  .faq-item.open .faq-a { max-height: 220px; padding: 0 18px 16px; }

  /* ═══════════════════════════
     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: -120px; left: 50%; transform: translateX(-50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(224,123,32,0.10) 0%, transparent 60%);
    pointer-events: none;
  }
  .fc-inner { position: relative; z-index: 1; }
  .fc-label {
    font-size: 12px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--orange2); margin-bottom: 12px;
  }
  .fc-h {
    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;
  }
  .fc-p { font-size: 16px; color: rgba(255,255,255,0.68); margin-bottom: 36px; }
  .fc-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-fc-wa {
    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;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: all .2s;
  }
  .btn-fc-wa:hover { background: var(--green-wa-dark); transform: translateY(-2px); }
  .btn-fc-call {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.35);
    font-family: var(--font-head); font-size: 16px; font-weight: 600;
    padding: 14px 28px; border-radius: var(--radius);
    text-decoration: none; transition: all .2s;
  }
  .btn-fc-call:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.70); }
  .fc-urgency {
    margin-top: 24px;
    font-size: 13px; color: rgba(255,255,255,0.48);
    display: flex; align-items: center; justify-content: center; gap: 7px;
  }
  .urgency-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-wa); animation: blink 2s infinite; }

  /* ═══════════════════════════
     DIVIDER BANNER
  ═══════════════════════════ */
  .divider-banner {
    background: var(--orange2); padding: 13px 24px; text-align: center;
  }
  .divider-banner p {
    font-family: var(--font-head); font-size: 14px; font-weight: 700;
    color: var(--navy);
    display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  }
  .divider-banner a { color: var(--navy); text-decoration: underline; }

  /* ═══════════════════════════
     FOOTER
  ═══════════════════════════ */
  footer {
    background: #060E1C; padding: 18px 24px;
    text-align: center;
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 12px;
  }
  footer a { font-size: 12px; color: rgba(255,255,255,0.42); text-decoration: none; }
  footer a:hover { color: rgba(255,255,255,0.75); }
  .f-div { font-size: 12px; color: rgba(255,255,255,0.18); }
  .f-copy { font-size: 12px; color: rgba(255,255,255,0.28); }

  /* ═══════════════════════════
     STICKY 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.10);
    padding: 10px 14px;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.28);
  }
  .sticky-bar a {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
    padding: 13px 10px; border-radius: 9px;
    font-family: var(--font-head); font-size: 14px; font-weight: 700;
    text-decoration: none; color: var(--white); transition: all .15s;
  }
  .s-wa { background: var(--green-wa); }
  .s-wa:hover { background: var(--green-wa-dark); }
  .s-call { background: var(--orange); }
  .s-call:hover { background: var(--orange2); }

  /* ── SVG icons inline ── */
  .ico-wa { width: 20px; height: 20px; flex-shrink: 0; }
  .ico-ph { width: 16px; height: 16px; flex-shrink: 0; }

  /* ═══════════════════════════
     RESPONSIVE
  ═══════════════════════════ */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .hero-form-card { max-width: 480px; }
    .svc-grid { grid-template-columns: repeat(2,1fr); }
    .pricing-grid { grid-template-columns: repeat(3,1fr); }
    .pr-card.featured { transform: none; }
    .process-grid { grid-template-columns: repeat(3,1fr); }
  }
  @media (max-width: 768px) {
    .header { padding: 0 16px; }
    .btn-hd-wa { display: none; }
    section { padding: 44px 16px; }
    .hero { padding: 36px 16px 44px; }
    .hero h1 { font-size: 26px; }
    .hero-sub { font-size: 15px; }
    .hero-ctas { flex-direction: column; }
    .btn-wa-hero, .btn-call-hero { width: 100%; justify-content: center; }
    .hero-form-card { padding: 20px 16px; }
    .trust-bar-inner { gap: 0; }
    .t-item { padding: 8px 12px; min-width: 110px; }
    .t-val { font-size: 15px; }
    .s-title { font-size: 24px; }
    .who-grid { grid-template-columns: 1fr 1fr; }
    .svc-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; gap: 14px; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-grid::before { display: none; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pr-card.featured { transform: none; }
    .cal-grid { grid-template-columns: 1fr 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .final-cta { padding: 48px 16px; }
    .fc-h { font-size: 26px; }
    .fc-btns { flex-direction: column; align-items: center; }
    .btn-fc-wa, .btn-fc-call { width: 100%; max-width: 340px; justify-content: center; }
    .alert-inner { flex-direction: column; gap: 16px; }
    .alert-icon-big { display: none; }
    .sticky-bar { display: flex; }
    body { padding-bottom: 74px; }
  }
  @media (max-width: 480px) {
    .hero h1 { font-size: 22px; }
    .who-grid { grid-template-columns: 1fr; }
    .cal-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .trust-bar-inner { display: grid; grid-template-columns: 1fr 1fr; }
    .t-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .t-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
  }
  
  
  