  :root {
    --bg:        #08080a;
    --bg-1:      #0e0e10;
    --bg-2:      #15151a;
    --bg-3:      #1c1c22;
    --line:      #2a2a30;
    --line-2:    #3a3a42;
    --white:     #f3f1ea;
    --white-2:   #d8d5c8;
    --white-3:   #a7a497;
    --mute:      #6e6c61;
    --gold:      #c9a24a;
    --gold-2:    #e0b955;
    --gold-deep: #7d6028;
    --gold-soft: rgba(201,162,74,0.15);
    --red:       #c4452a;
    --live:      #6fd28a;

    --display: "Saira Condensed", "Arial Narrow", sans-serif;
    --sans:    "Barlow", system-ui, sans-serif;
    --mono:    "JetBrains Mono", ui-monospace, monospace;
  }
  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }
  button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }

  .wrap { max-width: 1480px; margin: 0 auto; padding: 0 36px; }
  @media (max-width: 720px) { .wrap { padding: 0 20px; } }

  .display {
    font-family: var(--display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 0.92;
  }
  .mono {
    font-family: var(--mono);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
  }
  .eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
  }
  .gold { color: var(--gold); }
  .gold-fill {
    background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 50%, var(--gold-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* ===== TOP BAR ===== */
  .topbar {
    position: sticky; top: 0; z-index: 80;
    background: rgba(8,8,10,0.82);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    border-bottom: 1px solid var(--line);
  }
  .topbar-thin {
    border-bottom: 1px solid var(--line);
    background: var(--bg-1);
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--white-3);
  }
  .topbar-thin .row {
    height: 32px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .topbar-thin .live {
    color: var(--live);
    display: inline-flex; align-items: center; gap: 8px;
  }
  .topbar-thin .live::before {
    content: ""; width: 7px; height: 7px; border-radius: 50%;
    background: var(--live);
    animation: pulse 1.4s ease-in-out infinite;
  }
  @keyframes pulse {
    0%,100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.6); opacity: 0.6; }
  }
  .topbar-thin .sep { color: var(--mute); margin: 0 12px; }

  .topbar-main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    height: 76px;
  }
  .brand-mark {
    display: inline-flex; align-items: center; gap: 14px;
  }
  .brand-mark .seal {
    width: 44px; height: 44px;
    border: 1px solid var(--gold-deep);
    border-radius: 50%;
    display: grid; place-items: center;
    background: radial-gradient(circle at 30% 30%, rgba(201,162,74,0.20), transparent 70%), #0a0a0c;
    overflow: hidden;
  }
  .brand-mark .seal img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05); }
  .brand-mark .name {
    font-family: var(--display);
    font-weight: 800;
    font-size: 26px;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
  }
  .brand-mark .sub {
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    margin-top: 3px;
  }

  .nav { display: flex; gap: 32px; justify-self: center; }
  .nav a {
    font-family: var(--display);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white-2);
    padding: 8px 0;
    position: relative;
    transition: color 0.2s ease;
  }
  .nav a:hover { color: var(--gold); }
  .nav a::after {
    content: ""; position: absolute; left: 0; bottom: 0; right: 100%;
    height: 2px; background: var(--gold);
    transition: right 0.3s ease;
  }
  .nav a:hover::after { right: 0; }
  @media (max-width: 920px) { .nav { display: none; } }

  .cta-top {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 14px;
    padding: 14px 22px;
    color: #0a0a0a;
    background: linear-gradient(180deg, var(--gold-2), var(--gold) 60%, var(--gold-deep));
    border-radius: 2px;
    box-shadow: 0 0 0 1px var(--gold-deep), 0 8px 24px rgba(201,162,74,0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .cta-top:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px var(--gold), 0 12px 32px rgba(201,162,74,0.28); }
  .cta-top::after { content: "→"; font-family: var(--mono); font-weight: 700; }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    isolation: isolate;
  }
  .hero-photo {
    position: absolute; inset: 0;
    background-image: url("hero-principal.png");
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.85) contrast(1.05) saturate(0.9);
    animation: kenburns 22s ease-in-out infinite alternate;
    z-index: -3;
  }
  @keyframes kenburns {
    0%   { transform: scale(1.04) translateX(-1%); }
    100% { transform: scale(1.12) translateX(1%); }
  }
  .hero-photo::after { content: ""; }
  .hero-overlay {
    position: absolute; inset: 0;
    background:
      linear-gradient(90deg, var(--bg) 0%, rgba(8,8,10,0.85) 35%, rgba(8,8,10,0.45) 60%, rgba(8,8,10,0.85) 100%),
      linear-gradient(180deg, rgba(8,8,10,0.4) 0%, transparent 25%, transparent 60%, var(--bg) 100%);
    z-index: -2;
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(201,162,74,0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,162,74,0.045) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
  }
  .hero-frame {
    position: absolute; inset: 24px;
    border: 1px solid rgba(201,162,74,0.18);
    pointer-events: none;
    z-index: 1;
  }
  .hero-frame::before, .hero-frame::after,
  .hero-frame > i:first-child, .hero-frame > i:last-child {
    content: ""; position: absolute;
    width: 28px; height: 28px;
    border: 2px solid var(--gold);
  }
  .hero-frame::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
  .hero-frame::after { top: -2px; right: -2px; border-left: 0; border-bottom: 0; }
  .hero-frame > i:first-child { bottom: -2px; left: -2px; border-right: 0; border-top: 0; font-style: normal; }
  .hero-frame > i:last-child { bottom: -2px; right: -2px; border-left: 0; border-top: 0; font-style: normal; }

  .hero-inner {
    position: relative;
    z-index: 2;
    padding: 100px 0 120px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  @media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; padding: 70px 0 90px; }
  }

  .hero-meta {
    display: flex; flex-wrap: wrap; gap: 12px 0;
    margin-bottom: 28px;
  }
  .chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 12px;
    border: 1px solid var(--gold-deep);
    background: rgba(201,162,74,0.06);
    color: var(--gold);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-right: 8px;
  }
  .chip svg { width: 14px; height: 14px; }

  h1.hero-title {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(52px, 7.6vw, 124px);
    line-height: 0.9;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    margin: 0 0 28px;
  }
  h1.hero-title .l1 { color: var(--white); display: block; }
  h1.hero-title .l2 {
    display: block;
    background: linear-gradient(180deg, #f0d27e 0%, var(--gold-2) 30%, var(--gold) 60%, var(--gold-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    text-shadow: 0 1px 0 rgba(0,0,0,0.4);
  }
  h1.hero-title .l3 { color: var(--white); display: block; }
  h1.hero-title .slash {
    color: var(--gold);
    -webkit-text-fill-color: var(--gold);
  }
  .hero-sub {
    max-width: 520px;
    font-size: 17px;
    color: var(--white-2);
    margin: 0 0 36px;
  }
  .hero-sub strong { color: var(--white); font-weight: 600; }

  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-gold {
    display: inline-flex; align-items: center; gap: 14px;
    padding: 18px 30px;
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 16px;
    color: #0a0a0a;
    background: linear-gradient(180deg, var(--gold-2), var(--gold) 60%, var(--gold-deep));
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 0 0 1px var(--gold-deep), 0 10px 32px rgba(201,162,74,0.22);
  }
  .btn-gold::after { content: "→"; font-family: var(--mono); font-weight: 700; }
  .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px var(--gold-2), 0 16px 40px rgba(201,162,74,0.35); }
  .btn-gold::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
    transform: translateX(-110%);
    transition: transform 0.6s ease;
  }
  .btn-gold:hover::before { transform: translateX(110%); }

  .btn-outline {
    display: inline-flex; align-items: center; gap: 14px;
    padding: 18px 30px;
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 16px;
    color: var(--white);
    border: 1px solid var(--line-2);
    background: rgba(255,255,255,0.02);
    border-radius: 2px;
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  .btn-outline::after { content: "↗"; font-family: var(--mono); color: var(--gold); }
  .btn-outline:hover { border-color: var(--gold); background: rgba(201,162,74,0.08); }

  /* hero right panel — tactical card */
  .hero-card {
    position: relative;
    background: linear-gradient(180deg, rgba(20,20,26,0.94), rgba(8,8,10,0.96));
    border: 1px solid var(--line-2);
    padding: 24px;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,162,74,0.06) inset;
  }
  .hero-card::before {
    content: ""; position: absolute; top: -1px; left: -1px; right: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .hero-card-head {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 14px; margin-bottom: 16px;
    border-bottom: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white-3);
  }
  .hero-card-head .live {
    color: var(--live);
    display: inline-flex; align-items: center; gap: 8px;
  }
  .hero-card-head .live::before {
    content: ""; width: 7px; height: 7px; border-radius: 50%;
    background: var(--live);
    animation: pulse 1.4s ease-in-out infinite;
  }
  .hero-card .ops-photo {
    position: relative;
    aspect-ratio: 16/10;
    background: url("guardia-portrait.jpg") center/cover;
    margin: -8px -8px 16px;
    border: 1px solid var(--line);
    overflow: hidden;
  }
  .hero-card .ops-photo::after {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, transparent 60%, rgba(8,8,10,0.95)),
      repeating-linear-gradient(0deg, rgba(0,0,0,0.18) 0 1px, transparent 1px 3px);
    pointer-events: none;
  }
  .hero-card .ops-photo .scope {
    position: absolute; inset: 0;
    pointer-events: none;
  }
  .hero-card .ops-photo .scope svg { position: absolute; inset: 0; width: 100%; height: 100%; }
  .hero-card .ops-photo .tag {
    position: absolute; bottom: 10px; left: 12px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    z-index: 1;
  }
  .hero-card .ops-photo .id {
    position: absolute; top: 10px; right: 12px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white-3);
    background: rgba(0,0,0,0.6);
    padding: 4px 8px;
    border: 1px solid var(--line);
  }
  .hero-card-rows {
    display: grid; gap: 0;
    font-family: var(--mono);
    font-size: 12px;
  }
  .hero-card-rows .r {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 14px; align-items: center;
    padding: 10px 0;
    border-top: 1px dashed var(--line);
    color: var(--white-2);
  }
  .hero-card-rows .r:first-child { border-top: 0; }
  .hero-card-rows .id { color: var(--gold); font-weight: 700; }
  .hero-card-rows .st { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
  .hero-card-rows .st.ok { color: var(--live); }
  .hero-card-rows .st.warn { color: var(--gold-2); }

  /* values strip */
  .values {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-1);
    overflow: hidden;
  }
  .values-track {
    display: flex;
    gap: 80px;
    padding: 22px 0;
    white-space: nowrap;
    animation: marquee 38s linear infinite;
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 22px;
    color: var(--white-2);
  }
  .values-track span { display: inline-flex; align-items: center; gap: 18px; }
  .values-track .sep {
    width: 6px; height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
  }
  @keyframes marquee { to { transform: translateX(-50%); } }

  /* ===== STATS ===== */
  .stats {
    background: var(--bg-1);
    border-bottom: 1px solid var(--line);
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  @media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
  .stat {
    padding: 44px 28px;
    border-left: 1px solid var(--line);
    position: relative;
  }
  .stat:first-child { border-left: 0; }
  .stat .n {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(60px, 7vw, 96px);
    line-height: 0.9;
    background: linear-gradient(180deg, var(--gold-2), var(--gold) 50%, var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0;
  }
  .stat .n .unit { font-size: 0.4em; color: var(--white); -webkit-text-fill-color: var(--white); margin-left: 4px; }
  .stat .l {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--white-3);
    margin-top: 10px;
  }

  /* ===== SECTION HEAD ===== */
  section { padding: 110px 0; position: relative; }
  .sec-head {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px; align-items: end;
    margin-bottom: 60px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
  }
  @media (max-width: 760px) { .sec-head { grid-template-columns: 1fr; gap: 18px; } }
  .sec-head h2 {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(48px, 6.4vw, 96px);
    line-height: 0.9;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.01em;
  }
  .sec-head h2 .accent {
    background: linear-gradient(180deg, var(--gold-2), var(--gold) 60%, var(--gold-deep));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .sec-head p {
    color: var(--white-3);
    font-size: 16px;
    max-width: 520px;
    margin: 0;
  }
  .sec-head .index {
    display: flex; align-items: baseline; gap: 10px;
    color: var(--gold);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 22px;
  }
  .sec-head .index::before { content: ""; width: 36px; height: 1px; background: var(--gold); display: block; }

  /* ===== SERVICES ===== */
  .svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  @media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }
  .svc {
    position: relative;
    background: var(--bg-1);
    overflow: hidden;
    display: block;
    aspect-ratio: 4/5;
    isolation: isolate;
    transition: background 0.4s ease;
  }
  .svc .ph {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter 0.5s ease;
    transform: scale(1.04);
    filter: brightness(0.7) contrast(1.05) saturate(0.9);
  }
  .svc:hover .ph { transform: scale(1.12); filter: brightness(0.8) contrast(1.1); }
  .svc .veil {
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(8,8,10,0.0) 0%, rgba(8,8,10,0.0) 35%, rgba(8,8,10,0.88) 80%, var(--bg) 100%);
    transition: opacity 0.5s ease;
  }
  .svc .badge {
    position: absolute; top: 18px; left: 18px;
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(8,8,10,0.7);
    padding: 6px 10px;
    border: 1px solid var(--gold-deep);
    z-index: 2;
  }
  .svc .body {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 28px;
    z-index: 2;
  }
  .svc h3 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(28px, 2.6vw, 38px);
    line-height: 0.95;
    text-transform: uppercase;
    margin: 0 0 10px;
    letter-spacing: 0.01em;
  }
  .svc p {
    color: var(--white-2);
    font-size: 14px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.5s ease;
    margin: 0;
  }
  .svc:hover p { max-height: 120px; opacity: 1; margin: 0 0 16px; }
  .svc .arrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    transition: gap 0.3s ease;
  }
  .svc:hover .arrow { gap: 18px; }
  .svc::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
    z-index: 2;
  }
  .svc:hover::after { transform: scaleX(1); }

  /* ===== DIFFERENCE — split with image ===== */
  .diff {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: start;
  }
  @media (max-width: 980px) { .diff { grid-template-columns: 1fr; gap: 40px; } }
  .diff-photo {
    position: sticky;
    top: 120px;
    aspect-ratio: 3/4;
    background: url("guardia-portrait.jpg") center/cover;
    border: 1px solid var(--line);
    overflow: hidden;
  }
  .diff-photo::after {
    content: "";
    position: absolute; inset: 0;
    box-shadow: inset 0 -160px 200px rgba(8,8,10,0.95), inset 0 80px 120px rgba(8,8,10,0.6);
    pointer-events: none;
  }
  .diff-photo-wrap {
    position: relative;
  }
  .diff-photo-tag {
    position: absolute; bottom: 18px; left: 18px; right: 18px;
    z-index: 2;
    display: flex; justify-content: space-between; align-items: end;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white-2);
  }
  .diff-photo-tag .l {
    font-family: var(--display);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.04em;
    color: var(--gold);
    line-height: 1;
  }
  .diff-list {
    display: grid; gap: 0;
  }
  .diff-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    transition: padding 0.3s ease;
  }
  .diff-item:hover { padding-left: 12px; }
  .diff-item .idx {
    font-family: var(--display);
    font-weight: 800;
    font-size: 44px;
    line-height: 1;
    background: linear-gradient(180deg, var(--gold-2), var(--gold) 50%, var(--gold-deep));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .diff-item h4 {
    font-family: var(--display);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 0.04em;
    margin: 0 0 8px;
  }
  .diff-item p {
    color: var(--white-3);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
  }

  /* ===== BIG QUOTE ===== */
  .quote-section {
    background: var(--bg-1);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 110px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .quote-section::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,162,74,0.08), transparent 70%);
    pointer-events: none;
  }
  .quote-section .q {
    font-family: var(--display);
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(40px, 5vw, 76px);
    line-height: 0.98;
    max-width: 1100px;
    margin: 0 auto;
    letter-spacing: 0.01em;
  }
  .quote-section .q .accent {
    background: linear-gradient(180deg, var(--gold-2), var(--gold) 60%, var(--gold-deep));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .quote-section .attr {
    margin-top: 36px;
    color: var(--gold);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }

  /* ===== CLIENTS ===== */
  .clients-bar {
    background: var(--bg-1);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    padding: 36px 0;
  }
  .clients-track {
    display: flex; gap: 90px; align-items: center;
    white-space: nowrap;
    animation: marquee 36s linear infinite;
  }
  .client {
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 30px;
    color: var(--white-3);
    opacity: 0.7;
    transition: opacity 0.3s ease, color 0.3s ease;
    display: inline-flex; flex-direction: column; line-height: 1;
  }
  .client:hover { color: var(--gold); opacity: 1; }
  .client small {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--mute);
    margin-top: 6px;
  }

  /* ===== CTA BIG ===== */
  .cta-big {
    padding: 140px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
    background:
      linear-gradient(180deg, var(--bg) 0%, var(--bg-1) 100%);
    border-bottom: 1px solid var(--line);
  }
  .cta-big::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,162,74,0.12), transparent 65%);
    pointer-events: none;
  }
  .cta-big h2 {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(56px, 8vw, 144px);
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin: 0 0 24px;
  }
  .cta-big h2 .accent {
    background: linear-gradient(180deg, var(--gold-2), var(--gold) 60%, var(--gold-deep));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .cta-big p { color: var(--white-3); margin: 0 0 36px; font-size: 18px; }
  .cta-big .actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

  /* ===== CONTACT ===== */
  .contact {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  @media (max-width: 880px) { .contact { grid-template-columns: 1fr; } }
  .contact > div { background: var(--bg-1); padding: 44px; }
  .contact h3 {
    font-family: var(--display);
    font-weight: 800;
    font-size: 44px;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 28px;
  }
  .contact-rows { display: grid; gap: 0; border-top: 1px solid var(--line); }
  .contact-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
  }
  .contact-row .k {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
  }
  .contact-row .v { font-size: 15px; color: var(--white-2); }
  .contact-row .v a:hover { color: var(--gold); }

  form.q { display: grid; gap: 20px; }
  form.q label { display: grid; gap: 6px; }
  form.q .lab {
    font-family: var(--mono); font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.18em;
    color: var(--gold);
  }
  form.q input, form.q select, form.q textarea {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line-2);
    color: var(--white);
    padding: 12px 0;
    font: inherit;
    font-size: 16px;
    transition: border-color 0.2s ease;
  }
  form.q input:focus, form.q select:focus, form.q textarea:focus {
    outline: none; border-bottom-color: var(--gold);
  }
  form.q select option { background: var(--bg-2); }
  form.q .submit {
    margin-top: 12px;
    font-family: var(--display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 15px;
    color: #0a0a0a;
    background: linear-gradient(180deg, var(--gold-2), var(--gold) 60%, var(--gold-deep));
    padding: 18px 24px;
    border-radius: 2px;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer;
    box-shadow: 0 0 0 1px var(--gold-deep), 0 10px 28px rgba(201,162,74,0.2);
    transition: transform 0.2s ease;
  }
  form.q .submit:hover { transform: translateY(-1px); }

  /* ===== FOOTER ===== */
  footer {
    border-top: 1px solid var(--line);
    padding: 64px 0 28px;
    color: var(--white-3);
    background: var(--bg-1);
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  @media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
  .foot-grid h5 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin: 0 0 18px;
  }
  .foot-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; }
  .foot-grid a:hover { color: var(--gold); }
  .foot-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--mute);
    flex-wrap: wrap; gap: 12px;
  }

  /* WA float */
  .wa-float {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 90;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #1ab560;
    display: grid; place-items: center;
    color: white;
    box-shadow: 0 14px 36px rgba(26,181,96,0.35), 0 0 0 4px rgba(26,181,96,0.18);
    transition: transform 0.2s ease;
  }
  .wa-float:hover { transform: scale(1.06); }
  .wa-float svg { width: 30px; height: 30px; }
  .wa-float::before {
    content: ""; position: absolute; inset: -4px; border-radius: 50%;
    border: 2px solid #1ab560;
    animation: waPulse 2.2s ease-out infinite;
    opacity: 0;
  }
  @keyframes waPulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
  }

  /* reveal on scroll */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }





