/* ── TOKENS ── */
:root {
  /* Product-matched palette: cool grey pillow, charcoal controller */
  --white:      #ffffff;
  --off-white:  #f7f7f6;
  --surface:    #f0f0ee;
  --surface2:   #e8e8e5;
  --border:     #e0dedd;
  --border-mid: #c8c7c5;

  /* Product grey — matches pillow shell */
  --grey-100:   #f4f4f3;
  --grey-200:   #e6e6e4;
  --grey-300:   #c7c8c8;   /* pillow shell color */
  --grey-400:   #9fa0a1;
  --grey-500:   #6a7077;   /* mid charcoal */
  --grey-700:   #3d3f42;
  --grey-900:   #1a1b1e;

  /* Controller blue accent (matches LED ring) */
  --blue:       #3d8fd1;
  --blue-light: #d6e9f7;
  --blue-pale:  #edf5fc;

  /* Warm neutral for text */
  --text:       #1e1f22;
  --text-mid:   #52555a;
  --text-light: #8d9096;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --nav-h:      68px;
  --max-w:      1160px;
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  background: var(--white);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display:block; max-width:100%; }
button { font-family: inherit; cursor:pointer; }

/* ── UTILITIES ── */
.container { max-width:var(--max-w); margin:0 auto; padding:0 40px; }
.label {
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue);
}
.section-gap { padding: 100px 0; }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity:0; transform:translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.2s; }
.reveal-delay-3 { transition-delay:.3s; }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
#nav {
  position: fixed; top:0; left:0; right:0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,0);
  transition: background .35s, box-shadow .35s;
}
#nav.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: var(--max-w); margin:0 auto; padding:0 40px;
  width:100%; display:flex; align-items:center; justify-content:space-between;
}
.nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; }
.nav-logo img { height:30px; }
.nav-wordmark {
  font-size:17px; font-weight:700; color:var(--text);
  letter-spacing:-.01em;
}
.nav-links {
  display:flex; gap:32px; list-style:none;
}
.nav-links a {
  font-size:14px; font-weight:500; color:var(--text-mid);
  text-decoration:none; transition:color .2s;
}
.nav-links a:hover { color:var(--text); }
.nav-cta {
  padding: 10px 22px;
  background: var(--blue); color: #fff;
  font-size: 14px; font-weight: 600;
  border: none; border-radius: var(--radius-sm);
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background:#2e7dbe; transform:translateY(-1px); }

/* ══════════════════════════════════════
   §1 HERO — Video Background
══════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction:column;
  align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--grey-900);
  padding: var(--nav-h) 40px 60px;
}

/* Video background */
.hero-video-wrap {
  position: absolute; inset:0; z-index:0; overflow:hidden;
}
.hero-video-wrap video {
  width:100%; height:100%; object-fit:cover; opacity:.45;
}
/* Fallback gradient if video not loaded */
.hero-video-wrap .hero-video-fallback {
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(26,27,30,0.3) 0%, rgba(26,27,30,0.1) 40%, rgba(26,27,30,0.6) 100%),
    url('images/img_man_sleep.jpg') center/cover no-repeat;
  opacity:1;
}
.hero-overlay {
  position: absolute; inset:0; z-index:1;
  background: linear-gradient(180deg,
    rgba(26,27,30,.45) 0%,
    rgba(26,27,30,.15) 45%,
    rgba(26,27,30,.7) 100%);
}
.hero-bottom-fade {
  position:absolute; bottom:0; left:0; right:0; height:140px; z-index:2;
  background: linear-gradient(0deg, #ffffff 0%, transparent 100%);
}
.hero-content {
  position:relative; z-index:3;
  max-width: 780px;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.22);
  padding:7px 16px; border-radius: 99px;
  font-size: 12px; font-weight:500; color:rgba(255,255,255,.85);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  animation: fadeUp .7s ease both;
}
.hero-badge .dot-live {
  width:7px; height:7px; border-radius:50%;
  background:#5dd09a;
  box-shadow:0 0 6px #5dd09a;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.3;} }
.hero-h1 {
  font-family: 'Lora', serif;
  font-size: clamp(42px, 6.5vw, 78px);
  font-weight: 500; line-height: 1.1; letter-spacing:-.02em;
  color: #fff;
  animation: fadeUp .8s ease .08s both;
}
.hero-h1 em { font-style:italic; color: #a8d4f0; }
.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px); font-weight:400; line-height:1.65;
  color: rgba(255,255,255,.7);
  max-width: 560px; margin:24px auto 40px;
  animation: fadeUp .8s ease .18s both;
}
.hero-pills {
  display:flex; justify-content:center; gap:10px; flex-wrap:wrap;
  margin-bottom:40px;
  animation: fadeUp .8s ease .26s both;
}
.hero-pill {
  display:inline-flex; align-items:center; gap:6px;
  padding: 8px 16px; border-radius:99px;
  background: rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18);
  font-size:13px; font-weight:500; color:rgba(255,255,255,.82);
  backdrop-filter:blur(6px);
}
.hero-actions {
  display:flex; justify-content:center; gap:14px; flex-wrap:wrap;
  animation: fadeUp .8s ease .34s both;
}
.btn-primary {
  padding:14px 32px; background:var(--blue); color:#fff;
  font-size:15px; font-weight:600; border:none;
  border-radius:var(--radius-sm); transition:all .2s;
}
.btn-primary:hover { background:#2e7dbe; transform:translateY(-2px); box-shadow:0 6px 20px rgba(61,143,209,.35); }
.btn-outline {
  padding:14px 28px; background:rgba(255,255,255,.1);
  color:rgba(255,255,255,.85); border:1px solid rgba(255,255,255,.25);
  font-size:15px; font-weight:500; border-radius:var(--radius-sm);
  backdrop-filter:blur(6px); transition:all .2s;
}
.btn-outline:hover { background:rgba(255,255,255,.18); }

/* scroll arrow */
.hero-scroll-arrow {
  position:absolute; bottom:52px; left:50%; transform:translateX(-50%);
  z-index:4; display:flex; flex-direction:column; align-items:center; gap:6px;
  font-size:11px; font-weight:500; letter-spacing:.1em; text-transform:uppercase;
  color:rgba(255,255,255,.4);
  animation: fadeUp .8s ease .5s both;
}
.hero-scroll-arrow svg {
  animation: arrowBounce 2s ease-in-out infinite;
}
@keyframes arrowBounce { 0%,100%{transform:translateY(0);} 50%{transform:translateY(5px);} }
@keyframes fadeUp { from{opacity:0;transform:translateY(18px);} to{opacity:1;transform:translateY(0);} }

/* ══════════════════════════════════════
   §2 STATS STRIP
══════════════════════════════════════ */
#stats {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-inner {
  display:grid; grid-template-columns:repeat(4,1fr);
  divide-x: 1px solid var(--border);
  max-width:var(--max-w); margin:0 auto; padding:0 40px;
}
.stat-item {
  padding: 0 36px;
  border-right: 1px solid var(--border);
  text-align:center;
}
.stat-item:first-child { padding-left:0; }
.stat-item:last-child { border-right:none; }
.stat-num {
  font-family:'Lora',serif; font-size:40px; font-weight:500;
  color:var(--text); line-height:1; margin-bottom:6px;
}
.stat-num sup { font-size:.55em; vertical-align:super; }
.stat-label {
  font-size:12px; font-weight:500; color:var(--text-light);
  text-transform:uppercase; letter-spacing:.1em;
}

