/* ==========================================================================
   CLEARSHIELD — Lackschutzfolie / PPF Zürich
   Fiktives Demo-Projekt · gestaltet von loew.me
   Design: Ice/White base, Deep Navy, Electric Cyan · High-Tech / Clean
   ========================================================================== */

:root {
  --ice:        #eef3f7;
  --ice-2:      #e2eaf1;
  --white:      #ffffff;
  --navy:       #0f2a43;
  --navy-2:     #163d5f;
  --navy-deep:  #0a1e30;
  --cyan:       #22c3e6;
  --cyan-deep:  #0fa6c8;
  --cyan-soft:  rgba(34, 195, 230, 0.12);
  --ink:        #12212f;
  --muted:      #5a7085;
  --line:       rgba(15, 42, 67, 0.12);
  --shadow-sm:  0 2px 10px rgba(15, 42, 67, 0.06);
  --shadow-md:  0 12px 40px rgba(15, 42, 67, 0.12);
  --shadow-lg:  0 30px 80px rgba(15, 42, 67, 0.18);
  --radius:     18px;
  --radius-sm:  12px;
  --maxw:       1180px;
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --font-head:  'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body:  'Inter', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ice);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.1; color: var(--navy); font-weight: 600; letter-spacing: -0.02em; }
ul { list-style: none; padding: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--navy); color: #fff; padding: 12px 20px;
  border-radius: 10px; z-index: 999; transition: top .2s var(--ease);
  font-weight: 600;
}
.skip-link:focus { top: 12px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: 100px;
  font-family: var(--font-head); font-weight: 600; font-size: 16px;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--cyan); color: var(--navy-deep);
  box-shadow: 0 10px 30px rgba(34, 195, 230, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(34, 195, 230, 0.5); background: #38d0f0; }
.btn-ghost {
  background: transparent; color: var(--navy); border-color: var(--line);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--cyan); color: var(--cyan-deep); }
.btn-light { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease), backdrop-filter .4s var(--ease);
  padding: 22px 0;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.site-header.scrolled {
  background: rgba(238, 243, 247, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-head); font-weight: 700; font-size: 21px;
  color: var(--navy); letter-spacing: -0.02em;
}
.brand .mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand .mark .beadpath { transform-origin: center; }
.brand b { color: var(--cyan-deep); font-weight: 700; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 9px 16px; border-radius: 100px; font-weight: 500; color: var(--navy);
  font-size: 15.5px; position: relative; transition: color .25s var(--ease), background .25s var(--ease);
}
.nav a:hover { background: var(--cyan-soft); color: var(--cyan-deep); }
.nav a.active { color: var(--cyan-deep); }
.nav a.active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 3px;
  height: 2px; background: var(--cyan); border-radius: 2px;
}
.nav .btn { margin-left: 8px; padding: 11px 22px; }

.hamburger {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: #fff; border-radius: 12px; cursor: pointer; position: relative;
  box-shadow: var(--shadow-sm);
}
.hamburger span {
  position: absolute; left: 12px; right: 12px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); top: 50%;
}
.hamburger span:nth-child(1) { transform: translateY(-6px); }
.hamburger span:nth-child(3) { transform: translateY(6px); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(340px, 84vw);
  background: var(--navy); color: #fff; z-index: 99;
  transform: translateX(100%); transition: transform .45s var(--ease);
  padding: 100px 32px 40px; display: flex; flex-direction: column; gap: 6px;
  box-shadow: -20px 0 60px rgba(0,0,0,.3);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  padding: 15px 4px; font-family: var(--font-head); font-size: 20px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.1); color: #fff; transition: color .2s var(--ease), padding .2s var(--ease);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--cyan); padding-left: 12px; }
