@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --gold: #FEBF03;
  --gold-deep: #D89E00;
  --navy: #0F2A6B;
  --navy-deep: #091C4D;
  --blue: #2B80F7;
  --blue-deep: #1565D8;
  --royal: #1D2FDD;
  --charcoal: #332F2B;
  --slate: #3E4044;
  --mist: #F2F7F9;
  --paper: #FFFFFF;
  --line: #E2E6E9;
  --ok: #1F8A5B;
  --warn: #C0392B;
  --focus-ring: var(--blue);

  --font-head: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 800;
  --ls-label: 0.08em;

  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 36px;
  --s5: 56px;
  --s6: 88px;
  --wrap-max: 1160px;

  --r-sm: 12px;
  --r: 20px;
  --r-lg: 28px;
  --pill: 999px;
  --shadow-sm: 0 6px 16px -6px rgba(0, 0, 0, 0.30);
  --shadow-card: 0 14px 30px -16px rgba(15, 42, 107, 0.35);
  --shadow-card-hover: 0 20px 40px -22px rgba(15, 42, 107, 0.45);
  --shadow-modal: 0 30px 70px -20px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --dur-fast: 0.18s;
  --dur: 0.25s;
  --dur-slow: 0.35s;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: var(--font-body); color: var(--charcoal); background: var(--paper); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; }
.wrap { max-width: var(--wrap-max); margin: 0 auto; padding: 0 var(--s3); }

.site-head { position: sticky; top: 0; z-index: 40; background: var(--paper); border-bottom: 1px solid var(--line); }
.site-head__inner { display: flex; justify-content: space-between; align-items: center; padding: var(--s2) 0; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 56px; display: block; }
@media (max-width: 560px) { .brand img { height: 46px; } }
.nav { display: flex; gap: var(--s3); align-items: center; }
.nav a { color: var(--charcoal); text-decoration: none; font-weight: 600; font-size: 14px; }
.nav a:hover { color: var(--blue); }
.nav a.active { color: var(--blue); }
@media (max-width: 900px) { .nav a:not(.nav__cta) { display: none; } }

