/* ============================================================
   Evone — EV Charging Management
   Design system: clean & corporate, trust-blue + electric-green
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;500;600&family=Schibsted+Grotesk:wght@500;600;700;800&display=swap');

:root {
  /* Surfaces & ink */
  --bg:        #FCFCFD;
  --surface:   #FFFFFF;
  --tint:      #F3F6FB;
  --tint-2:    #EAF0F9;
  --ink:       #0E1B2C;
  --ink-soft:  #2A3A4E;
  --muted:     #5C6B7E;
  --line:      #E4E9F1;
  --line-soft: #EEF2F8;

  /* Brand */
  --primary:      #1556E0;
  --primary-deep: #0B3CAE;
  --primary-soft: #E7EEFC;
  --accent:       #14C06B;   /* electric green */
  --accent-deep:  #0E9A55;
  --accent-soft:  #E2F7ED;

  /* Dark band */
  --navy:      #0B1626;
  --navy-2:    #112338;

  /* Type */
  --font-head: 'Schibsted Grotesk', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;

  /* Geometry */
  --r-sm: 10px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(14,27,44,.05), 0 1px 3px rgba(14,27,44,.04);
  --shadow:    0 4px 14px rgba(14,27,44,.07), 0 1px 3px rgba(14,27,44,.05);
  --shadow-lg: 0 24px 60px rgba(11,38,86,.16), 0 6px 18px rgba(14,27,44,.08);
  --maxw: 1200px;
  --nav-h: 72px;
}

/* ---------- reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--primary); color: #fff; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.1; letter-spacing: -.02em; font-weight: 700; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 104px 0; }
.eyebrow {
  font-family: var(--font-head);
  font-weight: 600; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--primary);
  display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--accent); border-radius: 2px; }
.lead { color: var(--muted); font-size: 1.18rem; max-width: 62ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: 999px;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 6px 16px rgba(21,86,224,.28); }
.btn-primary:hover { background: var(--primary-deep); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(21,86,224,.34); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.arrow-link {
  font-family: var(--font-head); font-weight: 600; color: var(--primary);
  display: inline-flex; align-items: center; gap: 7px; font-size: 15px;
}
.arrow-link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.arrow-link:hover svg { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(252,252,253,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 1px 0 rgba(14,27,44,.02); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; height: 100%; padding: 0 28px;
  display: flex; align-items: center; gap: 26px; }

/* logo */
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head);
  font-weight: 800; font-size: 22px; letter-spacing: -.03em; color: var(--ink); }
.logo .mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(140deg, var(--primary), var(--accent));
  position: relative; box-shadow: 0 4px 12px rgba(21,86,224,.3);
}
.logo .mark::after {
  content: ""; position: absolute; inset: 0;
  background: #fff;
  -webkit-mask: var(--bolt) center / 16px no-repeat;
          mask: var(--bolt) center / 16px no-repeat;
}
:root { --bolt: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2 4 14h6l-1 8 9-12h-6z'/%3E%3C/svg%3E"); }

.nav-menu { display: flex; align-items: center; gap: 4px; margin-left: 6px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-head); font-weight: 500; font-size: 15px; color: var(--ink-soft);
  padding: 9px 13px; border-radius: 9px; transition: background .15s ease, color .15s ease;
}
.nav-link:hover { color: var(--ink); background: var(--tint); }
.nav-link .chev { width: 14px; height: 14px; transition: transform .2s ease; opacity: .6; }
.nav-item.open .nav-link .chev { transform: rotate(180deg); }
.nav-item.open .nav-link { color: var(--primary); background: var(--primary-soft); }

.nav-spacer { flex: 1; }
.nav-actions { display: flex; align-items: center; gap: 10px; }

/* language toggle */
.lang {
  display: inline-flex; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden;
  font-family: var(--font-head); font-weight: 600; font-size: 13px;
}
.lang button { padding: 7px 12px; color: var(--muted); transition: background .15s, color .15s; }
.lang button.active { background: var(--ink); color: #fff; }
.nav-login { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--ink);
  padding: 9px 8px; white-space: nowrap; }
.nav-login:hover { color: var(--primary); }