.mobile-nav .btn { margin-top: 22px; }
.nav-backdrop {
  position: fixed; inset: 0; background: rgba(10, 30, 48, .5); z-index: 98;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s var(--ease);
  backdrop-filter: blur(2px);
}
.nav-backdrop.open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 172px 0 90px; overflow: hidden;
  background:
    radial-gradient(1000px 600px at 78% -5%, rgba(34,195,230,.18), transparent 60%),
    radial-gradient(800px 500px at 5% 100%, rgba(15,42,67,.06), transparent 60%),
    var(--ice);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 13.5px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan-deep);
  background: #fff; padding: 8px 16px; border-radius: 100px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px var(--cyan-soft); }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem); margin: 22px 0 20px; letter-spacing: -0.03em;
}
.hero h1 .grad {
  background: linear-gradient(100deg, var(--cyan-deep), var(--cyan) 60%, #6fe3ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { font-size: 1.22rem; color: var(--muted); max-width: 34ch; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { position: relative; }
.hero-visual .frame {
  border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lg);
  position: relative; aspect-ratio: 4 / 3.4;
}
.hero-visual .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,30,48,.35));
}
.hero-badge {
  position: absolute; left: -26px; bottom: 34px; z-index: 3;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-radius: 16px; padding: 16px 20px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px; border: 1px solid var(--line);
}
.hero-badge .ring {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(var(--cyan) var(--p, 92%), var(--ice-2) 0);
  display: grid; place-items: center;
}
.hero-badge .ring i { width: 32px; height: 32px; border-radius: 50%; background: #fff; display: grid; place-items: center; font-style: normal; font-weight: 700; font-family: var(--font-head); color: var(--navy); font-size: 12px; }
.hero-badge .txt strong { display: block; font-family: var(--font-head); color: var(--navy); font-size: 15px; }
.hero-badge .txt span { font-size: 13px; color: var(--muted); }

/* floating shield glass card top-right of visual */
.hero-chip {
  position: absolute; right: -18px; top: 28px; z-index: 3;
  background: var(--navy); color: #fff; border-radius: 14px; padding: 13px 18px;
  box-shadow: var(--shadow-md); font-family: var(--font-head); font-weight: 600; font-size: 14px;
  display: flex; align-items: center; gap: 10px;
}
.hero-chip svg { width: 20px; height: 20px; color: var(--cyan); }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--navy); color: #fff; overflow: hidden; padding: 16px 0;
  border-block: 1px solid rgba(255,255,255,.08);
}
.marquee-track {
  display: flex; gap: 44px; width: max-content; animation: marquee 26s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-head); font-weight: 500; font-size: 17px; letter-spacing: .02em;
  display: inline-flex; align-items: center; gap: 44px; color: rgba(255,255,255,.85);
}
.marquee-track span::after { content: "◆"; color: var(--cyan); font-size: 11px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: 92px 0; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head .kicker {
  font-family: var(--font-head); font-weight: 600; font-size: 13.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--cyan-deep); margin-bottom: 14px; display: block;
}
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.1rem; }

/* ---------- USP / feature cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.card {
  background: #fff; border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(34,195,230,.4); }
.card .ic {
  width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(160deg, var(--cyan-soft), rgba(34,195,230,.04));
  color: var(--cyan-deep); margin-bottom: 20px; border: 1px solid rgba(34,195,230,.2);
}
.card .ic svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.32rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; }
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.card:hover::before { transform: scaleX(1); }

/* ---------- Service teasers ---------- */
.services { background: linear-gradient(180deg, var(--ice) 0%, var(--ice-2) 100%); }
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service {
  background: #fff; border-radius: var(--radius); padding: 32px; display: flex; gap: 20px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  align-items: flex-start;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service .num {
  font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--cyan-deep);
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--cyan-soft); border: 1px solid rgba(34,195,230,.25);
}
.service h3 { font-size: 1.28rem; margin-bottom: 8px; }
.service p { color: var(--muted); font-size: .97rem; margin-bottom: 12px; }
.service .more {
  font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--cyan-deep);
  display: inline-flex; align-items: center; gap: 6px; transition: gap .3s var(--ease);
}
.service:hover .more { gap: 12px; }

/* ---------- Counters / stats band ---------- */
.stats { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.stats::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 85% 0%, rgba(34,195,230,.22), transparent 60%);
  pointer-events: none;
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; text-align: center; }
.stat .num {
  font-family: var(--font-head); font-weight: 700; font-size: clamp(2.6rem, 6vw, 4rem);
  color: #fff; letter-spacing: -0.03em; line-height: 1;
}
.stat .num .suffix { color: var(--cyan); }
.stat .label { color: rgba(255,255,255,.7); margin-top: 12px; font-size: 1.02rem; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; }
.gallery-grid .g { border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.gallery-grid .g img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery-grid .g:hover img { transform: scale(1.06); }
.gallery-grid .g::after {
  content: attr(data-cap); position: absolute; left: 18px; bottom: 16px; z-index: 2;
  color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.gallery-grid .g::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(10,30,48,.55));
}
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid.stack { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff; border-radius: 30px; padding: 66px 56px; position: relative; overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(500px 300px at 80% 120%, rgba(34,195,230,.3), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 50ch; margin: 0 auto 30px; font-size: 1.1rem; }

/* water bead deco inside navy blocks */
.beads { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.beads i {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.5), rgba(34,195,230,.12) 55%, transparent 70%);
  border: 1px solid rgba(255,255,255,.14);
  animation: bead-float 9s var(--ease) infinite;
}
@keyframes bead-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: .5; }
  50% { transform: translateY(-16px) scale(1.08); opacity: .85; }
}