.eg-btn { font-family: var(--font-body); font-weight: var(--fw-bold); font-size: 15px; padding: 12px 26px; border-radius: var(--pill); border: 2px solid transparent; cursor: pointer; transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast); text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px; line-height: 1; }
.eg-btn:active { transform: translateY(1px); }
.eg-btn:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 2px; }
.eg-btn--blue { background: var(--blue); color: #fff; }
.eg-btn--blue:hover { background: var(--blue-deep); }
.eg-btn--gold { background: var(--gold); color: var(--navy-deep); }
.eg-btn--gold:hover { background: var(--gold-deep); }
.eg-btn--navy { background: var(--navy); color: #fff; }
.eg-btn--navy:hover { background: var(--navy-deep); }
.eg-btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.eg-btn--outline:hover { background: var(--navy); color: #fff; }
.eg-btn--light { background: #fff; color: var(--navy); border-color: var(--line); }
.eg-btn--light:hover { border-color: var(--navy); }
.eg-btn--sm { font-size: 13px; padding: 8px 18px; }

.hero { background: var(--charcoal); color: #fff; position: relative; overflow: hidden; padding: var(--s6) 0 var(--s5); }
.hero--pad { padding: var(--s5) 0; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; animation: heroZoom 26s ease-in-out infinite alternate; }
video.hero__bg { width: 100%; height: 100%; object-fit: cover; object-position: center; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.13); } }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: radial-gradient(110% 120% at 88% 45%, rgba(43,128,247,.40) 0%, rgba(51,47,43,0) 55%), linear-gradient(100deg, rgba(26,22,19,.90) 32%, rgba(18,38,96,.66) 100%); }
.hero .wrap { position: relative; z-index: 2; }
.hero h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(32px,5vw,56px); line-height: 1.02; letter-spacing: -.04em; margin: var(--s3) 0 0; }
.hero p { margin-top: var(--s3); max-width: 46ch; color: #d9dde5; font-size: 18px; }
.hero .btn-row { margin-top: var(--s4); display: flex; gap: var(--s2); flex-wrap: wrap; }
.hero__sub { font-size: clamp(28px,4vw,44px); }
.gold-t { color: var(--gold); }

.hero--home { min-height: 90vh; display: grid; align-items: center; padding: calc(var(--s6) + var(--s2)) 0 var(--s6); }
.hero--home::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 42%; z-index: 1; background: linear-gradient(180deg, rgba(254,191,3,0) 0%, rgba(254,191,3,.12) 100%); pointer-events: none; }
.hero--home .hero__ghost { position: absolute; z-index: 1; left: 50%; top: 44%; transform: translate(-50%,-50%); font-family: var(--font-head); font-weight: 800; font-size: min(30vw, 460px); line-height: 1; letter-spacing: -.06em; color: rgba(255,255,255,.045); white-space: nowrap; pointer-events: none; user-select: none; }
.hero--home .hero__title { font-size: clamp(40px, 6.4vw, 76px); margin-top: var(--s3); }
.hero--home p { font-size: 19px; max-width: 50ch; }
@media (max-width: 760px) { .hero--home { min-height: 0; } }

.hero__eyebrow { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.hero--contact { min-height: 0; padding: var(--s6) 0 var(--s5); }
.hero--contact .hero__title { margin-top: var(--s2); }

.cine { position: relative; overflow: hidden; min-height: 460px; display: grid; place-items: center; text-align: center; }
.cine__v { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cine__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(15,42,107,.50) 0%, rgba(20,18,16,.80) 100%); }
.cine .wrap { position: relative; z-index: 2; color: #fff; }
.cine h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(24px,3.2vw,34px); letter-spacing: -.02em; color: #fff; margin: 12px auto 0; max-width: 22ch; }
.cine p { color: #d9dde5; margin: var(--s2) auto 0; max-width: 52ch; }

.media-band { position: relative; overflow: hidden; }
.media-band__bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.media-band__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(20,18,16,.92) 30%, rgba(15,30,80,.78) 100%); }
.media-band .wrap { position: relative; z-index: 2; }
.media-band .sec-head h2 { color: #fff; }
.media-band .sec-head .lead { color: rgba(255,255,255,.82); }
.media-band .ind { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); color: #fff; }

.split-media { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); align-items: center; }
.split-media.rev .split-media__media { order: -1; }
@media (max-width: 880px) { .split-media { grid-template-columns: 1fr; gap: var(--s4); } .split-media.rev .split-media__media { order: 0; } }
.media-frame { position: relative; border-radius: var(--r); overflow: hidden; background: var(--mist); box-shadow: var(--shadow-card); }
.media-frame__img { display: block; width: 100%; height: 100%; object-fit: cover; }
.media-frame--43 { aspect-ratio: 4 / 3; }
.media-frame--169 { aspect-ratio: 16 / 9; }
.media-frame--tall { aspect-ratio: 4 / 5; }
.split-media--match { align-items: stretch; }
.split-media--match .split-media__media { position: relative; min-height: 0; }
.split-media--match .media-frame { position: absolute; inset: 0; aspect-ratio: auto; }
@media (max-width: 880px) {
  .split-media--match .split-media__media { position: static; min-height: 0; }
  .split-media--match .media-frame { position: relative; aspect-ratio: 4 / 3; }
}

section.block { padding: var(--s6) 0; }
section.block + section.block { border-top: 1px solid var(--line); }
section.mist { background: var(--mist); }
.sec-head { margin-bottom: var(--s4); }
.sec-head h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(24px,3.4vw,34px); color: var(--navy); letter-spacing: -.01em; line-height: 1.02; margin: 0; }
.sec-head .lead { margin-top: 12px; color: var(--slate); font-size: 16px; max-width: 56ch; }

.svc-head { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s4); margin-bottom: var(--s4); }
.svc-head__lead { color: var(--slate); font-size: 16px; max-width: 40ch; margin: 0; }
@media (max-width: 760px) { .svc-head { flex-direction: column; gap: var(--s2); } }