/* ══════════════════════════════════════
   §3 PRODUCT REVEAL
══════════════════════════════════════ */
#product-reveal {
  padding: 100px 0;
  background: var(--white);
}
.pr-header {
  text-align:center; margin-bottom:64px;
}
.pr-h2 {
  font-family:'Lora',serif; font-size:clamp(32px,4vw,50px);
  font-weight:500; line-height:1.15; margin-top:12px; margin-bottom:18px;
}
.pr-h2 em { font-style:italic; color:var(--blue); }
.pr-p {
  font-size:17px; color:var(--text-mid); max-width:540px;
  margin:0 auto; line-height:1.7;
}

/* Carousel */
.pr-carousel-wrap {
  max-width:900px; margin:0 auto; padding:0 40px;
}
.pr-main-img {
  background: var(--grey-100);
  border-radius: var(--radius-lg);
  overflow:hidden; position:relative;
  aspect-ratio:16/9;
}
.pr-main-img img {
  width:100%; height:100%; object-fit:contain;
  padding:32px;
  transition:opacity .35s;
}
.pr-thumbs {
  display:flex; gap:12px; justify-content:center; margin-top:20px;
}
.pr-thumb {
  width:82px; height:62px; border-radius:var(--radius-sm);
  overflow:hidden; cursor:pointer;
  border:2px solid transparent;
  background:var(--grey-100); transition:border-color .2s;
}
.pr-thumb.active { border-color: var(--blue); }
.pr-thumb img { width:100%; height:100%; object-fit:contain; padding:6px; }