/* mega dropdown */
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 14px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 110;
}
.nav-item.open .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dd-wide { width: 660px; display: grid; grid-template-columns: 1fr 1fr 240px; gap: 8px; }
.dd-narrow { width: 300px; }
.dd-group-title { font-family: var(--font-head); font-weight: 700; font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); padding: 8px 12px 6px; }
.dd-link { display: flex; gap: 12px; align-items: flex-start; padding: 10px 12px; border-radius: var(--r-sm);
  transition: background .15s ease; }
.dd-link:hover { background: var(--tint); }
.dd-ico { flex: none; width: 36px; height: 36px; border-radius: 9px; background: var(--primary-soft);
  display: grid; place-items: center; color: var(--primary); }
.dd-ico svg { width: 19px; height: 19px; }
.dd-link.accent .dd-ico { background: var(--accent-soft); color: var(--accent-deep); }
.dd-txt b { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--ink); display: block; }
.dd-txt span { font-size: 12.5px; color: var(--muted); line-height: 1.4; }
.dd-promo { background: linear-gradient(160deg, var(--navy), var(--navy-2)); border-radius: var(--r);
  padding: 18px; color: #fff; display: flex; flex-direction: column; justify-content: space-between; gap: 14px; }
.dd-promo .ph { border-radius: 9px; }
.dd-promo b { font-family: var(--font-head); font-size: 15px; line-height: 1.25; }
.dd-promo p { font-size: 12.5px; color: rgba(255,255,255,.7); }
.dd-promo .arrow-link { color: #fff; }

/* mobile */
.hamburger { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1.5px solid var(--line);
  flex-direction: column; gap: 4px; align-items: center; justify-content: center; }
.hamburger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-panel {
  position: fixed; inset: var(--nav-h) 0 0 0; background: var(--bg); z-index: 99;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; padding: 22px 24px 60px; display: flex; flex-direction: column; gap: 6px;
}
.mobile-panel.open { transform: translateX(0); }
.m-acc > button { width: 100%; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--ink); padding: 16px 4px;
  border-bottom: 1px solid var(--line-soft); }
.m-acc > button .chev { width: 18px; transition: transform .25s; opacity: .5; }
.m-acc.open > button .chev { transform: rotate(180deg); }
.m-sub { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.m-acc.open .m-sub { max-height: 600px; }
.m-sub a { display: block; padding: 11px 6px; color: var(--muted); font-size: 16px; }
.m-cta { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.m-cta .btn { justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: calc(var(--nav-h) + 70px) 0 90px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg::before { content: ""; position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 700px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(21,86,224,.12), rgba(20,192,107,.06) 45%, transparent 70%);
  filter: blur(10px); }
.hero-grid { position: absolute; inset: 0;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 46px 46px; -webkit-mask: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
          mask: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%); opacity: .6; }
.hero-inner { text-align: center; position: relative; }
.hero .pill { display: inline-flex; align-items: center; gap: 9px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px 7px 8px; font-size: 13.5px;
  font-weight: 500; color: var(--ink-soft); box-shadow: var(--shadow-sm); margin-bottom: 26px; white-space: nowrap; }
.hero .pill .tag { background: var(--accent-soft); color: var(--accent-deep); font-family: var(--font-head);
  font-weight: 700; font-size: 11px; letter-spacing: .04em; padding: 3px 9px; border-radius: 999px; }
.hero h1 { font-size: clamp(2.6rem, 6.4vw, 4.6rem); font-weight: 800; max-width: 16ch; margin: 0 auto;
  letter-spacing: -.035em; }
.hero h1 .hl { position: relative; color: var(--primary); white-space: nowrap; }
.hero h1 .hl::after { content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .14em;
  background: var(--accent); opacity: .35; border-radius: 4px; z-index: -1; }
.hero p.sub { margin: 26px auto 0; max-width: 56ch; font-size: 1.22rem; color: var(--muted); }
.hero-actions { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 13.5px; color: var(--muted); display: inline-flex; gap: 8px; align-items: center; }
.hero-note svg { width: 15px; height: 15px; color: var(--accent-deep); }

/* dashboard mockup */
.dashboard { position: relative; margin: 64px auto 0; max-width: 1040px; }
.dash-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); overflow: hidden; }
.dash-top { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(var(--surface), var(--tint)); }
.dash-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--line); }
.dash-dot:nth-child(1){ background:#FF6058; } .dash-dot:nth-child(2){ background:#FFBE2E; } .dash-dot:nth-child(3){ background:#28C840; }
.dash-url { margin-left: 14px; font-size: 12.5px; color: var(--muted); font-family: var(--font-body); }
.dash-body { display: grid; grid-template-columns: 200px 1fr; min-height: 430px; }
.dash-side { background: var(--tint); border-right: 1px solid var(--line-soft); padding: 18px 14px; display: flex; flex-direction: column; gap: 5px; }
.dash-side .s-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 800; font-size: 16px; margin-bottom: 14px; padding: 0 8px; }
.dash-side .s-logo .mark { width: 22px; height: 22px; border-radius: 7px; background: linear-gradient(140deg, var(--primary), var(--accent)); }
.s-item { display: flex; align-items: center; gap: 10px; padding: 9px 11px; border-radius: 9px; font-size: 13.5px; color: var(--muted); font-weight: 500; }
.s-item .si { width: 16px; height: 16px; border-radius: 4px; background: var(--line); }
.s-item.active { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); font-weight: 600; }
.s-item.active .si { background: var(--primary); }
.dash-main { padding: 22px 24px; }
.dm-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.dm-head h4 { font-size: 19px; }
.dm-head .sm { font-size: 12.5px; color: var(--muted); }
.dm-chip { font-size: 11px; font-family: var(--font-head); font-weight: 700; padding: 5px 11px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-deep); }
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.kpi { border: 1px solid var(--line-soft); border-radius: var(--r); padding: 14px; background: var(--surface); }
.kpi .lbl { font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.kpi .val { font-family: var(--font-head); font-weight: 800; font-size: 26px; margin-top: 6px; letter-spacing: -.02em; }
.kpi .delta { font-size: 11.5px; font-weight: 600; margin-top: 3px; color: var(--accent-deep); }
.kpi .delta.down { color: var(--muted); }
.chart { border: 1px solid var(--line-soft); border-radius: var(--r); padding: 16px 18px; background: var(--surface); }
.chart-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.chart-head b { font-family: var(--font-head); font-size: 14px; }
.chart-head .legend { display: flex; gap: 14px; font-size: 11.5px; color: var(--muted); }
.chart-head .legend span { display: inline-flex; align-items: center; gap: 6px; }
.dot-p, .dot-a { width: 9px; height: 9px; border-radius: 50%; }
.dot-p { background: var(--primary); } .dot-a { background: var(--accent); }
.bars { display: flex; align-items: flex-end; gap: 12px; height: 130px; padding-top: 6px; }
.bar-col { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; gap: 3px; align-items: center; }
.bar-col .b { width: 60%; border-radius: 5px 5px 2px 2px; background: var(--primary); opacity: .9; }
.bar-col .b.b2 { background: var(--accent); }
.bar-col .x { font-size: 10.5px; color: var(--muted); margin-top: 6px; }
.bar-stack { width: 64%; display: flex; flex-direction: column; gap: 3px; }

/* floating cards */
.float { position: absolute; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-lg); padding: 13px 15px; display: flex; align-items: center; gap: 12px; z-index: 3; }
.float .fi { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.float .fi svg { width: 20px; height: 20px; }
.float b { font-family: var(--font-head); font-weight: 700; font-size: 15px; display: block; line-height: 1.1; }
.float span { font-size: 11.5px; color: var(--muted); }
.float-1 { top: 76px; left: -26px; animation: floaty 6s ease-in-out infinite; }
.float-1 .fi { background: var(--accent-soft); color: var(--accent-deep); }
.float-2 { bottom: 70px; right: -30px; animation: floaty 7s ease-in-out infinite .8s; }
.float-2 .fi { background: var(--primary-soft); color: var(--primary); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { padding: 52px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.trust .label { text-align: center; font-family: var(--font-head); font-weight: 600; font-size: 13px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 30px; }
.logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 24px 52px; }
.wordmark { font-family: var(--font-head); font-weight: 700; font-size: 22px; letter-spacing: -.02em;
  color: var(--ink); opacity: .42; transition: opacity .2s ease; display: inline-flex; align-items: center; gap: 8px; }
.wordmark:hover { opacity: .8; }
.wordmark .wm-ico { width: 18px; height: 18px; border-radius: 5px; background: currentColor; opacity: .6; }
.wordmark.r1 .wm-ico { border-radius: 50%; }
.wordmark.r2 .wm-ico { border-radius: 3px; transform: rotate(45deg); }

/* ============================================================
   SOLUTIONS
   ============================================================ */
.sec-head { max-width: 720px; margin-bottom: 52px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 16px; font-weight: 800; }
.sec-head p { margin-top: 18px; }
.sec-head.center p { margin-left: auto; margin-right: auto; }

.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sol-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.sol-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.sol-card .ph { height: 178px; border-bottom: 1px solid var(--line-soft); }
.sol-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.sol-tag { font-family: var(--font-head); font-weight: 700; font-size: 11.5px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--primary); }
.sol-body h3 { font-size: 1.28rem; font-weight: 700; }
.sol-body p { font-size: 14.5px; color: var(--muted); flex: 1; }
.sol-body .arrow-link { margin-top: 6px; }
.sol-card.span-2 { grid-column: span 2; }
.sol-card.span-2 { flex-direction: row; }
.sol-card.span-2 .ph { width: 46%; height: auto; border-bottom: none; border-right: 1px solid var(--line-soft); }

/* placeholder visual */
.ph { position: relative; background:
  repeating-linear-gradient(135deg, var(--tint) 0 12px, var(--tint-2) 12px 24px);
  display: grid; place-items: center; overflow: hidden; }
.ph::after { content: attr(data-label); font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11px;
  letter-spacing: .04em; color: var(--muted); background: rgba(255,255,255,.78); padding: 5px 10px; border-radius: 6px;
  border: 1px solid var(--line); }
.ph.dark { background: repeating-linear-gradient(135deg, #16273d 0 12px, #1b2f49 12px 24px); }
.ph.dark::after { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.14); }

/* ============================================================
   FEATURES (alternating showcase)
   ============================================================ */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 56px 0; }
.feature-row:not(:last-child) { border-bottom: 1px solid var(--line-soft); }
.feature-row.flip .ftxt { order: 2; }
.ftxt .eyebrow { margin-bottom: 16px; }
.ftxt h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; }
.ftxt p { margin: 16px 0 22px; color: var(--muted); font-size: 1.06rem; }
.ftxt ul { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.ftxt li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; color: var(--ink-soft); }
.ftxt li svg { width: 20px; height: 20px; color: var(--accent-deep); flex: none; margin-top: 1px; }
.fvis { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow);
  aspect-ratio: 4 / 3; }

