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

    :root {
      --navy:    #0d2550;   /* deepest — matches logo, dark sections */
      --blue:    #0057b8;   /* primary — buttons, links */
      --blue-dk: #00408a;   /* hover */
      --blue-lt: #e8f0fb;   /* light blue tint */
      --teal:    #0e9aae;   /* accent — matches logo droplet */
      --teal-lt: #e2f4f6;   /* light teal tint */
      --green:   #0e9aae;   /* alias kept for compatibility = teal */
      --gray:    #f5f7fa;
      --text:    #15233f;   /* navy-tinted dark for cohesion */
      --muted:   #5b6677;
      --border:  #e2e8f0;
      --radius:  10px;
      --shadow:  0 4px 24px rgba(13,37,80,.10);
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }
    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: #fff;
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { max-width: 100%; }

    a { color: inherit; text-decoration: none; }

    /* ─── NAV ─────────────────────────────────────────────── */
    .nav {
      position: sticky; top: 0; z-index: 100;
      background: #fff;
      border-bottom: 1px solid var(--border);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%;
      height: 84px;
      gap: 24px;
    }
    .nav-logo { display: inline-flex; align-items: center; flex-shrink: 0; height: 100%; }
    .nav-logo img { height: 56px; width: auto; display: block; }
    .nav-cta {
      display: inline-flex; align-items: center;
      background: var(--blue); color: #fff;
      padding: 11px 24px; border-radius: 6px;
      font-weight: 700; font-size: .88rem;
      letter-spacing: .06em; text-transform: uppercase;
      transition: background .2s; white-space: nowrap;
    }
    .nav-cta:hover { background: var(--blue-dk); }
    @media (max-width: 860px) {
      .nav { height: 70px; gap: 12px; padding: 0 4%; }
      .nav-logo img { height: 42px; }
      .nav-cta { padding: 9px 15px; font-size: .8rem; letter-spacing: .03em; }
    }
    @media (max-width: 480px) {
      .nav-logo img { height: 38px; }
      .nav-cta { padding: 8px 13px; font-size: .74rem; letter-spacing: .01em; text-transform: none; }
    }

    /* ─── NAV MENU (added) ────────────────────────────────── */
    .nav-menu { list-style: none; display: flex; align-items: center; gap: 30px; margin: 0 0 0 auto; padding: 0; }
    .nav-menu a { font-size: .95rem; font-weight: 600; color: var(--text); letter-spacing: .01em; transition: color .2s; white-space: nowrap; }
    .nav-menu a:hover { color: var(--blue); }
    .nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px;
      width: 42px; height: 42px; background: none; border: 0; cursor: pointer; padding: 9px; }
    .nav-toggle span { display: block; height: 2px; width: 100%; background: var(--navy); border-radius: 2px; transition: .25s; }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    @media (max-width: 1024px) { .nav-menu { gap: 20px; } .nav-menu a { font-size: .9rem; } }
    @media (max-width: 860px) {
      .nav { position: relative; }
      .nav-toggle { display: flex; }
      .nav-cta { margin-left: auto; }
      .nav-menu { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
        gap: 0; margin: 0; background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow); padding: 6px 5%; display: none; }
      .nav-menu.open { display: flex; }
      .nav-menu li { border-bottom: 1px solid var(--border); }
      .nav-menu li:last-child { border-bottom: none; }
      .nav-menu a { display: block; padding: 14px 2px; }
    }

    /* ─── HERO ────────────────────────────────────────────── */
    .hero {
      background: linear-gradient(135deg, #0d2550 0%, #0057b8 62%, #0a86a8 100%);
      color: #fff;
      padding: 80px 5% 70px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    @media (max-width: 860px) {
      .hero { grid-template-columns: 1fr; gap: 40px; padding: 60px 5% 50px; }
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,.15);
      border: 1px solid rgba(255,255,255,.25);
      border-radius: 20px; padding: 5px 14px;
      font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
      margin-bottom: 20px;
    }
    .hero-eyebrow::before { content: "●"; color: #3fd5e8; font-size: .6rem; }
    .hero h1 {
      font-size: clamp(2rem, 4vw, 2.9rem);
      font-weight: 800; line-height: 1.18;
      margin-bottom: 20px;
    }
    .hero h1 em { font-style: normal; color: #7dd3fc; }
    .hero-sub {
      font-size: 1.05rem; color: rgba(255,255,255,.82);
      max-width: 480px; margin-bottom: 32px;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-primary {
      background: #fff; color: var(--blue);
      padding: 13px 28px; border-radius: 7px;
      font-weight: 700; font-size: 1rem;
      transition: transform .15s, box-shadow .15s;
      box-shadow: 0 4px 14px rgba(0,0,0,.18);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.22); }
    .btn-ghost {
      border: 2px solid rgba(255,255,255,.5);
      color: #fff; padding: 11px 24px; border-radius: 7px;
      font-weight: 600; font-size: 1rem;
      transition: border-color .2s, background .2s;
    }
    .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }

    .hero-trust {
      display: flex; gap: 24px; flex-wrap: wrap;
      margin-top: 36px;
    }
    .trust-item { display: flex; align-items: center; gap: 7px; font-size: .85rem; color: rgba(255,255,255,.75); }
    .trust-item svg { flex-shrink: 0; }

    /* Hero image */
    .hero-img-wrap {
      position: relative;
    }
    .hero-img {
      width: 100%; aspect-ratio: 4/3;
      border-radius: 14px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.18);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 10px; color: rgba(255,255,255,.5); font-size: .85rem;
      overflow: hidden;
    }
    .hero-img svg { opacity: .4; }
    .hero-img-label { opacity: .5; font-size: .78rem; }

    /* Floating badges on hero image */
    .hero-badge {
      position: absolute;
      background: #fff; border-radius: 10px;
      padding: 10px 14px; box-shadow: 0 8px 24px rgba(0,0,0,.18);
      display: flex; align-items: center; gap: 9px;
      font-size: .82rem; font-weight: 600; color: var(--text);
    }
    .hero-badge.b1 { bottom: -16px; left: -16px; }
    .hero-badge.b2 { top: -12px; right: -12px; }
    .hero-badge .badge-icon { font-size: 1.4rem; }
    .hero-badge .badge-lbl { color: var(--muted); font-weight: 400; font-size: .74rem; }

    /* ─── STATS BAR ───────────────────────────────────────── */
    .stats-bar {
      background: var(--blue-dk);
      display: flex; justify-content: center; flex-wrap: wrap;
      padding: 28px 5%;
      gap: 0;
    }
    .stat {
      flex: 1; min-width: 150px;
      text-align: center; color: #fff;
      padding: 10px 20px;
      border-right: 1px solid rgba(255,255,255,.15);
    }
    .stat:last-child { border-right: none; }
    .stat-num { font-size: 2rem; font-weight: 800; line-height: 1.1; }
    .stat-num sup { font-size: 1.2rem; }
    .stat-lbl { font-size: .8rem; color: rgba(255,255,255,.65); margin-top: 2px; }

    /* ─── TRUSTED BY ──────────────────────────────────────── */
    .trusted-by {
      background: #fff;
      padding: 48px 5% 44px;
      text-align: center;
      border-bottom: 1px solid var(--border);
    }
    .trusted-eyebrow {
      font-size: .78rem; font-weight: 700;
      color: var(--muted);
      letter-spacing: .14em; text-transform: uppercase;
      margin-bottom: 26px;
    }
    .trusted-eyebrow::before,
    .trusted-eyebrow::after {
      content: ""; display: inline-block;
      width: 36px; height: 1px;
      background: var(--border);
      vertical-align: middle;
      margin: 0 16px;
    }
    .trusted-grid {
      display: flex; flex-wrap: wrap; justify-content: center;
      gap: 14px 22px;
      max-width: 1100px; margin: 0 auto;
    }
    .trusted-chip {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--gray);
      border: 1px solid var(--border);
      padding: 12px 22px;
      border-radius: 8px;
      font-size: .92rem; font-weight: 600; color: var(--text);
      transition: border-color .2s, transform .15s;
    }
    .trusted-chip:hover {
      border-color: var(--blue);
      transform: translateY(-2px);
    }
    .trusted-chip .ti { font-size: 1.15rem; }
    .trusted-foot {
      margin-top: 22px;
      font-size: .82rem; color: var(--muted);
      font-style: italic;
    }
    @media (max-width: 600px) {
      .trusted-chip { font-size: .82rem; padding: 10px 16px; }
    }

    /* ─── SECTION COMMON ──────────────────────────────────── */
    .section { padding: 80px 5%; }
    .section-gray { background: var(--gray); }
    .section-tag {
      display: inline-block;
      color: var(--blue); font-weight: 700; font-size: .78rem;
      letter-spacing: .1em; text-transform: uppercase;
      margin-bottom: 10px;
    }
    .section-title {
      font-size: clamp(1.7rem, 3vw, 2.3rem);
      font-weight: 800; line-height: 1.2;
      margin-bottom: 14px;
    }
    .section-sub {
      color: var(--muted); font-size: 1.05rem;
      max-width: 620px; margin-bottom: 48px;
    }
    .centered { text-align: center; }
    .centered .section-sub { margin-left: auto; margin-right: auto; }

    /* ─── PRODUCTS ────────────────────────────────────────── */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }
    .product-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: box-shadow .2s, transform .2s;
      display: flex; flex-direction: column;
    }
    .product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
    .product-img {
      width: 100%; height: 180px;
      background: var(--blue-lt);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 8px; color: var(--blue);
      font-size: .78rem; font-weight: 600;
    }
    .product-img .pi-icon { font-size: 2.8rem; opacity: .55; }
    .product-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
    .product-tag {
      display: inline-block;
      background: var(--blue-lt); color: var(--blue);
      font-size: .72rem; font-weight: 700; letter-spacing: .05em;
      text-transform: uppercase; padding: 3px 9px; border-radius: 20px;
      margin-bottom: 10px;
    }
    .product-tag.green { background: var(--teal-lt); color: #0a6470; }
    .product-name { font-size: 1.12rem; font-weight: 700; margin-bottom: 8px; }
    .product-desc { font-size: .9rem; color: var(--muted); margin-bottom: 14px; }
    .product-specs { list-style: none; font-size: .85rem; display: flex; flex-direction: column; gap: 5px; }
    .product-specs li { display: flex; align-items: flex-start; gap: 7px; }
    .product-specs li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }
    .product-link {
      display: inline-flex; align-items: center; justify-content: center; gap: 6px;
      margin-top: auto;
      background: var(--blue); color: #fff;
      padding: 11px 20px; border-radius: 6px;
      font-weight: 600; font-size: .88rem;
      text-decoration: none;
      transition: background .2s, transform .15s;
      align-self: stretch;
    }
    .product-link:hover { background: var(--blue-dk); transform: translateY(-1px); }

    /* ─── APPLICATIONS ────────────────────────────────────── */
    .apps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      max-width: 1000px;
      margin: 0 auto;
    }
    @media (max-width: 860px) {
      .apps-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 460px) {
      .apps-grid { grid-template-columns: 1fr; }
    }
    .app-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px 16px;
      text-align: center;
      transition: box-shadow .2s, border-color .2s;
    }
    .app-card:hover { box-shadow: var(--shadow); border-color: var(--blue); }
    .app-icon { font-size: 2.4rem; margin-bottom: 12px; }
    .app-name { font-weight: 700; font-size: .95rem; margin-bottom: 6px; }
    .app-sub { font-size: .8rem; color: var(--muted); }

    /* ─── WHY US ──────────────────────────────────────────── */
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: stretch;
    }
    @media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }
    .why-img {
      position: relative;
      width: 100%; min-height: 100%;
      border-radius: 14px;
      overflow: hidden;
      background: var(--blue-lt);
    }
    .why-img img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .why-img::after {
      content: "";
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(13,37,80,.35) 0%, rgba(13,37,80,.55) 55%, rgba(13,37,80,.92) 100%);
    }
    .why-img-overlay {
      position: absolute; inset: 0; z-index: 2;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 40px 36px;
      color: #fff;
    }
    .why-img-overlay .section-tag { color: #7dd3fc; }
    .why-img-overlay h2 {
      font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 800;
      line-height: 1.18; margin: 6px 0 14px;
    }
    .why-img-overlay p {
      font-size: .92rem; line-height: 1.65;
      color: rgba(255,255,255,.85);
    }
    @media (max-width: 860px) {
      .why-img { min-height: 360px; }
    }
    .why-features { display: flex; flex-direction: column; gap: 24px; justify-content: center; }
    .why-item { display: flex; gap: 16px; align-items: flex-start; }
    .why-icon {
      width: 48px; height: 48px; flex-shrink: 0;
      background: var(--blue-lt); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
    }
    .why-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
    .why-text p { font-size: .9rem; color: var(--muted); }

    /* ─── CERTIFICATIONS ──────────────────────────────────── */
    .certs-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      max-width: 760px; margin: 0 auto;
    }
    @media (max-width: 600px) { .certs-row { grid-template-columns: repeat(2, 1fr); } }
    .cert-badge {
      background: #fff;
      border: 2px solid var(--border);
      border-radius: var(--radius);
      padding: 24px 20px;
      text-align: center;
      transition: border-color .2s, box-shadow .2s;
    }
    .cert-badge:hover { border-color: var(--blue); box-shadow: var(--shadow); }
    .cert-icon { font-size: 2rem; margin-bottom: 6px; }
    .cert-name { font-weight: 700; font-size: .9rem; }
    .cert-sub { font-size: .75rem; color: var(--muted); margin-top: 3px; }

    /* ─── PROCESS ─────────────────────────────────────────── */
    .process-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 0;
      position: relative;
    }
    .process-step {
      text-align: center;
      padding: 32px 20px;
      position: relative;
    }
    .process-step:not(:last-child)::after {
      content: "→";
      position: absolute; right: -8px; top: 50%;
      transform: translateY(-50%);
      font-size: 1.4rem; color: var(--border);
    }
    @media (max-width: 700px) {
      .process-steps { grid-template-columns: 1fr; }
      .process-step::after { content: "↓"; right: auto; top: auto; bottom: -14px; left: 50%; transform: translateX(-50%); }
    }
    .step-num {
      width: 52px; height: 52px; border-radius: 50%;
      background: var(--blue); color: #fff;
      font-weight: 800; font-size: 1.2rem;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 14px;
    }
    .step-title { font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
    .step-desc { font-size: .85rem; color: var(--muted); }

    /* ─── INQUIRY FORM ────────────────────────────────────── */
    .form-section {
      background: linear-gradient(135deg, #0d2550, #0057b8);
      padding: 80px 5%;
      color: #fff;
    }
    .form-wrap {
      max-width: 1080px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1.05fr;
      gap: 56px; align-items: center;
    }
    @media (max-width: 860px) { .form-wrap { grid-template-columns: 1fr; gap: 40px; } }
    .form-intro h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.2; margin-bottom: 18px; }
    .form-intro p { color: rgba(255,255,255,.78); font-size: 1.05rem; line-height: 1.7; margin-bottom: 30px; }
    .form-benefits { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .form-benefits li { display: flex; align-items: center; gap: 11px; font-size: 1rem; color: rgba(255,255,255,.9); }
    .form-benefits li::before { content: "✓"; background: var(--green); color: #fff; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 800; flex-shrink: 0; }

    .form-card {
      background: #fff; color: var(--text);
      border-radius: 14px; padding: 36px 32px;
      box-shadow: 0 20px 60px rgba(0,0,0,.25);
      scroll-margin-top: 88px;  /* clear sticky nav when anchored from CTA */
    }
    .form-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 24px; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-grid .full { grid-column: 1 / -1; }
    label { display: block; font-size: .82rem; font-weight: 600; color: var(--muted); margin-bottom: 5px; }
    label span { color: #e53e3e; }
    input, select, textarea {
      width: 100%;
      border: 1.5px solid var(--border);
      border-radius: 7px;
      padding: 10px 13px;
      font-size: .92rem;
      font-family: inherit;
      color: var(--text);
      background: #fff;
      transition: border-color .2s, box-shadow .2s;
      outline: none;
    }
    input:focus, select:focus, textarea:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(0,87,184,.12);
    }
    textarea { resize: vertical; min-height: 90px; }
    .form-submit {
      width: 100%; margin-top: 18px;
      background: var(--blue); color: #fff;
      border: none; border-radius: 8px;
      padding: 14px; font-size: 1rem; font-weight: 700;
      cursor: pointer; font-family: inherit;
      transition: background .2s, transform .15s;
    }
    .form-submit:hover { background: var(--blue-dk); transform: translateY(-1px); }
    .form-note { font-size: .75rem; color: var(--muted); text-align: center; margin-top: 12px; }

    /* ─── TESTIMONIALS ────────────────────────────────────── */
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }
    .testi-card {
      background: #fff; border: 1px solid var(--border);
      border-radius: var(--radius); padding: 28px 24px;
    }
    .testi-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
    .testi-text { font-size: .92rem; color: var(--text); line-height: 1.65; margin-bottom: 18px; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--blue-lt); display: flex;
      align-items: center; justify-content: center;
      font-weight: 700; font-size: 1rem; color: var(--blue);
      flex-shrink: 0;
    }
    .testi-name { font-weight: 700; font-size: .9rem; }
    .testi-role { font-size: .78rem; color: var(--muted); }

    /* ─── FAQ ─────────────────────────────────────────────── */
    .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    details {
      background: #fff; border: 1px solid var(--border);
      border-radius: var(--radius); overflow: hidden;
    }
    summary {
      padding: 18px 20px; cursor: pointer;
      font-weight: 600; font-size: .97rem;
      display: flex; justify-content: space-between; align-items: center;
      list-style: none;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: "+";
      font-size: 1.3rem; font-weight: 400; color: var(--blue);
      transition: transform .2s;
    }
    details[open] summary::after { transform: rotate(45deg); }
    details p { padding: 0 20px 18px; font-size: .92rem; color: var(--muted); line-height: 1.7; }

    /* ─── FOOTER ──────────────────────────────────────────── */
    .footer {
      background: #0d1f3c; color: rgba(255,255,255,.65);
      padding: 72px 5% 44px;
      display: flex; flex-wrap: wrap;
      justify-content: space-between; gap: 64px;
    }
    .footer-brand { max-width: 320px; }
    .footer-brand p { font-size: .9rem; line-height: 1.75; }
    .footer-col h4 {
      color: #fff; font-size: .82rem; font-weight: 700;
      margin-bottom: 20px; letter-spacing: .1em; text-transform: uppercase;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
    .footer-col li { font-size: .9rem; line-height: 1.5; }
    .footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
    .footer-bottom {
      background: #0a1829; color: rgba(255,255,255,.62);
      text-align: center; padding: 18px 5%;
      font-size: .8rem;
    }
    @media (max-width: 860px) {
      .footer { padding: 56px 5% 36px; gap: 40px; }
    }

    /* ─── STICKY BOTTOM CTA (mobile) ─────────────────────── */
    .sticky-cta {
      display: none;
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
      background: var(--blue); color: #fff;
      text-align: center; padding: 14px;
      font-weight: 700; font-size: 1rem;
      box-shadow: 0 -4px 20px rgba(0,0,0,.15);
    }
    @media (max-width: 600px) { .sticky-cta { display: block; } }

    /* ─── WHATSAPP FLOATING CHAT BUTTON ──────────────────── */
    .whatsapp-float {
      position: fixed;
      bottom: 26px; right: 26px;
      width: 60px; height: 60px;
      background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 6px 20px rgba(0,0,0,.28);
      z-index: 300;
      transition: transform .2s, box-shadow .2s;
    }
    .whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 8px 26px rgba(0,0,0,.34); }
    .whatsapp-float svg { width: 34px; height: 34px; fill: #fff; }
    /* Gentle attention pulse */
    .whatsapp-float::after {
      content: ""; position: absolute; inset: 0;
      border-radius: 50%; background: #25D366;
      z-index: -1; animation: wa-pulse 2.4s ease-out infinite;
    }
    @keyframes wa-pulse {
      0%   { transform: scale(1);   opacity: .55; }
      70%  { transform: scale(1.8); opacity: 0; }
      100% { transform: scale(1.8); opacity: 0; }
    }
    /* On mobile, lift above the full-width sticky bottom CTA */
    @media (max-width: 600px) {
      .whatsapp-float { bottom: 80px; right: 16px; width: 54px; height: 54px; }
      .whatsapp-float svg { width: 30px; height: 30px; }
    }

    /* ─── RESPONSIVE TWEAKS (mobile) ──────────────────────── */
    @media (max-width: 600px) {
      /* Tighter vertical rhythm so users reach the form sooner */
      .section { padding: 52px 5%; }
      .section-sub { margin-bottom: 30px; font-size: 1rem; }
      .section-title { font-size: 1.65rem; }

      /* HERO — full-width tappable buttons */
      .hero { padding: 46px 5% 44px; gap: 32px; }
      .hero h1 { font-size: 1.95rem; }
      .hero-sub { font-size: 1rem; margin-bottom: 26px; }
      .hero-actions { gap: 10px; }
      .btn-primary, .btn-ghost { width: 100%; text-align: center; }
      .hero-trust { gap: 12px 20px; margin-top: 26px; }
      /* Keep floating badges inside the image (avoid horizontal overflow) */
      .hero-badge.b1 { bottom: 10px; left: 10px; }
      .hero-badge.b2 { top: 10px; right: 10px; }

      /* STATS — clean 2-col grid, 5th item centered full-width */
      .stats-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 0; padding: 24px 5%; }
      .stat { border-right: none; padding: 12px 8px; min-width: 0; }
      .stat:last-child { grid-column: 1 / -1; }
      .stat-num { font-size: 1.6rem; }

      /* WHY US — readable text-over-image on mobile */
      .why-img { min-height: 420px; }
      .why-img-overlay { padding: 28px 22px; }
      .why-img-overlay h2 { font-size: 1.5rem; }

      /* FORM — bigger touch targets, 16px inputs prevent iOS auto-zoom */
      .form-section { padding: 52px 5%; }
      .form-grid { grid-template-columns: 1fr; }
      .form-card { padding: 26px 20px; }
      .form-intro h2 { font-size: 1.6rem; }
      .form-intro p { font-size: 1rem; margin-bottom: 24px; }
      .form-benefits li { font-size: .95rem; }
      input, select, textarea { font-size: 16px; padding: 12px 14px; }
      .form-submit { padding: 16px; font-size: 1.02rem; }

      /* Room so the sticky bottom CTA never covers page content */
      body { padding-bottom: 66px; }

      /* Tap-friendly trust chips & FAQ */
      .trusted-chip { font-size: .82rem; padding: 10px 14px; }
      summary { padding: 16px 18px; font-size: .94rem; }
    }


/* ═══════════════════════════════════════════════════════
   ARTICLE / BLOG  (single.php, index.php, page.php)
════════════════════════════════════════════════════════ */
.article-main { background: #fff; }
.article-wrap { max-width: 820px; margin: 0 auto; padding: 40px 5% 20px; }

.crumbs { font-size: .82rem; color: var(--muted); margin-bottom: 18px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--blue); }

.eyebrow { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal); background: var(--teal-lt);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 14px; }