/* ---------- Page hero (interior) ---------- */
.page-hero {
  padding: 156px 0 64px; text-align: center; position: relative; overflow: hidden;
  background:
    radial-gradient(800px 400px at 50% -20%, rgba(34,195,230,.16), transparent 60%),
    var(--ice);
}
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); margin-bottom: 16px; }
.page-hero p { color: var(--muted); font-size: 1.15rem; max-width: 60ch; margin: 0 auto; }
.breadcrumb { font-size: 14px; color: var(--muted); margin-top: 22px; }
.breadcrumb a { color: var(--cyan-deep); }

/* ---------- Detailed service blocks (leistungen) ---------- */
.svc-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  padding: 40px 0;
}
.svc-block:nth-child(even) .svc-media { order: 2; }
.svc-media {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  aspect-ratio: 5 / 4; background: var(--navy);
}
.svc-media img { width: 100%; height: 100%; object-fit: cover; }
.svc-media.tinted { display: grid; place-items: center; position: relative; }
.svc-info .tag {
  font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cyan-deep); display: block; margin-bottom: 12px;
}
.svc-info h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 14px; }
.svc-info p { color: var(--muted); margin-bottom: 20px; }
.svc-info ul.checks { display: grid; gap: 12px; }
.svc-info ul.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; }
.svc-info ul.checks li svg { width: 20px; height: 20px; color: var(--cyan-deep); flex-shrink: 0; margin-top: 3px; }
.price-note {
  margin-top: 22px; display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--font-head); color: var(--navy); font-weight: 600;
  background: #fff; padding: 12px 20px; border-radius: 12px; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.price-note b { color: var(--cyan-deep); font-size: 1.3rem; }
.price-note small { color: var(--muted); font-weight: 400; font-family: var(--font-body); }

/* ---------- Tech / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: s; }
.step {
  background: #fff; border-radius: var(--radius); padding: 34px 30px; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  font-family: var(--font-head); font-weight: 700; font-size: 2.4rem;
  color: var(--cyan); opacity: .35; display: block; margin-bottom: 14px; line-height: 1;
}
.step h3 { font-size: 1.24rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: .97rem; }

/* feature split (tech) */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.feature-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 1/1; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-list { display: grid; gap: 22px; }
.feature-item { display: flex; gap: 18px; }
.feature-item .fic {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0; display: grid; place-items: center;
  background: var(--navy); color: var(--cyan);
}
.feature-item .fic svg { width: 26px; height: 26px; }
.feature-item h3 { font-size: 1.18rem; margin-bottom: 6px; }
.feature-item p { color: var(--muted); font-size: .96rem; }

/* comparison / bead demo */
.tech-demo {
  background: var(--navy); border-radius: 26px; padding: 54px; color: #fff; position: relative; overflow: hidden;
}
.tech-demo h2 { color: #fff; }
.demo-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; position: relative; z-index: 1; }
.demo-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 18px;
  padding: 30px; backdrop-filter: blur(6px);
}
.demo-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.demo-card h3 svg { width: 22px; height: 22px; color: var(--cyan); }
.demo-card p { color: rgba(255,255,255,.75); font-size: .96rem; }
.bead-canvas { position: relative; height: 120px; margin-top: 20px; border-radius: 12px; overflow: hidden;
  background: linear-gradient(160deg, rgba(34,195,230,.14), rgba(255,255,255,.02)); }
