/* =========================================================
   GEN COMPUTERS — stylesheet
   Design language: "Service Ticket" — every proof point (a
   stat, a testimonial, a plan, a feature) is rendered as a
   torn service-tag card with a mono ticket code, echoing the
   AMC asset tags stuck on every machine this company services.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root{
  --ink:#101B2D;
  --navy:#16273F;
  --navy-2:#1D3352;
  --teal:#0EA894;
  --teal-dark:#0A7E70;
  --amber:#F2A93B;
  --paper:#F6F7F4;
  --white:#FFFFFF;
  --line:#E1E5E0;
  --line-dark:#2A3A54;
  --slate:#4A5560;
  --slate-light:#8A93A0;

  --font-display:'Space Grotesk', sans-serif;
  --font-body:'Inter', sans-serif;
  --font-mono:'IBM Plex Mono', monospace;

  --max:1180px;
  --radius:6px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--slate);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;list-style:none;}
h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--ink);
  margin:0 0 .5em;
  line-height:1.15;
  letter-spacing:-.01em;
}
p{margin:0 0 1em;}
.container{max-width:var(--max);margin:0 auto;padding:0 28px;}
:focus-visible{outline:2px solid var(--teal);outline-offset:3px;}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:.001ms !important;animation-iteration-count:1 !important;transition-duration:.001ms !important;scroll-behavior:auto !important;}
}

/* ---------- utility ---------- */
.eyebrow{
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--teal-dark);
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:14px;
  font-weight:600;
}
.eyebrow::before{
  content:"";
  width:18px;height:2px;background:var(--amber);display:inline-block;
}
.section{padding:88px 0;}
.section--tight{padding:56px 0;}
.section-head{max-width:640px;margin-bottom:52px;}
.section-head h2{font-size:clamp(28px,3.6vw,40px);}
.section-head p{color:var(--slate-light);font-size:17px;}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
.on-navy{background:var(--ink);}
.on-navy h2, .on-navy h3, .on-navy h4{color:var(--white);}
.on-navy p{color:#A8B3C2;}
.on-navy .eyebrow{color:var(--amber);}

.btn{
  display:inline-flex;align-items:center;gap:10px;
  font-family:var(--font-body);font-weight:600;font-size:15px;
  padding:14px 26px;border-radius:4px;border:1px solid transparent;
  cursor:pointer;transition:transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-2px);}
