/* ============================================================
   SURBHI ENTERPRISES — design system
   Palette: engineering paper + navy + burnt amber
   Type: Oswald (display / nameplate) + IBM Plex Sans (body) + IBM Plex Mono (data)
   Signature: rating-plate "nameplate" card — riveted corners, stamped mono numerals
   ============================================================ */

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

:root{
  --ink:        #0c1a2b;
  --navy:       #0055A2;
  --navy-2:     #003D75;
  --steel:      #4C6E90;
  --paper:      #EEF3F8;
  --paper-2:    #E1EAF3;
  --card:       #ffffff;
  --amber:      #F4C300;
  --amber-2:    #B88900;
  --amber-soft: #FCF0C4;
  --line:       #D3DEE8;
  --line-dark:  #2E75B5;
  --text:       #16232f;
  --text-muted: #4B5F72;
  --text-inv:   #ffffff;
  --text-inv-muted: #C6DBEE;
  --lightblue:  #0A5FAF;

  --font-display: 'Oswald', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --radius: 3px;
  --shadow-card: 0 1px 2px rgba(16,25,35,.06), 0 8px 24px -12px rgba(16,25,35,.18);
  --shadow-lift: 0 20px 40px -20px rgba(16,25,35,.35);
  --max: 1280px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text);
  background:var(--paper);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
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); font-weight:600; margin:0; line-height:1.1; letter-spacing:.2px; color:var(--ink); }
p{ margin:0; }
button{ font-family:inherit; }

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

:focus-visible{ outline:3px solid var(--amber); outline-offset:2px; }

.container{ max-width:var(--max); margin:0 auto; padding:0 40px; }
.section{ padding:120px 0; }
.section--tight{ padding:72px 0; }
.section--dark{ background:var(--navy); color:var(--text-inv); }
.section--dark h2, .section--dark h3{ color:var(--text-inv); }
.section--alt{ background:var(--card); }
@media (max-width:900px){
  .container{ padding:0 24px; }
  .section{ padding:76px 0; }
  .section--tight{ padding:52px 0; }
}

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-mono); font-size:12px; font-weight:600;
  letter-spacing:.14em; text-transform:uppercase; color:var(--amber-2);
  margin-bottom:16px;
}
.eyebrow::before{ content:''; width:22px; height:2px; background:var(--amber); display:inline-block; }
.section--dark .eyebrow{ color:var(--amber); }

h2.h-lg{ font-size:clamp(28px,3.6vw,42px); line-height:1.15; }
.section-head{ max-width:700px; margin-bottom:64px; }
.section-head p{ margin-top:18px; color:var(--text-muted); font-size:18px; line-height:1.65; }
.section--dark .section-head p{ color:var(--text-inv-muted); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 26px; font-family:var(--font-mono); font-weight:600; font-size:13px;
  letter-spacing:.06em; text-transform:uppercase;
  border-radius:var(--radius); border:1px solid transparent; cursor:pointer;
  transition:transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-1px); }