/* ══════════════════════════════════════
   §4 THREE FUNCTIONS
══════════════════════════════════════ */
#functions { background:var(--off-white); padding:100px 0; }

.fn-intro-wrap {
  max-width:var(--max-w); margin:0 auto; padding:0 40px;
  margin-bottom:80px;
}
.fn-intro-h2 {
  font-family:'Lora',serif;
  font-size:clamp(30px,4vw,48px); font-weight:500; line-height:1.15;
  max-width:560px; margin-top:12px;
}
.fn-intro-h2 em { font-style:italic; color:var(--blue); }

/* alternating blocks */
.fn-block {
  max-width:var(--max-w); margin:0 auto 80px; padding:0 40px;
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;
}
.fn-block:last-child { margin-bottom:0; }
.fn-block.reverse { direction:rtl; }
.fn-block.reverse > * { direction:ltr; }

.fn-image-wrap {
  border-radius:var(--radius-lg); overflow:hidden;
  aspect-ratio:4/3; background:var(--surface);
  position:relative;
}
.fn-image-wrap img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .5s ease;
}
.fn-block:hover .fn-image-wrap img { transform:scale(1.03); }

.fn-num {
  font-family:'Lora',serif;
  font-size:13px; font-style:italic;
  color:var(--text-light); margin-bottom:16px;
}
.fn-h3 {
  font-family:'Lora',serif;
  font-size:clamp(26px,3vw,36px); font-weight:500;
  line-height:1.2; margin-bottom:8px; margin-top:10px;
}
.fn-h3 em { font-style:italic; color:var(--blue); }
.fn-sub-tag {
  font-size:12px; font-weight:600; color:var(--text-light);
  letter-spacing:.08em; text-transform:uppercase;
  margin-bottom:20px;
}
.fn-p {
  font-size:15px; line-height:1.8; color:var(--text-mid);
  margin-bottom:28px;
}
.fn-chips-row {
  display:flex; gap:8px; flex-wrap:wrap; margin-bottom:28px;
}
.fn-chip {
  font-size:12px; font-weight:500;
  padding:6px 14px; border-radius:99px;
  background:var(--blue-pale); color:var(--blue); border:1px solid var(--blue-light);
}
.fn-metric {
  display:flex; gap:28px;
  padding-top:24px; border-top:1px solid var(--border);
}
.fn-metric-item .val {
  font-family:'Lora',serif; font-size:32px; font-weight:500;
  color:var(--text); line-height:1;
}
.fn-metric-item .lbl {
  font-size:11px; font-weight:500; color:var(--text-light);
  text-transform:uppercase; letter-spacing:.1em; margin-top:4px;
}

/* ══════════════════════════════════════
   §5 INSIDE THE PILLOW — cutaway
══════════════════════════════════════ */
#internals {
  background:var(--white); padding:100px 0;
  border-top:1px solid var(--border);
}
.int-inner {
  max-width:var(--max-w); margin:0 auto; padding:0 40px;
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
}
.int-img { border-radius:var(--radius-lg); overflow:hidden; background:var(--grey-100); }
.int-img img { width:100%; display:block; }
.int-header-text { margin-bottom:48px; }
.int-h2 {
  font-family:'Lora',serif; font-size:clamp(28px,3.5vw,42px);
  font-weight:500; line-height:1.2; margin-top:12px;
}
.int-h2 em { font-style:italic; color:var(--blue); }
.layers-list { display:flex; flex-direction:column; gap:0; }
.layer-row {
  display:flex; align-items:flex-start; gap:20px;
  padding:22px 0; border-bottom:1px solid var(--border);
  transition:background .2s;
}
.layer-row:first-child { padding-top:0; }
.layer-row:last-child { border-bottom:none; }
.layer-num-badge {
  width:32px; height:32px; border-radius:50%;
  background:var(--blue-pale); color:var(--blue);
  font-size:13px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; margin-top:2px;
}
.layer-body h4 {
  font-size:15px; font-weight:600; color:var(--text); margin-bottom:5px;
}
.layer-body p { font-size:13.5px; line-height:1.75; color:var(--text-mid); }

