/* ============================ TOKENS ============================ */
:root{
  --slate:#0E1726;        /* primary dark */
  --slate-2:#152238;
  --slate-3:#1E3050;
  --ink:#132033;          /* headings on light */
  --orange:#F2871A;       /* accent / primary CTA */
  --orange-2:#B45D07;     /* readable orange on light bg */
  --orange-soft:#FFA845;
  --blue:#0B5EA2;         /* brand blue */
  --blue-soft:#2E86D6;
  --light:#F4F7FA;        /* light section bg */
  --card:#FFFFFF;
  --muted:#5A6B80;        /* body text on light */
  --muted-d:#A7B7CB;      /* body text on dark */
  --white:#FFFFFF;
  --line:#E3E9F0;         /* light border */
  --line-d:rgba(255,255,255,.14);
  --green:#37C97F;
  --f-head:'Archivo', sans-serif;
  --f-body:'Inter', sans-serif;
  --pad: clamp(20px, 5vw, 86px);
  --maxw: 1240px;
  --ease: cubic-bezier(.22,.61,.36,1);
}
*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{ background:var(--slate); scroll-behavior:smooth; }
body{ font-family:var(--f-body); color:var(--ink); background:var(--slate);
  -webkit-font-smoothing:antialiased; overflow-x:hidden; line-height:1.6; }
