/* ── Design tokens ── */
    :root {
      /* Hex fallbacks */
      --ink:         #141825;
      --navy:        #1a2235;
      --navy-dim:    #111626;
      --navy-deep:   #0d1120;
      --gold:        #c4943a;
      --gold-dim:    #a87d2f;
      --parchment:   #faf9f6;
      --parchment-2: #f0eeea;
      --text:        #181c2a;
      --text-2:      #4c5066;
      --text-3:      #7c8099;
      --rule:        #dddbd5;
      --rule-inv:    #283050;

      --font: 'Epilogue', system-ui, sans-serif;
    }

    @supports (color: oklch(0% 0 0)) {
      :root {
        --ink:         oklch(17% 0.025 252);
        --navy:        oklch(25% 0.07 255);
        --navy-dim:    oklch(19% 0.055 253);
        --navy-deep:   oklch(13% 0.04 252);
        --gold:        oklch(67% 0.14 76);
        --gold-dim:    oklch(57% 0.11 76);
        --parchment:   oklch(97.5% 0.007 85);
        --parchment-2: oklch(93.5% 0.012 85);
        --text:        oklch(18% 0.02 252);
        --text-2:      oklch(44% 0.022 252);
        --text-3:      oklch(62% 0.014 252);
        --rule:        oklch(87% 0.008 85);
        --rule-inv:    oklch(32% 0.05 253);
      }
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font);
      background: var(--parchment);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 1.6;
    }

    /* ── Topbar ── */
    .topbar {
      background: var(--navy-deep);
      padding: 7px 0;
      font-size: .8rem;
      font-weight: 400;
      letter-spacing: .01em;
    }
    .topbar a {
      color: #8892aa;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color .2s;
    }
    .topbar a:hover { color: var(--gold); }
    .topbar .fa { font-size: .65rem; }
    .topbar-contacts { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
    .topbar-social { display: flex; align-items: center; gap: 14px; justify-content: flex-end; }
    .topbar-social a { font-size: .8rem; }

    /* ── Header / Nav ── */
    .site-header {
      background: var(--navy);
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid var(--rule-inv);
    }
    .navbar { padding: 12px 0; }

    /* Logo mark */
    .brand-link {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .site-logo {
      height: 58px;
      width: auto;
      flex-shrink: 0;
      mix-blend-mode: screen;
      display: block;
    }
    .brand-mark { width: 40px; height: 40px; flex-shrink: 0; }
    .brand-wordmark {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
    }
    .brand-name {
      color: #e8eaf0;
      font-size: .8125rem;
      font-weight: 700;
      letter-spacing: .09em;
      text-transform: uppercase;
    }
    .brand-tagline {
      color: var(--gold);
      font-size: .6rem;
      font-weight: 400;
      letter-spacing: .04em;
    }

    /* Nav links */
    .navbar-nav .nav-link {
      color: #8892aa;
      font-size: .8375rem;
      font-weight: 500;
      letter-spacing: .02em;
      padding: 8px 12px;
      transition: color .2s;
      white-space: nowrap;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus { color: #e8eaf0; }

    .dropdown-menu {
      background: #111626;
      border: 1px solid var(--rule-inv);
      border-radius: 0;
      padding: 8px 0;
      min-width: 220px;
      box-shadow: 0 12px 32px rgba(0,0,0,.45);
    }
    .dropdown-item {
      color: #8892aa;
      font-family: var(--font);
      font-size: .8rem;
      font-weight: 400;
      padding: 9px 20px;
      transition: background .15s, color .15s;
    }
    .dropdown-item:hover,
    .dropdown-item:focus {
      background: #1a2235;
      color: var(--gold);
    }
    .dropdown-divider { border-color: var(--rule-inv); }

    .nav-cta {
      background: var(--gold);
      color: var(--ink) !important;
      font-size: .75rem !important;
      font-weight: 700 !important;
      letter-spacing: .05em !important;
      text-transform: uppercase;
      padding: 9px 20px !important;
      transition: background .2s !important;
    }
    .nav-cta:hover { background: var(--gold-dim) !important; color: var(--ink) !important; }

    .navbar-toggler {
      border: 1px solid var(--rule-inv);
      border-radius: 0;
      padding: 6px 10px;
      color: #8892aa;
    }
    .navbar-toggler:focus { box-shadow: none; }

    /* ── Hero ── */
    .hero {
      background: var(--navy);
      min-height: calc(100svh - 94px);
      display: grid;
      align-items: center;
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    /* Precision grid overlay — tech feel without agency theatrics */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 52px 52px;
      -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 20%, transparent 75%);
              mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 20%, transparent 75%);
      pointer-events: none;
    }

    /* Faint diagonal accent line — top right corner detail */
    .hero::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 320px;
      height: 320px;
      background:
        linear-gradient(135deg, transparent 49.5%, rgba(196,148,58,.12) 49.5%, rgba(196,148,58,.12) 50.5%, transparent 50.5%),
        linear-gradient(135deg, transparent 69.5%, rgba(196,148,58,.06) 69.5%, rgba(196,148,58,.06) 70.5%, transparent 70.5%);
      pointer-events: none;
    }

    .hero-content { position: relative; z-index: 1; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 24px;
    }
    .eyebrow-rule { width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
    .eyebrow-text {
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .hero-headline {
      font-size: clamp(2.75rem, 6.5vw, 5.25rem);
      font-weight: 900;
      line-height: 1.03;
      color: #eef0f6;
      letter-spacing: -.03em;
      margin-bottom: 28px;
    }
    .hero-headline em {
      font-style: normal;
      color: var(--gold);
    }

    .hero-lead {
      font-size: 1.0125rem;
      font-weight: 400;
      color: #7a85a0;
      max-width: 520px;
      margin-bottom: 44px;
      line-height: 1.72;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
    }

    /* Primary CTA button */
    .btn-primary-cta {
      background: var(--gold);
      color: var(--ink);
      font-family: var(--font);
      font-size: .8125rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      border: none;
      padding: 14px 32px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      transition: background .2s, transform .15s;
      cursor: pointer;
    }
    .btn-primary-cta:hover {
      background: var(--gold-dim);
      color: var(--ink);
      transform: translateY(-1px);
    }
    .btn-primary-cta:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 3px;
    }

    /* Ghost credential link */
    .credential-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      font-size: .8rem;
      color: #5e6880;
      transition: color .2s;
    }
    .credential-link:hover { color: #8892aa; }
    .credential-badge {
      border: 1px solid var(--rule-inv);
      padding: 5px 9px;
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .1em;
      color: var(--gold);
      white-space: nowrap;
    }

    /* ── Hero: credentials panel (right col) ── */
    .cert-panel {
      border: 1px solid var(--rule-inv);
      border-top: 2px solid var(--gold);
      padding: 28px 32px;
      position: relative;
    }
    .cert-panel-label {
      font-size: .6rem;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }
    .cert-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 0;
    }
    .cert-list li {
      display: flex;
      align-items: baseline;
      gap: 10px;
      font-size: .8125rem;
      font-weight: 400;
      color: #7a85a0;
      padding: 10px 0;
      border-bottom: 1px solid var(--rule-inv);
      line-height: 1.4;
    }
    .cert-list li:last-child { border-bottom: none; padding-bottom: 0; }
    .cert-node {
      width: 5px;
      height: 5px;
      background: var(--gold);
      flex-shrink: 0;
      margin-top: 5px;
    }

    /* Stamp watermark */
    .cert-stamp {
      position: absolute;
      bottom: 20px;
      right: 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3px;
      opacity: .18;
    }
    .cert-stamp-ring {
      width: 52px;
      height: 52px;
      border: 2px solid var(--gold);
      border-radius: 50%;
      display: grid;
      place-items: center;
    }
    .cert-stamp-text {
      font-size: .55rem;
      font-weight: 700;
      letter-spacing: .12em;
      color: var(--gold);
      text-transform: uppercase;
    }

    /* ── Stats ── */
    .stats-section {
      background: var(--navy-deep);
      padding: 52px 0;
      border-bottom: 1px solid var(--rule-inv);
    }
    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .stat-item {
      padding: 16px 28px;
      text-align: center;
      position: relative;
    }
    .stat-item + .stat-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 15%;
      height: 70%;
      width: 1px;
      background: var(--rule-inv);
    }
    .stat-number {
      display: block;
      font-size: clamp(2.25rem, 4vw, 3.25rem);
      font-weight: 900;
      color: var(--gold);
      letter-spacing: -.035em;
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-label {
      font-size: .7rem;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #4a5068;
    }

    /* ── Services ── */
    .services-section {
      background: var(--parchment-2);
      padding: 96px 0;
    }
    .section-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: end;
      margin-bottom: 56px;
    }
    .section-heading {
      font-size: clamp(1.875rem, 3.5vw, 2.875rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -.025em;
      color: var(--ink);
      margin: 0;
    }
    .section-body {
      font-size: .9375rem;
      color: var(--text-2);
      line-height: 1.72;
      margin: 0;
      align-self: end;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid var(--rule);
    }
    .service-panel {
      padding: 44px 36px 40px;
      background: var(--parchment);
      border-right: 1px solid var(--rule);
      position: relative;
      transition: background .25s;
    }
    .service-panel:last-child { border-right: none; }
    .service-panel:hover { background: #fff; }

    .service-number {
      display: block;
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .18em;
      color: var(--gold);
      margin-bottom: 28px;
    }
    .service-title {
      font-size: 1.1875rem;
      font-weight: 800;
      color: var(--ink);
      letter-spacing: -.015em;
      line-height: 1.2;
      margin-bottom: 14px;
    }
    .service-desc {
      font-size: .875rem;
      color: var(--text-2);
      line-height: 1.72;
      margin-bottom: 24px;
    }
    .service-items {
      list-style: none;
      padding: 0;
      margin: 0 0 32px;
    }
    .service-items li {
      font-size: .8rem;
      color: var(--text-2);
      padding: 7px 0;
      border-bottom: 1px solid var(--rule);
      display: flex;
      align-items: baseline;
      gap: 8px;
    }
    .service-items li:first-child { border-top: 1px solid var(--rule); }
    .service-items li::before {
      content: '→';
      color: var(--gold);
      font-size: .7rem;
      flex-shrink: 0;
    }
    .service-link {
      color: var(--ink);
      font-size: .8rem;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      letter-spacing: .02em;
      padding-bottom: 2px;
      border-bottom: 1px solid var(--ink);
      transition: color .2s, border-color .2s;
    }
    .service-link:hover {
      color: var(--gold-dim);
      border-color: var(--gold-dim);
    }

    /* ── Trust / Credentials ── */
    .trust-section {
      background: var(--ink);
      padding: 72px 0;
    }
    .trust-layout {
      display: grid;
      grid-template-columns: 360px 1fr;
      gap: 64px;
      align-items: start;
    }
    .trust-section .section-heading { color: #dde0ec; font-size: clamp(1.5rem, 2.5vw, 2rem); }
    .trust-section .eyebrow-text { color: #4a5068; }
    .trust-section .eyebrow-rule { background: #4a5068; }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid var(--rule-inv);
    }
    .trust-item {
      padding: 28px 20px;
      text-align: center;
      border-right: 1px solid var(--rule-inv);
      border-bottom: 1px solid var(--rule-inv);
    }
    .trust-item:nth-child(3),
    .trust-item:nth-child(6),
    .trust-item:last-child { border-right: none; }
    .trust-item:nth-child(4),
    .trust-item:nth-child(5),
    .trust-item:nth-child(6),
    .trust-item:last-child { border-bottom: none; }

    .trust-acronym {
      display: block;
      font-size: 1.0625rem;
      font-weight: 900;
      letter-spacing: .07em;
      color: var(--gold);
      margin-bottom: 6px;
    }
    .trust-name {
      font-size: .65rem;
      font-weight: 400;
      color: #404560;
      line-height: 1.45;
      letter-spacing: .02em;
    }

    .trust-footnote {
      font-size: .7rem;
      letter-spacing: .08em;
      color: #363b52;
      text-align: center;
      margin-top: 16px;
      text-transform: uppercase;
    }

    /* ── Contact / Form ── */
    .contact-section {
      background: var(--parchment);
      padding: 96px 0;
      border-top: 1px solid var(--rule);
    }
    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .contact-heading {
      font-size: clamp(1.875rem, 3vw, 2.5rem);
      font-weight: 900;
      letter-spacing: -.025em;
      line-height: 1.08;
      color: var(--ink);
      margin-bottom: 20px;
    }
    .contact-body {
      font-size: .9375rem;
      color: var(--text-2);
      line-height: 1.72;
      margin-bottom: 36px;
    }
    .contact-meta { display: grid; gap: 18px; }
    .contact-meta-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .contact-icon-wrap {
      width: 38px;
      height: 38px;
      background: var(--parchment-2);
      border: 1px solid var(--rule);
      display: grid;
      place-items: center;
      font-size: .875rem;
      color: var(--gold-dim);
      flex-shrink: 0;
    }
    .contact-meta-label {
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--text-3);
      display: block;
      margin-bottom: 3px;
    }
    .contact-meta-value {
      font-size: .875rem;
      color: var(--text-2);
    }
    .contact-meta-value a {
      color: var(--text-2);
      text-decoration: none;
      transition: color .2s;
    }
    .contact-meta-value a:hover { color: var(--ink); }

    /* Form */
    .form-card {
      background: #fff;
      border: 1px solid var(--rule);
      padding: 40px;
    }
    .form-card .form-label {
      font-family: var(--font);
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .09em;
      text-transform: uppercase;
      color: var(--text-3);
      margin-bottom: 6px;
      display: block;
    }
    .form-card .required-mark { color: var(--gold); }
    .form-card .form-control {
      font-family: var(--font);
      font-size: .875rem;
      border: 1px solid var(--rule);
      border-radius: 0;
      padding: 10px 14px;
      background: var(--parchment);
      color: var(--text);
      transition: border-color .2s, background .2s, box-shadow .2s;
    }
    .form-card .form-control:focus {
      border-color: var(--gold);
      background: #fff;
      box-shadow: 0 0 0 3px rgba(196, 148, 58, .12);
      outline: none;
    }
    .form-card .form-control::placeholder { color: #9fa3b4; }
    .form-card textarea.form-control { resize: vertical; min-height: 120px; }
    .form-card .btn-submit {
      width: 100%;
      background: var(--ink);
      color: #eef0f6;
      font-family: var(--font);
      font-size: .8125rem;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      border: none;
      padding: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      cursor: pointer;
      transition: background .2s;
    }
    .form-card .btn-submit:hover { background: var(--navy); }
    .form-card .btn-submit:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 3px;
    }

    /* ── Footer ── */
    .site-footer {
      background: var(--navy-dim);
      padding: 64px 0 0;
      border-top: 1px solid var(--rule-inv);
    }
    .footer-logo-row { margin-bottom: 20px; }
    .footer-about {
      font-size: .8rem;
      color: #4a5068;
      line-height: 1.72;
      max-width: 280px;
      margin-bottom: 24px;
    }
    .footer-social {
      display: flex;
      gap: 8px;
    }
    .footer-social a {
      width: 32px;
      height: 32px;
      border: 1px solid var(--rule-inv);
      display: grid;
      place-items: center;
      color: #4a5068;
      font-size: .75rem;
      text-decoration: none;
      transition: color .2s, border-color .2s, background .2s;
    }
    .footer-social a:hover {
      color: var(--gold);
      border-color: var(--gold);
      background: rgba(196,148,58,.07);
    }
    .footer-col-heading {
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .13em;
      text-transform: uppercase;
      color: #363c52;
      margin-bottom: 14px;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--rule-inv);
    }
    .footer-nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 8px;
    }
    .footer-nav-list a {
      color: #4a5068;
      font-size: .8rem;
      text-decoration: none;
      transition: color .2s;
    }
    .footer-nav-list a:hover { color: var(--gold); }

    /* Map placeholder */
    .map-box {
      background: #0d1120;
      border: 1px solid var(--rule-inv);
      height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      margin-bottom: 20px;
      font-size: .7rem;
      letter-spacing: .07em;
      color: #363c52;
      text-transform: uppercase;
    }
    .map-box i { color: var(--gold); opacity: .6; }

    /* Newsletter */
    .newsletter-wrap { display: flex; }
    .newsletter-input {
      flex: 1;
      background: #0d1120;
      border: 1px solid var(--rule-inv);
      border-right: none;
      padding: 9px 13px;
      font-family: var(--font);
      font-size: .8rem;
      color: #8892aa;
      outline: none;
      transition: border-color .2s;
    }
    .newsletter-input:focus { border-color: var(--gold); }
    .newsletter-input::placeholder { color: #363c52; }
    .newsletter-btn {
      background: var(--gold);
      border: none;
      padding: 9px 18px;
      font-family: var(--font);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--ink);
      cursor: pointer;
      transition: background .2s;
      white-space: nowrap;
    }
    .newsletter-btn:hover { background: var(--gold-dim); }

    .footer-bottom {
      margin-top: 48px;
      padding: 18px 0;
      border-top: 1px solid var(--rule-inv);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      font-size: .75rem;
      color: #2e3448;
    }

    /* WhatsApp fab */
    .wa-fab {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 48px;
      height: 48px;
      background: #25d366;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 1.25rem;
      text-decoration: none;
      z-index: 900;
      box-shadow: 0 4px 16px rgba(37, 211, 102, .35);
      transition: transform .2s, box-shadow .2s;
    }
    .wa-fab:hover {
      transform: scale(1.08);
      box-shadow: 0 6px 24px rgba(37, 211, 102, .5);
      color: #fff;
    }
    .wa-fab:focus-visible {
      outline: 2px solid #25d366;
      outline-offset: 4px;
    }

    /* ── Responsive ── */
    @media (max-width: 1199px) {
      .trust-layout { grid-template-columns: 1fr; gap: 40px; }
    }
    @media (max-width: 991px) {
      .services-grid { grid-template-columns: 1fr; }
      .service-panel { border-right: none; border-bottom: 1px solid var(--rule); }
      .service-panel:last-child { border-bottom: none; }
      .section-header { grid-template-columns: 1fr; gap: 20px; }
      .contact-layout { grid-template-columns: 1fr; gap: 48px; }
      .trust-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 767px) {
      .hero { min-height: auto; padding: 60px 0; }
      .hero-headline { font-size: 2.5rem; }
      .hero-lead { font-size: .9375rem; }
      .stats-row { grid-template-columns: repeat(2, 1fr); }
      .stat-item + .stat-item::before { display: none; }
      .stat-item:nth-child(3),
      .stat-item:nth-child(4) {
        border-top: 1px solid var(--rule-inv);
      }
      .trust-grid { grid-template-columns: repeat(2, 1fr); }
      .trust-item:nth-child(2n) { border-right: none; }
      .form-card { padding: 24px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .topbar-contacts { gap: 12px; }
    }
    @media (max-width: 575px) {
      .hero-headline { font-size: 2rem; }
      .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
    }

    /* Utility */
    .container { max-width: 1240px; padding-inline: 24px; }
    .gap-row-3 { row-gap: 12px; }