/* ══════════════════════════════════════
   §6 LIFESTYLE FULL-BLEED
══════════════════════════════════════ */
#lifestyle {
  position:relative; overflow:hidden;
  height: clamp(460px, 60vh, 700px);
}
#lifestyle img {
  width:100%; height:100%; object-fit:cover; object-position:center 25%;
  filter: brightness(.88) saturate(.95);
}
.lifestyle-overlay {
  position:absolute; inset:0;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,.88) 0%,
    rgba(255,255,255,.55) 45%,
    rgba(255,255,255,0) 75%
  );
}
.lifestyle-text {
  position:absolute; top:50%; left:0; transform:translateY(-50%);
  padding:0 0 0 10%;
  max-width:500px;
}
.lifestyle-quote {
  font-family:'Lora',serif; font-size:clamp(22px,3vw,36px);
  font-weight:500; line-height:1.35; color:var(--text);
  margin-bottom:16px;
}
.lifestyle-quote em { font-style:italic; color:var(--blue); }
.lifestyle-attr {
  font-size:13px; font-weight:500; color:var(--text-light);
  text-transform:uppercase; letter-spacing:.1em;
}

/* ══════════════════════════════════════
   §7 COMPARE
══════════════════════════════════════ */
#compare {
  background:var(--off-white); padding:100px 0;
  border-top:1px solid var(--border);
}
.cmp-inner {
  max-width:var(--max-w); margin:0 auto; padding:0 40px;
}
.cmp-header { margin-bottom:56px; }
.cmp-h2 {
  font-family:'Lora',serif; font-size:clamp(28px,3.5vw,44px);
  font-weight:500; line-height:1.2; margin-top:12px;
}
.cmp-h2 em { font-style:italic; }
.cmp-table {
  background:var(--white);
  border:1px solid var(--border); border-radius:var(--radius);
  overflow:hidden;
}
.cmp-row {
  display:grid; grid-template-columns:2fr 1fr 1.2fr;
  border-bottom:1px solid var(--border);
}
.cmp-row:last-child { border-bottom:none; }
.cmp-cell {
  padding:16px 24px; font-size:14px;
  display:flex; align-items:center;
  border-right:1px solid var(--border);
}
.cmp-cell:last-child { border-right:none; }
.cmp-row.header .cmp-cell {
  background:var(--grey-100);
  font-size:12px; font-weight:700; color:var(--text-light);
  text-transform:uppercase; letter-spacing:.1em;
}
.cmp-row.header .cmp-cell.vy {
  background:var(--blue); color:#fff;
  font-family:'Lora',serif; font-size:14px; font-weight:500;
  text-transform:none; letter-spacing:0;
  font-style:italic;
}
.cmp-feat { font-weight:500; color:var(--text); }
.cmp-no { color:var(--border-mid); font-size:13px; }
.cmp-yes {
  color:var(--blue); font-weight:600; font-size:13px;
  display:flex; align-items:center; gap:6px;
}
.cmp-yes::before {
  content:'✓'; display:inline-flex; align-items:center; justify-content:center;
  width:18px; height:18px; border-radius:50%;
  background:var(--blue-pale); font-size:11px;
}

/* Breathe callout in compare */
.breathe-card {
  margin-top:32px;
  background:var(--white);
  border:1px solid var(--border);
  border-left:4px solid var(--blue);
  border-radius:var(--radius);
  padding:28px 32px;
  display:flex; gap:20px; align-items:flex-start;
}
.bc-icon {
  font-size:28px; flex-shrink:0;
  animation: breathePulse 4s ease-in-out infinite;
}
@keyframes breathePulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.1);} }
.bc-h4 { font-size:16px; font-weight:600; margin-bottom:6px; }
.bc-p { font-size:13.5px; line-height:1.75; color:var(--text-mid); }

