﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --white: #ffffff;
  --bg: #f7f7f5;
  --bg-dark: #0e1620;
  --ink: #1a2332;
  --ink-2: #4b5563;
  --ink-3: #8a93a2;
  --line: #e5e2dc;
  --line-strong: #c9c4bb;
  --teal: #0a5654;
  --teal-dark: #073e3c;
  --teal-light: #e7f0ef;
  --teal-border: #b5d4d2;
  --gold: #9a7828;
  --gold-light: #f6eedf;
  --gold-border: #d8c089;
  --r: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --shadow-xs: 0 1px 2px rgba(26,35,50,.06);
  --shadow-sm: 0 2px 8px rgba(26,35,50,.08);
  --shadow: 0 6px 24px rgba(26,35,50,.1);
  --shadow-lg: 0 16px 48px rgba(26,35,50,.12);
  --maxw: 1160px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin:0; font-family:'Inter',sans-serif; font-size:15px; line-height:1.65; color:var(--ink); background:var(--white); -webkit-font-smoothing:antialiased; }
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
p { margin-top:0; }
ul { padding:0; margin:0; list-style:none; }
h1,h2,h3,h4,h5 { font-family:'Playfair Display',serif; line-height:1.18; margin-top:0; }
.container { width:min(var(--maxw),92%); margin:0 auto; }