.btn-primary{ background:var(--amber); color:var(--navy-2); border-color:var(--amber); }
.btn-primary:hover{ background:#ffd429; border-color:#ffd429; }
.btn-outline{ background:transparent; color:var(--text-inv); border-color:rgba(238,241,241,.4); }
.btn-outline:hover{ border-color:var(--text-inv); background:rgba(238,241,241,.08); }
.btn-dark{ background:var(--navy); color:var(--text-inv); border-color:var(--navy); }
.btn-dark:hover{ background:var(--navy-2); }
.btn-block{ width:100%; }
.btn-sm{ padding:10px 18px; font-size:12px; }

/* ---------- header / nav ---------- */
.site-header{
  position:sticky; top:0; z-index:50;
  background:#fff; border-bottom:1px solid var(--line);
  box-shadow:0 1px 3px rgba(12,26,43,.05);
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; padding-top:14px; padding-bottom:14px; gap:24px; }
.brand{ display:flex; align-items:center; flex-direction:row; gap:16px; }
.brand-logo{ height:52px; width:auto; display:block; }
.brand-tag{ font-family:var(--font-mono); font-size:10.5px; letter-spacing:.1em; color:var(--steel); text-transform:uppercase; border-left:1px solid var(--line); padding-left:16px; max-width:120px; line-height:1.5; }
@media (max-width:1080px){ .brand-tag{ display:none; } }

.main-nav{ display:flex; align-items:center; gap:32px; }
.main-nav ul{ display:flex; gap:26px; }
.main-nav a{
  font-family:var(--font-mono); font-size:13px; letter-spacing:.05em; text-transform:uppercase;
  color:var(--navy); padding:6px 0; border-bottom:2px solid transparent;
}
.main-nav a:hover, .main-nav a.active{ color:var(--navy); border-color:var(--amber); }
.header-cta{ display:flex; align-items:center; gap:18px; }

.header-phone{ display:flex; align-items:center; gap:10px; }
.phone-badge-icon{
  width:38px; height:38px; border-radius:50%; background:var(--navy); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:16px; flex:none;
}
.phone-badge-text{ display:flex; flex-direction:column; line-height:1.3; }
.phone-badge-label{ font-family:var(--font-mono); font-size:10px; letter-spacing:.08em; text-transform:uppercase; color:var(--text-muted); }
.phone-badge-text strong{ font-family:var(--font-mono); font-size:14px; color:var(--navy); }

.nav-toggle{ display:none; background:none; border:1px solid var(--line); color:var(--navy); padding:8px 10px; border-radius:var(--radius); }

@media (max-width: 900px){
  .main-nav{ display:none; }
  .header-phone{ display:none; }
  .nav-toggle{ display:inline-flex; }
  .site-header.nav-open .main-nav{
    display:flex; position:absolute; top:100%; left:0; right:0; background:#fff;
    flex-direction:column; padding:20px 24px 28px; border-bottom:1px solid var(--line);
    gap:18px; box-shadow:0 8px 16px rgba(12,26,43,.08);
  }
  .site-header.nav-open .main-nav ul{ flex-direction:column; gap:16px; }
  .site-header.nav-open .main-nav a{ color:var(--navy); }
  .site-header.nav-open .header-cta{ margin-top:6px; }
  .site-header.nav-open .header-cta .btn{ width:100%; }
}

/* ---------- hero ---------- */
.hero{ background:var(--navy); color:var(--text-inv); position:relative; overflow:hidden; }
.hero::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(100deg, var(--navy) 38%, rgba(10,95,175,.28) 72%);
  pointer-events:none;
}
.hero .container{
  position:relative; z-index:1;
  display:grid; grid-template-columns:1.05fr .95fr; gap:72px; align-items:center;
  padding-top:100px; padding-bottom:100px;
}
.hero h1{ font-size:clamp(34px,5vw,56px); color:#fff; margin:18px 0 26px; }
.hero .lede{ font-size:18px; line-height:1.65; color:var(--text-inv-muted); max-width:52ch; margin-bottom:40px; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }
.hero-media{ position:relative; }
.hero-media img{ width:100%; height:auto; border-radius:var(--radius); box-shadow:var(--shadow-lift); }
.hero-media-tag{
  position:absolute; left:-18px; bottom:-18px; background:var(--card); color:var(--ink);
  padding:14px 18px; border-radius:var(--radius); box-shadow:var(--shadow-card);
  font-family:var(--font-mono); font-size:12px; max-width:220px;
}
.hero-slider{
  position:relative; aspect-ratio:4/3.1; border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow-lift); background:var(--navy-2);
}
.hero-new--slider{ padding-bottom:76px; }
.hero-slider-wide{ aspect-ratio:16/9; max-width:1100px; margin:0 auto; }
@media (max-width:760px){ .hero-slider-wide{ aspect-ratio:4/3; } }
.hero-slide{
  position:absolute; inset:0; opacity:0; visibility:hidden; transition:opacity .7s ease;
  display:flex; align-items:center; justify-content:center;
}
.hero-slide.active{ opacity:1; visibility:visible; }
.hero-slide img{ width:100%; height:100%; object-fit:cover; border-radius:0; box-shadow:none; }
.hero-slide.slide-mascot{ background:radial-gradient(circle at 50% 32%, var(--lightblue) 0%, var(--navy) 72%); }
.hero-slide.slide-mascot img{ width:auto; height:92%; object-fit:contain; margin-top:8%; }
.slider-dots{ position:absolute; left:0; right:0; bottom:16px; display:flex; justify-content:center; gap:8px; z-index:5; }
.dot{ width:8px; height:8px; border-radius:50%; border:1px solid rgba(255,255,255,.6); background:rgba(255,255,255,.25); padding:0; cursor:pointer; }
.dot.active{ background:var(--amber); border-color:var(--amber); }
@media (max-width:900px){
  .hero .container{ grid-template-columns:1fr; padding-top:48px; padding-bottom:56px; }
  .hero-media{ order:-1; }
  .hero-media-tag{ display:none; }
}