/* ══════════════════════════════════════
   §8 CONTROLLER + APP (two-col)
══════════════════════════════════════ */
#tech {
  background:var(--white); padding:100px 0;
  border-top:1px solid var(--border);
}
.tech-inner {
  max-width:var(--max-w); margin:0 auto; padding:0 40px;
  display:grid; grid-template-columns:1fr 1fr; gap:24px;
}
.tech-card {
  background:var(--off-white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;
}
.tech-card-img {
  background:var(--grey-100);
  display:flex; align-items:center; justify-content:center;
  padding:40px; aspect-ratio:16/10;
}
.tech-card-img img {
  max-height:220px; width:auto; object-fit:contain;
}
.tech-card-body { padding:36px 36px 40px; }
.tech-card-body .label { margin-bottom:10px; }
.tech-h3 {
  font-family:'Lora',serif; font-size:24px; font-weight:500;
  line-height:1.25; margin-bottom:14px;
}
.tech-h3 em { font-style:italic; color:var(--blue); }
.tech-p { font-size:14px; line-height:1.8; color:var(--text-mid); margin-bottom:22px; }
.tech-tags {
  display:flex; gap:8px; flex-wrap:wrap;
}
.tech-tag {
  font-size:12px; font-weight:500; padding:5px 13px;
  border-radius:99px; background:var(--surface2);
  color:var(--text-mid); border:1px solid var(--border);
}

/* ══════════════════════════════════════
   §9 FOUNDER / BRAND STORY
══════════════════════════════════════ */
#story {
  background:var(--off-white);
  border-top:1px solid var(--border);
  padding:100px 0;
}
.story-inner {
  max-width:var(--max-w); margin:0 auto; padding:0 40px;
  display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center;
}
.story-img-wrap { position:relative; }
.story-img-main {
  border-radius:var(--radius-lg); overflow:hidden;
  aspect-ratio:4/5;
}
.story-img-main img {
  width:100%; height:100%; object-fit:cover;
  filter:brightness(.92);
}
.story-img-float {
  position:absolute; bottom:-20px; right:-20px;
  width:48%; border-radius:var(--radius);
  overflow:hidden; box-shadow:0 8px 32px rgba(0,0,0,.12);
  border:3px solid #fff;
  aspect-ratio:4/3;
}
.story-img-float img {
  width:100%; height:100%; object-fit:cover;
}
.story-label { margin-bottom:14px; }
.story-h2 {
  font-family:'Lora',serif; font-size:clamp(28px,3.5vw,42px);
  font-weight:500; line-height:1.2; margin-bottom:24px;
}
.story-h2 em { font-style:italic; color:var(--blue); }
.story-quote {
  font-family:'Lora',serif; font-size:18px; font-style:italic;
  line-height:1.65; color:var(--text);
  border-left:3px solid var(--blue);
  padding-left:22px; margin-bottom:24px;
}
.story-body {
  font-size:14.5px; line-height:1.85; color:var(--text-mid);
  margin-bottom:28px;
}
.founder-byline {
  display:flex; align-items:center; gap:14px;
  padding-top:20px; border-top:1px solid var(--border);
}
.founder-avatar {
  width:44px; height:44px; border-radius:50%;
  background:var(--grey-300); display:flex;
  align-items:center; justify-content:center;
  font-size:18px; font-weight:700; color:var(--grey-700);
  flex-shrink:0;
}
.founder-name { font-weight:600; font-size:14px; }
.founder-role { font-size:12px; color:var(--text-light); margin-top:2px; }