/* feature mini-grid */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px;
  transition: transform .2s ease, box-shadow .2s ease; }
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feat-ico { width: 50px; height: 50px; border-radius: 13px; background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center; margin-bottom: 18px; }
.feat-ico svg { width: 24px; height: 24px; }
.feat-card:nth-child(3n+2) .feat-ico { background: var(--accent-soft); color: var(--accent-deep); }
.feat-card h4 { font-size: 1.18rem; font-weight: 700; margin-bottom: 9px; }
.feat-card p { font-size: 14.5px; color: var(--muted); margin-bottom: 16px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 22px; }
.testi { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px;
  display: flex; flex-direction: column; gap: 18px; }
.testi.feature { grid-row: span 2; background: linear-gradient(165deg, var(--navy), var(--navy-2)); border-color: transparent; color: #fff; }
.testi .quote { font-family: var(--font-head); font-weight: 500; font-size: 1.15rem; line-height: 1.4; letter-spacing: -.01em; }
.testi.feature .quote { font-size: 1.5rem; flex: 1; }
.testi .stars { display: flex; gap: 3px; color: var(--accent); }
.testi .stars svg { width: 16px; height: 16px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author .av { width: 44px; height: 44px; border-radius: 50%; background: var(--tint-2); flex: none;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: var(--primary); font-size: 16px; }
.testi.feature .av { background: rgba(255,255,255,.12); color: #fff; }
.testi-author b { font-family: var(--font-head); font-weight: 700; font-size: 15px; display: block; }
.testi-author span { font-size: 12.5px; color: var(--muted); }
.testi.feature .testi-author span { color: rgba(255,255,255,.65); }
.testi.feature .logo-line { font-family: var(--font-head); font-weight: 800; font-size: 20px; opacity: .9; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats { background: linear-gradient(165deg, var(--navy), var(--navy-2)); color: #fff; position: relative; overflow: hidden; }
.stats::before { content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 52px 52px; -webkit-mask: radial-gradient(ellipse 70% 90% at 80% 20%, #000, transparent 70%);
          mask: radial-gradient(ellipse 70% 90% at 80% 20%, #000, transparent 70%); }
.stats .container { position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { padding: 8px 0; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(3rem, 5vw, 4.2rem); letter-spacing: -.04em;
  line-height: 1; background: linear-gradient(120deg, #fff, #cfe0ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .num .u { font-size: .5em; -webkit-text-fill-color: var(--accent); margin-left: 2px; }
.stat .lbl { margin-top: 12px; color: rgba(255,255,255,.7); font-size: 15px; }
.stats .sec-head h2 { color: #fff; } .stats .sec-head p { color: rgba(255,255,255,.7); }

/* ============================================================
   CTA
   ============================================================ */
.cta-wrap { padding: 96px 0; }
.cta { background: linear-gradient(150deg, var(--primary), var(--primary-deep)); border-radius: var(--r-xl);
  padding: 72px 56px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; top: -40%; right: -10%; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(20,192,107,.5), transparent 60%); }
.cta::after { content: ""; position: absolute; bottom: -50%; left: -8%; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.16), transparent 60%); }
.cta > * { position: relative; }
.cta h2 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 800; max-width: 18ch; margin: 0 auto; }
.cta p { color: rgba(255,255,255,.85); font-size: 1.18rem; margin: 20px auto 0; max-width: 52ch; }
.cta-actions { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 76px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 40px; padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .logo { color: #fff; margin-bottom: 18px; }
.footer-about p { font-size: 14.5px; max-width: 30ch; margin-bottom: 22px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,.14);
  display: grid; place-items: center; color: rgba(255,255,255,.7); transition: .2s; }
.socials a:hover { background: rgba(255,255,255,.08); color: #fff; border-color: transparent; }
.socials svg { width: 17px; height: 17px; }
.fcol h5 { font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; margin-bottom: 18px; }
.fcol a { display: block; font-size: 14.5px; padding: 7px 0; color: rgba(255,255,255,.68); transition: color .15s; }
.fcol a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; gap: 20px; flex-wrap: wrap; }
.footer-bottom .legal { display: flex; gap: 22px; font-size: 13.5px; }
.footer-bottom .copy { font-size: 13.5px; color: rgba(255,255,255,.5); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-1, .float-2 { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  .nav-menu, .nav-login, .lang { display: none; }
  .hamburger { display: flex; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-card.span-2 { grid-column: span 2; flex-direction: column; }
  .sol-card.span-2 .ph { width: 100%; height: 178px; border-right: none; border-bottom: 1px solid var(--line-soft); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .testi.feature { grid-row: auto; grid-column: span 2; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
}
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .feature-row { grid-template-columns: 1fr; gap: 30px; padding: 44px 0; }
  .feature-row.flip .ftxt { order: 0; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-side { display: none; }
  .kpis { grid-template-columns: 1fr 1fr; }
  .solutions-grid, .feat-grid, .testi-grid, .stats-grid { grid-template-columns: 1fr; }
  .sol-card.span-2, .testi.feature { grid-column: auto; }
  .float-1 { left: 6px; top: 40px; } .float-2 { right: 6px; }
  .cta { padding: 52px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 20px; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }
  .kpis { grid-template-columns: 1fr; }
  .float { display: none; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ============================================================
   SUB-PAGES (shared)
   ============================================================ */
.nav-link.is-active { color: var(--primary); }
.nav-item > .nav-link.is-active { background: var(--primary-soft); }

.page-hero { position: relative; padding: calc(var(--nav-h) + 72px) 0 64px; overflow: hidden; text-align: center; }
.page-hero .hero-bg { position: absolute; inset: 0; z-index: -1; }
.page-hero .hero-bg::before { content: ""; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 620px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(21,86,224,.10), rgba(20,192,107,.05) 45%, transparent 70%); }
.crumb { display: flex; justify-content: center; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 20px; font-family: var(--font-head); font-weight: 500; }
.crumb a:hover { color: var(--primary); }
.crumb svg { width: 13px; height: 13px; opacity: .6; }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 800; max-width: 18ch; margin: 14px auto 0; letter-spacing: -.03em; }
.page-hero p.sub { margin: 22px auto 0; max-width: 56ch; font-size: 1.18rem; color: var(--muted); }
.page-hero .hero-actions { margin-top: 32px; }

/* ============================================================
   PRICING
   ============================================================ */
.price-toggle { display: inline-flex; align-items: center; gap: 14px; margin: 32px auto 0; }
.switch { width: 54px; height: 30px; border-radius: 999px; background: var(--tint-2); border: 1px solid var(--line); position: relative; transition: background .2s; cursor: pointer; }
.switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); transition: transform .22s cubic-bezier(.4,0,.2,1); }
.switch.on { background: var(--primary); border-color: var(--primary); }
.switch.on::after { transform: translateX(24px); }
.price-toggle .lbl { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--muted); }
.price-toggle .lbl.active { color: var(--ink); }
.price-toggle .save { background: var(--accent-soft); color: var(--accent-deep); font-family: var(--font-head); font-weight: 700; font-size: 11.5px; padding: 4px 10px; border-radius: 999px; }

.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; margin-top: 8px; }
.tier { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px; display: flex; flex-direction: column; gap: 8px; transition: transform .2s ease, box-shadow .2s ease; }
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tier.featured { border-color: var(--primary); box-shadow: 0 20px 50px rgba(21,86,224,.16); position: relative; }
.tier.featured:hover { transform: translateY(-6px); }
.tier .badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 11.5px; letter-spacing: .04em; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.tier h3 { font-size: 1.35rem; font-weight: 800; }
.tier .desc { color: var(--muted); font-size: 14.5px; min-height: 42px; }
.tier .price { font-family: var(--font-head); font-weight: 800; font-size: 3rem; letter-spacing: -.03em; line-height: 1; margin: 10px 0 2px; }
.tier .price .cur { font-size: 1.3rem; vertical-align: super; margin-right: 2px; }
.tier .price .per { font-family: var(--font-body); font-weight: 500; font-size: .95rem; color: var(--muted); letter-spacing: 0; }
.tier .per-line { font-size: 13px; color: var(--muted); min-height: 20px; }
.tier .btn { justify-content: center; margin: 18px 0 6px; }
.tier ul { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.tier li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); }
.tier li svg { width: 19px; height: 19px; color: var(--accent-deep); flex: none; margin-top: 1px; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 18px; text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; color: var(--ink); padding: 24px 4px; cursor: pointer; }
.faq-q .pm { width: 22px; height: 22px; flex: none; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--primary); border-radius: 2px; transition: transform .25s; }
.faq-q .pm::before { top: 10px; left: 2px; right: 2px; height: 2px; }
.faq-q .pm::after { left: 10px; top: 2px; bottom: 2px; width: 2px; }
.faq-item.open .pm::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { color: var(--muted); font-size: 1.02rem; padding: 0 4px 24px; max-width: 64ch; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm); background: var(--bg); transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-sent { display: none; text-align: center; padding: 30px 10px; }
.form-sent.show { display: block; }
.form-sent .ok { width: 56px; height: 56px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; margin: 0 auto 16px; }
.form-sent .ok svg { width: 28px; height: 28px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.ci-card { display: flex; gap: 16px; padding: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); }
.ci-card .ci-ico { width: 44px; height: 44px; border-radius: 11px; background: var(--primary-soft); color: var(--primary); display: grid; place-items: center; flex: none; }
.ci-card:nth-child(2) .ci-ico { background: var(--accent-soft); color: var(--accent-deep); }
.ci-card .ci-ico svg { width: 21px; height: 21px; }
.ci-card h4 { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; }
.ci-card p { color: var(--muted); font-size: 14px; }

/* ============================================================
   VALUES (about)
   ============================================================ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; }
.value .v-ico { width: 52px; height: 52px; border-radius: 14px; background: var(--primary-soft); color: var(--primary); display: grid; place-items: center; margin-bottom: 18px; }
.value:nth-child(2) .v-ico { background: var(--accent-soft); color: var(--accent-deep); }
.value .v-ico svg { width: 25px; height: 25px; }
.value h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 9px; }
.value p { color: var(--muted); font-size: 14.5px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .ftxt h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; }
.split .ftxt p { margin-top: 16px; color: var(--muted); font-size: 1.06rem; }

@media (max-width: 900px) {
  .tiers { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .tier.featured { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 30px; }
}