/* ---------- nameplate — signature component ---------- */
.nameplate-strip{ background:var(--navy-2); border-top:1px solid var(--line-dark); }
.nameplate-strip .container{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; }
.nameplate{
  padding:40px 28px; text-align:center; border-left:1px solid var(--line-dark);
  position:relative;
}
.nameplate:first-child{ border-left:none; }
.nameplate .np-value{ font-family:var(--font-mono); font-weight:600; font-size:clamp(19px,2.2vw,26px); color:#fff; letter-spacing:.02em; }
.nameplate .np-label{ font-family:var(--font-mono); font-size:10.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--amber); margin-top:12px; }
@media (max-width:760px){
  .nameplate-strip .container{ grid-template-columns:repeat(2,1fr); }
  .nameplate{ border-left:none; border-top:1px solid var(--line-dark); }
  .nameplate:nth-child(1),.nameplate:nth-child(2){ border-top:none; }
}

.plate{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  padding:36px 32px 34px; position:relative; box-shadow:var(--shadow-card);
}
.plate::before{
  content:''; position:absolute; inset:10px; border:1px solid var(--paper-2); border-radius:2px; pointer-events:none;
}
.plate .rivet{
  position:absolute; width:4px; height:4px; border-radius:50%;
  background:var(--line); box-shadow:inset 0 1px 1px rgba(0,0,0,.2);
}
.plate .rivet.tl{ top:12px; left:12px; } .plate .rivet.tr{ top:12px; right:12px; }
.plate .rivet.bl{ bottom:12px; left:12px; } .plate .rivet.br{ bottom:12px; right:12px; }
.plate-kicker{ font-family:var(--font-mono); font-size:10.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--amber-2); margin-bottom:14px; }
.plate-value{ font-family:var(--font-mono); font-weight:600; font-size:30px; color:var(--ink); letter-spacing:.01em; }
.plate-title{ font-family:var(--font-display); font-size:19px; font-weight:600; margin-top:8px; color:var(--ink); }
.plate-desc{ font-size:14.5px; color:var(--text-muted); margin-top:14px; line-height:1.6; }

