/* ============================================================
   Innovare Waterproofing — style.css
   Group design system: Archivo + Hanken Grotesk, indigo + amber
   ============================================================ */

/* ---- Tokens ---- */
:root{
  --ink:        #17146E;
  --ink-deep:   #0E0C3D;
  --ink-2:      #2A2685;
  --amber:      #EBA53C;
  --amber-dark: #D4912E;
  --paper:      #ffffff;
  --soft:       #F4F3EF;
  --tint:       #EDECF5;
  --line:       #E2E0EC;
  --text:       #2A2740;
  --muted:      #6B6880;

  --container: 1240px;
  --narrow: 880px;
  --pad: 15px;
  --radius: 4px;

  --shadow-sm: 0 1px 2px rgba(23,20,110,.06), 0 2px 6px rgba(23,20,110,.05);
  --shadow-md: 0 6px 18px rgba(23,20,110,.08), 0 2px 6px rgba(23,20,110,.05);
  --shadow-lg: 0 22px 48px rgba(23,20,110,.14), 0 8px 18px rgba(23,20,110,.08);

  --ease: cubic-bezier(.16,.84,.44,1);
}

/* ---- Reset ---- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0;
  font-family:"Hanken Grotesk", system-ui, sans-serif;
  font-size:17px;
  line-height:1.7;
  color:var(--text);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:var(--ink-2); text-decoration:none; }
a:hover{ color:var(--ink); }
button{ font-family:inherit; }
h1,h2,h3,h4,h5,p{ margin:0; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5{
  font-family:"Archivo", system-ui, sans-serif;
  color:var(--ink);
  line-height:1.08;
  letter-spacing:-.02em;
}
h1{ font-size:clamp(1.8rem,5.2vw, 3.6rem); font-weight:800; letter-spacing:-.025em; }
h2{ font-size:clamp(1.85rem,3.4vw,2.85rem); font-weight:800; }
h3{ font-size:clamp(1.25rem,1.8vw,1.55rem); font-weight:700; line-height:1.2; }
h4{ font-size:1.05rem; font-weight:700; }
.lead{ font-size:clamp(1.05rem,1.5vw,1.28rem); line-height:1.6; color:var(--text); }
p{ text-wrap:pretty; }

/* ---- Layout ---- */
.container{ max-width:var(--container); margin:0 auto; padding:0 var(--pad); }
.container-narrow{ max-width:var(--narrow); margin:0 auto; padding:0 var(--pad); }
section{ padding:clamp(60px,8vw,112px) 0; }
.section-tight{ padding:clamp(44px,5vw,72px) 0; }
.section-soft{ background:var(--soft); }
.section-dark{ background:var(--ink-deep); color:#D9D7EC; }
.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4,.section-dark h5{ color:#fff; }

.prose > * + *{ margin-top:1.15rem; }
.prose h2{ margin-top:2.4rem; }
.prose h3{ margin-top:2rem; }
.prose ul{ margin:1.15rem 0; padding-left:0; list-style:none; }
.prose ul li{ position:relative; padding-left:30px; margin-bottom:.7rem; }
.prose ul li::before{
  content:""; position:absolute; left:0; top:.62em; width:12px; height:2px;
  background:var(--amber);
}

/* ---- Eyebrow ---- */
.eyebrow{
  display:flex; align-items:center; gap:14px;
  font-family:"Hanken Grotesk",sans-serif; font-weight:600;
  text-transform:uppercase; letter-spacing:.16em; font-size: 11px;
  color:var(--amber-dark); margin-bottom:18px;
}
.eyebrow::before{ content:""; width:26px; height:2px; background:var(--amber); flex:0 0 auto; }
.eyebrow.center{ justify-content:center; }
.eyebrow.light{ color:var(--amber); }

/* ---- Section head ---- */
.section-head{ max-width:720px; margin-bottom:52px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head.center .eyebrow{ justify-content:center; }
.section-head p{ margin-top:18px; color:var(--muted); font-size:1.1rem; }
.section-dark .section-head p{ color:#B7B4D6; }

/* ---- Buttons ---- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-family:"Hanken Grotesk",sans-serif; font-weight:600; font-size:.98rem;
  padding:14px 24px; border-radius:var(--radius); border:1.5px solid transparent;
  cursor:pointer; transition:all .3s var(--ease); line-height:1; white-space:nowrap;
}
.btn svg{ width:17px; height:17px; transition:transform .3s var(--ease); }
.btn:hover svg{ transform:translateX(4px); }
.btn-primary{ background:var(--amber); color:var(--ink-deep); border-color:var(--amber); }
.btn-primary:hover{ background:var(--amber-dark); border-color:var(--amber-dark); color:var(--ink-deep); }
.btn-dark{ background:var(--ink); color:#fff; border-color:var(--ink); }
.btn-dark:hover{ background:var(--ink-2); border-color:var(--ink-2); color:#fff; }
.btn-ghost{ background:transparent; color:var(--ink); border-color:var(--line); }
.btn-ghost:hover{ border-color:var(--ink); background:var(--tint); }
.btn-light{ background:#fff; color:var(--ink); border-color:#fff; }
.btn-light:hover{ background:var(--soft); color:var(--ink); }
.btn-outline-light{ background:transparent; color:#fff; border-color:rgba(255,255,255,.35); }
.btn-outline-light:hover{ border-color:#fff; background:rgba(255,255,255,.08); color:#fff; }
.btn-row{ display:flex; flex-wrap:wrap; gap:14px; }
.btn-row.center{ justify-content:center; }

/* ---- link-arrow ---- */
.link-arrow{
  display:inline-flex; align-items:center; gap:8px; font-weight:600;
  color:var(--ink-2); transition:gap .3s var(--ease);
}
.link-arrow svg{ width:16px; height:16px; transition:transform .3s var(--ease); }
.link-arrow:hover{ color:var(--ink); }
.link-arrow:hover svg{ transform:translateX(4px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{ position:sticky; top:0; z-index:200; }

.utility-bar{ background:var(--ink-deep); color:#B7B4D6; font-size:.82rem; }
.utility-bar .container{ display:flex; align-items:center; justify-content:space-between; gap:20px; min-height:42px; }
.ub-creds{ display:flex; align-items:center; gap:20px; flex-wrap:wrap; }
.ub-item{ display:inline-flex; align-items:center; gap:7px; }
.ub-item svg{ width:15px; height:15px; color:var(--amber); flex:0 0 auto; }
.ub-actions{ display:flex; align-items:center; gap:20px; }
.ub-actions a{ color:#E3E1F2; font-weight:600; display:inline-flex; align-items:center; gap:7px; }
.ub-actions a:hover{ color:#fff; }
.ub-actions a svg{ width:15px; height:15px; color:var(--amber); }

.nav-bar{ background:#fff; border-bottom:1px solid var(--line); }
.nav-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; min-height:80px; }

/* Wordmark */
.brand{ display:flex; align-items:center; gap:13px; }
.brand-mark{ display:flex; gap:4px; flex:0 0 auto; }
.brand-mark span{ display:block; width:6px; height:34px; border-radius:1px; }
.brand-mark .bar-ink{ background:var(--ink); }
.brand-mark .bar-amber{ background:var(--amber); }
.wordmark{ display:flex; flex-direction:column; line-height:1; }
.wordmark .wm-name{ font-family:"Archivo",sans-serif; font-weight:800; font-size:1.35rem; letter-spacing:.16em; color:var(--ink); }
.wordmark .wm-div{ font-family:"Hanken Grotesk",sans-serif; font-size:.6rem; letter-spacing:.42em; text-transform:uppercase; color:var(--muted); margin-top:5px; }

/* Nav links */
.nav-links{ display:flex; align-items:center; gap:4px; list-style:none; margin:0; padding:0; }
.nav-links > li{ position:relative; }
.nav-links > li > a,.nav-links > li > button{
  display:inline-flex; align-items:center; gap:6px;
  font-weight:600; font-size:.96rem; color:var(--text);
  padding:12px 15px; border-radius:var(--radius); background:none; border:none; cursor:pointer;
  transition:color .2s var(--ease), background .2s var(--ease);
}
.nav-links > li > a:hover,.nav-links > li > button:hover{ color:var(--ink); background:var(--tint); }
.nav-links .caret{ width:13px; height:13px; transition:transform .25s var(--ease); }
.nav-links li.open .caret{ transform:rotate(180deg); }

body[data-page="home"]     .nav-link-home,
body[data-page="about"]    .nav-link-about,
body[data-page="services"] .nav-link-services,
body[data-page="projects"] .nav-link-projects,
body[data-page="blog"]     .nav-link-blog,
body[data-page="faq"]      .nav-link-faq,
body[data-page="contact"]  .nav-link-contact{ color:var(--ink); }
body[data-page="home"]     .nav-link-home::after,
body[data-page="about"]    .nav-link-about::after,
body[data-page="services"] .nav-link-services::after,
body[data-page="projects"] .nav-link-projects::after,
body[data-page="blog"]     .nav-link-blog::after,
body[data-page="faq"]      .nav-link-faq::after,
body[data-page="contact"]  .nav-link-contact::after{
  content:""; position:absolute; left:15px; right:15px; bottom:6px; height:2px; background:var(--amber);
}

/* Mega menu */
.mega{
  position:absolute; top:calc(100% + 8px); left:50%; transform:translateX(-50%) translateY(8px);
  width:min(920px,92vw); background:#fff; border:1px solid var(--line);
  border-radius:var(--radius); box-shadow:var(--shadow-lg); padding:28px;
  opacity:0; visibility:hidden; pointer-events:none; transition:opacity .22s var(--ease), transform .22s var(--ease); z-index:210;
}
.nav-links li.open .mega{ opacity:1; visibility:visible; pointer-events:auto; transform:translateX(-50%) translateY(0); }
.mega-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px 28px; }
.mega-col h5{
  font-family:"Hanken Grotesk",sans-serif; font-weight:700; text-transform:uppercase;
  letter-spacing:.12em; font-size:.72rem; color:var(--amber-dark); margin-bottom:12px;
  padding-bottom:10px; border-bottom:1px solid var(--line);
}
.mega-col ul{ list-style:none; margin:0; padding:0; }
.mega-col li{ margin-bottom:2px; }
.mega-col a{
  display:block; padding:7px 10px; margin:0 -10px; border-radius:var(--radius);
  color:var(--text); font-size:.93rem; font-weight:500; transition:all .18s var(--ease);
}
.mega-col a:hover{ background:var(--tint); color:var(--ink); }
.mega-foot{
  margin-top:24px; padding-top:20px; border-top:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap;
}
.mega-foot p{ font-size:.9rem; color:var(--muted); max-width:520px; }
.mega-foot p strong{ color:var(--ink); }

.nav-cta{ display:flex; align-items:center; gap:12px; }
.nav-burger{
  display:none; width:46px; height:46px; border:1px solid var(--line); border-radius:var(--radius);
  background:#fff; cursor:pointer; align-items:center; justify-content:center; flex:0 0 auto;
}
.nav-burger svg{ width:22px; height:22px; color:var(--ink); }

/* Mobile panel */
.scrim{
  position:fixed; inset:0; background:rgba(14,12,61,.5); z-index:300;
  opacity:0; visibility:hidden; transition:opacity .3s var(--ease);
}
.scrim.show{ opacity:1; visibility:visible; }
.mobile-panel{
  position:fixed; top:0; right:0; height:100dvh; width:min(400px,90vw); background:#fff; z-index:310;
  transform:translateX(100%); transition:transform .32s var(--ease); overflow-y:auto;
  display:flex; flex-direction:column; box-shadow:var(--shadow-lg);
}
.mobile-panel.show{ transform:translateX(0); }
.mp-head{ display:flex; align-items:center; justify-content:space-between; padding:20px var(--pad); border-bottom:1px solid var(--line); }
.mp-close{ width:44px; height:44px; border:1px solid var(--line); border-radius:var(--radius); background:#fff; cursor:pointer; display:flex; align-items:center; justify-content:center; }
.mp-close svg{ width:20px; height:20px; color:var(--ink); }
.mp-body{ padding:12px var(--pad) 28px; flex:1; }
.mp-body > a,.mp-group > button{
  display:flex; align-items:center; justify-content:space-between; width:100%;
  padding:15px 4px; font-weight:600; font-size:1.05rem; color:var(--ink);
  border:none; border-bottom:1px solid var(--line); background:none; cursor:pointer; text-align:left;
}
.mp-group > button svg{ width:18px; height:18px; transition:transform .25s var(--ease); }
.mp-group.open > button svg{ transform:rotate(180deg); }
.mp-sub{ max-height:0; overflow:hidden; transition:max-height .3s var(--ease); }
.mp-sub-inner{ padding:6px 0 14px; }
.mp-sub h6{ margin:14px 0 4px; font-family:"Hanken Grotesk",sans-serif; text-transform:uppercase; letter-spacing:.1em; font-size:.68rem; color:var(--amber-dark); font-weight:700; }
.mp-sub a{ display:block; padding:9px 14px; color:var(--text); font-size:.96rem; font-weight:500; }
.mp-sub a:hover{ color:var(--ink); }
.mp-cta{ margin-top:22px; display:flex; flex-direction:column; gap:12px; }
.mp-contact{ margin-top:22px; padding-top:20px; border-top:1px solid var(--line); font-size:.92rem; color:var(--muted); }
.mp-contact a{ display:inline-flex; align-items:center; gap:8px; color:var(--ink); font-weight:600; margin-top:6px; }
.mp-contact a svg{ width:15px; height:15px; color:var(--amber); }

/* ============================================================
   HERO
   ============================================================ */
.hero{ background:var(--ink-deep); color:#D9D7EC; position:relative; overflow:hidden; }
.hero::after{
  content:""; position:absolute; top:-30%; right:-10%; width:60%; height:120%;
  background:radial-gradient(circle at center, rgba(235,165,60,.14), transparent 62%);
  pointer-events:none;
}
.hero .container{ position:relative; z-index:1; }
.hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center;}
.hero h1{ color:#fff; }
.hero .lead{ color:#C6C3E0; margin-top:22px; max-width:560px; }
.hero .btn-row{ margin-top:34px; }
.trust{ display:flex; gap:38px; margin-top:44px; flex-wrap:wrap; }
.trust-item .num{ font-family:"Archivo",sans-serif; font-weight:800; font-size:2.1rem; color:var(--amber); line-height:1; }
.trust-item .lbl{ font-size:.85rem; color:#B7B4D6; margin-top:8px; max-width:160px; line-height:1.4; }
.hero-media{ position:relative; }

/* Page hero (interior) */
.page-hero{ background:var(--ink-deep); color:#D9D7EC; position:relative; overflow:hidden; }
.page-hero::after{
  content:""; position:absolute; bottom:-40%; left:-8%; width:52%; height:130%;
  background:radial-gradient(circle at center, rgba(235,165,60,.12), transparent 62%);
  pointer-events:none;
}
.page-hero .container{ position:relative; z-index:1;}
.page-hero h1{ color:#fff; max-width:50ch; }
.page-hero .lead {
    color: #C6C3E0;
    margin-top: 20px;
    max-width: 850px;
    width: 100%;
}
.page-hero.with-media .container{ display:grid; grid-template-columns:1.1fr .9fr; gap:52px; align-items:center; }
.crumb{ display:flex; align-items:center; gap:9px; font-size:.85rem; color:#9C99C2; margin-bottom:22px; flex-wrap:wrap; }
.crumb a{ color:#B7B4D6; } .crumb a:hover{ color:#fff; }
.crumb svg{ width:13px; height:13px; opacity:.6; }
.crumb .current{ color:var(--amber); }

/* ---- trust-strip ---- */
.trust-strip{ background:#fff; border-bottom:1px solid var(--line); }
.trust-strip .container{ display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:14px 26px; padding:26px var(--pad); }
.ts-item{ display:inline-flex; align-items:center; gap:10px; font-weight:600; color:var(--ink); font-size:.95rem; }
.ts-item svg{ width:20px; height:20px; color:var(--amber-dark); flex:0 0 auto; }
.ts-sep{ width:1px; height:22px; background:var(--line); }

/* ============================================================
   CARDS
   ============================================================ */
/* svc-grid */
.svc-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.svc-grid.two{ grid-template-columns:repeat(2,1fr); }
.svc-card{
  position:relative; background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:30px 28px 28px; overflow:hidden; transition:box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
  display:flex; flex-direction:column;
}
.svc-card::before{ content:""; position:absolute; top:0; left:0; right:0; height:3px; background:var(--amber); transform:scaleX(0); transform-origin:left; transition:transform .35s var(--ease); }
.svc-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-3px); border-color:var(--tint); }
.svc-card:hover::before{ transform:scaleX(1); }
.svc-icon{
  width:52px; height:52px; border-radius:var(--radius); background:var(--tint); color:var(--ink);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px; flex:0 0 auto;
}
.svc-icon svg{ width:26px; height:26px; }
.svc-card h3{ margin-bottom:10px; }
.svc-card p{ color:var(--muted); font-size:.97rem; flex:1; }
.svc-card .more{ margin-top:18px; }

/* project-grid */
.project-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.project-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;
  display:flex; flex-direction:column; transition:box-shadow .3s var(--ease), transform .3s var(--ease);
}
.project-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-3px); }
.pc-media{ aspect-ratio:4/3; }
.pc-body{ padding:24px 24px 26px; display:flex; flex-direction:column; flex:1; }
.pc-cat{ font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.12em; color:var(--amber-dark); margin-bottom:10px; }
.pc-body h3{ margin-bottom:10px; }
.pc-body p{ color:var(--muted); font-size:.94rem; flex:1; }
.pc-specs{ list-style:none; margin:18px 0 0; padding:16px 0 0; border-top:1px solid var(--line); display:flex; flex-wrap:wrap; gap:6px 20px; }
.pc-specs li{ font-size:.82rem; color:var(--muted); display:flex; align-items:center; gap:7px; }
.pc-specs li strong{ color:var(--ink); font-weight:700; }
.project-card.cta-card{
  border:1.5px dashed var(--line); background:var(--soft); align-items:flex-start;
  justify-content:center; padding:34px 28px;
}
.project-card.cta-card:hover{ border-color:var(--amber); transform:none; box-shadow:none; }
.project-card.cta-card .svc-icon{ background:#fff; }

/* blog-grid */
.blog-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.blog-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;
  display:flex; flex-direction:column; transition:box-shadow .3s var(--ease), transform .3s var(--ease);
}
.blog-grid .bc-media.ph {
    display: none;
}
.blog-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-3px); }
.bc-media{ aspect-ratio:16/10; }
.bc-body{ padding:24px; display:flex; flex-direction:column; flex:1; }
.bc-cat{ font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.12em; color:var(--amber-dark); margin-bottom:12px; }
.bc-body h3{ margin-bottom:10px; line-height:1.25; }
.bc-body p{ color:var(--muted); font-size:.94rem; flex:1; }
.bc-body .more{ margin-top:18px; }
.blog-featured{ display:grid; grid-template-columns:1.05fr .95fr; gap:0; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; margin-bottom:40px; background:#fff; }
.blog-featured .bf-media{ min-height:340px; }
.blog-featured .bf-body{ padding:clamp(30px,4vw,52px); display:flex; flex-direction:column; justify-content:center; }
.blog-card.suggest{ background:var(--ink-deep); color:#C6C3E0; justify-content:center; padding:34px 28px; }
.blog-card.suggest h3{ color:#fff; } .blog-card.suggest p{ color:#B7B4D6; }

/* tm-grid (testimonials) */
.tm-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.tm-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:30px 28px; display:flex; flex-direction:column; }
.tm-quote{ font-size:1.02rem; line-height:1.6; color:var(--text); flex:1; }
.tm-stars{ display:flex; gap:3px; margin-bottom:18px; color:var(--amber); }
.tm-stars svg{ width:17px; height:17px; }
.tm-by{ margin-top:22px; padding-top:18px; border-top:1px solid var(--line); }
.tm-by .tm-name{ font-weight:700; color:var(--ink); font-size:.95rem; }
.tm-by .tm-role{ font-size:.83rem; color:var(--muted); margin-top:2px; }

/* ============================================================
   feature-grid  (numbered)
   ============================================================ */
.feature-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.1); border-radius:var(--radius); overflow:hidden; }
.feature{ background:var(--ink-deep); padding:32px 28px; }
.feature .fnum{ font-family:"Archivo",sans-serif; font-weight:800; font-size:.95rem; color:var(--amber); letter-spacing:.08em; margin-bottom:18px; }
.feature h4{ color:#fff; margin-bottom:10px; }
.feature p{ color:#B7B4D6; font-size:.93rem; }
.feature-grid.light{ background:var(--line); border-color:var(--line); }
.feature-grid.light .feature{ background:#fff; }
.feature-grid.light .feature h4{ color:var(--ink); }
.feature-grid.light .feature p{ color:var(--muted); }
.feature-grid.light .feature .fnum{ color:var(--amber-dark); }

/* ============================================================
   steps  (numbered process)
   ============================================================ */
.steps{ counter-reset:step; display:grid; gap:0; max-width:820px; }
.step{ counter-increment:step; position:relative; padding:26px 0 26px 76px; border-bottom:1px solid var(--line); }
.step:last-child{ border-bottom:none; }
.step::before{
  content:counter(step,decimal-leading-zero); position:absolute; left:0; top:24px;
  font-family:"Archivo",sans-serif; font-weight:800; font-size:1.5rem; color:var(--amber-dark);
}
.step h4{ margin-bottom:7px; }
.step p{ color:var(--muted); font-size:.98rem; }

/* ============================================================
   check-list
   ============================================================ */
.check-list{ list-style:none; margin:0; padding:0; display:grid; gap:16px; }
.check-list.two{ grid-template-columns:1fr 1fr; gap:16px 32px; }
.check-list li{ position:relative; padding-left:36px; line-height:1.55; }
.check-list li::before{
  content:""; position:absolute; left:0; top:2px; width:22px; height:22px; border-radius:50%;
  background:var(--amber);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
          mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
  background-color:var(--amber);
}
.section-dark .check-list li{ color:#D9D7EC; }
.check-list li strong{ color:var(--ink); }
.section-dark .check-list li strong{ color:#fff; }

/* ============================================================
   chips
   ============================================================ */
.chips{ display:flex; flex-wrap:wrap; gap:10px; }
.chip{
  display:inline-flex; align-items:center; gap:8px; padding:9px 15px; border-radius:var(--radius);
  border:1px solid var(--line); background:#fff; font-size:.9rem; font-weight:600; color:var(--ink);
  transition:all .2s var(--ease);
}
.chip svg{ width:15px; height:15px; color:var(--amber-dark); }
a.chip:hover{ border-color:var(--ink); background:var(--tint); }
.section-dark .chip{ background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.16); color:#E3E1F2; }
.section-dark a.chip:hover{ background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.4); }

/* ============================================================
   spec-list
   ============================================================ */
.spec-list{ list-style:none; margin:0; padding:0; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.spec-list li{ display:flex; justify-content:space-between; gap:20px; padding:14px 20px; font-size:.95rem; }
.spec-list li:nth-child(odd){ background:var(--soft); }
.spec-list li .k{ color:var(--muted); }
.spec-list li .v{ color:var(--ink); font-weight:700; text-align:right; }

/* ============================================================
   data-table
   ============================================================ */
.data-table{ width:100%; border-collapse:collapse; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; font-size:.95rem; background: #fff; }
.data-table thead th{ background:var(--ink); color:#fff; text-align:left; font-family:"Hanken Grotesk",sans-serif; font-weight:600; padding:14px 18px; font-size:.88rem; letter-spacing:.02em; }
.data-table td{ padding:13px 18px; border-top:1px solid var(--line); vertical-align:top; }
.data-table tbody tr:nth-child(even){ background: #f5f5f5; }
.data-table td.num{ font-family:"Archivo",sans-serif; font-weight:700; color:var(--ink); white-space:nowrap; }

/* ============================================================
   accordion
   ============================================================ */
.acc{ border-top:1px solid var(--line); max-width:880px; }
.acc-group-head{ margin:44px 0 8px; }
.acc-item{ border-bottom:1px solid var(--line); }
.acc-q{
  display:flex; align-items:flex-start; justify-content:space-between; gap:20px; width:100%;
  padding:22px 0; background:none; border:none; cursor:pointer; text-align:left;
  font-family:"Archivo",sans-serif; font-weight:700; font-size:1.08rem; color:var(--ink); line-height:1.35;
}
.acc-icon{ position:relative; width:22px; height:22px; flex:0 0 auto; margin-top:3px; }
.acc-icon::before,.acc-icon::after{ content:""; position:absolute; background:var(--amber-dark); transition:transform .3s var(--ease), opacity .3s var(--ease); }
.acc-icon::before{ top:10px; left:0; width:22px; height:2px; }
.acc-icon::after{ top:0; left:10px; width:2px; height:22px; }
.acc-item.open .acc-icon::after{ transform:scaleY(0); }
.acc-body{ max-height:0; overflow:hidden; transition:max-height .34s var(--ease); }
.acc-body-inner{ padding:0 0 24px; color:var(--muted); font-size:1rem; line-height:1.65; }
.acc-body-inner > * + *{ margin-top:1rem; }
.acc-body-inner ul{ list-style:none; padding:0; margin:1rem 0; }
.acc-body-inner ul li{ position:relative; padding-left:26px; margin-bottom:.5rem; }
.acc-body-inner ul li::before{ content:""; position:absolute; left:0; top:.6em; width:10px; height:2px; background:var(--amber); }

/* ============================================================
   note-block
   ============================================================ */
.note-block{
  background:var(--soft); border:1px solid var(--line); border-radius:var(--radius);
  padding:24px 26px; display:flex; gap:16px; align-items:flex-start;
}
.note-block svg{ width:22px; height:22px; color:var(--amber-dark); flex:0 0 auto; margin-top:2px; }
.note-block p{ font-size:.94rem; color:var(--muted); line-height:1.6; }
.note-block strong{ color:var(--ink); }

/* ============================================================
   cta-band
   ============================================================ */
.cta-band{ background:var(--ink-deep); color:#C6C3E0; position:relative; overflow:hidden; text-align:center; }
.cta-band::after{
  content:""; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:min(700px,80%); height:200%;
  background:radial-gradient(circle at center, rgba(235,165,60,.16), transparent 60%); pointer-events:none;
}
.cta-band .container{ position:relative; z-index:1; }
.cta-band h2{ color:#fff; max-width: 700px; margin:0 auto; }
.cta-band p{ color:#C6C3E0; max-width:560px; margin:18px auto 0; font-size:1.1rem; }
.cta-band .btn-row{ margin-top:32px; justify-content:center; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:44px; align-items:start; }
.contact-aside{ display:flex; flex-direction:column; gap:24px; }
.contact-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:30px 28px; box-shadow:var(--shadow-sm); }
.contact-card h3{ margin-bottom:20px; }
.cc-row{ display:flex; gap:15px; align-items:flex-start; padding:14px 0; border-top:1px solid var(--line); }
.cc-row:first-of-type{ border-top:none; padding-top:0; }
.cc-icon{ width:42px; height:42px; border-radius:var(--radius); background:var(--tint); color:var(--ink); display:flex; align-items:center; justify-content:center; flex:0 0 auto; }
.cc-icon svg{ width:20px; height:20px; }
.cc-row .cc-label{ font-size:.78rem; text-transform:uppercase; letter-spacing:.1em; color:var(--muted); font-weight:600; }
.cc-row .cc-value{ font-weight:700; color:var(--ink); margin-top:2px; }
.cc-row .cc-value a{ color:var(--ink); } .cc-row .cc-value a:hover{ color:var(--ink-2); }
.cc-row .cc-sub{ font-size:.88rem; color:var(--muted); margin-top:2px; font-weight:400; }

.form-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:clamp(28px,3vw,40px); box-shadow:var(--shadow-md); }
.form-card h3{ margin-bottom:6px; }
.form-card > p.form-intro{ color:var(--muted); font-size:.96rem; margin-bottom:26px; }
.field{ margin-bottom:20px; }
.field label{ display:block; font-weight:600; font-size:.9rem; color:var(--ink); margin-bottom:8px; }
.field label .req{ color:var(--amber-dark); }
.field input,.field select,.field textarea{
  width:100%; padding:13px 15px; border:1.5px solid var(--line); border-radius:var(--radius);
  font-family:inherit; font-size:1rem; color:var(--text); background:#fff; transition:border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus,.field select:focus,.field textarea:focus{ outline:none; border-color:var(--ink-2); box-shadow:0 0 0 3px rgba(42,38,133,.12); }
.field textarea{ resize:vertical; min-height:120px; }
.field.invalid input,.field.invalid select,.field.invalid textarea{ border-color:#C0392B; }
.field .err{ display:none; color:#C0392B; font-size:.83rem; margin-top:6px; }
.field.invalid .err{ display:block; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-note{ font-size:.82rem; color:var(--muted); margin-top:6px; }
.form-success{
  display:none; text-align:center; padding:30px 10px;
}
.form-success.show{ display:block; }
.form-success .fs-icon{ width:64px; height:64px; border-radius:50%; background:var(--tint); color:var(--ink); display:flex; align-items:center; justify-content:center; margin:0 auto 20px; }
.form-success .fs-icon svg{ width:32px; height:32px; }
.form-success h3{ margin-bottom:10px; }
.form-success p{ color:var(--muted); }

/* ============================================================
   filter-row
   ============================================================ */
.filter-row{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:36px; }
.filter-btn{
  padding:10px 18px; border-radius:var(--radius); border:1px solid var(--line); background:#fff;
  font-family:"Hanken Grotesk",sans-serif; font-weight:600; font-size:.9rem; color:var(--text); cursor:pointer;
  transition:all .2s var(--ease);
}
.filter-btn:hover{ border-color:var(--ink); color:var(--ink); }
.filter-btn.active{ background:var(--ink); border-color:var(--ink); color:#fff; }

/* ============================================================
   placeholders
   ============================================================ */
.ph{
  position:relative; background:var(--tint); border-radius:var(--radius); overflow:hidden;
  background-image:repeating-linear-gradient(45deg, rgba(23,20,110,.045) 0 12px, transparent 12px 24px);
  display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center;
  color:var(--ink); padding:24px; min-height:180px;
}
.ph.dark{ background:#1b1852; color:#C6C3E0; background-image:repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 12px, transparent 12px 24px); }
.ph-icon{ width:44px; height:44px; opacity:.85; margin-bottom:14px; }
.ph-icon svg{ width:44px; height:44px; }
.ph-label{ font-weight:700; font-size:.95rem; max-width:26ch; line-height:1.4; }
.ph-tag{ font-size:.7rem; text-transform:uppercase; letter-spacing:.14em; color:var(--muted); margin-top:10px; font-weight:600; }
.ph.dark .ph-tag{ color:#8B88B4; }
.ph-hero{ aspect-ratio:4/3.4; min-height:340px; }
.ph-wide{ aspect-ratio:16/7; }
.ph-sq{ aspect-ratio:1/1; }
.ph-43{ aspect-ratio:4/3; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background:var(--ink-deep); color:#9C99C2; }
.f-top{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1.2fr; gap:40px; padding:clamp(52px,6vw,80px) 0 46px; }
.f-brand .wordmark .wm-name{ color:#fff; }
.f-brand .wordmark .wm-div{ color:#8B88B4; }
.f-brand p{ margin-top:18px; font-size:.92rem; color:#9C99C2; max-width:300px; line-height:1.6; }
.f-licences{ margin-top:22px; display:flex; flex-direction:column; gap:6px; font-size:.82rem; color:#8B88B4; }
.f-licences span strong{ color:#C6C3E0; font-weight:600; }
.f-col h5{ color:#fff; font-family:"Hanken Grotesk",sans-serif; font-weight:700; text-transform:uppercase; letter-spacing:.12em; font-size:.72rem; margin-bottom:18px; }
.f-col ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:11px; }
.f-col a{ color:#B7B4D6; font-size:.92rem; }
.f-col a:hover{ color:#fff; }
.f-contact .cc-line{ display:flex; align-items:flex-start; gap:10px; margin-bottom:14px; font-size:.9rem; color:#B7B4D6; }
.f-contact .cc-line svg{ width:16px; height:16px; color:var(--amber); flex:0 0 auto; margin-top:3px; }
.f-contact .cc-line a{ color:#B7B4D6; } .f-contact .cc-line a:hover{ color:#fff; }
.f-bar{ border-top:1px solid rgba(255,255,255,.1); padding:24px 0; display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:.83rem; color:#8B88B4; }
.f-bar .f-group{ color:#C6C3E0; font-weight:600; }
.f-bar .f-links{ display:flex; gap:20px; }
.f-bar .f-links a{ color:#8B88B4; } .f-bar .f-links a:hover{ color:#fff; }

/* ============================================================
   reveal
   ============================================================ */
[data-reveal]{ opacity:0; transform:translateY(22px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].in{ opacity:1; transform:none; }
[data-reveal][data-delay="1"]{ transition-delay:.08s; }
[data-reveal][data-delay="2"]{ transition-delay:.16s; }
[data-reveal][data-delay="3"]{ transition-delay:.24s; }
@media (prefers-reduced-motion:reduce){
  [data-reveal]{ opacity:1 !important; transform:none !important; }
  html{ scroll-behavior:auto; }
}

/* generic helpers */
.center-text{ text-align:center; }
.mt-gap{ margin-top:40px; }
.split{ display:grid; grid-template-columns:1fr 1fr; gap:52px; align-items:center; }
.split-media{ align-self:stretch; }
.overflow-x{ overflow-x:auto; }
.brand img {
    max-width: 190px;
    width: auto;
}
.border_r {
    border-radius: 15px;
}
.mega .link-arrow {
    min-width: 195px;
}
.success {
    color: green;
}
.spec-list li:nth-child(even) {
    background: #fff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px){
  .nav-links,.nav-cta .btn{ display:none; }
  .blog-grid {
    grid-template-columns: repeat(2,1fr);
}
  .nav-burger{ display:flex; }
  .trust-item .num {
    font-size: 20px;
}
.ub-creds .ub-item.hide-sm{ display:none; }
.blog-card.suggest {
    padding: 0;
}
}
@media (max-width:767px){
  .hero .trust{ gap:26px; }
  .check-list.two{ grid-template-columns:1fr; }
.hero:after{display: none;}
.cta-band::after {
    width: 100%;
}
.hero-grid{ grid-template-columns:1fr; gap:40px; }
  .page-hero.with-media .container{ grid-template-columns:1fr; gap:34px; }
  .svc-grid,.project-grid,.blog-grid,.tm-grid{ grid-template-columns:repeat(2,1fr); }
  .feature-grid{ grid-template-columns:repeat(2,1fr); }
  .contact-grid{ grid-template-columns:1fr; gap:34px; }
  .split{ grid-template-columns:1fr; gap:34px; }
  .blog-featured{ grid-template-columns:1fr; }
  .blog-featured .bf-media{ min-height:240px; }
  .f-top{ grid-template-columns:1fr 1fr; gap:34px; }
}
@media (max-width:560px){
  body{ font-size:16px; }
  .utility-bar .ub-creds{ display:none; }
  .svc-grid,.svc-grid.two,.project-grid,.blog-grid,.tm-grid,.feature-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .trust{ gap:24px; }
  .trust-item{ flex:1 1 40%; }
  .data-table{ font-size:.86rem; }
  .data-table td,.data-table th{ padding:10px 12px; }
  .f-top{ grid-template-columns:1fr; }
  .f-bar{ flex-direction:column; align-items:flex-start; }
  section{ padding:56px 0; }
  .step{ padding-left:64px; }
}