a{ color:inherit; text-decoration:none; }
img,svg,canvas{ display:block; }
::selection{ background:var(--orange); color:#20130a; }
html.lenis, html.lenis body{ height:auto; }
.lenis.lenis-smooth{ scroll-behavior:auto !important; }
html.pre-anim [data-reveal]{ opacity:0; }
html.pre-anim #hero .hero-panel > *, html.pre-anim #hero .hero-cta-band{ opacity:0; }

h1,h2,h3,h4{ font-family:var(--f-head); font-weight:800; line-height:1.06; letter-spacing:-0.02em; margin:0; }
.rule{ width:64px; height:4px; background:var(--orange); border-radius:2px; margin:20px 0; }
.rule.center{ margin-left:auto; margin-right:auto; }
.skip{ position:absolute; left:-9999px; }
.skip:focus{ left:var(--pad); top:12px; z-index:200; background:var(--orange); color:#20130a;
  padding:11px 18px; border-radius:8px; font-weight:700; }

/* ============================ BUTTONS ============================ */
.btn{ display:inline-flex; align-items:center; gap:9px; font-family:var(--f-body); font-weight:700; font-size:14px;
  letter-spacing:.01em; padding:14px 24px; border-radius:8px; cursor:pointer; border:1px solid transparent;
  transition:.25s var(--ease); text-align:center; }
.btn-orange{ background:var(--orange); color:#20130a; box-shadow:0 8px 26px rgba(242,135,26,.30); }
.btn-orange:hover{ background:var(--orange-soft); transform:translateY(-2px); }
.btn-blue{ background:var(--blue); color:#fff; box-shadow:0 8px 26px rgba(11,94,162,.34); }
.btn-blue .arw{ color:var(--orange-soft); }
.btn-blue:hover{ background:#0d6cbb; transform:translateY(-2px); }
.btn-ghost{ background:transparent; border-color:var(--line-d); color:#fff; }
.btn-ghost:hover{ border-color:var(--orange); color:var(--orange); }
.btn-outline{ background:transparent; border-color:var(--line); color:var(--ink); }
.btn-outline:hover{ border-color:var(--blue); color:var(--blue); }
.btn:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible{ outline:2px solid var(--orange); outline-offset:3px; }

/* ============================ NAV ============================ */
.nav{ position:fixed; top:0; left:0; right:0; z-index:100; display:flex; align-items:center; justify-content:space-between;
  padding:14px var(--pad); transition:.3s var(--ease);
  background:linear-gradient(to bottom, rgba(10,18,31,.78), rgba(10,18,31,0)); }
.nav.solid{ background:rgba(10,18,31,.94); backdrop-filter:blur(10px); border-bottom:1px solid var(--line-d); padding:10px var(--pad); }
.brand{ display:inline-flex; align-items:center; }
.brand .logo{ height:46px; width:auto; display:block; transition:height .3s var(--ease); }
.nav.solid .brand .logo{ height:40px; }
.nav-links{ display:flex; align-items:center; gap:30px; }
.nav-links a{ color:#cfdae8; font-size:14px; font-weight:500; transition:.2s; }
.nav-links a:hover{ color:#fff; }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-toggle{ display:none; background:none; border:1px solid var(--line-d); border-radius:7px; width:42px; height:38px;
  flex-direction:column; gap:5px; align-items:center; justify-content:center; cursor:pointer; }
.nav-toggle span{ width:18px; height:2px; background:#fff; transition:.3s var(--ease); }
.nav.open .nav-toggle span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2){ opacity:0; }
.nav.open .nav-toggle span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
@media (max-width:1040px){
  .nav-links, .nav-cta .btn{ display:none; } .nav-toggle{ display:flex; }
  .nav.open .nav-links{ display:flex; position:fixed; top:64px; left:var(--pad); right:var(--pad); flex-direction:column;
    align-items:flex-start; gap:0; background:rgba(14,23,38,.99); border:1px solid var(--line-d); border-radius:10px; padding:8px; }
  .nav.open .nav-links a{ padding:14px 16px; width:100%; border-bottom:1px solid var(--line-d); }
  .nav.open .nav-links a:last-child{ border-bottom:0; }
}
.progress{ position:fixed; top:0; left:0; height:3px; width:100%; transform:scaleX(0); transform-origin:left; z-index:120; background:var(--orange); }

/* ============================ HERO ============================ */
.hero{ position:relative; min-height:100vh; display:flex; align-items:center; overflow:hidden; color:#fff;
  padding-block:clamp(112px,14vh,160px) clamp(104px,13vh,140px); }
.hero-photo{ position:absolute; inset:0; background:var(--slate) url('../img/hero-mall.jpg') center/cover no-repeat; }
.hero-overlay{ position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(9,16,28,.95) 0%, rgba(9,16,28,.80) 38%, rgba(9,16,28,.42) 68%, rgba(9,16,28,.62) 100%),
    linear-gradient(to top, rgba(9,16,28,.88) 0%, transparent 44%); }
.hero .wrap{ position:relative; z-index:3; padding-inline:var(--pad); }
.hero-grid{ display:grid; grid-template-columns:minmax(0,1fr) clamp(320px,31vw,410px); gap:clamp(28px,3vw,52px);
  align-items:center; width:100%; }
.hero-panel{ max-width:640px; }
.hero h1{ font-size:clamp(38px,5.6vw,72px); margin:16px 0 0; }
.hero h1 .hl{ color:var(--orange); }
.hero-lead{ font-size:clamp(16px,1.4vw,19px); color:#dbe5f0; max-width:56ch; margin:8px 0 0; }
.hero-cta{ margin-top:32px; display:flex; gap:14px; flex-wrap:wrap; }
.hero-pillars{ margin-top:36px; display:flex; align-items:stretch; gap:16px; flex-wrap:wrap; }
.hero-pillars .p{ display:flex; flex-direction:column; gap:5px; flex:1 1 0; min-width:120px; }
.hero-pillars .p b{ font-family:var(--f-head); font-weight:700; font-size:17px; line-height:1.1; }
.hero-pillars .p span{ font-size:10.5px; line-height:1.5; letter-spacing:.09em; text-transform:uppercase; color:var(--orange); }
.hero-pillars .div{ width:1px; background:var(--line-d); align-self:stretch; flex:none; }
/* hero CTA tile */
.hero-cta-band{ width:100%; }
.hero-cta-band .tile{ display:flex; flex-direction:column; align-items:flex-start; gap:16px;
  background:linear-gradient(160deg, rgba(21,34,56,.95), rgba(12,21,36,.92));
  border:1px solid var(--line-d); border-radius:16px; box-shadow:0 26px 60px rgba(0,0,0,.45);
  -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px); padding:clamp(24px,2.4vw,30px); }
.hero-cta-band .cta-ic{ width:46px; height:46px; flex:none; border-radius:12px; display:grid; place-items:center;
  background:rgba(46,134,214,.16); border:1px solid rgba(46,134,214,.42); color:var(--blue-soft); }
.hero-cta-band .cta-ic svg{ width:22px; height:22px; }
.hero-cta-band h2{ font-size:clamp(23px,2.2vw,30px); line-height:1.14; margin-top:2px; }
.hero-cta-band p{ font-size:clamp(14.5px,1.05vw,16px); line-height:1.55; margin:10px 0 0; color:var(--muted-d); }
.hero-cta-band .btn{ margin-top:4px; }
@media (max-width:860px){
  .hero-grid{ grid-template-columns:1fr; gap:32px; }
  .hero-cta-band{ max-width:480px; }
  .hero-pillars{ gap:18px 22px; }
  .hero-pillars .div{ display:none; }
  .hero-pillars .p{ flex:1 1 42%; min-width:0; }
}
.cue{ position:absolute; bottom:24px; left:50%; transform:translateX(-50%); z-index:3; font-size:11px; letter-spacing:.26em;
  text-transform:uppercase; color:#94a7bd; display:flex; flex-direction:column; align-items:center; gap:8px; }
.cue .ln{ width:1px; height:36px; background:linear-gradient(var(--orange),transparent); position:relative; overflow:hidden; }
.cue .ln::after{ content:""; position:absolute; top:-50%; left:0; width:100%; height:50%; background:var(--orange); animation:drop 1.8s var(--ease) infinite; }
@keyframes drop{ 0%{transform:translateY(-100%)} 60%,100%{transform:translateY(300%)} }
@media (max-width:860px){ .cue{ display:none; } }

/* ============================ SECTIONS ============================ */
.wrap{ width:100%; max-width:var(--maxw); margin:0 auto; }
.sec{ padding:clamp(74px,10vh,132px) var(--pad); position:relative; }
.sec-light{ background:var(--light); color:var(--ink); }
.sec-white{ background:#fff; color:var(--ink); }
.sec-dark{ background:var(--slate); color:#fff; }
.sec-head{ max-width:780px; }
.sec-head.center{ margin:0 auto; text-align:center; }
.kick{ font-family:var(--f-body); font-weight:700; font-size:12px; letter-spacing:.2em; text-transform:uppercase; color:var(--orange); }
.sec-light .kick, .sec-white .kick{ color:var(--orange-2); }
.h2{ font-size:clamp(29px,4.2vw,52px); margin-top:14px; }
.h2 .sub{ display:block; color:var(--muted); font-weight:700; }
.sec-dark .h2 .sub{ color:var(--muted-d); }
.lead{ font-size:clamp(16px,1.3vw,18px); color:var(--muted); margin-top:12px; }
.sec-dark .lead{ color:var(--muted-d); }
.prose{ max-width:72ch; }
.prose p{ font-size:clamp(15.5px,1.25vw,17.5px); line-height:1.75; color:var(--muted); margin:0 0 18px; }
.sec-dark .prose p{ color:var(--muted-d); }
.prose p:last-child{ margin-bottom:0; }

/* ============================ STATS ============================ */
.stats{ display:grid; grid-template-columns:repeat(2,1fr); gap:26px; margin-top:48px; }
.stat{ background:#fff; border:1px solid var(--line); border-radius:16px; padding:30px 30px 26px;
  box-shadow:0 18px 46px rgba(13,33,60,.06); }
.sec-dark .stat{ background:rgba(255,255,255,.04); border-color:var(--line-d); box-shadow:none; }
.stat .n{ font-family:var(--f-head); font-weight:800; font-size:clamp(42px,5.4vw,64px); line-height:1; color:var(--blue); }
.sec-dark .stat .n{ color:#fff; }
.stat .n small{ color:var(--orange); font-size:.55em; }
.stat .k{ margin-top:12px; color:var(--ink); font-family:var(--f-head); font-weight:600; font-size:16.5px; line-height:1.5;
  border-top:2px solid var(--orange); padding-top:14px; max-width:36ch; }
.sec-dark .stat .k{ color:#fff; }
@media (max-width:760px){ .stats{ grid-template-columns:1fr; gap:20px; } }

/* ============================ CARDS ============================ */
.cards{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; margin-top:50px; }
.cards.three{ grid-template-columns:repeat(3,1fr); }
.card{ position:relative; overflow:hidden; background:var(--card); border:1px solid var(--line); border-radius:16px;
  padding:30px 30px 26px; box-shadow:0 18px 50px rgba(13,33,60,.06); transition:.3s var(--ease); }
.card:hover{ transform:translateY(-5px); box-shadow:0 26px 60px rgba(13,33,60,.13); border-color:#cfdbe8; }
.card .ic{ width:50px; height:50px; border-radius:12px; background:#E9F1FA; display:grid; place-items:center; color:var(--blue); }
.card .ic svg{ width:25px; height:25px; }
.card h3{ font-size:21px; margin:18px 0 4px; color:var(--ink); }
.card .csub{ font-size:12px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--orange-2); }
.card ul{ list-style:none; margin:18px 0 0; padding:0; border-top:1px solid var(--line); }
.card li{ display:flex; gap:12px; align-items:flex-start; padding:12px 0; border-bottom:1px solid var(--line);
  font-size:14.5px; color:#3d5065; }
.card li:last-child{ border-bottom:0; }
.card li .chev{ color:var(--orange); font-weight:800; flex:none; line-height:1.5; }
.card li b{ color:var(--ink); font-weight:700; }
.card .wm{ position:absolute; right:-28px; bottom:-28px; width:170px; height:170px; color:#EEF3F9; opacity:.85; pointer-events:none; }
.card .wm svg{ width:100%; height:100%; }
.sec-dark .card{ background:rgba(255,255,255,.04); border-color:var(--line-d); box-shadow:none; }
.sec-dark .card:hover{ background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.24); }
.sec-dark .card h3{ color:#fff; }
.sec-dark .card li{ color:var(--muted-d); border-bottom-color:var(--line-d); }
.sec-dark .card li b{ color:#fff; }
.sec-dark .card ul{ border-top-color:var(--line-d); }
.sec-dark .card .ic{ background:rgba(46,134,214,.16); border:1px solid rgba(46,134,214,.4); color:var(--blue-soft); }
.sec-dark .card .csub{ color:var(--orange); }
.sec-dark .card .wm{ color:rgba(255,255,255,.045); }
@media (max-width:980px){ .cards.three{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:820px){ .cards, .cards.three{ grid-template-columns:1fr; } }
/* narrow cards: drop the decorative watermark so list copy stays crisp */
@media (max-width:640px){ .card .wm{ display:none; } }

/* ============================ PHOTO BANDS ============================ */
.band{ position:relative; display:flex; align-items:center; overflow:hidden; color:#fff;
  padding:clamp(84px,11vh,140px) var(--pad); }
.band-bg{ position:absolute; top:-10%; left:0; width:100%; height:120%; background-size:cover; background-position:center; will-change:transform; }
.band-overlay{ position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(9,16,28,.97) 0%, rgba(9,16,28,.90) 46%, rgba(9,16,28,.84) 100%),
    linear-gradient(to top, rgba(9,16,28,.72) 0%, rgba(9,16,28,.30) 40%, rgba(9,16,28,.55) 100%); }
.band .wrap{ position:relative; z-index:2; }

/* why-us feature rows */
.feat-grid{ display:grid; grid-template-columns:1fr 1.05fr; gap:clamp(44px,5vw,80px); align-items:center; }
.feat{ display:flex; gap:clamp(18px,1.6vw,24px); padding:clamp(20px,2.2vw,30px) 0; border-top:1px solid var(--line-d); }
.feat:first-child{ border-top:0; }
.feat .fi{ width:clamp(46px,3.4vw,56px); height:clamp(46px,3.4vw,56px); flex:none; border-radius:50%;
  background:rgba(242,135,26,.14); border:1px solid rgba(242,135,26,.44); display:grid; place-items:center; color:var(--orange); }
.feat .fi svg{ width:46%; height:46%; }
.feat h4{ font-size:clamp(19px,1.7vw,25px); margin-bottom:8px; }
.feat p{ color:var(--muted-d); font-size:clamp(14.5px,1.15vw,17px); line-height:1.6; margin:0 0 10px; }
.feat ul{ list-style:none; margin:0; padding:0; }
.feat li{ font-size:14.5px; color:var(--muted-d); padding:5px 0 5px 18px; position:relative; }
.feat li::before{ content:""; position:absolute; left:0; top:13px; width:7px; height:7px; border-radius:2px; background:var(--orange); }
.feat li b{ color:#fff; font-weight:700; }
@media (max-width:900px){ .feat-grid{ grid-template-columns:1fr; gap:34px; } }

/* ============================ PROCESS STEPS ============================ */
.steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:52px; counter-reset:step; }
.step{ position:relative; background:rgba(255,255,255,.04); border:1px solid var(--line-d); border-radius:16px;
  padding:32px 28px 26px; transition:.3s var(--ease); }
.step:hover{ background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.24); transform:translateY(-4px); }
.step .num{ font-family:var(--f-head); font-weight:800; font-size:13px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--orange); display:flex; align-items:center; gap:10px; }
.step .num::before{ content:""; width:34px; height:2px; background:var(--orange); border-radius:1px; }
.step h3{ font-size:22px; margin:16px 0 10px; color:#fff; }
.step > p{ color:var(--muted-d); font-size:15px; margin:0 0 18px; }
.step ul{ list-style:none; margin:0; padding:0; border-top:1px solid var(--line-d); }
.step li{ padding:12px 0; border-bottom:1px solid var(--line-d); font-size:14.5px; color:var(--muted-d); }
.step li:last-child{ border-bottom:0; }
.step li b{ color:#fff; font-weight:700; display:block; margin-bottom:2px; }
@media (max-width:940px){ .steps{ grid-template-columns:1fr; } }

/* ============================ FAQ ============================ */
.faq{ margin-top:46px; max-width:900px; }
.faq details{ border:1px solid var(--line); border-radius:12px; background:#fff; margin-bottom:14px; overflow:hidden;
  transition:.25s var(--ease); }
.faq details[open]{ border-color:#cfdbe8; box-shadow:0 14px 40px rgba(13,33,60,.08); }
.faq summary{ list-style:none; cursor:pointer; padding:20px 56px 20px 24px; position:relative;
  font-family:var(--f-head); font-weight:700; font-size:clamp(16px,1.35vw,19px); color:var(--ink); }
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{ content:""; position:absolute; right:24px; top:50%; width:11px; height:11px; margin-top:-6px;
  border-right:2.5px solid var(--orange); border-bottom:2.5px solid var(--orange); transform:rotate(45deg);
  transition:transform .25s var(--ease); }
.faq details[open] summary::after{ transform:rotate(-135deg); margin-top:-2px; }
.faq summary:hover{ color:var(--blue); }
.faq .ans{ padding:0 24px 22px; }
.faq .ans ul{ list-style:none; margin:0; padding:0; border-top:1px solid var(--line); }
.faq .ans li{ display:flex; gap:12px; align-items:flex-start; padding:11px 0; border-bottom:1px solid var(--line);
  font-size:15px; color:#3d5065; }
.faq .ans li:last-child{ border-bottom:0; }
.faq .ans li .chev{ color:var(--orange); font-weight:800; flex:none; }
.faq .ans li b{ color:var(--ink); font-weight:700; }
.faq .ans > p{ font-size:15px; color:var(--muted); margin:14px 0 0; }
.usgbc{ display:flex; align-items:center; gap:18px; margin-top:20px; padding-top:18px; border-top:1px solid var(--line); }
.usgbc img{ width:76px; height:auto; flex:none; }
.usgbc p{ font-size:15px; color:var(--muted); margin:0; font-weight:600; }
@media (max-width:520px){ .usgbc{ gap:14px; } .usgbc img{ width:62px; } }

/* ============================ CTA STRIP ============================ */
.cta-strip{ background:linear-gradient(120deg, var(--blue) 0%, #0a4a80 55%, #093c69 100%); color:#fff; }
.cta-strip .inner{ display:flex; align-items:center; justify-content:space-between; gap:clamp(24px,4vw,56px); flex-wrap:wrap; }
.cta-strip h2{ font-size:clamp(26px,3.2vw,40px); max-width:20ch; }
.cta-strip p{ color:#cfe0f2; margin:12px 0 0; max-width:52ch; font-size:16px; }
.cta-strip .acts{ display:flex; gap:14px; flex-wrap:wrap; }

/* ============================ CONTACT ============================ */
.contact-grid{ display:grid; grid-template-columns:1fr 1.05fr; gap:clamp(40px,5vw,72px); align-items:start; }
.contact-intro .lead{ max-width:46ch; }
.contact-list{ list-style:none; margin:30px 0 0; padding:0; }
.contact-list li{ display:flex; gap:15px; align-items:flex-start; padding:15px 0; border-top:1px solid var(--line-d); }
.contact-list li:first-child{ border-top:0; }
.contact-list .ci{ width:40px; height:40px; flex:none; border-radius:10px; background:rgba(46,134,214,.16);
  border:1px solid rgba(46,134,214,.4); display:grid; place-items:center; color:var(--blue-soft); }
.contact-list .ci svg{ width:18px; height:18px; }
.contact-list .lbl{ font-size:11.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--orange); font-weight:700; }
.contact-list .val{ color:#fff; font-size:15.5px; margin-top:3px; display:block; transition:.2s; }
a.val:hover{ color:var(--orange); }
.form-card{ background:rgba(255,255,255,.045); border:1px solid var(--line-d); border-radius:16px; padding:clamp(24px,3vw,34px); }
.f-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.f-row.three{ grid-template-columns:1fr 1fr 1fr; }
.field{ margin-bottom:16px; }
.field label{ display:block; font-size:12px; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
  color:var(--muted-d); margin-bottom:8px; }
.field label .req{ color:var(--orange); }
.field input, .field textarea, .field select{ width:100%; background:rgba(9,16,28,.62); border:1px solid var(--line-d); color:#fff;
  border-radius:8px; font-family:var(--f-body); font-size:15px; padding:13px 14px; outline:none; transition:.2s; }
.field textarea{ min-height:120px; resize:vertical; }
.field input::placeholder, .field textarea::placeholder{ color:#6d8098; }
.field input:focus, .field textarea:focus, .field select:focus{ border-color:var(--orange); box-shadow:0 0 0 3px rgba(242,135,26,.18); }
.field select{ appearance:none; background-image:linear-gradient(45deg,transparent 50%,var(--orange) 50%),linear-gradient(135deg,var(--orange) 50%,transparent 50%);
  background-position:calc(100% - 20px) calc(1em + 4px),calc(100% - 15px) calc(1em + 4px); background-size:5px 5px,5px 5px; background-repeat:no-repeat; }
.field select option{ background:var(--slate-2); color:#fff; }
.radio-row{ display:flex; gap:22px; flex-wrap:wrap; padding-top:2px; }
.radio-row label{ display:inline-flex; align-items:center; gap:8px; text-transform:none; letter-spacing:0; font-size:14.5px;
  font-weight:500; color:#dbe5f0; margin:0; cursor:pointer; }
.radio-row input{ width:auto; accent-color:var(--orange); }
.form-card .btn-orange{ width:100%; justify-content:center; margin-top:6px; }
.f-note{ font-size:12px; color:#8697aa; margin:12px 0 0; }
.form-ok{ display:none; font-size:13px; color:var(--green); border:1px solid rgba(55,201,127,.4); border-radius:8px; padding:12px 14px; margin-top:16px; }
.form-err{ display:none; font-size:13px; color:#ff9b9b; border:1px solid rgba(255,107,107,.4); border-radius:8px; padding:12px 14px; margin-top:16px; }
.form-err a{ color:var(--orange); }
.hp{ position:absolute !important; left:-9999px !important; width:1px; height:1px; opacity:0; pointer-events:none; }
.fieldset-h{ font-family:var(--f-head); font-weight:800; font-size:13px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--orange); margin:0 0 18px; padding:0 0 12px; border-bottom:1px solid var(--line-d);
  display:block; width:100%; float:left; }
legend.fieldset-h + *{ clear:both; }
fieldset{ border:0; margin:0 0 30px; padding:0; }
fieldset:last-of-type{ margin-bottom:20px; }
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; gap:32px; } }
@media (max-width:620px){ .f-row, .f-row.three{ grid-template-columns:1fr; gap:0; } }

/* ============================ SIGNUP PAGE ============================ */
.page-head{ padding-top:clamp(128px,17vh,190px); }
.signup-wrap{ max-width:960px; margin:0 auto; }

/* ============================ FOOTER ============================ */
.site-footer{ background:#0A121F; color:#9fb1c6; border-top:1px solid var(--line-d); padding:clamp(52px,7vw,84px) var(--pad) 0; }
.foot-grid{ max-width:var(--maxw); margin:0 auto; display:grid; grid-template-columns:1.4fr 1fr 1.4fr;
  gap:clamp(34px,5vw,72px); align-items:start; }
.foot-h{ font-family:var(--f-body); font-weight:700; font-size:12px; letter-spacing:.18em; text-transform:uppercase;
  color:var(--orange); margin:0 0 18px; }
.foot-logo{ height:52px; width:auto; display:block; margin-bottom:22px; }
.foot-brand-col address{ font-style:normal; color:#c4d2e2; font-size:15px; line-height:1.75; }
.foot-brand-col .foot-contact{ display:block; color:#c4d2e2; font-size:15px; margin-top:12px; transition:.2s; width:fit-content; }
.foot-brand-col .foot-contact:hover{ color:var(--orange); }
.foot-links{ display:flex; flex-direction:column; gap:14px; }
.foot-links a{ color:#c4d2e2; font-size:15px; font-weight:500; width:fit-content; transition:.2s; }
.foot-links a:hover{ color:var(--orange); }
.foot-news h4{ font-family:var(--f-head); font-weight:800; font-size:19px; color:#fff; margin:0; }
.foot-news p{ color:#9fb1c6; font-size:15px; line-height:1.6; margin:10px 0 20px; max-width:38ch; }
.foot-news label{ display:block; font-size:13px; font-weight:600; color:#c4d2e2; margin-bottom:10px; }
.foot-news label .req{ color:var(--orange); }
.news-row{ display:flex; flex-wrap:wrap; gap:12px; align-items:center; }
.foot-news input{ flex:1 1 220px; min-width:0; background:#fff; border:1px solid transparent; color:#0a1424; border-radius:8px;
  font-family:var(--f-body); font-size:15px; padding:14px 15px; outline:none; transition:.2s; }
.foot-news input::placeholder{ color:#8a9bb0; }
.foot-news input:focus{ box-shadow:0 0 0 3px rgba(242,135,26,.34); }
.foot-social{ display:flex; gap:12px; margin-top:22px; }
.foot-social a{ width:40px; height:40px; border:1px solid var(--line-d); border-radius:9px; display:grid; place-items:center;
  color:#c4d2e2; transition:.2s; }
.foot-social a:hover{ border-color:var(--orange); color:var(--orange); transform:translateY(-2px); }
.foot-social svg{ width:17px; height:17px; fill:currentColor; }
.foot-base{ max-width:var(--maxw); margin:clamp(38px,5vw,60px) auto 0; padding:22px 0; border-top:1px solid var(--line-d);
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; font-size:12.5px; color:#7e92aa; }
.foot-base a{ color:var(--orange); }
@media (max-width:900px){ .foot-grid{ grid-template-columns:1fr 1fr; } .foot-news{ grid-column:1 / -1; } }
@media (max-width:560px){ .foot-grid{ grid-template-columns:1fr; gap:34px; } }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .cue .ln::after{ animation:none; }
  *{ transition-duration:.01ms !important; }
}