/* ---------- grids & cards ---------- */
.grid{ display:grid; gap:32px; }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); gap:24px; }
@media (max-width:920px){ .grid-3{ grid-template-columns:repeat(2,1fr); } .grid-4{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .grid-2,.grid-3,.grid-4{ grid-template-columns:1fr; } }

.feature-card{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:36px 30px; box-shadow:var(--shadow-card); }
.feature-card .fc-num{ font-family:var(--font-mono); font-size:12px; color:var(--amber-2); letter-spacing:.1em; margin-bottom:20px; }
.feature-card h3{ font-size:19px; margin-bottom:14px; }
.feature-card p{ color:var(--text-muted); font-size:15px; line-height:1.65; }

.step-row{ display:grid; grid-template-columns:100px 1fr; gap:28px; padding:36px 0; border-top:1px solid var(--line); }
.step-row:last-child{ border-bottom:1px solid var(--line); }
.step-num{ font-family:var(--font-mono); font-size:32px; font-weight:600; color:var(--amber); }
.step-row h3{ font-size:20px; margin-bottom:10px; }
.step-row p{ color:var(--text-muted); font-size:15.5px; max-width:60ch; line-height:1.65; }
@media (max-width:600px){ .step-row{ grid-template-columns:1fr; gap:8px; padding:28px 0; } }

.tag-grid{ display:flex; flex-wrap:wrap; gap:14px; }
.tag{
  font-family:var(--font-mono); font-size:12.5px; letter-spacing:.03em; color:var(--text);
  border:1px solid var(--line); background:var(--card); padding:13px 20px; border-radius:2px;
}

/* ---------- testimonials ---------- */
.testi-card{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:32px 28px; box-shadow:var(--shadow-card); }
.testi-quote{ font-size:16px; color:var(--text); margin-bottom:22px; line-height:1.6; }
.testi-quote::before{ content:'\201C'; color:var(--amber); font-family:var(--font-display); font-size:28px; margin-right:2px; }
.testi-name{ font-family:var(--font-mono); font-size:13px; font-weight:600; }
.testi-loc{ font-family:var(--font-mono); font-size:12px; color:var(--text-muted); }

/* ---------- trusted-by ---------- */
.trustbar{ background:var(--paper-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.trustbar .container{ display:flex; align-items:center; gap:48px; padding-top:36px; padding-bottom:36px; flex-wrap:wrap; }
.trustbar-label{ font-family:var(--font-mono); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--text-muted); white-space:nowrap; }
.trustbar-logos{ display:flex; align-items:center; gap:44px; flex-wrap:wrap; }
.trustbar-logos img{ height:30px; width:auto; filter:grayscale(1) contrast(1.05); opacity:.7; }

/* ---------- CTA banner ---------- */
.cta-banner{
  background:linear-gradient(120deg, var(--navy-2) 0%, var(--lightblue) 100%);
  color:#fff; border-radius:var(--radius); padding:64px 60px;
  display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap;
}
.cta-banner h3{ color:#fff; font-size:clamp(22px,2.6vw,30px); max-width:32ch; line-height:1.3; }
.cta-banner .cta-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* ---------- footer ---------- */
.site-footer{ background:var(--navy-2); color:var(--text-inv-muted); }
.footer-top{ padding:88px 0 48px; display:grid; grid-template-columns:1.5fr 1fr 1.2fr; gap:48px; border-bottom:1px solid var(--line-dark); }
.footer-brand .brand-name{ margin-bottom:14px; }
.footer-brand p{ font-size:14px; line-height:1.75; max-width:34ch; }
.footer-partner-badge{ display:flex; align-items:center; gap:10px; margin-top:18px; background:#fff; border-radius:4px; padding:9px 14px; width:fit-content; }
.footer-partner-badge span{ font-family:var(--font-mono); font-size:10px; letter-spacing:.08em; text-transform:uppercase; color:var(--steel); white-space:nowrap; }
.footer-greaves-logo{ height:20px; width:auto; }
.footer-col h4{ color:#fff; font-family:var(--font-mono); font-size:12px; letter-spacing:.1em; text-transform:uppercase; margin-bottom:22px; }
.footer-col li{ margin-bottom:14px; font-size:14.5px; }
.footer-col a:hover{ color:#fff; }
.footer-social{ display:flex; gap:14px; margin-top:18px; }
.footer-social a{ border:1px solid rgba(238,241,241,.25); border-radius:50%; width:34px; height:34px; display:flex; align-items:center; justify-content:center; font-size:13px; }
.footer-social a:hover{ border-color:#fff; color:#fff; }
.footer-bottom{ padding:22px 0; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:13px; }
.footer-bottom a:hover{ color:#fff; }
@media (max-width:900px){ .footer-top{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-top{ grid-template-columns:1fr; } }

/* ---------- page hero (inner pages) ---------- */
.page-hero{ background:var(--navy); color:#fff; padding:56px 0 44px; position:relative; overflow:hidden; }
.page-hero-mascot{ position:absolute; right:6%; bottom:-14px; height:168px; width:auto; z-index:1; pointer-events:none; }
@media (max-width:760px){ .page-hero-mascot{ display:none; } }
.page-hero .eyebrow{ color:var(--amber); }
.page-hero h1{ color:#fff; font-size:clamp(30px,4vw,44px); }
.breadcrumb{ font-family:var(--font-mono); font-size:12px; color:var(--text-inv-muted); margin-bottom:14px; }
.breadcrumb a:hover{ color:#fff; }

/* ---------- forms ---------- */
.form-field{ margin-bottom:18px; display:flex; flex-direction:column; gap:8px; }
.form-field label{ font-family:var(--font-mono); font-size:12px; letter-spacing:.06em; text-transform:uppercase; color:var(--text-muted); }
.form-field input, .form-field select, .form-field textarea{
  font-family:var(--font-body); font-size:15px; padding:12px 14px; border:1px solid var(--line); border-radius:var(--radius);
  background:#fff; color:var(--text);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{ outline:2px solid var(--amber); outline-offset:1px; border-color:var(--amber); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:600px){ .form-row{ grid-template-columns:1fr; } }
.form-note{ font-size:12.5px; color:var(--text-muted); margin-top:6px; }

.contact-card{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:22px 24px; display:flex; gap:16px; align-items:flex-start; box-shadow:var(--shadow-card); }
.contact-card .cc-icon{ font-family:var(--font-mono); font-size:11px; color:var(--amber-2); border:1px solid var(--amber-soft); background:var(--amber-soft); width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex:none; }
.contact-card h4{ font-size:15px; margin-bottom:4px; }
.contact-card p, .contact-card a{ font-size:14.5px; color:var(--text-muted); }

.map-frame{ border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-card); }
.map-frame iframe{ width:100%; height:100%; min-height:340px; border:0; display:block; }

hr.rule{ border:none; border-top:1px solid var(--line); margin:72px 0; }
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:start; }
@media (max-width:860px){ .two-col{ grid-template-columns:1fr; gap:40px; } }

.list-check{ display:flex; flex-direction:column; gap:18px; margin-top:24px; }
.list-check li{ display:flex; gap:12px; align-items:flex-start; font-size:15.5px; color:var(--text); line-height:1.6; }
.list-check li::before{ content:'—'; color:var(--amber-2); font-family:var(--font-mono); flex:none; }

/* ---------- homepage v2 — light hero, feature float, product grid, stats banner ---------- */
.hero-new{ background:var(--paper); padding-top:52px; }
.hero-new-grid{ display:grid; grid-template-columns:1.05fr 1fr; gap:56px; align-items:center; padding-bottom:80px; }
.hero-kicker{ font-family:var(--font-mono); font-weight:600; font-size:13px; letter-spacing:.1em; color:var(--lightblue); text-transform:uppercase; margin-bottom:16px; }
.hero-new-title{ font-family:var(--font-display); font-weight:700; font-size:clamp(36px,5.4vw,60px); line-height:1.08; color:var(--navy); text-transform:uppercase; letter-spacing:.3px; }
.hero-new-title .hi-yellow{ color:var(--amber-2); }
.hero-new-lede{ margin-top:24px; color:var(--text-muted); font-size:17px; max-width:46ch; line-height:1.65; }
.btn-outline-navy{ background:transparent; color:var(--navy); border:1px solid var(--navy); }
.btn-outline-navy:hover{ background:var(--navy); color:#fff; }

.hero-new-media{ position:relative; padding:0 14px 14px 0; }
.hero-new-media::before{
  content:''; position:absolute; top:22px; right:-16px; bottom:-16px; left:14%;
  background:var(--navy); border-radius:8px; z-index:0;
}
.hero-new-media::after{
  content:''; position:absolute; right:-10px; top:6%; width:22px; height:78%;
  background:var(--amber); transform:skewX(-10deg); z-index:1;
}
.hero-new-media .hero-slider{ position:relative; z-index:2; }

.feature-float{ position:relative; z-index:10; margin-top:-64px; }
.feature-float-inner{
  background:#fff; border-radius:8px; box-shadow:0 24px 54px -22px rgba(12,26,43,.28);
  padding:34px 40px; display:grid; grid-template-columns:repeat(4,1fr); gap:30px;
}
.feature-float-item{ display:flex; gap:14px; align-items:flex-start; }
.ff-icon{
  width:44px; height:44px; border-radius:50%; border:2px solid var(--navy); color:var(--navy);
  display:flex; align-items:center; justify-content:center; font-size:17px; flex:none;
}
.feature-float-item strong{ display:block; font-family:var(--font-display); font-size:13.5px; letter-spacing:.03em; text-transform:uppercase; color:var(--navy); margin-bottom:5px; }
.feature-float-item p{ font-size:13.5px; color:var(--text-muted); line-height:1.5; margin:0; }

.text-amber{ color:var(--amber-2); }

.product-grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.product-card-v2{ background:#fff; border:1px solid var(--line); border-radius:8px; overflow:hidden; box-shadow:var(--shadow-card); display:flex; flex-direction:column; transition:transform .18s ease, box-shadow .18s ease; }
.product-card-v2:hover{ transform:translateY(-4px); box-shadow:0 16px 34px -16px rgba(12,26,43,.25); }
.product-card-v2 .pc-img{ aspect-ratio:4/3; background:var(--paper); display:flex; align-items:center; justify-content:center; padding:20px; }
.product-card-v2 .pc-img img{ max-width:100%; max-height:100%; object-fit:contain; }
.product-card-v2 .pc-body{ padding:20px 22px 26px; }
.product-card-v2 h3{ font-size:15.5px; text-transform:uppercase; letter-spacing:.02em; color:var(--navy); margin-bottom:10px; }
.product-card-v2 p{ font-size:13.5px; color:var(--text-muted); line-height:1.55; margin-bottom:16px; }
.pc-link{ font-family:var(--font-mono); font-size:12px; font-weight:600; color:var(--amber-2); text-transform:uppercase; letter-spacing:.05em; }
.pc-link:hover{ color:var(--navy); }

.stats-banner{ display:grid; grid-template-columns:.85fr 1.4fr; align-items:stretch; }
.stats-banner .sb-left{
  background:var(--navy); color:#fff; padding:52px 60px 52px 48px;
  clip-path:polygon(0 0,100% 0,85% 100%,0 100%); position:relative; z-index:2; margin-right:-64px;
  display:flex; flex-direction:column; justify-content:center;
}
.stats-banner .sb-left h3{ color:#fff; font-size:clamp(20px,2.4vw,26px); line-height:1.35; }
.stats-banner .sb-left p{ margin-top:10px; color:rgba(255,255,255,.78); font-size:14.5px; }
.stats-banner .sb-right{
  background:var(--amber); padding:52px 48px 52px 100px;
  display:flex; gap:44px; flex-wrap:wrap; align-items:center;
}
.sb-stat{ display:flex; align-items:center; gap:12px; }
.sb-stat .stat-icon{
  width:44px; height:44px; border-radius:50%; border:2px solid var(--navy); color:var(--navy);
  display:flex; align-items:center; justify-content:center; font-size:17px; flex:none; background:rgba(255,255,255,.35);
}
.sb-stat .stat-value{ font-family:var(--font-mono); font-weight:700; font-size:21px; color:var(--navy); line-height:1.1; }
.sb-stat .stat-label{ font-family:var(--font-mono); font-size:10px; text-transform:uppercase; letter-spacing:.05em; color:var(--navy-2); margin-top:2px; }

@media (max-width:980px){
  .hero-new-grid{ grid-template-columns:1fr; padding-bottom:64px; }
  .hero-new-media{ order:-1; padding:0; }
  .hero-new-media::before, .hero-new-media::after{ display:none; }
  .feature-float{ margin-top:32px; }
  .feature-float-inner{ grid-template-columns:repeat(2,1fr); box-shadow:none; padding:28px 24px; }
  .product-grid-4{ grid-template-columns:repeat(2,1fr); }
  .stats-banner{ grid-template-columns:1fr; }
  .stats-banner .sb-left{ clip-path:none; margin-right:0; padding:44px 28px; }
  .stats-banner .sb-right{ padding:36px 28px; }
}
@media (max-width:560px){
  .feature-float-inner{ grid-template-columns:1fr; }
  .product-grid-4{ grid-template-columns:1fr; }
}

/* ---------- product catalog tabs ---------- */
.kva-tabs{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:40px; }
.kva-tab{
  font-family:var(--font-mono); font-size:12.5px; font-weight:600; letter-spacing:.02em;
  padding:11px 18px; border-radius:4px; border:1px solid var(--line); background:#fff;
  color:var(--navy); cursor:pointer; transition:background .15s ease, color .15s ease, border-color .15s ease;
}
.kva-tab:hover{ border-color:var(--navy); }
.kva-tab.active{ background:var(--navy); color:#fff; border-color:var(--navy); }
.kva-panel{ display:none; }
.kva-panel.active{ display:block; }
.kva-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.kva-item{ background:#fff; border:1px solid var(--line); border-radius:8px; padding:20px; text-align:center; box-shadow:var(--shadow-card); }
.kva-img{ aspect-ratio:4/3; display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
.kva-img img{ max-width:100%; max-height:100%; object-fit:contain; }
.kva-label{ font-family:var(--font-mono); font-weight:700; font-size:15px; color:var(--navy); }
@media (max-width:760px){ .kva-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:460px){ .kva-grid{ grid-template-columns:1fr; } }

/* ---------- FAQ accordion ---------- */
.faq-list{ max-width:820px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
.faq-item{ background:#fff; border:1px solid var(--line); border-radius:6px; overflow:hidden; }
.faq-item summary{
  list-style:none; cursor:pointer; padding:20px 24px; display:flex; align-items:center; justify-content:space-between;
  font-family:var(--font-display); font-size:16px; color:var(--navy); font-weight:500;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:'+'; font-family:var(--font-mono); font-size:22px; color:var(--amber-2); flex:none; margin-left:16px; }
.faq-item[open] summary::after{ content:'\2212'; }
.faq-item .faq-answer{ padding:0 24px 22px; color:var(--text-muted); font-size:15px; line-height:1.65; }

/* ---------- client logo marquee ---------- */
.clients-marquee{ overflow:hidden; position:relative; }
.clients-marquee::before, .clients-marquee::after{
  content:''; position:absolute; top:0; bottom:0; width:60px; z-index:2; pointer-events:none;
}
.clients-marquee::before{ left:0; background:linear-gradient(90deg, var(--paper-2), transparent); }
.clients-marquee::after{ right:0; background:linear-gradient(270deg, var(--paper-2), transparent); }
.clients-track{ display:flex; align-items:center; gap:56px; width:max-content; animation:marquee 38s linear infinite; }
.clients-track img{ height:34px; width:auto; filter:grayscale(1); opacity:.7; transition:opacity .15s ease, filter .15s ease; }
.clients-track img:hover{ filter:grayscale(0); opacity:1; }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ---------- header CTA emphasis ---------- */
.header-cta .btn-primary{
  padding:15px 30px; font-size:13.5px; box-shadow:0 4px 14px -4px rgba(244,195,0,.65);
}
.header-cta .btn-primary:hover{ box-shadow:0 6px 18px -4px rgba(244,195,0,.8); }