.svc-acc { border-top: 1px solid var(--line); }
.svc-row { border-bottom: 1px solid var(--line); }
.svc-row__head { width: 100%; display: flex; align-items: center; gap: var(--s3); padding: var(--s3) 0; background: none; border: 0; cursor: pointer; text-align: left; font: inherit; transition: padding-left var(--dur); }
.svc-row__head:hover { padding-left: 10px; }
.svc-row__no { font-family: var(--font-head); font-weight: 800; font-size: 14px; color: var(--gold-deep); letter-spacing: .04em; width: 34px; flex: none; }
.svc-row__main { flex: 1; display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.svc-row__title { font-family: var(--font-head); font-weight: 700; font-size: clamp(19px,2.3vw,26px); color: var(--navy); letter-spacing: -.015em; line-height: 1.05; transition: color var(--dur); }
.svc-row.is-open .svc-row__title { color: var(--blue); }
.svc-row__tag { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--slate); border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; }
.svc-row__plus { width: 36px; height: 36px; flex: none; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--navy); font-size: 22px; line-height: 1; transition: transform var(--dur), background var(--dur), color var(--dur), border-color var(--dur); }
.svc-row__head:hover .svc-row__plus { border-color: var(--navy); }
.svc-row.is-open .svc-row__plus { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); transform: rotate(45deg); }
.svc-row__panel { max-height: 0; overflow: hidden; transition: max-height var(--dur) ease; }
.svc-row.is-open .svc-row__panel { max-height: 820px; }
.svc-row__inner { display: grid; grid-template-columns: 1fr 300px; gap: var(--s4); align-items: center; padding: 4px 0 var(--s4) calc(34px + var(--s3)); }
.svc-row__text p { color: var(--slate); font-size: 16px; line-height: 1.65; margin: 0; max-width: 56ch; }
.svc-row__more { margin-top: var(--s3); display: inline-flex; align-items: center; gap: 7px; color: var(--blue); font-weight: 700; font-size: 14px; text-decoration: none; }
.svc-row__more span { transition: transform var(--dur); }
.svc-row__more:hover span { transform: translateX(4px); }
.svc-row__media { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4/3; }
.svc-row__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-row__media-icon { position: absolute; top: 12px; left: 12px; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.94); display: grid; place-items: center; color: var(--blue); font-size: 17px; font-weight: 800; box-shadow: var(--shadow-sm); }
.svc-row__media--t1::before, .svc-row__media--t2::before, .svc-row__media--t3::before, .svc-row__media--t4::before { content: ""; position: absolute; inset: 0; z-index: 1; mix-blend-mode: multiply; opacity: .28; }
.svc-row__media--t1::before { background: linear-gradient(135deg,#ffd65c,#FEBF03); }
.svc-row__media--t2::before { background: linear-gradient(135deg,#6aa6ff,#2B80F7); }
.svc-row__media--t3::before { background: linear-gradient(135deg,#5b8cff,#0f2a6b); }
.svc-row__media--t4::before { background: linear-gradient(135deg,#8ad8ff,#1d2fdd); }
@media (max-width: 760px) { .svc-row__inner { grid-template-columns: 1fr; padding-left: 0; gap: var(--s3); } .svc-row__media { order: -1; aspect-ratio: 16/9; } }

.split { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--s3); align-items: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.latam .split { grid-template-columns: 1fr 1fr; gap: var(--s4); align-items: stretch; }
@media (max-width: 860px) { .latam .split { grid-template-columns: 1fr; } }
.latam .info { display: flex; flex-direction: column; }
.latam .info h4 { font-size: 24px; letter-spacing: -.01em; text-transform: none; margin: 0 0 var(--s2); }
.latam .info .line { font-size: 16px; line-height: 1.65; }
.latam .info .eg-btn { margin-top: auto; align-self: center; }

.eg-feature { background: var(--royal); color: #fff; border-radius: var(--r); padding: var(--s5) var(--s4); position: relative; overflow: hidden; }
.eg-feature__ghost { position: absolute; font-family: var(--font-head); font-weight: var(--fw-black); font-size: 120px; color: rgba(255,255,255,.08); top: 50%; left: 50%; transform: translate(-50%,-50%); text-transform: uppercase; white-space: nowrap; pointer-events: none; line-height: 1; letter-spacing: -.03em; }
.eg-feature__inner { position: relative; z-index: 1; }
.eg-feature__title { font-family: var(--font-head); font-weight: var(--fw-black); font-size: 28px; line-height: 1.15; letter-spacing: -.02em; max-width: 22ch; margin: 0; }
.eg-feature__text { max-width: 46ch; margin: var(--s2) 0 0; color: #dfe3fb; }

.prose { max-width: 64ch; }
.prose h3 { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 22px; letter-spacing: -.01em; margin: var(--s4) 0 var(--s1); }
.prose p { color: var(--slate); margin: 0 0 var(--s2); }

.legal { max-width: 760px; }
.legal h3:first-child { margin-top: 0; }
.legal h4 { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 16px; letter-spacing: -.01em; margin: var(--s3) 0 6px; }
.legal p { line-height: 1.7; }
.legal a { color: var(--blue); text-decoration: none; }
.legal a:hover { text-decoration: underline; }
.legal__eff { margin-top: var(--s4); padding-top: var(--s3); border-top: 1px solid var(--line); font-size: 14px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--s2); }
.chip { font-size: 13px; font-weight: 600; color: var(--slate); background: var(--mist); border: 1px solid var(--line); padding: 6px 14px; border-radius: var(--pill); }
section.mist .chip { background: #fff; border-color: var(--line); color: var(--navy); box-shadow: var(--shadow-sm); }

.svc { border-top: 3px solid var(--gold); padding-top: var(--s2); }
.svc h3 { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 20px; letter-spacing: -.01em; margin: 0 0 10px; }
.svc p { color: var(--slate); font-size: 15px; margin: 0; }
.svc .focus-lbl { font-weight: 700; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--slate); margin-top: var(--s2); }

.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s2); }
@media (max-width: 680px) { .principles { grid-template-columns: 1fr; } }
.principle { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: var(--s3); display: flex; gap: 14px; align-items: flex-start; }
.principle .no { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--gold-deep); line-height: 1; }
.principle .tx { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--navy); }

.how__label { font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--slate); margin: 0 0 var(--s2); padding-bottom: var(--s2); border-bottom: 1px solid var(--line); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s2); grid-auto-rows: 1fr; }
@media (max-width: 880px) { .how-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .how-grid { grid-template-columns: 1fr; } }
.how-step { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: var(--s3); display: flex; gap: 14px; align-items: center; }
.how-step__no { font-family: var(--font-head); font-weight: 800; font-size: 14px; color: var(--gold-deep); line-height: 1.35; flex: none; width: 22px; }
.how-step__tx { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--navy); line-height: 1.4; }
.how__foot { margin-top: var(--s4); }
.how__foot p { color: var(--slate); font-size: 16px; line-height: 1.65; max-width: 70ch; margin: 0 0 var(--s3); }

.industries { display: flex; flex-wrap: wrap; gap: 10px; }
.industries .ind { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--navy); background: #fff; border: 1px solid var(--line); padding: 10px 18px; border-radius: var(--pill); }

.success { display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--s4); }
.success__intro h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(24px,3.4vw,34px); color: var(--navy); letter-spacing: -.01em; line-height: 1.02; margin: 0; }
.award-card { position: relative; display: block; width: 100%; max-width: 460px; text-align: left; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: var(--s4); padding-left: calc(var(--s4) + 4px); text-decoration: none; box-shadow: var(--shadow-card); transition: box-shadow var(--dur) var(--ease); }
.award-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--gold); }
.award-card:hover { box-shadow: var(--shadow-card-hover); }
.award-card:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.award-card__top { display: flex; align-items: center; justify-content: space-between; gap: var(--s3); }
.award-card__top img { width: 150px; height: auto; display: block; }
.award-card__year { flex: none; font-family: var(--font-head); font-weight: 800; font-size: 14px; color: var(--navy-deep); background: var(--gold); border-radius: var(--pill); padding: 5px 13px; }
.award-card__body { margin-top: var(--s3); padding-top: var(--s3); border-top: 1px solid var(--line); }
.award-card__ttl { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 20px; letter-spacing: -.01em; }
.award-card__sub { color: var(--slate); font-size: 14px; margin-top: 4px; }
.award-card__link { display: inline-flex; align-items: center; gap: 7px; margin-top: var(--s3); color: var(--blue); font-weight: 700; font-size: 14px; }
.award-card__link span { transition: transform var(--dur) var(--ease); }
.award-card:hover .award-card__link span { transform: translateX(4px); }

.pcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: var(--s4); }
.pcard + .pcard { margin-top: var(--s3); }
.pcard .ptag { font-weight: 700; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); }
.pcard h3 { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 22px; letter-spacing: -.01em; margin: 8px 0 0; }
.pcard .pmeta { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s2); }
.pcard .pmeta .k { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--slate); font-weight: 700; }
.pcard .pmeta .v { font-size: 14px; color: var(--charcoal); margin-top: 2px; }
.pcard .reveal { display: none; }
.pcard.is-open .reveal { display: block; }
.pcard .reveal .inner { padding-top: var(--s3); color: var(--slate); font-size: 15px; animation: eg-reveal-in var(--dur-slow) var(--ease); }
@keyframes eg-reveal-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.pcard .reveal .inner p { margin: 0 0 var(--s2); }
.card-more { color: var(--blue); font-weight: 700; font-size: 14px; text-decoration: none; }

.proj-ex { display: grid; grid-template-columns: 2fr 3fr; gap: var(--s5); align-items: stretch; }
@media (max-width: 900px) { .proj-ex { grid-template-columns: 1fr; gap: var(--s4); } }
.proj-ex__media { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-card); min-height: 360px; }
.proj-ex__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .proj-ex__media { min-height: 0; aspect-ratio: 16 / 9; } }
.proj-ex__cards { display: flex; flex-direction: column; gap: var(--s2); }
.ex-card { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: var(--s3); }
.ex-card__icon { flex: none; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: var(--mist); color: var(--blue); font-size: 18px; font-weight: var(--fw-black); }
.ex-card__body h3 { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--navy); letter-spacing: -.01em; margin: 0 0 5px; }
.ex-card__body p { color: var(--slate); font-size: 14px; line-height: 1.55; margin: 0; }
.ex-note { color: var(--slate); font-size: 13px; margin: var(--s3) 0 0; }