.bead-canvas i {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, rgba(255,255,255,.9), rgba(34,195,230,.3) 55%, rgba(15,42,67,.1) 72%);
  box-shadow: inset 0 -2px 6px rgba(0,0,0,.15), 0 3px 8px rgba(0,0,0,.2);
  animation: bead-shift 7s var(--ease) infinite;
}
@keyframes bead-shift {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(3px,-6px); }
}

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.member { text-align: center; }
.member .avatar {
  aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; margin-bottom: 18px;
  background: linear-gradient(160deg, var(--navy), var(--navy-2)); position: relative;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.member:hover .avatar { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.member .avatar .initials {
  font-family: var(--font-head); font-weight: 700; font-size: 2.6rem; color: #fff; letter-spacing: -.02em;
}
.member .avatar::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(200px 120px at 70% 20%, rgba(34,195,230,.35), transparent 60%);
}
.member h3 { font-size: 1.2rem; margin-bottom: 4px; }
.member .role { color: var(--cyan-deep); font-family: var(--font-head); font-weight: 600; font-size: 14px; }
.member p { color: var(--muted); font-size: .92rem; margin-top: 8px; }

/* values row */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

/* story split */
.story-split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.story-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-split h2 { margin-bottom: 18px; }
.story-split p { color: var(--muted); margin-bottom: 16px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.form-card {
  background: #fff; border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.field { margin-bottom: 20px; }
.field label {
  display: block; font-family: var(--font-head); font-weight: 600; font-size: 14px;
  color: var(--navy); margin-bottom: 8px;
}
.field label .req { color: var(--cyan-deep); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--font-body); font-size: 16px; color: var(--ink); background: var(--ice);
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan); background: #fff; box-shadow: 0 0 0 4px var(--cyan-soft);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 6px; }
.form-success {
  display: none; background: var(--cyan-soft); border: 1px solid rgba(34,195,230,.4);
  color: var(--navy); border-radius: 12px; padding: 16px 18px; margin-bottom: 22px;
  font-size: .96rem; align-items: center; gap: 12px;
}
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; color: var(--cyan-deep); flex-shrink: 0; }

.info-card {
  background: var(--navy); color: #fff; border-radius: var(--radius); padding: 38px;
  position: relative; overflow: hidden;
}
.info-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 24px; }
.info-item { display: flex; gap: 16px; margin-bottom: 22px; position: relative; z-index: 1; }
.info-item .iic {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: var(--cyan);
}
.info-item .iic svg { width: 21px; height: 21px; }
.info-item strong { display: block; font-family: var(--font-head); font-size: 15px; margin-bottom: 3px; }
.info-item span, .info-item a { color: rgba(255,255,255,.72); font-size: .95rem; line-height: 1.5; }
.info-item a:hover { color: var(--cyan); }
.map-embed {
  margin-top: 28px; border-radius: 14px; overflow: hidden; height: 220px; position: relative;
  background: linear-gradient(160deg, #cdd9e4, #eef3f7); border: 1px solid var(--line);
}
.map-embed .pin {
  position: absolute; left: 50%; top: 44%; transform: translate(-50%,-50%);
  color: var(--cyan-deep);
}
.map-embed .pin svg { width: 42px; height: 42px; filter: drop-shadow(0 6px 10px rgba(15,42,67,.3)); }
.map-embed .pin::after {
  content: ""; position: absolute; left: 50%; bottom: -6px; transform: translateX(-50%);
  width: 16px; height: 5px; background: rgba(15,42,67,.25); border-radius: 50%;
}
.map-embed .grid-lines { position: absolute; inset: 0;
  background-image: linear-gradient(rgba(15,42,67,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(15,42,67,.06) 1px, transparent 1px);
  background-size: 34px 34px; }
.map-embed .label {
  position: absolute; left: 14px; bottom: 12px; background: #fff; padding: 7px 13px; border-radius: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--navy); box-shadow: var(--shadow-sm);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  padding: 22px 26px; font-family: var(--font-head); font-weight: 600; font-size: 1.08rem;
  color: var(--navy); cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; transition: color .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.6rem; color: var(--cyan-deep); font-weight: 400; transition: transform .3s var(--ease); flex-shrink: 0;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--cyan-deep); }
.faq .faq-body { padding: 0 26px 22px; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding: 68px 0 30px; position: relative; overflow: hidden; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; position: relative; z-index: 1; }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: .95rem; max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-head); }
.footer-col a, .footer-col span { display: block; color: rgba(255,255,255,.66); font-size: .95rem; margin-bottom: 11px; transition: color .2s var(--ease), padding-left .2s var(--ease); }
.footer-col a:hover { color: var(--cyan); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 26px; display: flex;
  justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: .9rem; position: relative; z-index: 1;
}
.footer-bottom .credit { color: rgba(255,255,255,.55); }
.footer-bottom .credit b { color: var(--cyan); font-weight: 600; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .nav { display: none; }
  .hamburger { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero p.lead { max-width: none; }
  .grid-3, .steps, .values { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 34px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-block, .feature-split, .story-split, .contact-grid, .demo-cols, .grid-2 { grid-template-columns: 1fr; gap: 30px; }
  .svc-block:nth-child(even) .svc-media { order: 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .tall { grid-row: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-band { padding: 48px 28px; }
  .tech-demo { padding: 34px 26px; }
  .section { padding: 68px 0; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .hero { padding: 140px 0 64px; }
  .field-row { grid-template-columns: 1fr; }
  .team-grid, .footer-top { grid-template-columns: 1fr; }
  .hero-badge { left: 12px; }
  .hero-chip { right: 12px; }
  .form-card, .info-card { padding: 26px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
