/* ================================================================
   TOMTELECOM — v3 — Hallo × Beterabonnement mix
   Navy hero block · green pill CTAs · dark bold "how it works"
   ================================================================ */

/* ---------- Gotham ---------- */
@font-face { font-family:"Gotham"; src:url("fonts/Gotham-Thin.ttf") format("truetype");   font-weight:100; font-display:swap; }
@font-face { font-family:"Gotham"; src:url("fonts/Gotham-Light.ttf") format("truetype");  font-weight:300; font-display:swap; }
@font-face { font-family:"Gotham"; src:url("fonts/Gotham-Medium.ttf") format("truetype"); font-weight:500; font-display:swap; }
@font-face { font-family:"Gotham"; src:url("fonts/Gotham-Bold.ttf") format("truetype");   font-weight:700; font-display:swap; }
@font-face { font-family:"Gotham"; src:url("fonts/Gotham-Black.ttf") format("truetype");  font-weight:900; font-display:swap; }

/* ---------- Tokens ---------- */
:root {
  --navy:       #1E2A5E;
  --navy-2:     #151E45;
  --navy-3:     #0B1030;
  --navy-hero:  #242F66;
  --sky:        #5DB3DC;
  --sky-2:      #3E9CCB;
  --sky-soft:   #DDEFF8;
  --green:      #10A644;
  --green-2:    #0C8E39;
  --green-3:    #1FCC57;
  --green-soft: #DDF3E4;
  --black:      #0A0E1F;
  --black-2:    #121731;

  --bg:         #FFFFFF;
  --bg-soft:    #F7F9FD;
  --bg-cream:   #FBFAF4;
  --border:     #E4E9F0;

  --text:       #0E1432;
  --text-soft:  #4E5872;
  --text-muted: #8993AD;

  --shadow-sm:  0 1px 3px rgba(14,20,50,0.06), 0 1px 2px rgba(14,20,50,0.04);
  --shadow:     0 10px 30px rgba(14,20,50,0.08), 0 2px 8px rgba(14,20,50,0.04);
  --shadow-lg:  0 30px 60px rgba(14,20,50,0.14), 0 8px 20px rgba(14,20,50,0.06);
  --shadow-green: 0 16px 36px rgba(16,166,68,0.32);

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Gotham","Montserrat",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  font-weight: 400;
  color: var(--text);
  background: #fff;
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--sky-2); }
h1,h2,h3,h4 {
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0 0 .4em;
}
h1 { font-size: clamp(2.6rem, 5.2vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.015em; }
p  { margin: 0 0 1em; color: var(--text-soft); }
.lead { font-size: 1.15rem; color: var(--text-soft); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 28px; }
section { padding: clamp(70px, 9vw, 120px) 0; }
.eyebrow {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sky-2);
}
.eyebrow-pill {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(93,179,220,0.14);
  color: var(--sky);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn.lg { padding: 18px 32px; font-size: 1.05rem; }
.btn-green {
  background: linear-gradient(135deg, var(--green-3) 0%, var(--green) 100%);
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn-green:hover {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-2) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(16,166,68,0.42);
}
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover { background: #2A3872; color: #fff; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(30,42,94,0.22);
}
.btn-outline:hover { background: rgba(30,42,94,0.04); border-color: var(--navy); color: var(--navy); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.08); color: #fff; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-top {
  background: var(--navy);
  color: #fff;
  font-size: .86rem;
  padding: 8px 0;
}
.header-top-inner {
  display: flex; justify-content: flex-end; align-items: center;
  gap: 24px;
}
.header-top a { color: rgba(255,255,255,0.85); display: inline-flex; align-items: center; gap: 6px; }
.header-top a:hover { color: #fff; }
.header-top .sep { color: rgba(255,255,255,0.3); }
.header-top svg { width: 14px; height: 14px; }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 80px; gap: 24px;
}
.logo { display: inline-flex; align-items: center; }
.logo svg, .logo img { height: 44px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-weight: 500;
  color: var(--text);
  font-size: .98rem;
  position: relative;
}
.nav a:hover { color: var(--sky-2); }
.nav a.active { color: var(--navy); font-weight: 700; }
.mobile-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--navy); }