.article-title { font-size: clamp(1.9rem, 4.4vw, 2.7rem); line-height: 1.14; letter-spacing: -.02em;
  color: var(--navy); font-weight: 800; }
.article-meta { color: var(--muted); font-size: .9rem; margin-top: 14px; }
.article-thumb { margin: 26px 0; border-radius: var(--radius); overflow: hidden; }
.article-thumb img { width: 100%; height: auto; display: block; }

/* Prose: styles the WordPress editor output */
.prose { font-size: 1.06rem; line-height: 1.75; color: var(--text); margin-top: 26px; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); color: var(--navy); font-weight: 750;
  letter-spacing: -.01em; margin-top: 1.8em; scroll-margin-top: 96px; }
.prose h3 { font-size: 1.2rem; color: var(--navy); font-weight: 700; margin-top: 1.5em; }
.prose p { margin: 0; }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin: .4em 0; }
.prose li::marker { color: var(--teal); }
.prose strong { color: var(--navy); }
.prose blockquote { border-left: 4px solid var(--teal); background: var(--gray);
  padding: 14px 20px; border-radius: 0 8px 8px 0; color: var(--text); font-style: normal; }
.prose img { max-width: 100%; height: auto; border-radius: var(--radius); }
.prose code { background: var(--gray); padding: 2px 6px; border-radius: 5px; font-size: .92em; }
.prose figure { margin: 1.4em 0; }
.prose figcaption { font-size: .85rem; color: var(--muted); text-align: center; margin-top: 8px; }