/* ══════════════════════════════════════
   §10 SOCIAL PROOF
══════════════════════════════════════ */
#social {
  background:var(--white); padding:100px 0;
  border-top:1px solid var(--border);
}
.social-inner {
  max-width:var(--max-w); margin:0 auto; padding:0 40px;
}
.social-h2 {
  font-family:'Lora',serif; font-size:clamp(28px,3.5vw,42px);
  font-weight:500; line-height:1.2; margin-top:12px; margin-bottom:56px;
}
.social-h2 em { font-style:italic; }
.t-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
  margin-bottom:60px;
}
.t-card {
  background:var(--off-white); border:1px solid var(--border);
  border-radius:var(--radius); padding:32px 28px;
  transition:transform .25s, box-shadow .25s;
}
.t-card:hover { transform:translateY(-3px); box-shadow:0 8px 24px rgba(0,0,0,.07); }
.t-stars { color:#f5a623; font-size:14px; margin-bottom:16px; }
.t-text {
  font-family:'Lora',serif; font-size:16px; font-style:italic;
  line-height:1.65; color:var(--text); margin-bottom:24px;
}
.t-author { display:flex; align-items:center; gap:12px; }
.t-av {
  width:38px; height:38px; border-radius:50%;
  background:var(--grey-300);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:15px; color:var(--grey-700);
}
.t-name { font-weight:600; font-size:14px; }
.t-loc { font-size:12px; color:var(--text-light); }

/* Media strip */
.media-strip {
  display:flex; align-items:center; gap:0;
  padding:28px 0; border-top:1px solid var(--border);
}
.media-strip-label {
  font-size:11px; font-weight:600; text-transform:uppercase;
  letter-spacing:.12em; color:var(--text-light);
  padding-right:32px; border-right:1px solid var(--border);
  margin-right:32px; white-space:nowrap;
}
.media-logos {
  display:flex; align-items:center; gap:32px; flex-wrap:wrap;
}
.media-logo {
  font-size:14px; font-weight:700; color:var(--border-mid);
  text-transform:uppercase; letter-spacing:.06em;
}

/* ══════════════════════════════════════
   §11 PACKAGING / TRUST
══════════════════════════════════════ */
#trust {
  background:var(--off-white); padding:100px 0;
  border-top:1px solid var(--border);
}
.trust-inner {
  max-width:var(--max-w); margin:0 auto; padding:0 40px;
  display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center;
}
.trust-img { border-radius:var(--radius-lg); overflow:hidden; }
.trust-img img { width:100%; display:block; }
.trust-h2 {
  font-family:'Lora',serif; font-size:clamp(28px,3.5vw,42px);
  font-weight:500; line-height:1.2; margin-top:12px; margin-bottom:18px;
}
.trust-h2 em { font-style:italic; color:var(--blue); }
.trust-p { font-size:15px; line-height:1.8; color:var(--text-mid); margin-bottom:36px; }
.badge-row {
  display:grid; grid-template-columns:1fr 1fr; gap:14px;
}
.badge-item {
  display:flex; align-items:center; gap:14px;
  padding:16px 18px; background:var(--white);
  border:1px solid var(--border); border-radius:var(--radius-sm);
  transition:border-color .2s;
}
.badge-item:hover { border-color:var(--blue); }
.badge-icon { font-size:22px; }
.badge-text strong { display:block; font-size:13px; font-weight:600; color:var(--text); }
.badge-text span { font-size:12px; color:var(--text-light); }