/* ---------- HERO (Hallo-style: colored block, person/visual right) ---------- */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.hero-block {
  position: relative;
  background:
    radial-gradient(ellipse at 95% -20%, rgba(93,179,220,0.45), transparent 50%),
    radial-gradient(ellipse at 0% 120%, rgba(16,166,68,0.25), transparent 55%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%);
  color: #fff;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
  padding: clamp(60px, 8vw, 120px) 0 clamp(80px, 10vw, 140px);
}
.hero-block::before {
  /* echo the green arch from logo */
  content: "";
  position: absolute;
  top: -60px; right: 8%;
  width: 280px; height: 140px;
  background: var(--green);
  border-radius: 280px 280px 0 0;
  opacity: 0.22;
  filter: blur(2px);
}
.hero-block::after {
  content: "";
  position: absolute;
  bottom: -140px; left: -60px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(93,179,220,0.35), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--green-3); font-weight: 900; }
.hero .lead { color: rgba(255,255,255,0.86); font-size: 1.22rem; max-width: 540px; margin-bottom: 36px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: #fff;
  font-size: .92rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.hero-badge svg { width: 16px; height: 16px; color: var(--green-3); flex-shrink: 0; }

/* Hero visual (right): device + floating cards */
.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 520px;
  justify-self: end;
  width: 100%;
}
.hv-phone {
  position: absolute;
  top: 6%; left: 50%; transform: translateX(-50%);
  width: 62%; aspect-ratio: 9/19;
  background: #fff;
  border-radius: 44px;
  padding: 14px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.45), inset 0 0 0 5px rgba(14,20,50,0.06);
}
.hv-phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #F7F9FD 0%, #EFF5FC 100%);
  border-radius: 32px;
  padding: 22px 18px;
  display: flex; flex-direction: column; gap: 10px;
  overflow: hidden;
}
.hv-bar {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .7rem; color: var(--navy); font-weight: 700;
  margin-bottom: 4px;
}
.hv-bar .signal { display: flex; gap: 2px; align-items: flex-end; }
.hv-bar .signal span { width: 3px; background: var(--navy); border-radius: 1px; }
.hv-bar .signal span:nth-child(1) { height: 5px; }
.hv-bar .signal span:nth-child(2) { height: 7px; }
.hv-bar .signal span:nth-child(3) { height: 9px; }
.hv-bar .signal span:nth-child(4) { height: 11px; }
.hv-logo-small {
  text-align: center;
  font-weight: 900;
  color: var(--navy);
  font-size: .82rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.hv-logo-small em { font-style: normal; color: var(--sky-2); }
.hv-tile {
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 2px 6px rgba(14,20,50,0.06);
}
.hv-tile .t1 { font-size: .78rem; color: var(--navy); font-weight: 700; }
.hv-tile .t2 { font-size: .68rem; color: var(--text-muted); margin-top: 2px; }
.hv-tile.accent { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; }
.hv-tile.accent .t1 { color: #fff; }
.hv-tile.accent .t2 { color: rgba(255,255,255,0.7); }
.hv-tile .val {
  font-weight: 900; color: var(--green); font-size: 1rem; margin-top: 4px;
}
.hv-tile.accent .val { color: var(--green-3); }
.hv-bars { display: flex; gap: 4px; align-items: flex-end; height: 28px; margin-top: 6px; }
.hv-bars span { flex: 1; background: rgba(255,255,255,0.3); border-radius: 2px; }
.hv-bars span:nth-child(1) { height: 30%; }
.hv-bars span:nth-child(2) { height: 50%; }
.hv-bars span:nth-child(3) { height: 80%; background: var(--green-3); }
.hv-bars span:nth-child(4) { height: 45%; }
.hv-bars span:nth-child(5) { height: 65%; background: var(--sky); }

/* Floating cards around phone */
.hv-float {
  position: absolute;
  background: #fff;
  color: var(--text);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  z-index: 3;
  animation: float 5s ease-in-out infinite;
}
.hv-float.a {
  top: 4%; left: -4%;
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; font-weight: 600;
}
.hv-float.a .circle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.hv-float.a .circle svg { width: 16px; height: 16px; }
.hv-float.b {
  bottom: 12%; right: -4%;
  animation-delay: -2.5s;
}
.hv-float.b .label { font-size: .68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.hv-float.b .big { font-size: 1.55rem; font-weight: 900; color: var(--navy); line-height: 1; margin-top: 4px; }
.hv-float.b .big span { color: var(--sky-2); font-size: .8rem; font-weight: 700; }
.hv-float.c {
  top: 44%; right: -8%;
  background: var(--green); color: #fff;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700;
  animation-delay: -4s;
}
.hv-float.c svg { width: 14px; height: 14px; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- INTRO (white text block after hero) ---------- */
.intro { padding: clamp(80px, 10vw, 130px) 0 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.intro h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.intro .lead { font-size: 1.08rem; }

/* ---------- VOORDELEN (Hallo-style alternating image + numbered list) ---------- */
.benefits { padding: clamp(80px, 10vw, 130px) 0; }
.benefits-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.benefits-visual {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--sky-soft) 0%, #fff 50%, var(--green-soft) 100%);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefits-visual::before, .benefits-visual::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(50px);
}
.benefits-visual::before { top: -40px; left: -40px; width: 240px; height: 240px; background: rgba(93,179,220,0.5); }
.benefits-visual::after  { bottom: -40px; right: -40px; width: 260px; height: 260px; background: rgba(16,166,68,0.4); }
.benefits-visual-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 380px;
}
.bv-card {
  background: #fff;
  border-radius: var(--r);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .3s var(--ease);
}
.bv-card:hover { transform: translateY(-4px); }
.bv-card .bv-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--sky-soft); color: var(--sky-2);
  display: inline-flex; align-items: center; justify-content: center;
}
.bv-card:nth-child(2) .bv-icon { background: var(--green-soft); color: var(--green-2); }
.bv-card:nth-child(3) .bv-icon { background: #E8ECF9; color: var(--navy); }
.bv-card:nth-child(4) .bv-icon { background: #FFEDE5; color: #FF8563; }
.bv-card .bv-icon svg { width: 22px; height: 22px; }
.bv-card .t1 { font-weight: 700; color: var(--navy); font-size: .98rem; }
.bv-card .t2 { font-size: .82rem; color: var(--text-muted); }

.benefits-list {
  display: grid; gap: 36px;
}
.benefits-list h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 18px; }
.benefits-list .intro-p { font-size: 1.05rem; margin-bottom: 32px; }
.num-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
}
.num-badge {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.num-item:nth-child(2) .num-badge { background: var(--sky-2); }
.num-item:nth-child(3) .num-badge { background: var(--green); }
.num-item:nth-child(4) .num-badge { background: var(--navy); }
.num-item h3 { font-size: 1.18rem; margin-bottom: 6px; }
.num-item p { margin: 0; font-size: .98rem; }

/* ---------- PRODUCT CARDS (Hallo-style 4-column) ---------- */
.products { background: var(--bg-soft); }
.products-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 56px; flex-wrap: wrap; }
.products-head h2 { max-width: 620px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.products-grid.cols-4 { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.product-card:hover {
  border-color: var(--sky);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product-card .pc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--sky-soft);
  color: var(--sky-2);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.product-card:nth-child(2) .pc-icon { background: var(--green-soft); color: var(--green-2); }
.product-card:nth-child(3) .pc-icon { background: #E8ECF9; color: var(--navy); }
.product-card:nth-child(4) .pc-icon { background: #FFEDE5; color: #FF8563; }
.product-card .pc-icon svg { width: 24px; height: 24px; }
.product-card h3 { font-size: 1.12rem; margin: 0; }
.product-card p { font-size: .92rem; margin: 0; flex: 1; }
.product-card .pc-arrow {
  align-self: flex-end;
  margin-top: 8px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s var(--ease);
}
.product-card:hover .pc-arrow { background: var(--sky); }
.product-card .pc-arrow svg { width: 18px; height: 18px; color: var(--navy); transition: transform .2s var(--ease); }
.product-card:hover .pc-arrow svg { color: #fff; transform: translateX(3px); }

/* ---------- HOE WERKT HET (Beterabonnement-style dark section) ---------- */
.how {
  background: var(--black);
  color: #fff;
  padding: clamp(100px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.how::before, .how::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none;
}
.how::before {
  top: 10%; left: -150px;
  width: 500px; height: 500px;
  background: rgba(93,179,220,0.18);
}
.how::after {
  bottom: -180px; right: -100px;
  width: 480px; height: 480px;
  background: rgba(16,166,68,0.2);
}
.how .container { position: relative; z-index: 1; }
.how-head { text-align: center; max-width: 900px; margin: 0 auto 72px; }
.how-pill {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: rgba(255,255,255,0.85);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.how h2 {
  color: #fff;
  font-size: clamp(2.4rem, 5.8vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 26px;
}
.how h2 em {
  font-style: italic;
  color: var(--sky);
  font-weight: 900;
  display: inline-block;
}
.how-head > p {
  max-width: 640px; margin: 0 auto;
  color: rgba(255,255,255,0.72);
  font-size: 1.12rem;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 56px;
}
.how-card {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.how-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(93,179,220,0.12), transparent 50%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.how-card:hover {
  transform: translateY(-4px);
  border-color: rgba(93,179,220,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.how-card:hover::before { opacity: 1; }
.how-num {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky), var(--sky-2));
  color: #fff;
  font-weight: 900;
  font-size: 1.45rem;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(93,179,220,0.4);
}
.how-card:nth-child(2) .how-num { background: linear-gradient(135deg, var(--green-3), var(--green)); box-shadow: 0 10px 24px rgba(16,166,68,0.4); }
.how-card:nth-child(3) .how-num { background: linear-gradient(135deg, var(--sky), var(--green)); box-shadow: 0 10px 24px rgba(93,179,220,0.4); }
.how-card:nth-child(4) .how-num { background: linear-gradient(135deg, var(--green), var(--sky-2)); box-shadow: 0 10px 24px rgba(16,166,68,0.4); }
.how-card h3 {
  color: #fff;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
}
.how-card p {
  color: rgba(255,255,255,0.68);
  margin: 0;
  font-size: .96rem;
  line-height: 1.55;
}
.how-footer { text-align: center; }
.how-footer p {
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.02rem;
}

/* ---------- USP STRIP ---------- */
.usp-strip { background: #fff; padding: 56px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.usp-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
.usp-strip-item {
  display: flex;
  gap: 16px;
  align-items: center;
}
.usp-strip-item .ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--sky-soft); color: var(--sky-2);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.usp-strip-item:nth-child(2) .ic { background: var(--green-soft); color: var(--green-2); }
.usp-strip-item:nth-child(3) .ic { background: #E8ECF9; color: var(--navy); }
.usp-strip-item:nth-child(4) .ic { background: #FFEDE5; color: #FF8563; }
.usp-strip-item .ic svg { width: 22px; height: 22px; }
.usp-strip-item .t1 { font-weight: 700; color: var(--navy); font-size: 1.02rem; line-height: 1.2; }
.usp-strip-item .t2 { font-size: .82rem; color: var(--text-muted); margin-top: 2px; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--bg-cream); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all .3s var(--ease);
}
.testimonial:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testimonial .stars { color: #F7BD29; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial .quote {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text);
  flex: 1;
  font-weight: 500;
}
.testimonial .quote::before { content: "\201C"; color: var(--sky); font-size: 2rem; line-height: 0.6; display: inline-block; margin-right: 4px; vertical-align: -0.35em; }
.testimonial .who {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testimonial .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--navy));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: .85rem;
}
.testimonial:nth-child(2) .avatar { background: linear-gradient(135deg, var(--green), var(--sky)); }
.testimonial:nth-child(3) .avatar { background: linear-gradient(135deg, #FF8563, #F7BD29); }
.testimonial .who .name { font-weight: 700; color: var(--navy); font-size: .98rem; }
.testimonial .who .role { font-size: .85rem; color: var(--text-muted); }

/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before, .cta::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.cta::before { top: -140px; right: -100px; width: 500px; height: 500px; background: rgba(93,179,220,0.3); }
.cta::after { bottom: -140px; left: -100px; width: 380px; height: 380px; background: rgba(16,166,68,0.22); }
.cta .container { position: relative; z-index: 1; }
.cta-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center; }
.cta h2 { color: #fff; font-size: clamp(2.2rem, 4vw, 3.4rem); }
.cta .lead { color: rgba(255,255,255,0.82); font-size: 1.18rem; }
.cta-trust { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.cta-trust .item { display: flex; align-items: center; gap: 12px; font-size: 1rem; color: rgba(255,255,255,0.9); }
.cta-trust svg { width: 20px; height: 20px; color: var(--green-3); flex-shrink: 0; }

.form-card {
  background: #fff;
  color: var(--text);
  padding: 40px;
  border-radius: var(--r-lg);
  box-shadow: 0 40px 80px rgba(0,0,0,0.35);
}
.form-card h3 { margin: 0 0 6px; font-size: 1.5rem; }
.form-card .form-sub { font-size: .95rem; color: var(--text-soft); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: .82rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px; letter-spacing: .02em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: inherit; font-size: .96rem;
  color: var(--text); background: #fff;
  transition: all .2s var(--ease);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--sky-2);
  box-shadow: 0 0 0 4px rgba(93,179,220,0.18);
}
.form-group textarea { resize: vertical; min-height: 92px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-card .small { font-size: .82rem; color: var(--text-muted); margin: 14px 0 0; text-align: center; }

/* ---------- SERVICE DETAIL (diensten page) ---------- */
.service-detail { padding: clamp(80px, 10vw, 130px) 0; }
.service-detail + .service-detail { padding-top: 0; }
.service-detail.alt { background: var(--bg-soft); }
.service-detail .sd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.service-detail.reverse .sd-grid > :first-child { order: 2; }
.service-detail .sd-icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  background: var(--sky-soft); color: var(--sky-2);
}
.service-detail.green-accent .sd-icon { background: var(--green-soft); color: var(--green-2); }
.service-detail.navy-accent .sd-icon { background: #E8ECF9; color: var(--navy); }
.service-detail .sd-icon svg { width: 36px; height: 36px; }
.service-detail h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
.feature-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 1.02rem; color: var(--text);
}
.feature-list svg { width: 22px; height: 22px; color: var(--green); flex-shrink: 0; margin-top: 3px; }
.feature-list strong { color: var(--navy); }
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip {
  padding: 10px 18px; background: #fff;
  border: 1.5px solid var(--border); border-radius: 999px;
  font-weight: 500; color: var(--navy); font-size: .94rem;
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--sky); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.sd-visual {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--r-lg);
  background: linear-gradient(145deg, var(--sky-soft) 0%, #fff 100%);
  padding: 36px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.service-detail.green-accent .sd-visual { background: linear-gradient(145deg, var(--green-soft) 0%, #fff 100%); }
.service-detail.navy-accent .sd-visual {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff; border: none;
}
.sd-visual.grid-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; align-content: center;
}
.sd-visual .p-chip {
  background: #fff; border-radius: var(--r-sm); padding: 22px 12px;
  text-align: center; font-weight: 700; color: var(--navy); font-size: .98rem;
  box-shadow: var(--shadow-sm); transition: transform .2s var(--ease);
}
.sd-visual .p-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.sd-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  align-self: center; width: 100%;
}
.sd-stats .s {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  padding: 18px 12px;
  text-align: center;
}
.service-detail:not(.navy-accent) .sd-stats .s { background: #fff; border-color: var(--border); }
.sd-stats .num {
  font-size: 1.9rem; font-weight: 900; line-height: 1;
  color: var(--sky);
  margin-bottom: 6px;
}
.service-detail:not(.navy-accent) .sd-stats .num { color: var(--navy); }
.service-detail.green-accent .sd-stats .num { color: var(--green-2); }
.sd-stats .lbl {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; opacity: .7;
}

/* ---------- PAGE HERO (subpages — smaller colored block) ---------- */
.page-hero {
  background:
    radial-gradient(ellipse at 90% 0%, rgba(93,179,220,0.4), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(16,166,68,0.2), transparent 55%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: clamp(80px, 10vw, 140px) 0;
  border-radius: 0 0 40px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: #fff; margin: 14px 0 16px; }
.page-hero p { max-width: 660px; margin: 0 auto; color: rgba(255,255,255,0.82); font-size: 1.18rem; }
.page-hero .eyebrow-pill { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.18); }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; }
.contact-info h3 { margin-bottom: 22px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--border); }
.contact-item:last-of-type { border-bottom: 0; }
.contact-item-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--sky-soft); color: var(--sky-2);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item-icon svg { width: 22px; height: 22px; }
.contact-item-icon.green { background: var(--green-soft); color: var(--green-2); }
.contact-item-icon.navy { background: #E8ECF9; color: var(--navy); }
.contact-item-icon.coral { background: #FFEDE5; color: #FF8563; }
.contact-item-label {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--text-muted); font-weight: 700;
}
.contact-item-value { font-size: 1.08rem; font-weight: 500; color: var(--text); margin-top: 2px; }
.biz-box {
  margin-top: 24px; padding: 22px;
  background: var(--bg-soft); border-radius: var(--r);
  font-size: .92rem; color: var(--text-soft);
}
.biz-box strong { color: var(--navy); display: block; margin-bottom: 4px; }
.map-box {
  margin-top: 32px; aspect-ratio: 16/10; border-radius: var(--r-lg);
  background:
    linear-gradient(135deg, rgba(93,179,220,0.18), rgba(16,166,68,0.14)),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(14,20,50,0.04) 20px 21px);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: .9rem; border: 1px solid var(--border);
}

/* ---------- FOOTER ---------- */
.site-footer { background: var(--black); color: rgba(255,255,255,0.72); padding: 80px 0 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-footer h4 {
  color: #fff; font-size: .88rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; margin: 0 0 20px;
}
.site-footer .logo svg, .site-footer .logo img { height: 44px; width: auto; margin-bottom: 20px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { color: rgba(255,255,255,0.72); font-size: .95rem; }
.site-footer a:hover { color: #fff; }
.site-footer p { color: rgba(255,255,255,0.72); font-size: .95rem; margin: 0 0 16px; line-height: 1.6; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; padding-top: 28px;
  font-size: .88rem; color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: #fff; }

/* ---------- WhatsApp FAB ---------- */
.wa-fab {
  position: fixed; right: 26px; bottom: 26px; z-index: 40;
  width: 62px; height: 62px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 40px rgba(37,211,102,0.45);
  transition: transform .2s var(--ease);
}
.wa-fab:hover { transform: scale(1.08); color: #fff; }
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: ripple 2s infinite;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---------- UPLOAD FACTUUR CTA ---------- */
.upload-cta {
  position: relative;
  padding: clamp(70px, 9vw, 110px) 0;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(16,166,68,0.18), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(93,179,220,0.14), transparent 55%),
    linear-gradient(180deg, #fff 0%, #F2FBF5 100%);
  overflow: hidden;
}
.upload-cta::before {
  content: "";
  position: absolute;
  top: -120px; right: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(16,166,68,0.25), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.upload-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.upload-text h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); }
.upload-text h2 em { font-style: normal; color: var(--green-2); }
.upload-text .lead { font-size: 1.12rem; }
.upload-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
  font-size: .95rem;
}
.upload-trust .item { display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-weight: 500; }
.upload-trust svg { width: 18px; height: 18px; color: var(--green-2); flex-shrink: 0; }

.upload-form {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.upload-form h3 { margin: 0 0 6px; font-size: 1.4rem; }
.upload-form .form-sub { font-size: .94rem; color: var(--text-soft); margin: 0 0 22px; }

.upload-drop {
  position: relative;
  border: 2.5px dashed var(--border-2);
  border-radius: var(--r);
  padding: 32px 24px;
  text-align: center;
  background: var(--bg-soft);
  cursor: pointer;
  transition: all .25s var(--ease);
  margin-bottom: 18px;
}
.upload-drop:hover, .upload-drop.dragover {
  border-color: var(--green);
  background: var(--green-soft);
  transform: translateY(-2px);
}
.upload-drop input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.upload-drop .drop-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-3) 0%, var(--green) 100%);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 8px 18px rgba(16,166,68,0.32);
}
.upload-drop .drop-icon svg { width: 28px; height: 28px; }
.upload-drop .drop-main { font-weight: 700; color: var(--navy); font-size: 1rem; margin: 0 0 6px; }
.upload-drop .drop-main em { font-style: normal; color: var(--green-2); }
.upload-drop .drop-sub { font-size: .85rem; color: var(--text-muted); margin: 0; }
.upload-drop .drop-filename {
  display: none;
  margin-top: 12px;
  padding: 10px 14px;
  background: #fff;
  border: 1.5px solid var(--green);
  border-radius: 8px;
  color: var(--navy);
  font-weight: 600;
  font-size: .9rem;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.upload-drop.has-file .drop-filename { display: inline-flex; }
.upload-drop.has-file .drop-main, .upload-drop.has-file .drop-sub, .upload-drop.has-file .drop-icon { display: none; }
.upload-drop .drop-filename svg { width: 18px; height: 18px; color: var(--green-2); }

.upload-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.upload-form .small { font-size: .82rem; color: var(--text-muted); margin: 14px 0 0; text-align: center; }

@media (max-width: 1000px) {
  .upload-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .upload-form { padding: 28px 22px; }
  .upload-trust { gap: 12px 18px; }
}

/* ---------- ROTATING hero d-float ---------- */
.hero-devices .d-float.a .rotate-text {
  display: inline-block;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.hero-devices .d-float.a.swapping .rotate-text {
  opacity: 0;
  transform: translateY(-6px);
}
.hero-devices .d-float.a .circle.color-1 { background: var(--green); }
.hero-devices .d-float.a .circle.color-2 { background: var(--sky-2); }
.hero-devices .d-float.a .circle.color-3 { background: var(--green-2); }
.hero-devices .d-float.a .circle.color-4 { background: #F7BD29; }
.hero-devices .d-float.a .circle.color-5 { background: var(--sky); }
.hero-devices .d-float.a .circle.color-6 { background: var(--navy); }

/* ---------- ABOUT (expanded over-ons) ---------- */
.about-wide { padding: clamp(80px, 10vw, 130px) 0; background: var(--bg-soft); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}
.about-copy h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); }
.about-copy .lead { font-size: 1.12rem; color: var(--text); font-weight: 400; line-height: 1.65; }
.about-visual {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  overflow: hidden;
  padding: 48px;
  color: #fff;
}
.about-visual::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(93,179,220,0.5), transparent 70%);
  filter: blur(20px);
}
.about-visual::after {
  content: "";
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(16,166,68,0.4), transparent 70%);
  filter: blur(20px);
}
.about-visual-inner { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.about-loc {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  font-size: .88rem; font-weight: 500;
  color: #fff;
  width: fit-content;
  backdrop-filter: blur(10px);
}
.about-loc svg { width: 16px; height: 16px; color: var(--green-3); }
.about-big {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
}
.about-big em { font-style: normal; color: var(--green-3); }
.about-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.about-meta .m-num { font-size: 2.2rem; font-weight: 900; color: #fff; line-height: 1; }
.about-meta .m-num span { color: var(--sky); }
.about-meta .m-lbl { font-size: .85rem; color: rgba(255,255,255,0.72); margin-top: 4px; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }

/* ---------- TRUST BLOCK (replaces testimonials) ---------- */
.trust { background: #fff; padding: clamp(70px, 9vw, 110px) 0; }
.trust-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.trust-item {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--r-lg);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  transition: all .3s var(--ease);
}
.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  background: #fff;
}
.trust-item .t-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  background: var(--sky-soft); color: var(--sky-2);
}
.trust-item:nth-child(2) .t-icon { background: var(--green-soft); color: var(--green-2); }
.trust-item:nth-child(3) .t-icon { background: #E8ECF9; color: var(--navy); }
.trust-item:nth-child(4) .t-icon { background: #FFEDE5; color: #FF8563; }
.trust-item:nth-child(5) .t-icon { background: var(--sky-soft); color: var(--sky-2); }
.trust-item .t-icon svg { width: 24px; height: 24px; }
.trust-item .t-num {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.trust-item .t-num span { color: var(--sky-2); font-size: 1rem; font-weight: 700; }
.trust-item .t-lbl {
  font-size: .92rem;
  color: var(--text-soft);
  margin-top: 8px;
  line-height: 1.4;
}

/* ---------- PROCESS (light — replaces dark .how) ---------- */
.process-light { background: #fff; padding: clamp(80px, 10vw, 130px) 0; }
.process-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.process-head h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); }
.process-head h2 em { font-style: normal; color: var(--green); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 40px; left: 13%; right: 13%;
  height: 2px;
  background: linear-gradient(90deg, var(--sky) 0%, var(--green) 100%);
  opacity: 0.35;
}
.p-step {
  position: relative;
  text-align: center;
  padding: 0 12px;
}
.p-step .p-num {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--sky);
  color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px rgba(93,179,220,0.15);
}
.p-step:nth-child(2) .p-num { border-color: var(--green); box-shadow: 0 0 0 8px rgba(16,166,68,0.15); }
.p-step:nth-child(3) .p-num { border-color: var(--sky); box-shadow: 0 0 0 8px rgba(93,179,220,0.15); }
.p-step:nth-child(4) .p-num { border-color: var(--green); box-shadow: 0 0 0 8px rgba(16,166,68,0.15); }
.p-step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.p-step p { font-size: .95rem; margin: 0; }
.process-footer { text-align: center; margin-top: 56px; }
.process-footer p { font-weight: 700; color: var(--navy); margin-bottom: 16px; }

/* ---------- FAQ ---------- */
.faq { padding: clamp(80px, 10vw, 130px) 0; background: var(--bg-soft); }
.faq-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.faq-head h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); }
.faq-grid {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  transition: all .25s var(--ease);
}
.faq-item[open] {
  border-color: var(--sky);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .25s var(--ease);
}
.faq-item summary .plus svg {
  width: 16px; height: 16px;
  color: var(--navy);
  transition: transform .25s var(--ease);
}
.faq-item[open] summary .plus { background: var(--sky); }
.faq-item[open] summary .plus svg { transform: rotate(45deg); color: #fff; }
.faq-item .answer {
  padding: 0 28px 24px;
  color: var(--text-soft);
  line-height: 1.6;
  font-size: .98rem;
}
.faq-item .answer p:last-child { margin-bottom: 0; }

/* ---------- DEVICE STACK (hero visual replacement) ---------- */
.hero-devices {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1/1;
  justify-self: end;
}
.hero-devices .dev-bg {
  position: absolute;
  inset: 10% 4% 10% 4%;
  background: radial-gradient(ellipse at center, rgba(93,179,220,0.18) 0%, transparent 70%);
  filter: blur(10px);
}
.hero-devices svg { width: 100%; height: 100%; position: relative; z-index: 1; }

/* Floating stat cards on device stack */
.hero-devices .d-float {
  position: absolute;
  background: #fff;
  color: var(--text);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  z-index: 3;
  animation: float 5s ease-in-out infinite;
}
.hero-devices .d-float.a { top: 4%; left: -2%; display: flex; align-items: center; gap: 10px; font-size: .88rem; font-weight: 600; }
.hero-devices .d-float.a .circle { width: 32px; height: 32px; border-radius: 50%; background: var(--green); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.hero-devices .d-float.a .circle svg { width: 16px; height: 16px; }
.hero-devices .d-float.b { bottom: 10%; right: -3%; animation-delay: -2.5s; }
.hero-devices .d-float.b .label { font-size: .68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.hero-devices .d-float.b .big { font-size: 1.5rem; font-weight: 900; color: var(--navy); line-height: 1; margin-top: 4px; }
.hero-devices .d-float.b .big span { color: var(--sky-2); font-size: .8rem; font-weight: 700; }

/* Responsive adjustments for new sections */
@media (max-width: 1000px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .about-meta { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .trust-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .about-visual { padding: 32px; }
  .about-big { font-size: 1.8rem; }
  .faq-item summary { padding: 18px 20px; font-size: 1rem; }
  .faq-item .answer { padding: 0 20px 20px; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 420px; justify-self: center; }
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 56px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .usp-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .service-detail .sd-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-detail.reverse .sd-grid > :first-child { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 18px 28px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow); gap: 0;
  }
  .nav.open a { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav.open a:last-child { border-bottom: 0; margin-top: 8px; }
  .mobile-toggle { display: inline-flex; }
  .header-top { display: none; }
}
@media (max-width: 600px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  .hero-block { border-radius: 0 0 24px 24px; padding-bottom: 80px; }
  .page-hero { border-radius: 0 0 24px 24px; }
  .products-grid { grid-template-columns: 1fr; }
  .usp-strip-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 24px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-badges .hero-badge { flex-basis: 100%; }
  .benefits-visual-inner { grid-template-columns: 1fr 1fr; }
  .how h2 { font-size: 2.2rem; }
  .how-card { padding: 24px 20px; grid-template-columns: 52px 1fr; gap: 20px; }
  .how-num { width: 52px; height: 52px; font-size: 1.25rem; }
}