.btn-primary{background:var(--teal);color:var(--white);}
.btn-primary:hover{background:var(--teal-dark);}
.btn-amber{background:var(--amber);color:var(--ink);}
.btn-amber:hover{background:#e39a26;}
.btn-outline{border-color:rgba(255,255,255,.35);color:var(--white);background:transparent;}
.btn-outline:hover{border-color:var(--white);}
.btn-outline-dark{border-color:var(--line);color:var(--ink);background:transparent;}
.btn-outline-dark:hover{border-color:var(--ink);}
.btn svg{width:16px;height:16px;flex:none;}

.grid{display:grid;gap:28px;}
.grid-2{grid-template-columns:repeat(2,1fr);}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-4{grid-template-columns:repeat(4,1fr);}

/* =========================================================
   TOP UTILITY BAR
   ========================================================= */
.topbar{
  background:var(--ink);color:#B7C0CC;font-family:var(--font-mono);
  font-size:12.5px;letter-spacing:.02em;
}
.topbar .container{
  display:flex;justify-content:space-between;align-items:center;
  padding-top:9px;padding-bottom:9px;
}
.topbar a{color:#B7C0CC;}
.topbar-left{display:flex;gap:22px;flex-wrap:wrap;}
.topbar-left span, .topbar-left a{display:inline-flex;align-items:center;gap:7px;}
.topbar svg{width:13px;height:13px;stroke:var(--teal);flex:none;}
.topbar-right{color:var(--amber);}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  background:var(--white);
  border-bottom:1px solid var(--line);
  position:sticky;top:0;z-index:50;
}
.nav{display:flex;align-items:center;justify-content:space-between;padding:14px 0;}
.brand{display:flex;align-items:center;gap:12px;}
.brand img{height:46px;width:auto;}
.nav-links{display:flex;align-items:center;gap:2px;}
.nav-links a{
  padding:10px 16px;font-size:14.5px;font-weight:600;color:var(--navy);
  border-radius:4px;position:relative;
}
.nav-links a:hover{color:var(--teal-dark);}
.nav-links a.active{color:var(--teal-dark);}
.nav-links a.active::after{
  content:"";position:absolute;left:16px;right:16px;bottom:4px;height:2px;background:var(--amber);
}
.nav-cta{display:flex;align-items:center;gap:18px;}
.nav-phone{display:flex;align-items:center;gap:8px;font-family:var(--font-mono);font-size:14px;color:var(--navy);font-weight:600;}
.nav-phone svg{width:16px;height:16px;stroke:var(--teal);}
.nav-toggle{display:none;background:none;border:1px solid var(--line);border-radius:4px;padding:8px;cursor:pointer;}
.nav-toggle svg{width:22px;height:22px;}

@media (max-width: 980px){
  .nav-links{
    display:none;position:absolute;top:100%;left:0;right:0;background:var(--white);
    flex-direction:column;align-items:stretch;padding:8px 20px 18px;border-bottom:1px solid var(--line);
    box-shadow:0 12px 20px -12px rgba(16,27,45,.15);
  }
  .nav-links.open{display:flex;}
  .nav-links a{padding:12px 6px;border-bottom:1px solid var(--line);}
  .nav-phone{display:none;}
  .nav-toggle{display:inline-flex;}
  .site-header{position:sticky;}
}

/* =========================================================
   HERO — "service status" panel
   ========================================================= */
.hero{
  background:
    radial-gradient(1100px 480px at 82% -10%, rgba(14,168,148,.28), transparent 60%),
    linear-gradient(180deg,var(--ink) 0%, var(--navy) 100%);
  color:var(--white);
  padding:76px 0 0;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image:linear-gradient(180deg, black, transparent 75%);
  pointer-events:none;
}
.hero .container{position:relative;}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:56px;align-items:center;padding-bottom:60px;}
.hero-copy .eyebrow{color:var(--amber);}
.hero-copy h1{
  font-size:clamp(34px,4.6vw,54px);
  color:var(--white);
  margin-bottom:20px;
}
.hero-copy h1 em{
  font-style:normal;color:var(--teal);
  background:linear-gradient(180deg, transparent 62%, rgba(14,168,148,.35) 62%);
}
.hero-copy p{
  color:#B7C2D1;font-size:17.5px;max-width:520px;margin-bottom:32px;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:40px;}
.hero-trust{display:flex;gap:26px;flex-wrap:wrap;font-family:var(--font-mono);font-size:12.5px;color:#8FA0B6;}
.hero-trust strong{color:var(--white);display:block;font-family:var(--font-display);font-size:22px;font-weight:700;}

/* status panel */
.status-panel{
  background:var(--navy-2);
  border:1px solid var(--line-dark);
  border-radius:10px;
  padding:22px;
  box-shadow:0 30px 60px -30px rgba(0,0,0,.55);
}
.status-panel-head{
  display:flex;justify-content:space-between;align-items:center;
  font-family:var(--font-mono);font-size:12px;color:#8FA0B6;
  padding-bottom:16px;margin-bottom:16px;border-bottom:1px dashed var(--line-dark);
}
.status-dot{width:8px;height:8px;border-radius:50%;background:var(--teal);display:inline-block;margin-right:7px;box-shadow:0 0 0 4px rgba(14,168,148,.18);}
.status-rows{display:flex;flex-direction:column;gap:12px;margin-bottom:16px;}
.status-row{
  display:flex;align-items:center;justify-content:space-between;
  background:rgba(255,255,255,.03);border:1px solid var(--line-dark);
  border-radius:6px;padding:12px 14px;
}
.status-row .name{display:flex;align-items:center;gap:10px;font-size:14px;color:#DCE3EC;font-weight:500;}
.status-row .name svg{width:17px;height:17px;stroke:var(--teal);flex:none;}
.status-row .val{font-family:var(--font-mono);font-size:12.5px;color:var(--teal);font-weight:600;}
.status-row .val.amber{color:var(--amber);}
.status-panel-foot{
  display:flex;justify-content:space-between;align-items:center;
  font-family:var(--font-mono);font-size:11.5px;color:#6E8098;
  padding-top:14px;border-top:1px dashed var(--line-dark);
}
.status-panel-foot .tag{color:var(--amber);}

.hero-strip{
  border-top:1px solid rgba(255,255,255,.1);
  padding:22px 0;
}
.hero-strip .container{
  display:flex;gap:40px;flex-wrap:wrap;align-items:center;justify-content:space-between;
}
.hero-strip-label{font-family:var(--font-mono);font-size:12px;letter-spacing:.1em;text-transform:uppercase;color:#7B8DA3;}
.sector-tags{display:flex;gap:10px;flex-wrap:wrap;}
.sector-tags span{
  font-family:var(--font-mono);font-size:12.5px;color:#C7D0DC;
  border:1px solid var(--line-dark);border-radius:20px;padding:7px 14px;
}

/* generic page header (inner pages) */
.page-header{
  background:linear-gradient(180deg,var(--ink), var(--navy));
  color:var(--white);padding:56px 0 46px;position:relative;overflow:hidden;
}
.page-header::before{
  content:"";position:absolute;inset:0;
  background-image:linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:40px 40px;mask-image:radial-gradient(circle at 80% 0%, black, transparent 70%);
}
.page-header .container{position:relative;}
.breadcrumb{font-family:var(--font-mono);font-size:12.5px;color:var(--amber);margin-bottom:14px;letter-spacing:.05em;}
.breadcrumb a{color:#9FB0C4;}
.page-header h1{color:var(--white);font-size:clamp(30px,4vw,44px);margin-bottom:12px;}
.page-header p{color:#B7C2D1;max-width:600px;font-size:16.5px;margin:0;}

/* =========================================================
   TICKET / TAG component — the signature motif
   ========================================================= */
.ticket{
  --hole:var(--paper);
  position:relative;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:4px;
  padding:26px 24px 22px 30px;
}
.ticket::before{ /* perforation line */
  content:"";position:absolute;left:20px;top:14px;bottom:14px;width:0;
  border-left:2px dashed var(--line);
}
.ticket::after{ /* top+bottom notch, faked with double radial gradient */
  content:"";position:absolute;left:12px;top:-9px;width:18px;height:18px;
  background:var(--hole);border-radius:50%;border:1px solid var(--line);
  box-shadow:0 0 0 0 var(--hole);
}
.ticket .notch-bottom{
  content:"";position:absolute;left:12px;bottom:-9px;width:18px;height:18px;
  background:var(--hole);border-radius:50%;border:1px solid var(--line);
}
.ticket-code{
  font-family:var(--font-mono);font-size:11px;letter-spacing:.06em;
  color:var(--slate-light);position:absolute;top:14px;right:16px;
}
.on-navy .ticket{--hole:var(--ink);}

/* =========================================================
   TRUST / STATS STRIP (home + about)
   ========================================================= */
.stats-strip{background:var(--white);border-bottom:1px solid var(--line);}
.stats-strip .grid-4{padding:40px 0;}
.stat-item{text-align:center;padding:0 12px;border-left:1px solid var(--line);}
.stat-item:first-child{border-left:none;}
.stat-num{font-family:var(--font-display);font-size:clamp(26px,3vw,36px);color:var(--ink);font-weight:700;}
.stat-num span{color:var(--teal);}
.stat-label{font-family:var(--font-mono);font-size:12px;color:var(--slate-light);text-transform:uppercase;letter-spacing:.06em;margin-top:6px;}

/* =========================================================
   ABOUT SNIPPET / SPLIT SECTIONS
   ========================================================= */
.split{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;}
.split-media{position:relative;}
.split-media img{border-radius:8px;width:100%;height:100%;object-fit:cover;aspect-ratio:4/3.3;}
.split-media .badge-float{
  position:absolute;bottom:-22px;left:-22px;background:var(--white);
  border:1px solid var(--line);border-radius:8px;padding:16px 20px;
  box-shadow:0 20px 40px -20px rgba(16,27,45,.25);
  display:flex;align-items:center;gap:12px;
}
.badge-float .num{font-family:var(--font-display);font-size:26px;font-weight:700;color:var(--teal-dark);}
.badge-float .lbl{font-size:12.5px;color:var(--slate-light);line-height:1.3;max-width:110px;}
.split-copy .eyebrow{margin-bottom:12px;}
.split-copy h2{font-size:clamp(26px,3.4vw,34px);margin-bottom:16px;}
.check-list{margin-top:22px;display:flex;flex-direction:column;gap:12px;}
.check-list li{display:flex;gap:12px;align-items:flex-start;font-size:15px;color:var(--slate);}
.check-list svg{width:19px;height:19px;flex:none;stroke:var(--teal);margin-top:2px;}

/* =========================================================
   SERVICE / FEATURE CARDS
   ========================================================= */
.service-card{
  background:var(--white);border:1px solid var(--line);border-radius:8px;
  padding:30px 26px;transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height:100%;
}
.service-card:hover{transform:translateY(-4px);box-shadow:0 24px 40px -26px rgba(16,27,45,.3);border-color:transparent;}
.service-icon{
  width:52px;height:52px;border-radius:8px;background:rgba(14,168,148,.1);
  display:flex;align-items:center;justify-content:center;margin-bottom:18px;
}
.service-icon svg{width:26px;height:26px;stroke:var(--teal-dark);}
.service-card h3{font-size:19px;margin-bottom:8px;}
.service-card p{font-size:14.5px;color:var(--slate-light);margin-bottom:16px;}
.service-card .card-link{font-size:13.5px;font-weight:600;color:var(--teal-dark);display:inline-flex;align-items:center;gap:6px;}
.service-card .card-link svg{width:14px;height:14px;transition:transform .2s ease;}
.service-card:hover .card-link svg{transform:translateX(3px);}

.service-card.image-top{padding:0;overflow:hidden;}
.service-card.image-top img{aspect-ratio:16/10;object-fit:cover;}
.service-card.image-top .body{padding:22px 22px 26px;}

/* =========================================================
   WHY / FEATURE TICKETS
   ========================================================= */
.feature-ticket h4{font-size:16.5px;margin-bottom:6px;}
.feature-ticket p{font-size:14px;color:var(--slate-light);margin-bottom:0;}
.feature-ticket .service-icon{margin-bottom:14px;width:44px;height:44px;}
.feature-ticket .service-icon svg{width:22px;height:22px;}

/* =========================================================
   AMC PLANS
   ========================================================= */
.plan-card{
  background:var(--white);border:1px solid var(--line);border-radius:10px;
  padding:32px 28px;position:relative;display:flex;flex-direction:column;height:100%;
}
.plan-card.featured{border-color:var(--teal);box-shadow:0 26px 50px -30px rgba(14,168,148,.4);}
.plan-badge{
  position:absolute;top:-13px;right:24px;background:var(--amber);color:var(--ink);
  font-family:var(--font-mono);font-size:11.5px;font-weight:700;padding:5px 12px;border-radius:20px;
  letter-spacing:.04em;
}
.plan-name{font-family:var(--font-mono);font-size:12.5px;color:var(--teal-dark);letter-spacing:.08em;text-transform:uppercase;margin-bottom:10px;}
.plan-card h3{font-size:23px;margin-bottom:6px;}
.plan-card .plan-desc{font-size:14px;color:var(--slate-light);margin-bottom:22px;}
.plan-list{display:flex;flex-direction:column;gap:11px;margin-bottom:26px;flex:1;}
.plan-list li{display:flex;gap:10px;font-size:14px;color:var(--slate);align-items:flex-start;}
.plan-list svg{width:17px;height:17px;stroke:var(--teal);flex:none;margin-top:2px;}
.plan-list li.muted{color:var(--slate-light);}
.plan-list li.muted svg{stroke:var(--line);}

.amc-process{counter-reset:step;}
.process-step{position:relative;padding-left:0;}
.process-num{
  font-family:var(--font-mono);font-size:13px;color:var(--teal-dark);
  border:1px solid var(--line);width:38px;height:38px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;margin-bottom:16px;font-weight:700;
  background:var(--white);
}
.process-step h4{font-size:16.5px;margin-bottom:8px;}
.process-step p{font-size:14px;color:var(--slate-light);margin:0;}

.sector-card{
  background:var(--white);border:1px solid var(--line);border-radius:8px;overflow:hidden;
  display:flex;flex-direction:column;height:100%;
}
.sector-card img{aspect-ratio:16/10;object-fit:cover;}
.sector-card .body{padding:20px 22px 24px;}
.sector-card h4{font-size:17px;margin-bottom:6px;}
.sector-card p{font-size:13.8px;color:var(--slate-light);margin-bottom:0;}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi-ticket p.quote{font-size:15px;color:var(--slate);margin-bottom:18px;}
.testi-person{display:flex;align-items:center;gap:12px;}
.testi-person img{width:42px;height:42px;border-radius:50%;object-fit:cover;}
.testi-person .who{font-size:13.5px;font-weight:700;color:var(--ink);}
.testi-person .org{font-family:var(--font-mono);font-size:11.5px;color:var(--slate-light);}
.stars{display:flex;gap:3px;margin-bottom:12px;}
.stars svg{width:15px;height:15px;fill:var(--amber);stroke:none;}

/* =========================================================
   PRODUCTS
   ========================================================= */
.product-card{
  background:var(--white);border:1px solid var(--line);border-radius:8px;overflow:hidden;
  display:flex;flex-direction:column;height:100%;transition:box-shadow .2s ease, transform .2s ease;
}
.product-card:hover{transform:translateY(-4px);box-shadow:0 24px 40px -26px rgba(16,27,45,.3);}
.product-media{position:relative;}
.product-media img{aspect-ratio:4/3;object-fit:cover;}
.product-tag{
  position:absolute;top:12px;left:12px;background:var(--ink);color:var(--white);
  font-family:var(--font-mono);font-size:11px;padding:4px 10px;border-radius:20px;letter-spacing:.04em;
}
.product-body{padding:18px 20px 22px;flex:1;display:flex;flex-direction:column;}
.product-body .cat{font-family:var(--font-mono);font-size:11px;color:var(--teal-dark);text-transform:uppercase;letter-spacing:.06em;margin-bottom:6px;}
.product-body h4{font-size:16.5px;margin-bottom:8px;}
.product-body p{font-size:13.5px;color:var(--slate-light);margin-bottom:14px;flex:1;}
.product-specs{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:0;}
.product-specs span{
  font-family:var(--font-mono);font-size:11px;color:var(--slate);
  background:var(--paper);border:1px solid var(--line);padding:4px 9px;border-radius:4px;
}
.product-filters{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:40px;}
.product-filters button{
  font-family:var(--font-mono);font-size:12.5px;padding:9px 18px;border-radius:20px;
  border:1px solid var(--line);background:var(--white);color:var(--slate);cursor:pointer;
  transition:all .15s ease;
}
.product-filters button.active,.product-filters button:hover{background:var(--ink);color:var(--white);border-color:var(--ink);}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner{
  background:linear-gradient(120deg,var(--teal-dark), var(--teal));
  border-radius:14px;padding:52px 48px;display:flex;justify-content:space-between;align-items:center;gap:30px;flex-wrap:wrap;
  color:var(--white);position:relative;overflow:hidden;
}
.cta-banner::before{
  content:"";position:absolute;right:-60px;top:-60px;width:220px;height:220px;border-radius:50%;
  background:rgba(255,255,255,.08);
}
.cta-banner h3{color:var(--white);font-size:clamp(22px,2.6vw,30px);margin-bottom:8px;}
.cta-banner p{color:rgba(255,255,255,.85);margin:0;max-width:440px;}
.cta-banner .btn-amber{flex:none;}

/* =========================================================
   TEAM
   ========================================================= */
.team-card{text-align:left;}
.team-card img{border-radius:8px;aspect-ratio:1/1;object-fit:cover;margin-bottom:16px;}
.team-card h4{font-size:16.5px;margin-bottom:2px;}
.team-card .role{font-family:var(--font-mono);font-size:12px;color:var(--teal-dark);text-transform:uppercase;letter-spacing:.05em;}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-wrap{display:grid;grid-template-columns:.85fr 1.15fr;gap:48px;align-items:start;}
.contact-card{
  background:var(--white);border:1px solid var(--line);border-radius:10px;padding:30px 26px;margin-bottom:18px;
}
.contact-card h4{font-size:15px;margin-bottom:4px;}
.contact-row{display:flex;gap:14px;align-items:flex-start;padding:16px 0;border-top:1px solid var(--line);}
.contact-row:first-child{border-top:none;padding-top:0;}
.contact-row .ic{
  width:38px;height:38px;border-radius:8px;background:rgba(14,168,148,.1);display:flex;align-items:center;justify-content:center;flex:none;
}
.contact-row .ic svg{width:19px;height:19px;stroke:var(--teal-dark);}
.contact-row .txt{font-size:14.5px;color:var(--slate);}
.contact-row .txt strong{display:block;color:var(--ink);font-size:14.5px;margin-bottom:2px;}
.contact-row a{color:var(--slate);}
.contact-row a:hover{color:var(--teal-dark);}

.map-frame{
  border-radius:10px;overflow:hidden;border:1px solid var(--line);
  height:280px;margin-bottom:18px;
}
.map-frame iframe{width:100%;height:100%;border:0;display:block;}

.form-card{
  background:var(--white);border:1px solid var(--line);border-radius:10px;padding:38px;
}
.form-card h3{font-size:22px;margin-bottom:6px;}
.form-card > p{color:var(--slate-light);font-size:14.5px;margin-bottom:26px;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-bottom:18px;}
.field{display:flex;flex-direction:column;gap:8px;}
.field.full{grid-column:1 / -1;}
.field label{font-size:13px;font-weight:600;color:var(--ink);}
.field .req{color:var(--amber);}
.field input,.field select,.field textarea{
  font-family:var(--font-body);font-size:14.5px;color:var(--ink);
  border:1px solid var(--line);border-radius:6px;padding:12px 14px;background:var(--paper);
  transition:border-color .15s ease, background .15s ease;
  width:100%;
}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:var(--teal);background:var(--white);
}
.field textarea{resize:vertical;min-height:120px;}
.form-foot{display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap;margin-top:6px;}
.form-note{font-size:12.5px;color:var(--slate-light);max-width:320px;}
.form-success{
  display:none;background:rgba(14,168,148,.09);border:1px solid rgba(14,168,148,.35);
  color:var(--teal-dark);padding:16px 18px;border-radius:8px;font-size:14px;margin-bottom:20px;align-items:center;gap:10px;
}
.form-success.show{display:flex;}
.form-success svg{width:18px;height:18px;flex:none;}

.sector-select-note{font-size:12.5px;color:var(--slate-light);margin-top:-8px;}

/* branches strip */
.branch-strip{display:flex;gap:16px;flex-wrap:wrap;}
.branch-chip{
  font-family:var(--font-mono);font-size:12.5px;background:var(--white);border:1px solid var(--line);
  border-radius:20px;padding:9px 16px;color:var(--slate);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{background:var(--ink);color:#9FADBE;padding-top:68px;}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:40px;padding-bottom:48px;border-bottom:1px solid var(--line-dark);}
.footer-brand img{height:42px;margin-bottom:16px;filter:brightness(0) invert(1);}
.footer-brand p{font-size:14px;color:#8091A6;max-width:280px;}
.footer-social{display:flex;gap:10px;margin-top:18px;}
.footer-social a{
  width:36px;height:36px;border:1px solid var(--line-dark);border-radius:50%;
  display:flex;align-items:center;justify-content:center;transition:border-color .15s ease, background .15s ease;
}
.footer-social a:hover{background:var(--teal);border-color:var(--teal);}
.footer-social svg{width:16px;height:16px;stroke:#C7D0DC;}
.footer-col h5{
  color:var(--white);font-family:var(--font-display);font-size:14.5px;margin-bottom:20px;letter-spacing:.02em;
}
.footer-col ul{display:flex;flex-direction:column;gap:12px;}
.footer-col a{font-size:14px;color:#8FA0B6;}
.footer-col a:hover{color:var(--teal);}
.footer-contact li{display:flex;gap:10px;align-items:flex-start;font-size:13.8px;color:#8FA0B6;}
.footer-contact svg{width:16px;height:16px;stroke:var(--teal);flex:none;margin-top:3px;}
.footer-bottom{
  display:flex;justify-content:space-between;align-items:center;padding:22px 0;flex-wrap:wrap;gap:10px;
  font-size:12.8px;color:#6E7E92;font-family:var(--font-mono);
}
.footer-bottom a{color:#8FA0B6;}

/* scroll reveal */
[data-reveal]{opacity:0;transform:translateY(18px);transition:opacity .6s ease, transform .6s ease;}
[data-reveal].is-visible{opacity:1;transform:none;}
[data-reveal="1"]{transition-delay:.05s;}
[data-reveal="2"]{transition-delay:.15s;}
[data-reveal="3"]{transition-delay:.25s;}
[data-reveal="4"]{transition-delay:.35s;}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1020px){
  .hero-grid{grid-template-columns:1fr;}
  .status-panel{max-width:520px;}
  .split{grid-template-columns:1fr;}
  .split-media{order:-1;}
  .contact-wrap{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width: 760px){
  .grid-4{grid-template-columns:1fr 1fr;}
  .grid-3{grid-template-columns:1fr 1fr;}
  .grid-2{grid-template-columns:1fr;}
  .stat-item{border-left:none;border-top:1px solid var(--line);padding-top:18px;}
  .stat-item:first-child{border-top:none;padding-top:0;}
  .stats-strip .grid-4{padding-bottom:10px;}
  .cta-banner{flex-direction:column;text-align:center;}
  .footer-grid{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}
  .topbar-left{gap:12px;}
  .badge-float{position:static;margin-top:-40px;margin-left:16px;width:calc(100% - 32px);}
}
@media (max-width: 560px){
  .grid-4{grid-template-columns:1fr 1fr;}
  .grid-3{grid-template-columns:1fr;}
  .section{padding:60px 0;}
  .hero{padding-top:56px;}
  .cta-banner{padding:36px 26px;}
  .form-card{padding:26px 20px;}
}
