/* ============================================================
   HoTechOlution — brand tokens & base
   Colors from proof sheet:
   navy #110546 · green #159268 · periwinkle #5F62AB · coral #F86E60
   Type: Poppins (display) · IBM Plex Sans (body) · IBM Plex Mono (labels)
   ============================================================ */

/* ---- Self-hosted fonts (SIL OFL, served from same origin) ---- */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/poppins-400.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/poppins-600.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/poppins-700.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/plex-sans-400.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/plex-sans-600.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/plex-mono-500.woff2") format("woff2");
}

:root {
  --ink:        #110546;   /* primary text / dark sections */
  --ink-2:      #2c2257;   /* softer navy */
  --green:      #159268;
  --periwinkle: #5f62ab;
  --coral:      #f86e60;

  --paper:      #ffffff;
  --paper-2:    #f6f6f9;   /* faint cool off-white */
  --paper-3:    #ececf3;
  --line:       #e2e1ec;   /* hairline border */
  --line-2:     #d2d1e0;
  --muted:      #5b5775;   /* secondary text */
  --muted-2:    #8a87a0;

  --ink-tint:   rgba(17,5,70,0.04);
  --shadow-sm:  0 1px 2px rgba(17,5,70,.06), 0 2px 8px rgba(17,5,70,.05);
  --shadow-md:  0 6px 24px rgba(17,5,70,.08), 0 2px 8px rgba(17,5,70,.05);
  --shadow-lg:  0 24px 60px rgba(17,5,70,.13), 0 8px 24px rgba(17,5,70,.07);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --maxw: 1180px;

  --display: "Poppins", system-ui, sans-serif;
  --body: "IBM Plex Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.08; margin: 0; letter-spacing: -0.015em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }

/* eyebrow / mono label */
.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }

.section { padding-block: clamp(72px, 9vw, 132px); }
.section-head { max-width: 720px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { font-size: clamp(30px, 4.2vw, 46px); }
.section-head p.lede { margin-top: 18px; color: var(--muted); font-size: clamp(17px, 1.6vw, 19px); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--body); font-weight: 600; font-size: 15.5px;
  padding: 13px 22px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { box-shadow: var(--shadow-md); }
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { box-shadow: 0 10px 26px rgba(248,110,96,.35); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink-tint); }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.nav.scrolled { border-color: var(--line); box-shadow: 0 1px 0 rgba(17,5,70,.03); }
.nav-inner { display: flex; align-items: center; gap: 22px; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { width: 34px; height: 34px; }
.brand .wm { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.wm .g { color: var(--green); } .wm .p { color: var(--periwinkle); } .wm .c { color: var(--coral); }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  padding: 8px 13px; border-radius: 8px; transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--ink-tint); color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 14px; }