.info { background: var(--charcoal); color: #fff; border-radius: var(--r); padding: var(--s4); }
.info h4 { font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); margin: 0 0 6px; }
.info .line { font-size: 15px; color: #e6e9ef; margin-bottom: var(--s2); }
.info a { color: #fff; text-decoration: none; }
.info a:hover { color: var(--gold); }

.contact-quick { margin-top: var(--s4); display: flex; gap: var(--s2); flex-wrap: wrap; }
.cq { display: flex; flex-direction: column; gap: 4px; min-width: 190px; padding: 14px 18px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-sm); text-decoration: none; transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease); }
a.cq:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.32); }
.cq__k { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.62); font-weight: 700; }
.cq__v { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: #fff; }

.contact-layout { display: grid; grid-template-columns: 1.25fr .85fr; gap: var(--s5); align-items: stretch; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: var(--s4); align-items: start; } }
.contact-form-card { background: radial-gradient(125% 120% at 92% 8%, rgba(43,128,247,.34), rgba(0,0,0,0) 55%), var(--navy-deep); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r); padding: var(--s5); box-shadow: var(--shadow-card); }
@media (max-width: 560px) { .contact-form-card { padding: var(--s4); } }
.contact-form-card__title { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: clamp(22px,2.4vw,26px); letter-spacing: -.01em; margin: 0; }
.contact-form-card__sub { color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.55; margin: 8px 0 var(--s4); max-width: 52ch; }
.contact-form-card .eg-field__label, .contact-form-card .eg-select__label { color: rgba(255,255,255,.72); }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }
.contact-form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .contact-form-grid { grid-template-columns: 1fr; } }
.contact-fineprint { color: rgba(255,255,255,.6); font-size: 13px; margin: var(--s3) 0 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: var(--s2) 0 0; font-size: 14px; font-weight: 600; line-height: 1.5; }
.form-status--ok { color: #7ee0b0; }
.form-status--err { color: #ff9c8f; }

.contact-side { display: flex; flex-direction: column; gap: var(--s3); justify-content: space-between; }
@media (max-width: 900px) { .contact-side { justify-content: flex-start; } }
.contact-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: var(--s3) var(--s4); }
.contact-panel h3 { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 16px; letter-spacing: -.01em; margin: 0 0 10px; }
.contact-panel__lead { color: var(--slate); font-size: 13px; margin: 0 0 10px; }
.check { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.check li { position: relative; padding-left: 26px; color: var(--slate); font-size: 13.5px; line-height: 1.45; }
.check li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--gold-deep); font-weight: 800; }
.contact-reassure { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: var(--s3) var(--s4); }
.contact-reassure__k { font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 8px; }
.contact-reassure p { color: var(--slate); font-size: 13.5px; line-height: 1.55; margin: 0; }