/* Tables inside articles */
.prose .table-wrap, .prose figure.wp-block-table { overflow-x: auto; }
.prose table { width: 100%; border-collapse: collapse; font-size: .96rem; }
.prose thead th { background: var(--navy); color: #fff; text-align: left; padding: 12px 16px; font-weight: 600; }
.prose td, .prose th { border-bottom: 1px solid var(--border); padding: 11px 16px; vertical-align: top; }

/* Article CTA band */
.article-cta { background: var(--navy); color: #fff; border-radius: 14px; padding: 32px;
  margin: 48px 0 14px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.article-cta h2 { color: #fff; margin: 0 0 6px; font-size: 1.4rem; }
.article-cta p { color: #c9d6ea; margin: 0; max-width: 46ch; font-size: .98rem; }
.btn-teal { display: inline-flex; align-items: center; gap: 8px; background: var(--teal); color: #fff;
  padding: 14px 26px; border-radius: 8px; font-weight: 700; letter-spacing: .03em; white-space: nowrap;
  transition: transform .15s, background .2s; }
.btn-teal:hover { background: #0b8496; transform: translateY(-1px); text-decoration: none; }

.article-back { margin-top: 24px; }
.article-back a { color: var(--blue); font-weight: 600; }

/* Blog listing */
.blog-head { padding: 8px 0 26px; border-bottom: 1px solid var(--border); margin-bottom: 30px; }
.blog-head h1 { font-size: clamp(1.9rem, 4.4vw, 2.6rem); color: var(--navy); font-weight: 800; letter-spacing: -.02em; }
.blog-head p { color: var(--muted); margin-top: 12px; font-size: 1.05rem; }
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .18s, box-shadow .18s; }
.post-card:hover { transform: translateY(-3px); box-shadow: 0 10px 34px rgba(13,37,80,.14); text-decoration: none; }
.post-card-thumb img { width: 100%; height: 180px; object-fit: cover; display: block; }
.post-card-body { padding: 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-card-tag { align-self: flex-start; font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal); background: var(--teal-lt); padding: 4px 10px; border-radius: 100px; }
.post-card-title { font-size: 1.2rem; color: var(--navy); font-weight: 700; line-height: 1.3; margin: 2px 0; }
.post-card-excerpt { color: var(--muted); font-size: .95rem; flex: 1; }
.post-card-more { color: var(--blue); font-weight: 600; font-size: .92rem; margin-top: 4px; }
.blog-empty { color: var(--muted); }

/* Pagination */
.pagination { margin: 40px 0 10px; display: flex; justify-content: center; }
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 12px; border: 1px solid var(--border); border-radius: 8px;
  color: var(--text); font-weight: 600; }
.pagination .page-numbers.current { background: var(--blue); color: #fff; border-color: var(--blue); }
.pagination a.page-numbers:hover { border-color: var(--blue); color: var(--blue); text-decoration: none; }

@media (max-width: 640px) {
  .article-cta { padding: 24px; }
  .article-wrap { padding-top: 28px; }
}