/* language toggle */
.lang {
  display: inline-flex; border: 1.5px solid var(--line-2); border-radius: 999px;
  padding: 3px; font-family: var(--mono); font-size: 12px; font-weight: 600;
}
.lang button {
  border: 0; background: transparent; cursor: pointer; color: var(--muted);
  padding: 10px 14px; min-height: 38px; min-width: 38px; border-radius: 999px;
  transition: background .15s, color .15s; font-family: inherit; font-weight: 600;
}
.lang button.active { background: var(--ink); color: #fff; }

.nav-burger { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(48px, 6vw, 88px); padding-bottom: clamp(56px, 8vw, 110px); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(40px, 6.4vw, 78px); font-weight: 700; letter-spacing: -0.03em; }
/* Product-page hero h1: smaller, since these carry actual product copy rather than a brand wordmark */
.hero h1.hero-h1-product { font-size: clamp(34px, 4.6vw, 54px); line-height: 1.1; letter-spacing: -0.02em; }
.hero h1 .g { color: var(--green); } .hero h1 .p { color: var(--periwinkle); } .hero h1 .c { color: var(--coral); }
.hero-sub { margin-top: 26px; font-size: clamp(18px, 1.9vw, 21px); color: var(--muted); max-width: 33ch; line-height: 1.55; }
.hero-cta { margin-top: 34px; display: flex; gap: 13px; flex-wrap: wrap; }
.hero-meta { margin-top: 30px; display: flex; gap: 26px; flex-wrap: wrap; }
.hero-meta .item { font-family: var(--mono); font-size: 12.5px; letter-spacing: .04em; color: var(--muted); }
.hero-meta .item b { display: block; font-family: var(--display); font-size: 23px; color: var(--ink); letter-spacing: -0.02em; font-weight: 600; }

/* decomposition chips under headline */
.decomp { margin-top: 30px; display: flex; gap: 10px; flex-wrap: wrap; }
.decomp .chip {
  font-family: var(--mono); font-size: 12px; letter-spacing: .05em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px; border: 1.5px solid var(--line); color: var(--muted);
  display: inline-flex; align-items: baseline; gap: 7px; background: #fff;
}
.decomp .chip b { font-family: var(--display); font-weight: 600; letter-spacing: -0.01em; text-transform: none; font-size: 13px; }
.decomp .chip.g b { color: var(--green); }
.decomp .chip.p b { color: var(--periwinkle); }
.decomp .chip.c { position: relative; }
.decomp .chip.c b { color: var(--coral); }
/* cycling word in coral chip */
.cycler { position: relative; display: inline-block; min-width: 7.4em; text-align: left; height: 1.2em; overflow: hidden; vertical-align: bottom; }
.cycler span {
  position: absolute; left: 0; top: 0; white-space: nowrap;
  opacity: 0; transform: translateY(100%);
  transition: opacity .5s ease, transform .5s cubic-bezier(.2,.7,.2,1);
  color: var(--coral); font-family: var(--display); font-weight: 600;
}
.cycler span.in  { opacity: 1; transform: translateY(0); }
.cycler span.out { opacity: 0; transform: translateY(-100%); }

/* hero art */
.hero-art { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-art .halo {
  position: absolute; inset: 8% 6%; border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(95,98,171,.18), rgba(21,146,104,.10) 45%, transparent 70%);
  filter: blur(6px);
}
.hero-art picture, .hero-art img { position: relative; width: min(86%, 380px); height: auto; filter: drop-shadow(0 30px 50px rgba(17,5,70,.18)); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-art picture { animation: floaty 6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .hero-art picture, .hero-art img { animation: none; } }

/* faint backdrop grid lines */
.hero::before {
  content:""; position:absolute; inset:0; pointer-events:none; z-index:0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px; opacity: .35;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, #000, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, #000, transparent 75%);
}
.hero-grid { position: relative; z-index: 1; }

/* ---------- trust / apaleo band ---------- */
.band { background: var(--ink); color: #fff; }
.band .wrap { padding-block: clamp(56px, 7vw, 96px); }
.band-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.band .eyebrow { color: rgba(255,255,255,.6); }
.band .eyebrow .dot { background: var(--coral); }
.band h2 { font-size: clamp(26px, 3.4vw, 40px); color: #fff; }
.band p { margin-top: 18px; color: rgba(255,255,255,.72); font-size: 18px; max-width: 46ch; }
.band-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-md); overflow: hidden; }
.band-stats .s { background: var(--ink); padding: 26px 24px; }
.band-stats .s .n { font-family: var(--display); font-weight: 600; font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -0.02em; }
.band-stats .s:nth-child(1) .n { color: var(--green); }
.band-stats .s:nth-child(2) .n { color: var(--periwinkle); }
.band-stats .s:nth-child(3) .n { color: var(--coral); }
.band-stats .s:nth-child(4) .n { color: #fff; }
.band-stats .s .l { margin-top: 6px; font-size: 14px; color: rgba(255,255,255,.62); line-height: 1.4; }
.band-note { margin-top: 22px; font-family: var(--mono); font-size: 12.5px; color: rgba(255,255,255,.5); letter-spacing: .03em; }

/* ---------- products ---------- */
.products { background: var(--paper-2); }
.prod-list { margin-top: 52px; display: flex; flex-direction: column; gap: 28px; }
.prod {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  display: grid; grid-template-columns: 1.5fr 1fr;
  transition: box-shadow .25s ease, transform .25s ease;
}
.prod:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.prod-main { padding: clamp(28px, 3.4vw, 44px); }
.prod-top { display: flex; align-items: center; gap: 14px; }
.prod-badge {
  width: 62px; height: 62px; border-radius: 15px; display: grid; place-items: center;
  flex: none; padding: 7px; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.prod-badge img { width: 100%; height: 100%; object-fit: contain; }
.prod-live { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; display: inline-flex; align-items: center; gap: 7px; }
.prod-live .pulse { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 0 currentColor; animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(21,146,104,.5); } 70% { box-shadow: 0 0 0 8px rgba(21,146,104,0); } 100% { box-shadow: 0 0 0 0 rgba(21,146,104,0); } }
.prod h3 { font-size: clamp(23px, 2.6vw, 30px); margin-top: 22px; }
.prod h3 a {
  color: inherit; text-decoration: none; transition: color .18s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.prod h3 a::after {
  content: "↗"; font-size: .62em; font-weight: 600; color: var(--accent, var(--ink));
  opacity: 0; transform: translate(-3px, 1px); transition: opacity .18s ease, transform .18s ease;
}
.prod h3 a:hover { color: var(--accent, var(--ink)); }
.prod h3 a:hover::after { opacity: 1; transform: translate(0, 1px); }
.prod .kicker { font-family: var(--mono); font-size: 12.5px; letter-spacing: .04em; color: var(--muted-2); margin-top: 6px; }
.prod .desc { margin-top: 16px; color: var(--muted); font-size: 16.5px; }
.prod-feats { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 11px 22px; }
.prod-feats li { position: relative; padding-left: 26px; font-size: 15px; color: var(--ink-2); line-height: 1.45; }
.prod-feats li::before {
  content:""; position: absolute; left: 0; top: 7px; width: 15px; height: 15px; border-radius: 50%;
  background: var(--accent, var(--green)); opacity: .16;
}
.prod-feats li::after {
  content:""; position: absolute; left: 4.5px; top: 11px; width: 6px; height: 3.5px; border-left: 2px solid var(--accent, var(--green)); border-bottom: 2px solid var(--accent, var(--green)); transform: rotate(-45deg);
}
.prod-aside {
  background: var(--paper-2); border-left: 1px solid var(--line);
  padding: clamp(26px, 3vw, 40px); display: flex; flex-direction: column; justify-content: center; gap: 18px;
}
.price-row { display: flex; flex-direction: column; gap: 4px; }
.price-row .ptier { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); }
.price-row .pval { font-family: var(--display); font-weight: 600; font-size: 30px; letter-spacing: -0.02em; line-height: 1; }
.price-row .pval small { font-family: var(--body); font-size: 14px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price-row .pnote { font-size: 13px; color: var(--muted); }
.prod-aside .divider { height: 1px; background: var(--line); }
.prod-aside .trial { font-family: var(--mono); font-size: 12px; color: var(--green); letter-spacing: .03em; }
.prod-aside a.plink { font-weight: 600; font-size: 14.5px; color: var(--ink); display: inline-flex; align-items: center; gap: 7px; }
.prod-aside a.plink .arr { transition: transform .2s; }
.prod-aside a.plink:hover .arr { transform: translateX(3px); }

/* ---------- pricing calculator ---------- */
.calc-card {
  margin-top: 52px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); padding: clamp(28px, 3.5vw, 48px);
  display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 4vw, 56px); align-items: center;
}
.calc-control h3 { font-size: 24px; }
.calc-control p { margin-top: 10px; color: var(--muted); font-size: 15.5px; }
.calc-field { margin-top: 24px; }
.calc-field + .calc-field { margin-top: 22px; border-top: 1px solid var(--line); padding-top: 22px; }
.calc-readout { margin-top: 0; display: flex; align-items: baseline; gap: 10px; }
.calc-readout .num { font-family: var(--display); font-weight: 700; font-size: 46px; color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.calc-readout .unit { font-family: var(--mono); font-size: 14px; color: var(--muted); }
.slider-wrap { margin-top: 16px; }
.slider-wrap input[type=range] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px;
  background: var(--paper-3); outline: none;
}
.slider-wrap input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 32px; height: 32px; border-radius: 50%;
  background: var(--coral); cursor: pointer; border: 4px solid #fff; box-shadow: 0 2px 8px rgba(248,110,96,.4);
  transition: transform .15s;
}
.slider-wrap input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.12); }
.slider-wrap input[type=range]::-moz-range-thumb {
  width: 32px; height: 32px; border-radius: 50%; background: var(--coral); cursor: pointer; border: 4px solid #fff; box-shadow: 0 2px 8px rgba(248,110,96,.4);
}
.slider-labels { display: flex; justify-content: space-between; margin-top: 10px; font-family: var(--mono); font-size: 11.5px; color: var(--muted-2); }
.calc-results { display: grid; gap: 12px; }
.calc-line {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px;
  padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--paper-2);
  transition: border-color .2s, box-shadow .2s;
}
.calc-line:hover { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.calc-line .cdot { width: 12px; height: 12px; border-radius: 4px; }
.calc-line .cname { font-family: var(--display); font-weight: 600; font-size: 16px; }
.calc-line .ctier { font-family: var(--mono); font-size: 11.5px; color: var(--muted-2); margin-top: 1px; }
.calc-line .cprice { font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; text-align: right; }
.calc-line .cprice small { font-family: var(--body); font-size: 12px; color: var(--muted); font-weight: 500; display: block; letter-spacing: 0; }

/* ---------- value props ---------- */
.values { background: var(--ink); color: #fff; }
.val-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); overflow: hidden; }
.val { background: var(--ink); padding: 32px 30px; transition: background .2s; }
.val:hover { background: #18094f; }
.val .vn { font-family: var(--mono); font-size: 12px; color: var(--coral); letter-spacing: .1em; }
.val h4 { font-size: 19px; margin-top: 14px; color: #fff; }
.val p { margin-top: 9px; color: rgba(255,255,255,.66); font-size: 15px; line-height: 1.55; }
.values .section-head h2 { color: #fff; }
.values .section-head .eyebrow { color: rgba(255,255,255,.6); }
.values .section-head p.lede { color: rgba(255,255,255,.66); }

/* ---------- founder ---------- */
.founder-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.founder-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-md);
  padding: 30px; position: relative; overflow: hidden;
}
.founder-photo {
  aspect-ratio: 1/1; border-radius: var(--r-md); overflow: hidden; background:
    repeating-linear-gradient(135deg, var(--paper-2), var(--paper-2) 11px, var(--paper-3) 11px, var(--paper-3) 22px);
  display: grid; place-items: center; border: 1px solid var(--line);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%; }
.founder-photo .ph { font-family: var(--mono); font-size: 12px; color: var(--muted-2); text-align: center; letter-spacing: .04em; padding: 12px; }
.founder-name { font-family: var(--display); font-weight: 600; font-size: 22px; margin-top: 20px; }
.founder-role { color: var(--muted); font-size: 15px; margin-top: 4px; }
.founder-creds { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.founder-creds li { font-size: 14px; color: var(--ink-2); padding-left: 22px; position: relative; }
.founder-creds li::before { content:""; position: absolute; left: 0; top: 8px; width: 9px; height: 9px; border-radius: 3px; background: var(--periwinkle); }
.founder-body h2 { font-size: clamp(28px, 3.6vw, 42px); }
.founder-body .lede { margin-top: 20px; color: var(--muted); font-size: 18px; }
.founder-actions { margin-top: 26px; display: flex; gap: 13px; flex-wrap: wrap; }

/* ---------- consulting ---------- */
.consult { background: var(--paper-2); }
.consult-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.consult-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.consult-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.consult-card .ci {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--ci-color, var(--ink)) 12%, #fff);
}
.consult-card .ci svg {
  width: 26px; height: 26px; fill: none; stroke: var(--ci-color, var(--ink));
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.consult-card h4 { font-size: 19px; margin-top: 18px; }
.consult-card p { margin-top: 10px; color: var(--muted); font-size: 15px; }
.consult-card .cprice { margin-top: 16px; font-family: var(--mono); font-size: 13px; color: var(--green); letter-spacing: .03em; }

/* ---------- contact / CTA ---------- */
.cta { position: relative; overflow: hidden; }
.cta-card {
  background: var(--ink); border-radius: var(--r-lg); padding: clamp(40px, 6vw, 80px);
  position: relative; overflow: hidden; text-align: center;
}
.cta-card::before {
  content:""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 50% 120%, rgba(248,110,96,.34), transparent 70%);
}
.cta-card .eyebrow { color: rgba(255,255,255,.6); justify-content: center; }
.cta-card h2 { color: #fff; font-size: clamp(30px, 4.6vw, 54px); margin-top: 16px; position: relative; }
.cta-card p { color: rgba(255,255,255,.74); font-size: 19px; margin: 18px auto 0; max-width: 52ch; position: relative; }
.cta-actions { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- footer ---------- */
.footer { background: var(--paper); border-top: 1px solid var(--line); padding-block: 56px 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px; }
.footer .brand { margin-bottom: 16px; }
.footer .fdesc { color: var(--muted); font-size: 14.5px; max-width: 30ch; }
.footer h5 { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); margin: 0 0 16px; font-weight: 600; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a, .footer ul li { font-size: 14.5px; color: var(--ink-2); }
.footer ul a:hover { color: var(--coral); }
.footer-legal { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--muted-2); }
.footer-legal .mono { font-family: var(--mono); letter-spacing: .02em; }

/* ---------- WHY APALEO (4-card grid) ---------- */
.why { background: var(--paper-2); }
.why-grid {
  margin-top: 52px; display: grid; gap: 22px;
  grid-template-columns: repeat(2, 1fr);
}
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 38px); box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  border-top: 4px solid var(--accent, var(--ink));
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent, var(--ink)) 12%, #fff);
}
.why-icon svg {
  width: 24px; height: 24px; fill: none; stroke: var(--accent, var(--ink));
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.why-card h3 {
  margin-top: 18px;
  font-family: var(--display); font-weight: 600; font-size: 21px; letter-spacing: -0.015em;
  color: var(--ink);
}
.why-card p { margin-top: 10px; color: var(--muted); font-size: 15.5px; line-height: 1.6; }

/* ---------- GIMSI track-record stat strip ---------- */
.prod-stats {
  margin-top: 22px; padding: 12px 16px;
  background: color-mix(in srgb, var(--accent, var(--ink)) 7%, #fff);
  border-radius: var(--r-sm); border: 1px solid color-mix(in srgb, var(--accent, var(--ink)) 18%, #fff);
  font-family: var(--mono); font-size: 12.5px; letter-spacing: .03em; color: var(--ink-2);
}

/* ---------- FAQ ---------- */
.faq { background: var(--paper-2); }
.faq-list {
  margin-top: 48px; display: flex; flex-direction: column; gap: 12px;
  max-width: 880px;
}
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 0; box-shadow: var(--shadow-sm); overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 26px;
  font-family: var(--display); font-weight: 600; font-size: 18px; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  user-select: none; min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex: none; width: 26px; height: 26px;
  border-radius: 50%; background: var(--paper-2); color: var(--coral);
  display: grid; place-items: center; font-weight: 700; font-size: 18px;
  transition: transform .25s ease, background .2s;
}
.faq-item[open] summary::after { content: "−"; background: var(--coral); color: #fff; transform: rotate(180deg); }
.faq-item p {
  padding: 0 26px 22px; color: var(--muted); font-size: 16px; line-height: 1.65;
}

/* ---------- pricing cards (product landing pages) ---------- */
.pricing-grid {
  margin-top: 48px; display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  max-width: 880px; margin-inline: auto;
  align-items: stretch;
}
.pricing-grid.single { grid-template-columns: minmax(320px, 480px); justify-content: center; }
.pricing-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 36px 32px; display: flex; flex-direction: column; gap: 22px;
  box-shadow: var(--shadow-sm); transition: box-shadow .25s ease, transform .25s ease;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pricing-card-featured { border: 1.5px solid var(--coral); box-shadow: 0 8px 28px rgba(248,110,96,.16); }
.pricing-card { position: relative; }
.pricing-card-head { display: flex; flex-direction: column; gap: 6px; }
.pricing-tier { font-family: var(--display); font-weight: 600; font-size: 22px; color: var(--ink); }
.pricing-eyebrow { font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; }
.pricing-price { display: flex; align-items: baseline; gap: 8px; }
.pricing-amount { font-family: var(--display); font-weight: 700; font-size: 48px; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.pricing-unit { font-family: var(--body); font-size: 15px; color: var(--muted); }
.pricing-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li {
  position: relative; padding-left: 26px; font-size: 15px; color: var(--ink-2); line-height: 1.45;
}
.pricing-features li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--green); opacity: .15;
}
.pricing-features li::after {
  content: ""; position: absolute; left: 4.5px; top: 10px; width: 7px; height: 4px;
  border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg);
}
.pricing-card .btn { margin-top: auto; }
.pricing-note { text-align: center; margin-top: 26px; font-family: var(--mono); font-size: 13px; color: var(--muted); }

/* ---------- phone reveal button (footer) ---------- */
.phone-reveal {
  display: inline-block; padding: 0; background: none; border: 0;
  font-family: var(--body); font-size: 14.5px; color: var(--ink-2);
  cursor: pointer; text-align: left;
  border-bottom: 1px dashed var(--line-2);
  transition: color .15s, border-color .15s;
}
.phone-reveal:hover { color: var(--coral); border-bottom-color: var(--coral); }
.phone-reveal.revealed { border-bottom-color: transparent; cursor: default; }
.phone-reveal a { color: inherit; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* lang visibility */
[data-en], [data-de] { }
body[data-lang="en"] [data-de] { display: none; }
body[data-lang="de"] [data-en] { display: none; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { order: -1; max-width: 320px; margin-inline: auto; }
  .band-grid, .founder-grid, .calc-card { grid-template-columns: 1fr; }
  .prod { grid-template-columns: 1fr; }
  .prod-aside { border-left: 0; border-top: 1px solid var(--line); flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: space-between; }
  .val-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .consult-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-inner { gap: 12px; }
  .nav-links { display: none; }
  /* On mobile, the lang toggle and the nav CTA both live in the burger menu.
     Push the burger group all the way to the right since .nav-links (which had
     margin-left:auto) is now display:none and provides no spacing. */
  .nav-right { margin-left: auto; }
  .nav-right .lang { display: none; }
  .nav-right > .btn { display: none; }
  .nav-burger { display: inline-flex; }
  .mobile-menu .lang-row { display: flex; gap: 6px; padding: 16px 0; border-bottom: 1px solid var(--line); }
  .prod-feats { grid-template-columns: 1fr; }
  .val-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .band-stats { grid-template-columns: 1fr 1fr; }
  .calc-readout .num { font-size: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; gap: 8px; }
  .faq-item summary { padding: 18px 20px; font-size: 16px; }
  .faq-item p { padding: 0 20px 18px; }
}

/* mobile menu */
.mobile-menu { display: none; }
.mobile-menu.open { display: block; position: fixed; inset: 70px 0 0; background: #fff; z-index: 99; padding: 24px 28px; }
.mobile-menu a { display: block; padding: 16px 0; font-family: var(--display); font-weight: 600; font-size: 22px; border-bottom: 1px solid var(--line); }
.nav-burger { background: transparent; border: 1.5px solid var(--line-2); border-radius: 9px; width: 42px; height: 38px; cursor: pointer; align-items: center; justify-content: center; }
.nav-burger span { width: 18px; height: 2px; background: var(--ink); position: relative; display: block; }
.nav-burger span::before, .nav-burger span::after { content:""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); }
.nav-burger span::before { top: -6px; } .nav-burger span::after { top: 6px; }