.eg-field { display: flex; flex-direction: column; }
.eg-field__label { font-family: var(--font-body); font-weight: var(--fw-bold); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--slate); margin-bottom: 7px; }
.eg-field__input { width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--charcoal); padding: 12px 18px; border: 1px solid var(--line); border-radius: var(--pill); background: #fff; transition: border-color var(--dur-fast), box-shadow var(--dur-fast); }
.eg-field__input--area { border-radius: var(--r-sm); resize: vertical; }
.eg-field__input::placeholder { color: #9aa1a8; }
.eg-field__input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(43,128,247,.16); }
.eg-select { display: flex; flex-direction: column; }
.eg-select__label { font-family: var(--font-body); font-weight: var(--fw-bold); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--slate); margin-bottom: 7px; }
.eg-select__wrap { position: relative; }
.eg-select__el { width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--charcoal); padding: 12px 44px 12px 18px; border: 1px solid var(--line); border-radius: var(--pill); background: #fff; appearance: none; cursor: pointer; transition: border-color var(--dur-fast), box-shadow var(--dur-fast); }
.eg-select__el:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(43,128,247,.16); }
.eg-select__caret { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--navy); font-size: 12px; }

.foot-band { background: var(--gold); padding: var(--s5) 0; text-align: center; }
.foot-band h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px,4vw,40px); color: var(--navy-deep); letter-spacing: -.01em; margin: 0; }
.foot-band p { color: var(--navy-deep); opacity: .8; margin: 12px auto 0; max-width: 60ch; }
.foot-band .btn-row { margin-top: var(--s3); display: flex; gap: var(--s2); justify-content: center; flex-wrap: wrap; }
footer.site-foot { background: var(--charcoal); color: #fff; padding: var(--s5) 0 var(--s3); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: var(--s4); }
@media (max-width: 680px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-grid img { height: 32px; }
.foot-grid h4 { font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,.55); margin: 0 0 var(--s2); }
.foot-grid a { display: block; color: rgba(255,255,255,.85); text-decoration: none; font-size: 14px; margin-bottom: 10px; }
.foot-grid a:hover { color: var(--gold); }
.foot-about { color: rgba(255,255,255,.6); font-size: 14px; margin-top: 16px; max-width: 34ch; }
.foot-bot { border-top: 1px solid rgba(255,255,255,.15); margin-top: var(--s5); padding-top: var(--s3); font-size: 13px; color: rgba(255,255,255,.6); }
.foot-bot a { color: inherit; text-decoration: underline; }
.foot-bot a:hover { color: var(--gold); }

.cookie { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; padding: var(--s3); animation: cookie-up var(--dur) var(--ease); }
.cookie[hidden] { display: none; }
@keyframes cookie-up { from { transform: translateY(12px); opacity: 0; } to { transform: none; opacity: 1; } }
.cookie__inner { position: relative; max-width: var(--wrap-max); margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-card-hover); padding: var(--s3) var(--s4); display: flex; align-items: center; gap: var(--s4); }
.cookie__text { margin: 0; color: var(--slate); font-size: 14px; line-height: 1.55; flex: 1; max-width: 70ch; }
.cookie__actions { display: flex; gap: var(--s2); flex-shrink: 0; }
.cookie__close { flex-shrink: 0; width: 30px; height: 30px; border: 1px solid var(--line); background: #fff; border-radius: 50%; color: var(--slate); font-size: 18px; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease); }
.cookie__close:hover { color: var(--navy); border-color: var(--navy); }
@media (max-width: 720px) {
  .cookie__inner { flex-direction: column; align-items: stretch; gap: var(--s3); padding-top: var(--s4); }
  .cookie__actions > * { flex: 1; }
  .cookie__close { position: absolute; top: 8px; right: 8px; }
}

@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; } }