/* ── UTILITY BAR ── */
.util-bar { background:var(--bg-dark); padding:7px 0; font-size:.78rem; font-family:'Inter',sans-serif; }
.util-inner { display:flex; justify-content:space-between; align-items:center; gap:16px; }
.util-left { display:flex; align-items:center; gap:14px; color:rgba(255,255,255,.6); }
.util-sep { color:rgba(255,255,255,.18); }
.util-right { display:flex; align-items:center; gap:16px; }
.util-link { color:rgba(255,255,255,.65); font-weight:500; transition:color .15s; }
.util-link:hover { color:#fff; }
.util-cta { background:var(--teal); color:#fff!important; padding:4px 12px; border-radius:var(--r); font-weight:600; letter-spacing:.02em; transition:background .15s; }
.util-cta:hover { background:var(--teal-dark); }

/* ── HEADER / NAV ── */
.site-header { position:sticky; top:0; z-index:100; }
.nav-bar { background:var(--white); border-bottom:1px solid var(--line); box-shadow:var(--shadow-xs); }
.nav-inner { display:flex; align-items:center; height:66px; }
.brand { flex-shrink:0; display:block; margin-right:16px; }
.brand-logo { height:52px; width:auto; object-fit:contain; }
.nav-list { display:flex; align-items:center; flex:1; gap:0; }
.nav-item { position:relative; }
.nav-link { display:block; height:66px; line-height:66px; padding:0 10px; font-size:.79rem; font-weight:600; font-family:'Inter',sans-serif; color:var(--ink-2); white-space:nowrap; border-bottom:2px solid transparent; transition:color .15s,border-color .15s; letter-spacing:.01em; }
.nav-link:hover,.nav-link.active { color:var(--teal); border-bottom-color:var(--teal); }
.nav-item.has-submenu>.nav-link::after { content:' \25BE'; font-size:.58rem; opacity:.5; }
.nav-cta-link { background:var(--teal)!important; color:#fff!important; border-radius:var(--r)!important; height:36px!important; line-height:36px!important; padding:0 16px!important; margin-left:8px; align-self:center; border-bottom:none!important; font-size:.79rem!important; }
.nav-cta-link:hover { background:var(--teal-dark)!important; }
.submenu { position:absolute; top:100%; left:0; min-width:215px; background:var(--white); border:1px solid var(--line); border-top:2px solid var(--teal); border-radius:0 0 var(--r-lg) var(--r-lg); box-shadow:var(--shadow); padding:6px 0; opacity:0; pointer-events:none; transform:translateY(4px); transition:opacity .18s,transform .18s; z-index:200; }
.nav-item.has-submenu:hover .submenu,.nav-item.has-submenu:focus-within .submenu { opacity:1; transform:translateY(0); pointer-events:auto; }
.submenu li a { display:block; padding:8px 18px; font-size:.83rem; font-weight:500; font-family:'Inter',sans-serif; color:var(--ink-2); transition:background .12s,color .12s; }
.submenu li a:hover { background:var(--teal-light); color:var(--teal); }
.menu-toggle { display:none; flex-direction:column; justify-content:center; gap:5px; width:42px; height:42px; border:1px solid var(--line); background:transparent; border-radius:var(--r-md); cursor:pointer; padding:10px; margin-left:auto; }
.menu-toggle span { display:block; width:100%; height:2px; background:var(--ink); border-radius:2px; transition:.3s; }

/* ── TYPE / UTILITIES ── */
.eyebrow { display:inline-flex; align-items:center; gap:8px; color:var(--teal); font-size:.72rem; font-weight:700; font-family:'Inter',sans-serif; letter-spacing:.1em; text-transform:uppercase; margin-bottom:14px; }
.eyebrow::before { content:''; display:block; width:22px; height:2px; background:var(--teal); border-radius:1px; }
.eyebrow.light { color:var(--teal-border); }
.eyebrow.light::before { background:var(--teal-border); }
h1.display { font-size:clamp(2.1rem,4vw,3.1rem); line-height:1.12; margin-bottom:18px; color:var(--ink); }
h1.display em { font-style:italic; color:var(--teal); }
.lead { font-size:1.02rem; color:var(--ink-2); line-height:1.7; max-width:54ch; margin-bottom:0; }

/* ── BUTTONS ── */
.btn { display:inline-flex; align-items:center; gap:8px; padding:12px 22px; border-radius:var(--r); font-family:'Inter',sans-serif; font-weight:600; font-size:.88rem; letter-spacing:.01em; border:1.5px solid transparent; cursor:pointer; transition:all .18s; text-decoration:none; }
.btn-primary { background:var(--teal); color:#fff; border-color:var(--teal); }
.btn-primary:hover { background:var(--teal-dark); border-color:var(--teal-dark); }
.btn-outline { background:transparent; color:var(--teal); border-color:var(--teal); }
.btn-outline:hover { background:var(--teal-light); }
.btn-ghost { background:transparent; color:var(--ink-2); border-color:var(--line-strong); }
.btn-ghost:hover { color:var(--ink); border-color:var(--ink-2); }
.btn-gold { background:var(--gold); color:#fff; border-color:var(--gold); }
.btn-gold:hover { background:#7a5d1e; }
.btn-white { background:#fff; color:var(--teal); border-color:#fff; font-weight:700; }
.btn-white:hover { background:var(--teal-light); }
.btn-white-out { background:transparent; color:#fff; border-color:rgba(255,255,255,.6); }
.btn-white-out:hover { background:rgba(255,255,255,.1); border-color:#fff; }
.btn-group { display:flex; flex-wrap:wrap; gap:12px; }

/* ── TAGS ── */
.tag { display:inline-block; padding:3px 10px; border-radius:100px; font-size:.71rem; font-weight:700; font-family:'Inter',sans-serif; letter-spacing:.05em; text-transform:uppercase; }
.tag-teal { background:var(--teal-light); color:var(--teal); }
.tag-gold { background:var(--gold-light); color:var(--gold); }
.tag-dark { background:#eaecf0; color:#374151; }

/* ── SECTIONS ── */
.section { padding:72px 0; }
.section-alt { background:var(--bg); }
.section-dark { background:var(--bg-dark); color:#fff; }
.section-dark .eyebrow { color:var(--teal-border); }
.section-dark .eyebrow::before { background:var(--teal-border); }
.section-dark .lead { color:rgba(255,255,255,.65); }
.section-head { margin-bottom:40px; }
.section-head h2 { font-size:clamp(1.7rem,2.8vw,2.3rem); margin-bottom:12px; }
.section-head p { color:var(--ink-2); font-size:.97rem; max-width:60ch; margin-bottom:0; }
.section-dark .section-head p { color:rgba(255,255,255,.6); }
.section-head-row { display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom:40px; }

/* ── HOMEPAGE HERO ── */
.home-hero { padding:72px 0 64px; background:var(--white); border-bottom:1px solid var(--line); }
.home-hero-inner { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.hero-visual { position:relative; }
.hero-img { width:100%; aspect-ratio:4/3; background:linear-gradient(145deg,#d4e8e6,#e8f3f2); border:1px solid var(--teal-border); border-radius:var(--r-lg); overflow:hidden; display:flex; align-items:center; justify-content:center; }
.hero-img img { width:100%; height:100%; object-fit:cover; }
.hero-float { position:absolute; background:var(--white); border:1px solid var(--line); border-radius:var(--r-md); padding:14px 18px; box-shadow:var(--shadow); min-width:158px; }
.hero-float-num { font-family:'Playfair Display',serif; font-size:1.6rem; font-weight:700; color:var(--teal); display:block; line-height:1; }
.hero-float-label { font-size:.73rem; color:var(--ink-3); font-family:'Inter',sans-serif; margin-top:3px; display:block; }
.hero-float.f1 { bottom:-18px; left:-18px; }
.hero-float.f2 { top:18px; right:-18px; background:var(--bg-dark); min-width:148px; padding:12px 16px; }
.hero-float.f2 strong { display:block; font-size:.82rem; color:#fff; margin-bottom:2px; }
.hero-float.f2 span { font-size:.73rem; color:rgba(255,255,255,.55); }

/* ── TRUST STRIP ── */
.trust-strip { background:var(--bg-dark); padding:24px 0; }
.trust-grid { display:grid; grid-template-columns:repeat(5,1fr); }
.trust-item { padding:18px 12px; text-align:center; border-right:1px solid rgba(255,255,255,.07); }
.trust-item:last-child { border-right:none; }
.trust-num { font-family:'Playfair Display',serif; font-size:1.9rem; font-weight:700; color:#fff; display:block; line-height:1; }
.trust-label { font-size:.68rem; color:rgba(255,255,255,.5); margin-top:4px; display:block; letter-spacing:.05em; text-transform:uppercase; font-family:'Inter',sans-serif; }

/* ── INNER HERO (sub-pages) ── */
.inner-hero { background:var(--bg-dark); color:#fff; padding:52px 0 44px; border-bottom:1px solid rgba(255,255,255,.04); }
.inner-hero h1 { font-size:clamp(1.8rem,3.5vw,2.7rem); color:#fff; margin-bottom:12px; }
.inner-hero p { color:rgba(255,255,255,.6); max-width:54ch; margin-bottom:0; font-size:.97rem; }
.inner-hero-inner { display:grid; grid-template-columns:1.2fr .8fr; gap:40px; align-items:center; }

/* ── GRIDS ── */
.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }

/* ── CARDS ── */
.card { background:var(--white); border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; transition:box-shadow .2s,transform .2s; }
.card:hover { box-shadow:var(--shadow); transform:translateY(-3px); }
.card-thumb { aspect-ratio:16/9; background:var(--bg); overflow:hidden; }
.card-thumb img { width:100%; height:100%; object-fit:cover; }
.card-body { padding:20px; }
.card-body h3 { font-size:1.05rem; margin-bottom:6px; }
.card-body>p { font-size:.87rem; color:var(--ink-2); margin-bottom:14px; }
.text-link { font-size:.84rem; font-weight:600; color:var(--teal); font-family:'Inter',sans-serif; display:inline-flex; align-items:center; gap:4px; }
.text-link::after { content:' \2192'; }
.text-link:hover { color:var(--teal-dark); }

/* ── BRAND CARD ── */
.brand-card { background:var(--white); border:1px solid var(--line); border-radius:var(--r-lg); padding:24px 20px; display:flex; flex-direction:column; align-items:center; text-align:center; gap:10px; transition:box-shadow .2s,border-color .2s; }
.brand-card:hover { box-shadow:var(--shadow); border-color:var(--teal-border); }
.brand-logo-area { width:90px; height:56px; display:flex; align-items:center; justify-content:center; background:var(--bg); border-radius:var(--r); }
.brand-logo-area img { max-width:100%; max-height:100%; object-fit:contain; }
.brand-logo-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:.69rem; font-weight:700; font-family:'Inter',sans-serif; color:var(--ink-3); letter-spacing:.04em; }
.brand-card-name { font-size:.9rem; font-weight:700; font-family:'Inter',sans-serif; color:var(--ink); }
.brand-card-origin { font-size:.75rem; color:var(--ink-3); font-family:'Inter',sans-serif; }
.auth-badge { display:inline-flex; align-items:center; gap:4px; padding:3px 9px; border-radius:100px; background:var(--teal-light); border:1px solid var(--teal-border); color:var(--teal); font-size:.68rem; font-weight:700; font-family:'Inter',sans-serif; letter-spacing:.04em; text-transform:uppercase; }
.auth-badge::before { content:'\2713'; font-size:.65rem; }

/* ── VALUE / INFO PANELS ── */
.val-card { border:1px solid var(--line); border-radius:var(--r-lg); padding:28px; background:var(--white); }
.val-icon { width:42px; height:42px; background:var(--teal-light); border:1px solid var(--teal-border); border-radius:var(--r-md); display:flex; align-items:center; justify-content:center; font-size:1.25rem; margin-bottom:16px; }
.val-card h3 { font-size:1.03rem; margin-bottom:8px; }
.val-card p { font-size:.87rem; color:var(--ink-2); line-height:1.65; margin-bottom:0; }
.info-panel { border:1px solid var(--line); border-radius:var(--r-lg); padding:22px; background:var(--white); }
.info-panel h3 { font-size:1rem; margin-bottom:8px; }
.info-panel>p { font-size:.87rem; color:var(--ink-2); margin-bottom:0; line-height:1.65; }

/* ── STAT (dark bg) ── */
.stat-panel { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:var(--r-lg); padding:24px; }
.stat-num { font-family:'Playfair Display',serif; font-size:2.4rem; font-weight:700; color:#fff; display:block; line-height:1; margin-bottom:6px; }
.stat-desc { font-size:.8rem; color:rgba(255,255,255,.55); line-height:1.5; margin-bottom:0; }

/* ── SEGMENT BARS ── */
.seg-bar { margin-bottom:16px; }
.seg-label { display:flex; justify-content:space-between; font-size:.82rem; font-weight:600; font-family:'Inter',sans-serif; margin-bottom:5px; color:var(--ink); }
.seg-label span { color:var(--ink-3); font-weight:400; }
.seg-track { height:5px; background:var(--line); border-radius:100px; }
.seg-fill { height:100%; background:var(--teal); border-radius:100px; }
.seg-fill.gold { background:var(--gold); }
.installed-layout { display:grid; grid-template-columns:1fr 1.15fr; gap:48px; align-items:start; }
.install-stats { display:grid; grid-template-columns:1fr 1fr; gap:14px; }

/* ── COVERAGE ── */
.coverage-item { display:flex; align-items:flex-start; gap:14px; padding:16px 20px; border:1px solid var(--line); border-left:3px solid var(--teal); border-radius:0 var(--r-lg) var(--r-lg) 0; background:var(--white); margin-bottom:10px; }
.coverage-item.partner { border-left-color:var(--gold); }
.cov-icon { width:34px; height:34px; border-radius:50%; background:var(--teal-light); display:flex; align-items:center; justify-content:center; font-size:1rem; flex-shrink:0; }
.coverage-item.partner .cov-icon { background:var(--gold-light); }
.cov-name { font-weight:700; font-size:.9rem; display:block; margin-bottom:2px; font-family:'Inter',sans-serif; }
.cov-detail { font-size:.82rem; color:var(--ink-2); line-height:1.5; }

/* ── CTA SECTION ── */
.cta-section { background:var(--teal); padding:56px 0; }
.cta-inner { display:flex; justify-content:space-between; align-items:center; gap:32px; }
.cta-inner h2 { font-size:clamp(1.5rem,2.5vw,2rem); color:#fff; margin-bottom:8px; }
.cta-inner p { color:rgba(255,255,255,.75); margin-bottom:0; }

/* ── CERTIFICATIONS STRIP ── */
.certs-strip { padding:36px 0; background:var(--bg); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.certs-label { font-size:.71rem; font-weight:700; font-family:'Inter',sans-serif; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-3); margin-bottom:18px; text-align:center; }
.certs-row { display:flex; justify-content:center; align-items:center; flex-wrap:wrap; gap:12px; }
.cert-badge { background:var(--white); border:1px solid var(--line-strong); border-radius:var(--r); padding:9px 16px; font-size:.77rem; font-weight:700; font-family:'Inter',sans-serif; color:var(--ink-2); letter-spacing:.04em; display:flex; align-items:center; gap:6px; }
.cert-icon { font-size:.95rem; }

/* ── CONTACT & FORM ── */
.contact-layout { display:grid; grid-template-columns:1fr 1.5fr; gap:44px; align-items:start; }
.contact-person { display:flex; align-items:center; gap:14px; padding:14px 16px; border:1px solid var(--line); border-radius:var(--r-md); background:var(--white); margin-bottom:10px; }
.contact-avatar { width:46px; height:46px; border-radius:50%; background:var(--teal-light); border:2px solid var(--teal-border); flex-shrink:0; display:flex; align-items:center; justify-content:center; font-family:'Playfair Display',serif; font-weight:700; color:var(--teal); font-size:1.1rem; }
.contact-info strong { display:block; font-size:.88rem; font-family:'Inter',sans-serif; font-weight:700; color:var(--ink); margin-bottom:2px; }
.contact-info span { font-size:.78rem; color:var(--ink-3); font-family:'Inter',sans-serif; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-full { grid-column:1/-1; }
label { display:grid; gap:5px; font-size:.81rem; font-weight:600; font-family:'Inter',sans-serif; color:var(--ink-2); }
input,textarea,select { width:100%; padding:10px 12px; border:1px solid var(--line-strong); border-radius:var(--r-md); font-family:'Inter',sans-serif; font-size:.88rem; color:var(--ink); background:var(--white); transition:border-color .15s,box-shadow .15s; }
input:focus,textarea:focus,select:focus { outline:none; border-color:var(--teal); box-shadow:0 0 0 3px rgba(10,86,84,.1); }
textarea { min-height:120px; resize:vertical; }

/* ── INFO LIST ── */
.info-list li { display:flex; align-items:flex-start; gap:10px; padding:9px 0; border-bottom:1px solid var(--line); font-size:.89rem; color:var(--ink-2); }
.info-list li:last-child { border-bottom:none; }
.info-list li::before { content:'\2014'; color:var(--teal); font-weight:700; flex-shrink:0; margin-top:1px; }

/* ── STEPS ── */
.steps { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.step { border:1px solid var(--line); border-radius:var(--r-lg); padding:22px; background:var(--white); }
.step-card { border:1px solid var(--line); border-radius:var(--r-lg); padding:22px; background:var(--white); }
.step-num { width:32px; height:32px; border-radius:50%; background:var(--teal); color:#fff; font-weight:700; font-family:'Inter',sans-serif; font-size:.87rem; display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
.step h3, .step-card h3 { font-size:1rem; margin-bottom:6px; }
.step p, .step-card p { font-size:.85rem; color:var(--ink-2); margin-bottom:0; }

/* ── COVERAGE GRID ── */
.coverage-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.coverage-item { border:1px solid var(--line); border-radius:var(--r-lg); padding:22px; background:var(--white); }
.ci-head { display:flex; align-items:center; gap:10px; margin-bottom:10px; flex-wrap:wrap; }
.ci-head h3 { font-size:.98rem; margin:0; }
.ci-badge { display:inline-block; padding:3px 10px; border-radius:20px; font-size:.7rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase; }
.ci-direct { background:#d1fae5; color:#065f46; }
.ci-partner { background:#e0e7ff; color:#3730a3; }
.ci-remote { background:#fef3c7; color:#92400e; }
.coverage-item p { font-size:.86rem; color:var(--ink-2); margin:0; line-height:1.6; }

/* ── CASE STUDIES ── */
.case-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.case-card { border:1px solid var(--line); border-radius:var(--r-lg); padding:28px; background:var(--white); }
.case-meta { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:12px; }
.case-card h3 { font-size:1.05rem; margin-bottom:16px; line-height:1.4; }
.case-block { margin-bottom:12px; }
.case-block:last-of-type { margin-bottom:0; }
.case-label { font-size:.72rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--teal); margin-bottom:4px; }
.case-block p { font-size:.86rem; color:var(--ink-2); margin:0; line-height:1.6; }

/* ── SOLUTIONS ── */
.sol-block { border:1px solid var(--line); border-radius:var(--r-lg); padding:32px 36px; background:var(--white); }
.sol-label { margin-bottom:10px; }
.sol-block h2 { font-size:1.5rem; margin-bottom:10px; }
.sol-block>p { color:var(--ink-2); margin-bottom:0; max-width:640px; }

/* ── INFO PANEL h4 fix ── */
.info-panel h4 { font-size:.95rem; margin-bottom:6px; font-family:'Playfair Display',serif; }

/* ── FOOTER ── */
.site-footer { background:var(--bg-dark); padding:52px 0 24px; }
.footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:28px; padding-bottom:32px; border-bottom:1px solid rgba(255,255,255,.07); margin-bottom:20px; }
.footer-logo { height:46px; width:auto; object-fit:contain; margin-bottom:14px; filter:brightness(0) invert(1); opacity:.8; }
.footer-about { font-size:.83rem; line-height:1.65; color:rgba(255,255,255,.5); margin-bottom:0; }
.footer-title { font-size:.69rem; font-family:'Inter',sans-serif; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.35); margin-bottom:12px; }
.footer-list li { margin-bottom:8px; }
.footer-list a { font-size:.83rem; color:rgba(255,255,255,.55); transition:color .15s; }
.footer-list a:hover { color:#fff; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; font-size:.76rem; color:rgba(255,255,255,.3); flex-wrap:wrap; gap:16px; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity:0; transform:translateY(16px); transition:opacity .52s ease,transform .52s ease; }
.reveal.is-visible { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width:1100px) {
  .nav-link { padding:0 7px; font-size:.75rem; }
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .trust-grid { grid-template-columns:repeat(3,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .coverage-grid { grid-template-columns:repeat(2,1fr); }
  .case-grid { grid-template-columns:1fr; }
}
@media (max-width:768px) {
  .util-bar { display:none; }
  .menu-toggle { display:flex; }
  .nav-list { display:none; position:absolute; top:66px; left:0; right:0; background:var(--white); border-bottom:1px solid var(--line); flex-direction:column; padding:8px 0; box-shadow:var(--shadow); z-index:200; max-height:80vh; overflow-y:auto; }
  .site-header.nav-open .nav-list { display:flex; }
  .nav-link { height:auto; line-height:1; padding:11px 20px; font-size:.88rem; border-bottom:1px solid var(--line); white-space:normal; }
  .nav-cta-link { margin:10px 20px; height:auto!important; line-height:1!important; padding:12px 20px!important; text-align:center; justify-content:center; }
  .nav-item.has-submenu>.nav-link::after { float:right; }
  .submenu { position:static; opacity:1; pointer-events:auto; transform:none; box-shadow:none; border:none; border-radius:0; background:var(--bg); display:none; }
  .nav-item.has-submenu.open .submenu { display:block; }
  .submenu li a { padding:9px 32px; }
  .home-hero-inner,.installed-layout,.contact-layout,.inner-hero-inner { grid-template-columns:1fr; }
  .hero-float { display:none; }
  .grid-2,.grid-3,.grid-4 { grid-template-columns:1fr; }
  .coverage-grid { grid-template-columns:1fr; }
  .sol-block { padding:24px 20px; }
  .section { padding:48px 0; }
  .cta-inner { flex-direction:column; align-items:flex-start; }
  .trust-grid { grid-template-columns:repeat(2,1fr); }
  .form-grid { grid-template-columns:1fr; }
  .steps { grid-template-columns:1fr 1fr; }
}
@media (max-width:480px) {
  .trust-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .steps { grid-template-columns:1fr; }
  .brand-logo { height:42px; }
}