/* ========================================================
   ===== DETAIL PAGE — service landings (v2) ==============
   ======================================================== */

.detail-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding: 140px 0 60px;
  border-bottom: 1px solid var(--line);
}
.detail-hero .bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center right;
  filter: brightness(0.55) contrast(1.05) saturate(0.85);
  z-index: -2;
}
.detail-hero .ov {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, var(--bg) 25%, rgba(8,8,10,0.85) 50%, rgba(8,8,10,0.45) 80%, rgba(8,8,10,0.7) 100%);
  z-index: -1;
}
.detail-hero .gold-bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-deep) 0%, var(--gold) 30%, var(--gold-2) 50%, var(--gold) 70%, var(--gold-deep) 100%);
}
.crumb {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white-3);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.crumb a { color: var(--white-3); transition: color 0.2s ease; }
.crumb a:hover { color: var(--gold); }
.crumb .sep { color: var(--mute); }
.crumb .here { color: var(--white); }
.detail-hero .eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.detail-hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
  max-width: 1000px;
}
.detail-hero h1 .accent {
  display: block;
  background: linear-gradient(180deg, #f0d27e 0%, var(--gold-2) 30%, var(--gold) 60%, var(--gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* "El servicio" 2-col block */
.detail-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media (max-width: 980px) { .detail-split { grid-template-columns: 1fr; gap: 50px; } }
.detail-split .col-lab {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.detail-split h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 24px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.detail-split .body p {
  color: var(--white-2);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 560px;
}
.detail-split .body p:last-child { margin-bottom: 0; }

/* Checklist with circle + check */
.check-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 18px;
}
.check-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  align-items: center;
  color: var(--white-2);
  font-size: 16px;
  line-height: 1.4;
}
.check-list .dot {
  width: 30px; height: 30px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 12px;
}

/* Pillar / "exámenes" cards — circular icon + title + body */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
@media (max-width: 880px) { .pillars { grid-template-columns: 1fr; gap: 40px; } }
.pillar {
  text-align: center;
  padding: 0 12px;
}
.pillar .icon {
  width: 88px; height: 88px;
  border: 1.5px solid var(--gold-deep);
  border-radius: 50%;
  margin: 0 auto 28px;
  display: grid; place-items: center;
  color: var(--gold);
  background: radial-gradient(circle at 30% 30%, rgba(201,162,74,0.18), transparent 70%), #0a0a0c;
  position: relative;
}
.pillar .icon svg { width: 38px; height: 38px; stroke-width: 1.5; }
.pillar h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
}
.pillar p {
  color: var(--white-3);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
  max-width: 320px;
  margin-left: auto; margin-right: auto;
}