/* ══════════════════════════════════════
   §12 FAQ
══════════════════════════════════════ */
#faq {
  background:var(--white); padding:100px 0;
  border-top:1px solid var(--border);
}
.faq-inner {
  max-width:760px; margin:0 auto; padding:0 40px;
}
.faq-header { text-align:center; margin-bottom:64px; }
.faq-h2 {
  font-family:'Lora',serif; font-size:clamp(28px,3.5vw,44px);
  font-weight:500; line-height:1.2; margin-top:12px;
}
.faq-h2 em { font-style:italic; color:var(--blue); }
.faq-list { display:flex; flex-direction:column; gap:0; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-q {
  display:flex; justify-content:space-between; align-items:center;
  padding:22px 0; cursor:pointer; gap:20px;
  font-size:15px; font-weight:600; color:var(--text);
  transition:color .2s; user-select:none;
}
.faq-q:hover { color:var(--blue); }
.faq-icon {
  width:26px; height:26px; border-radius:50%; flex-shrink:0;
  border:1.5px solid var(--border-mid);
  display:flex; align-items:center; justify-content:center;
  font-size:16px; color:var(--text-mid);
  transition:transform .3s, border-color .2s, color .2s;
}
.faq-item.open .faq-icon {
  transform:rotate(45deg); border-color:var(--blue); color:var(--blue);
}
.faq-a {
  display:none; padding:0 0 22px;
  font-size:14.5px; line-height:1.85; color:var(--text-mid);
}
.faq-item.open .faq-a { display:block; }

/* ══════════════════════════════════════
   §13 FINAL CTA
══════════════════════════════════════ */
#cta {
  position:relative; overflow:hidden;
  background:var(--grey-900);
  padding:100px 0;
  text-align:center;
}
.cta-img-bg {
  position:absolute; inset:0;
  background:url('images/img_lifestyle.jpg') center/cover no-repeat;
  opacity:.08;
}
.cta-content { position:relative; z-index:2; padding:0 40px; }
.cta-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18);
  padding:7px 16px; border-radius:99px;
  font-size:12px; font-weight:500; color:rgba(255,255,255,.75);
  margin-bottom:28px;
}
.cta-h2 {
  font-family:'Lora',serif;
  font-size:clamp(36px,5.5vw,68px); font-weight:500;
  line-height:1.1; color:#fff;
  margin-bottom:18px; letter-spacing:-.01em;
}
.cta-h2 em { font-style:italic; color:#a8d4f0; }
.cta-sub {
  font-size:17px; color:rgba(255,255,255,.6);
  max-width:460px; margin:0 auto 44px; line-height:1.65;
}
.cta-form {
  display:inline-flex; border-radius:var(--radius-sm); overflow:hidden;
  box-shadow:0 4px 24px rgba(0,0,0,.3);
  max-width:440px; width:100%;
}
.cta-form input {
  flex:1; padding:16px 22px;
  background:rgba(255,255,255,.97);
  border:none; outline:none;
  font-family:inherit; font-size:14px; color:var(--text);
}
.cta-form input::placeholder { color:var(--text-light); }
.cta-form button {
  padding:16px 26px;
  background:var(--blue); color:#fff;
  font-size:14px; font-weight:600;
  border:none; white-space:nowrap;
  transition:background .2s;
}
.cta-form button:hover { background:#2e7dbe; }
.cta-meta {
  margin-top:20px; display:flex; justify-content:center;
  gap:24px; flex-wrap:wrap;
  font-size:12px; font-weight:500; color:rgba(255,255,255,.4);
}
.cta-meta span::before { content:'✓  '; color:#5dd09a; }
.ks-note {
  margin-top:48px;
  display:inline-flex; align-items:center; gap:10px;
  font-size:13px; font-weight:500; color:rgba(255,255,255,.35);
  border:1px solid rgba(255,255,255,.12);
  padding:12px 24px; border-radius:99px;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background:#111215;
  padding:40px 0;
  border-top:1px solid rgba(255,255,255,.06);
}
.footer-inner {
  max-width:var(--max-w); margin:0 auto; padding:0 40px;
  display:flex; align-items:center; justify-content:space-between;
}
.footer-brand {
  display:flex; align-items:center; gap:10px;
}
.footer-brand img { height:24px; filter:brightness(10); opacity:.35; }
.footer-brand span { font-size:15px; font-weight:600; color:rgba(255,255,255,.3); }
.footer-links {
  display:flex; gap:24px;
}
.footer-links a {
  font-size:13px; font-weight:500; color:rgba(255,255,255,.3);
  text-decoration:none; transition:color .2s;
}
.footer-links a:hover { color:rgba(255,255,255,.7); }
.footer-copy { font-size:12px; color:rgba(255,255,255,.2); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width:900px) {
  .container, .nav-inner, .stats-inner,
  .pr-carousel-wrap, .fn-intro-wrap, .fn-block,
  .int-inner, .cmp-inner, .tech-inner,
  .story-inner, .trust-inner, .social-inner,
  .faq-inner, .footer-inner { padding-left:20px; padding-right:20px; }
  .nav-links { display:none; }
  .stats-inner { grid-template-columns:1fr 1fr; gap:32px; }
  .stat-item { border-right:none; border-bottom:1px solid var(--border); padding:0 0 24px; text-align:left; }
  .fn-block, .fn-block.reverse { grid-template-columns:1fr; direction:ltr; gap:32px; }
  .int-inner, .tech-inner, .story-inner, .trust-inner { grid-template-columns:1fr; gap:40px; }
  .t-grid { grid-template-columns:1fr; }
  .badge-row { grid-template-columns:1fr; }
  .hero-h1 { font-size:40px; }
  .media-strip { flex-direction:column; gap:16px; align-items:flex-start; }
  .media-strip-label { border-right:none; margin-right:0; border-bottom:1px solid var(--border); padding-bottom:12px; padding-right:0; }
  .footer-inner { flex-direction:column; gap:20px; text-align:center; }
  .footer-links { flex-wrap:wrap; justify-content:center; }
  .story-img-float { display:none; }
  .lifestyle-overlay {
    background:linear-gradient(180deg,rgba(255,255,255,.85) 0%,rgba(255,255,255,.4) 60%,rgba(255,255,255,0) 100%);
  }
  .lifestyle-text { top:10%; transform:none; padding:20px; }
  #lifestyle { height:auto; min-height:380px; }
}