/* Modalidades grid 2x3 / 3x2 */
.modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 880px) { .modal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .modal-grid { grid-template-columns: 1fr; } }
.modal-card {
  background: var(--bg-1);
  padding: 32px 28px;
  transition: background 0.3s ease;
}
.modal-card:hover { background: var(--bg-2); }
.modal-card .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 14px;
}
.modal-card h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
}
.modal-card p {
  color: var(--white-3);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Process timeline */
.proc {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .proc { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .proc { grid-template-columns: 1fr; } }
.step {
  padding: 36px 24px;
  border-left: 1px solid var(--line);
}
.step:first-child { border-left: 0; }
@media (max-width: 900px) {
  .step { border-left: 0; border-top: 1px solid var(--line); }
  .step:first-child, .step:nth-child(2) { border-top: 0; }
}
.step .num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  background: linear-gradient(180deg, var(--gold-2), var(--gold) 60%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.step h5 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.step p { color: var(--white-3); font-size: 13.5px; line-height: 1.6; margin: 0; }

/* FAQ */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold); }
.faq summary .plus {
  font-family: var(--mono);
  font-size: 24px;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq .a {
  padding: 0 0 26px;
  color: var(--white-3);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 880px;
}

/* Related cards */
.related-h {
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 24px;
  border-top: 1px solid var(--line);
  padding-top: 36px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 880px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .related-grid { grid-template-columns: 1fr; } }
.rel-card {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--line);
  padding: 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.rel-card:hover { border-color: var(--gold-deep); transform: translateY(-2px); }
.rel-card .n {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.rel-card h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
}
.rel-card .ar {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ====== Section headings reused on subpages ====== */
.sub-head {
  text-align: center;
  margin-bottom: 60px;
}
.sub-head .eb {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-block;
}
.sub-head h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
}
.sub-head h2 .accent {
  background: linear-gradient(180deg, var(--gold-2), var(--gold) 60%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Nosotros — mission/vision/values */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 760px) { .mv-grid { grid-template-columns: 1fr; } }
.mv-card {
  background: var(--bg-1);
  padding: 48px 40px;
}
.mv-card .lab {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.mv-card h3 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 44px;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 22px;
  letter-spacing: 0.01em;
}
.mv-card p {
  color: var(--white-2);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 60px;
}
@media (max-width: 760px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
.val-card {
  background: var(--bg-1);
  padding: 36px 28px;
  text-align: center;
}
.val-card .icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border: 1.5px solid var(--gold-deep);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold);
}
.val-card .icon svg { width: 22px; height: 22px; }
.val-card h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}
.val-card p {
  color: var(--white-3);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
}

/* Clients page */
.client-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 760px) { .client-logos { grid-template-columns: repeat(2, 1fr); } }
.client-cell {
  background: var(--bg-1);
  padding: 40px 24px;
  display: grid;
  place-items: center;
  min-height: 140px;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
}
.client-cell:hover { background: var(--bg-2); }
.client-cell .name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white-2);
  line-height: 1.05;
}
.client-cell .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 8px;
}

/* Certifications */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 760px) { .cert-grid { grid-template-columns: 1fr; } }
.cert {
  background: var(--bg-1);
  border: 1px solid var(--line);
  padding: 36px;
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
}
.cert .seal {
  width: 64px; height: 64px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold);
  background: radial-gradient(circle at 30% 30%, rgba(201,162,74,0.2), transparent 70%);
}
.cert .seal svg { width: 26px; height: 26px; }
.cert h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 6px;
}
.cert .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.cert p {
  color: var(--white-3);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}
