*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --dk: #0a0907;
  --dk2: #111009;
  --dk3: #181410;
  --cr: #ede6d6;
  --cr2: #f5f0e8;
  --cr3: #faf7f2;
  --or: #c8601a;
  --or2: #a84f14;
  --or3: #e87030;
  --or4: #ff8844;
  --orl: rgba(200, 96, 26, 0.14);
  --wh: #fffdf9;
  --tx: #1a1512;
  --tx2: #5c5048;
  --tx3: #8a7d70;
  --g: rgba(255, 255, 255, 0.05);
  --gb: rgba(255, 255, 255, 0.08);
  --r: 10px;
  --r2: 18px;
  --r3: 28px;
  --nav: 64px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Outfit", sans-serif;
  background: var(--dk);
  color: var(--wh);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE ─────────────────── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
  mix-blend-mode: overlay;
}

/* ── IMAGE BLOCKS ──────────────────── */
.img-block {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #13100a 0%, #1c1610 50%, #0e0b07 100%);
}
.img-block[data-img] {
  cursor: default;
}
/* Subtle inner glow */
.img-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 55% 40%,
    rgba(200, 96, 26, 0.07),
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
}
/* Bottom fade for text overlay */
.img-block::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
  z-index: 2;
  pointer-events: none;
}
.img-block .img-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
/* Placeholder visual — subtle grid pattern */
.img-block .img-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.015) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 40px 40px;
}
/* Placeholder text (shown until real image inserted) */
.img-block .img-ph {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.18;
  text-align: center;
  pointer-events: none;
}
.img-block .img-ph .ph-icon {
  font-size: 2rem;
  opacity: 0.5;
}
.img-block .img-ph .ph-text {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  max-width: 200px;
  line-height: 1.5;
}
.img-block .img-cap {
  position: relative;
  z-index: 4;
  padding: 24px;
  width: 100%;
}
.img-block .img-cap h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}
.img-block .img-cap p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.38);
}

/* ── IMG BLOCK VARIANTS ─────────────── */
.img-block.ratio-hero {
  aspect-ratio: 16/8;
}
.img-block.ratio-cinema {
  aspect-ratio: 21/9;
}
.img-block.ratio-wide {
  aspect-ratio: 16/7;
}
.img-block.ratio-square {
  aspect-ratio: 1/1;
}
.img-block.ratio-portrait {
  aspect-ratio: 4/5;
}
.img-block.ratio-tall {
  aspect-ratio: 9/14;
}
.img-block.light {
  background: linear-gradient(135deg, #e8e0d0 0%, #d8cec0 100%);
}
.img-block.light::before {
  background: radial-gradient(
    ellipse 60% 50% at 55% 40%,
    rgba(200, 96, 26, 0.06),
    transparent 70%
  );
}

/* img-split: two image blocks side by side */
.img-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
@media (max-width: 600px) {
  .img-split {
    grid-template-columns: 1fr;
  }
}
.img-split .img-block.ratio-ba {
  aspect-ratio: 3/4;
}

/* ── NAV ─────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: all 0.4s;
}
nav.sc {
  background: rgba(10, 9, 7, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}
.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--wh);
  text-decoration: none;
}
.logo .dot {
  color: var(--or3);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4ade80;
  padding: 9px 16px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(74, 222, 128, 0.2);
  background: rgba(74, 222, 128, 0.06);
  transition: all 0.25s;
  letter-spacing: 0.02em;
}
.btn-nav-wa:hover {
  background: rgba(74, 222, 128, 0.14);
  border-color: rgba(74, 222, 128, 0.4);
}
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--or);
  color: var(--wh);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  transition: all 0.22s;
  letter-spacing: 0.02em;
}
.btn-nav-cta:hover {
  background: var(--or2);
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .btn-nav-wa {
    display: none;
  }
}

/* ── STICKY BAR ──────────────────────── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 490;
  background: rgba(10, 9, 7, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 14px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.st-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--or3);
  animation: p 2s infinite;
}
@keyframes p {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}
.sticky-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sticky-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wh);
  color: var(--dk);
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  transition: all 0.2s;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.sticky-cta:hover {
  background: var(--cr);
  transform: scale(1.02);
}

/* ── FLOATING WA ─────────────────────── */
.wa-float {
  position: fixed;
  bottom: 76px;
  right: 18px;
  z-index: 489;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: all 0.25s;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55);
}
.wa-ring {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: ring 2.8s ease-out infinite;
}
@keyframes ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}

/* ── SECTION BASE ────────────────────── */
.s-dk {
  background: var(--dk);
  color: var(--wh);
  position: relative;
}
.s-dk2 {
  background: var(--dk2);
  color: var(--wh);
  position: relative;
}
.s-dk3 {
  background: var(--dk3);
  color: var(--wh);
  position: relative;
}
.s-cr {
  background: var(--cr);
  color: var(--tx);
  position: relative;
}
.s-cr2 {
  background: var(--cr2);
  color: var(--tx);
  position: relative;
}
.s-cr3 {
  background: var(--cr3);
  color: var(--tx);
  position: relative;
}
.s-blk {
  background: #060504;
  color: var(--wh);
  position: relative;
}
.pad {
  padding: 88px 5%;
}
.pad-sm {
  padding: 60px 5%;
}
.pad-xs {
  padding: 36px 5%;
}
.inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── TYPOGRAPHY ──────────────────────── */
.serif {
  font-family: "Playfair Display", serif;
}
.lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lbl::after {
  content: "";
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: currentColor;
}
h2.sec-h {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
h2.sec-h .it {
  font-style: italic;
}
h2.sec-h .or {
  color: var(--or);
}
.body-p {
  font-size: clamp(0.88rem, 1.8vw, 1rem);
  line-height: 1.9;
  opacity: 0.6;
  max-width: 500px;
  font-weight: 400;
}

/* ── HERO ────────────────────────────── */
#hero {
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
}
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: drift 12s ease-in-out infinite alternate;
}
.orb1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, #c8601a, transparent);
  top: -100px;
  right: -80px;
  animation-delay: 0s;
}
.orb2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #8b4513, transparent);
  bottom: 10%;
  left: -60px;
  animation-delay: -4s;
}
.orb3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #d4691a, transparent);
  top: 40%;
  left: 40%;
  animation-delay: -8s;
}
@keyframes drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(30px, 20px) scale(1.08);
  }
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Hero split: text left, image right on desktop */
.hero-body {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100svh;
  position: relative;
  z-index: 2;
  padding-top: var(--nav);
}
@media (min-width: 860px) {
  .hero-body {
    grid-template-columns: 1fr 1fr;
  }
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 5% 100px;
}
.hero-img-col {
  position: relative;
  overflow: hidden;
  min-height: 50svh;
}
@media (max-width: 859px) {
  .hero-img-col {
    display: none;
  }
}

/* Hero image column — pure CSS placeholder (replace with real <img> or background) */
.hero-img-col .img-block {
  height: 100%;
  border-radius: 0;
}
.hero-img-col .img-block.ratio-hero {
  aspect-ratio: unset;
  height: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
  width: fit-content;
  backdrop-filter: blur(8px);
}
.hb-dot {
  width: 6px;
  height: 6px;
  background: var(--or3);
  border-radius: 50%;
  animation: p 2s infinite;
}
h1.hero-h {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.2rem, 10vw, 6.8rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -2px;
  margin-bottom: 24px;
  max-width: 720px;
}
h1.hero-h .it {
  font-style: italic;
}
h1.hero-h .or {
  color: var(--or3);
}
.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.42);
  max-width: 400px;
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.btn-hero-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wh);
  color: var(--dk);
  padding: 16px 30px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  transition: all 0.25s;
  letter-spacing: 0.01em;
}
.btn-hero-main:hover {
  background: var(--cr);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.btn-hero-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(37, 211, 102, 0.08);
  color: #4ade80;
  padding: 16px 26px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid rgba(37, 211, 102, 0.22);
  transition: all 0.25s;
  letter-spacing: 0.01em;
}
.btn-hero-wa:hover {
  background: rgba(37, 211, 102, 0.16);
  border-color: rgba(37, 211, 102, 0.45);
}
.hero-trust {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.08em;
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 5%;
  opacity: 0.22;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scroll-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5), transparent);
  animation: sl 2.5s infinite;
}
@keyframes sl {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* ── TRUST STRIP ─────────────────────── */
.trust-strip {
  background: var(--dk2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.trust-strip::before,
.trust-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}
.trust-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--dk2), transparent);
}
.trust-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--dk2), transparent);
}
.trust-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marq 24s linear infinite;
}
.trust-track:hover {
  animation-play-state: paused;
}
@keyframes marq {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ti {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  white-space: nowrap;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}
.ti-icon {
  font-size: 0.88rem;
  color: var(--or3);
}
.ti-sep {
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── AIRFLOW PARTICLES ───────────────── */
.airflow-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.ap {
  position: absolute;
  border-radius: 50%;
  animation: afp linear infinite;
  opacity: 0;
}
@keyframes afp {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(0.5);
  }
  15% {
    opacity: 0.7;
  }
  85% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: translateY(var(--dy)) translateX(var(--dx)) scale(1.2);
  }
}

/* ── PROBLEM ─────────────────────────── */
.prob-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.3px;
  max-width: 540px;
}
.prob-muted {
  opacity: 0.28;
}
.circ-diagram {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 28px 24px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}
.cd-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  margin-bottom: 16px;
}
.cd-svg {
  width: 100%;
  max-height: 140px;
}
.prob-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}
.pc {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 22px 18px;
  transition: all 0.3s;
  cursor: default;
}
.pc:hover {
  border-color: rgba(200, 96, 26, 0.3);
  background: rgba(200, 96, 26, 0.04);
  transform: translateY(-2px);
}
.pc-em {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.pc-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  margin-bottom: 5px;
}
.pc-t {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--wh);
  line-height: 1.35;
}

/* ── BIG STATEMENT ───────────────────── */
.stmt-sec {
  padding: 100px 5%;
  text-align: center;
}
.stmt {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 7vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -1.5px;
  line-height: 1.05;
  max-width: 760px;
  margin: 0 auto;
}
.stmt .it {
  font-style: italic;
}
.stmt .dim {
  opacity: 0.18;
}

/* ── SOLUTION ────────────────────────── */
.sol-callout {
  background: rgba(200, 96, 26, 0.08);
  border: 1px solid rgba(200, 96, 26, 0.2);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 24px 0;
}
.sol-ico {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}
.sol-callout p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
}
.sol-callout strong {
  color: var(--or3);
  font-weight: 700;
}

/* ── BEFORE / AFTER (image split) ───── */
.ba-context-strip {
  padding: 72px 5%;
  background: var(--dk);
}
.ba-context-strip .ba-intro {
  text-align: center;
  margin-bottom: 40px;
}
.ba-intro .lbl {
  justify-content: center;
}
.ba-intro .lbl::after {
  display: none;
}
.ba-split-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0;
  padding: 16px 20px;
  position: relative;
  z-index: 5;
}
.ba-split-label.bef {
  color: rgba(255, 255, 255, 0.3);
}
.ba-split-label.aft {
  color: var(--or3);
}
.ba-split-label::before {
  content: "";
  width: 14px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}
.ba-item-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px 20px;
}
.ba-item-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}
.ba-item-list.light li {
  color: rgba(255, 255, 255, 0.75);
}
.ba-ic {
  font-size: 0.9rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
/* Overlay text inside the after image */
.img-overlay-content {
  position: relative;
  z-index: 5;
  padding: 0 0 20px;
}

/* ── EXPERIENCE / LIFESTYLE ──────────── */
.exp-sec {
  position: relative;
}
.exp-text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 32px 5%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    transparent
  );
}

/* ── HOW IT WORKS ────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  align-items: start;
}
.step:last-child {
  border-bottom: none;
}
.step-n {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--or);
  line-height: 1;
}
.step-h {
  font-size: 1rem;
  font-weight: 700;
  color: var(--tx);
  margin-bottom: 5px;
}
.step-p {
  font-size: 0.85rem;
  color: var(--tx2);
  line-height: 1.75;
}

/* ── TRUST GRID (minimal 4-item) ──────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 32px;
}
@media (min-width: 600px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.tg-item {
  background: var(--dk2);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.25s;
}
.tg-item:hover {
  background: var(--dk3);
}
.tg-icon {
  font-size: 1.6rem;
}
.tg-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--wh);
  line-height: 1.35;
}
.tg-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.5;
}

/* ── FEATURES ────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.feat {
  background: var(--cr2);
  border-radius: 16px;
  padding: 22px 18px;
  transition: transform 0.25s;
}
.feat:hover {
  transform: translateY(-3px);
}
.feat-em {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.feat-t {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--tx);
  line-height: 1.4;
}

/* ── REVIEWS ─────────────────────────── */
.rv-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.rv-avg-block {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rv-avg-n {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--tx);
  line-height: 1;
}
.rv-stars {
  display: flex;
  gap: 3px;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.sy {
  color: #c8601a;
}
.sg {
  color: rgba(0, 0, 0, 0.1);
}
.rv-count {
  font-size: 0.74rem;
  color: var(--tx2);
}
.btn-rv {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--dk);
  color: var(--wh);
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  transition: all 0.2s;
}
.btn-rv:hover {
  opacity: 0.85;
}
.prog-bar {
  height: 3px;
  background: rgba(0, 0, 0, 0.07);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 28px;
}
.prog-fill {
  height: 100%;
  background: var(--or);
  border-radius: 100px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.rv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px) {
  .rv-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .rv-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.rv-card {
  background: var(--cr2);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.25s;
}
.rv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}
.rv-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 10px;
}
.rv-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--or), var(--or2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--wh);
  flex-shrink: 0;
  text-transform: uppercase;
}
.rv-info {
  flex: 1;
}
.rv-nm {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--tx);
}
.rv-loc {
  font-size: 0.7rem;
  color: var(--tx3);
  margin-top: 2px;
}
.rv-star-sm {
  display: flex;
  gap: 2px;
  font-size: 0.82rem;
}
.rv-tx {
  font-size: 0.86rem;
  color: var(--tx2);
  line-height: 1.8;
  margin-top: 8px;
}
.rv-ac {
  font-size: 0.7rem;
  color: var(--tx3);
  margin-top: 8px;
}
.no-rv {
  text-align: center;
  padding: 48px;
  font-size: 0.9rem;
  color: var(--tx2);
}

/* ── PRICING ─────────────────────────── */
.ton-opts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}
.ton-opt {
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ton-opt:hover {
  border-color: rgba(255, 255, 255, 0.18);
}
.ton-opt.sel {
  border-color: var(--or3);
  background: rgba(200, 96, 26, 0.07);
}
.ton-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ton-size {
  font-size: 1rem;
  font-weight: 700;
  color: var(--wh);
}
.ton-area {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
}
.ton-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--or3);
}
.price-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  padding: 28px 24px;
}
.p-orig {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: line-through;
}
.p-main {
  font-family: "Playfair Display", serif;
  font-size: 3.8rem;
  font-weight: 400;
  line-height: 1;
  color: var(--wh);
  margin: 4px 0;
}
.p-note {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 20px;
}
.p-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.p-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
}
.p-dot {
  width: 6px;
  height: 6px;
  background: var(--or);
  border-radius: 50%;
  flex-shrink: 0;
}
.btn-reserve {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--wh);
  color: var(--dk);
  padding: 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  transition: all 0.22s;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.btn-reserve:hover {
  background: var(--cr);
  transform: scale(1.01);
}
.p-disc {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  line-height: 1.8;
}
.urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.22);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #f87171;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

/* ── FORM ────────────────────────────── */
#preorder {
  background: var(--dk);
  padding: 88px 5%;
}
.form-inner {
  max-width: 460px;
  margin: 0 auto;
}
.spots-bar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.spots-n {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}
.spots-n strong {
  color: var(--or3);
}
.form-box {
  background: var(--dk2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px 24px;
}
.fg {
  margin-bottom: 15px;
}
.fg label {
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 7px;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 13px 15px;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  color: var(--wh);
  outline: none;
  transition: all 0.22s;
  -webkit-appearance: none;
}
.fg input::placeholder,
.fg textarea::placeholder {
  color: rgba(255, 255, 255, 0.18);
}
.fg input:focus,
.fg select:focus {
  border-color: var(--or);
  background: rgba(200, 96, 26, 0.04);
}
.fg.valid input {
  border-color: rgba(74, 222, 128, 0.4);
}
.fg.error input {
  border-color: rgba(239, 68, 68, 0.5);
}
.fg select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,.3)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.fg select option {
  background: var(--dk2);
}
.btn-sub {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--or);
  color: var(--wh);
  padding: 16px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  transition: all 0.22s;
  margin-top: 6px;
  letter-spacing: 0.01em;
}
.btn-sub:hover {
  background: var(--or2);
  transform: scale(1.01);
}
.btn-sub:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.f-note {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.22);
  text-align: center;
  margin-top: 13px;
  line-height: 1.7;
}

/* Success state */
.suc-st {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.suc-em {
  font-size: 3rem;
  margin-bottom: 16px;
}
.suc-h {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--wh);
  margin-bottom: 6px;
}
.suc-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 20px;
  line-height: 1.7;
}
/* WhatsApp confirm CTA (big, prominent) */
.wa-confirm-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #25d366;
  color: #fff;
  padding: 17px 28px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  margin: 0 auto 12px;
  transition: all 0.25s;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  letter-spacing: 0.01em;
  max-width: 320px;
}
.wa-confirm-cta:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45);
}
.wa-confirm-note {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.22);
  text-align: center;
}
.f-trusts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  justify-content: center;
}
.f-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.06em;
}

/* ── FAQ ─────────────────────────────── */
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--tx);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-btn:hover {
  color: var(--or);
}
.faq-ic {
  width: 26px;
  height: 26px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
  font-weight: 700;
  transition: all 0.3s;
  color: var(--tx2);
}
.faq-item.open .faq-ic {
  transform: rotate(45deg);
  background: rgba(200, 96, 26, 0.1);
  color: var(--or);
}
.faq-item.open .faq-btn {
  color: var(--or);
}
.faq-ans {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-ans {
  max-height: 320px;
}
.faq-in {
  padding: 0 0 20px;
  font-size: 0.87rem;
  color: var(--tx2);
  line-height: 1.85;
}

/* ── FOOTER ──────────────────────────── */
footer {
  background: var(--dk);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 5% 120px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.ft-brand .logo {
  display: block;
  margin-bottom: 14px;
  font-size: 1.1rem;
}
.ft-brand p {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.85;
  max-width: 200px;
}
.ft-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: #4ade80;
  font-size: 0.77rem;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.ft-wa-link:hover {
  opacity: 1;
}
.ft-col h4 {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  margin-bottom: 14px;
}
.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ft-col a {
  color: rgba(255, 255, 255, 0.27);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.ft-col a:hover {
  color: var(--or3);
}
.ft-bot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.16);
  margin-top: 28px;
}
.seo-p {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.05);
  margin-top: 20px;
  line-height: 1.9;
  max-width: 720px;
}
@media (max-width: 760px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .ft-grid {
    grid-template-columns: 1fr;
  }
}

/* ── MODAL ───────────────────────────── */
.m-ov {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 600;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.m-ov.open {
  display: flex;
}
.modal {
  background: var(--dk2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px 26px;
  max-width: 440px;
  width: 100%;
  position: relative;
  animation: mUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes mUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.m-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Outfit", sans-serif;
}
.m-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--wh);
}
.m-h {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--wh);
  margin-bottom: 20px;
}
.star-sel {
  display: flex;
  gap: 6px;
  margin: 5px 0 4px;
}
.star-btn {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.1);
  transition: all 0.15s;
  line-height: 1;
  padding: 0;
}
.star-btn.on,
.star-btn:hover {
  color: var(--or3);
  transform: scale(1.1);
}
.mfg {
  margin-bottom: 12px;
}
.mfg label {
  display: block;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 6px;
}
.mfg input,
.mfg textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: "Outfit", sans-serif;
  font-size: 0.87rem;
  color: var(--wh);
  outline: none;
  transition: border-color 0.2s;
}
.mfg input::placeholder,
.mfg textarea::placeholder {
  color: rgba(255, 255, 255, 0.16);
}
.mfg input:focus,
.mfg textarea:focus {
  border-color: var(--or);
}
.mfg textarea {
  resize: vertical;
  min-height: 80px;
}
.m2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.btn-full-or {
  width: 100%;
  background: var(--or);
  color: var(--wh);
  padding: 14px;
  border-radius: 100px;
  font-family: "Outfit", sans-serif;
  font-size: 0.87rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  margin-top: 6px;
  transition: all 0.22s;
  letter-spacing: 0.02em;
}
.btn-full-or:hover {
  background: var(--or2);
}
.rv-suc {
  display: none;
  text-align: center;
  padding: 14px;
}
.rv-suc .em {
  font-size: 2.8rem;
  margin-bottom: 14px;
}
.rv-suc h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--wh);
  margin-bottom: 8px;
}
.rv-suc p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.7;
}

/* ── SCROLL REVEAL ───────────────────── */
.rev {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.rev.in {
  opacity: 1;
  transform: none;
}
.rev.d1 {
  transition-delay: 0.08s;
}
.rev.d2 {
  transition-delay: 0.16s;
}
.rev.d3 {
  transition-delay: 0.24s;
}

/* ── WA SVG ──────────────────────────── */
.wa-svg {
  display: block;
}

/* ── INSTAGRAM LINK ──────────────────── */
.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.77rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.insta-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ── PRODUCT VISUAL (existing, kept) ─── */
.product-visual {
  position: relative;
  margin: 0 5%;
  background: linear-gradient(135deg, #131007 0%, #1a1208 50%, #0f0b06 100%);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  aspect-ratio: 16/7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pv-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 70% 60% at 60% 40%,
      rgba(200, 96, 26, 0.07),
      transparent
    ),
    radial-gradient(
      ellipse 40% 50% at 20% 70%,
      rgba(200, 96, 26, 0.05),
      transparent
    );
}
.pv-room {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ac-unit {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: min(320px, 60%);
}
.ac-body {
  background: linear-gradient(180deg, #2a2620 0%, #1e1b15 100%);
  border-radius: 12px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}
.ac-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.ac-brand {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
}
.ac-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.55rem;
  color: rgba(74, 222, 128, 0.6);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.ac-led {
  width: 5px;
  height: 5px;
  background: #25d366;
  border-radius: 50%;
  animation: p 2s infinite;
}
.ac-vent {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.vent-line {
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
}
.ac-flap {
  height: 6px;
  background: linear-gradient(
    90deg,
    rgba(200, 96, 26, 0.3),
    rgba(200, 96, 26, 0.1),
    rgba(200, 96, 26, 0.3)
  );
  border-radius: 2px;
  margin-top: 8px;
  border: 1px solid rgba(200, 96, 26, 0.2);
}
.airflow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.air-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(200, 96, 26, 0.5);
  border-radius: 50%;
  animation: flow 3s ease-out infinite;
}
@keyframes flow {
  0% {
    opacity: 0;
    transform: translateY(-20px) translateX(var(--dx, 0));
  }
  20% {
    opacity: 0.8;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: translateY(120px) translateX(var(--dx, 0));
  }
}
.odorshield {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    rgba(200, 96, 26, 0.15),
    rgba(200, 96, 26, 0.05)
  );
  border: 1.5px solid rgba(200, 96, 26, 0.4);
  border-radius: 10px;
  padding: 10px 24px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.os-label {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or3);
  margin-bottom: 3px;
  text-align: center;
}
.os-sub {
  font-size: 0.52rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
  text-align: center;
}
.clean-badge {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 0.64rem;
  font-weight: 700;
  color: #4ade80;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.bad-badge {
  position: absolute;
  top: 20px;
  left: 24px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 0.64rem;
  font-weight: 700;
  color: #f87171;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   VISIBILITY & READABILITY UPGRADE
   Fixes: contrast, hierarchy, mobile fonts
══════════════════════════════════════════════ */

/* DARK sections — strong readable text */
.s-dk h1,
.s-dk h2,
.s-dk h3,
.s-dk2 h1,
.s-dk2 h2,
.s-dk2 h3,
.s-dk3 h1,
.s-dk3 h2,
.s-dk3 h3,
.s-blk h1,
.s-blk h2,
.s-blk h3 {
  color: #fffdf9;
}
.s-dk p,
.s-dk2 p,
.s-dk3 p,
.s-blk p {
  color: rgba(255, 252, 249, 0.72);
}

/* CREAM sections — high contrast text */
.s-cr h1,
.s-cr h2,
.s-cr h3,
.s-cr2 h1,
.s-cr2 h2,
.s-cr2 h3,
.s-cr3 h1,
.s-cr3 h2,
.s-cr3 h3 {
  color: #1a1512;
}
.s-cr p,
.s-cr2 p,
.s-cr3 p {
  color: #4a3c30;
  font-size: 1rem;
  line-height: 1.85;
}

/* Body text — always readable */
p {
  max-width: 600px;
  line-height: 1.8;
}
.body-p {
  opacity: 1 !important;
  color: rgba(255, 252, 249, 0.62);
  font-size: clamp(0.92rem, 1.9vw, 1.05rem);
}

/* Headings — strong hierarchy */
h2.sec-h {
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.prob-heading {
  font-size: clamp(2rem, 5vw, 3.1rem);
  color: #fffdf9;
  opacity: 1;
  line-height: 1.15;
}
.prob-muted {
  opacity: 0.35;
}

/* Statement text — hero-scale impact */
.stmt {
  color: #fffdf9;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
}
.stmt .dim {
  opacity: 0.22;
}

/* Problem cards — readable */
.pc-t {
  font-size: 1rem;
  color: #fffdf9;
  font-weight: 700;
}
.pc-tag {
  font-size: 0.65rem;
  color: rgba(255, 252, 249, 0.35);
  letter-spacing: 0.12em;
}

/* Trust grid — more visible */
.tg-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fffdf9;
}
.tg-sub {
  font-size: 0.78rem;
  color: rgba(255, 252, 249, 0.42);
  line-height: 1.55;
}

/* Steps — cream bg fix */
.step-h {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1512;
}
.step-p {
  font-size: 0.9rem;
  color: #5c5048;
  line-height: 1.8;
}
.step-n {
  color: #c8601a;
}

/* Pricing */
.ton-size {
  font-size: 1.05rem;
  font-weight: 700;
}
.ton-area {
  font-size: 0.76rem;
  color: rgba(255, 252, 249, 0.45);
}
.p-perk {
  font-size: 0.9rem;
  color: rgba(255, 252, 249, 0.65);
}

/* Labels — more readable */
.lbl {
  opacity: 0.65;
  font-size: 0.68rem;
}

/* FAQ — high contrast */
.faq-btn {
  font-size: 1rem;
  color: #1a1512;
}
.faq-in {
  font-size: 0.92rem;
  color: #5c5048;
  line-height: 1.9;
}

/* Solution callout */
.sol-callout p {
  font-size: 0.95rem;
  color: rgba(255, 252, 249, 0.7);
  line-height: 1.85;
}
.sol-callout strong {
  color: #e87030;
}

/* Review cards */
.rv-nm {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1512;
}
.rv-tx {
  font-size: 0.9rem;
  color: #5c5048;
  line-height: 1.85;
}
.rv-loc {
  font-size: 0.74rem;
  color: #8a7d70;
}

/* Form */
.fg label {
  font-size: 0.68rem;
  color: rgba(255, 252, 249, 0.5);
  letter-spacing: 0.12em;
}
.fg input,
.fg select {
  font-size: 0.95rem;
  color: #fffdf9;
}
.fg input::placeholder {
  color: rgba(255, 252, 249, 0.28);
}

/* Image block captions */
.img-block .img-cap h3 {
  font-size: 1.6rem;
  color: #fffdf9;
}
.img-block .img-cap p {
  font-size: 0.8rem;
  color: rgba(255, 252, 249, 0.45);
}

/* Trust signals */
.hero-trust {
  font-size: 0.76rem;
  color: rgba(255, 252, 249, 0.32);
  letter-spacing: 0.06em;
}
.f-trust {
  font-size: 0.74rem;
  color: rgba(255, 252, 249, 0.35);
}

/* Footer */
.ft-brand p {
  font-size: 0.8rem;
  color: rgba(255, 252, 249, 0.3);
  line-height: 1.9;
}
.ft-col h4 {
  font-size: 0.62rem;
  color: rgba(255, 252, 249, 0.28);
}
.ft-col a {
  font-size: 0.84rem;
  color: rgba(255, 252, 249, 0.32);
}

/* ── MOBILE FIRST — CRITICAL FONT FIXES ────── */
@media (max-width: 768px) {
  h1.hero-h {
    font-size: 3rem !important;
    letter-spacing: -1.5px;
    line-height: 0.96;
  }
  h2.sec-h {
    font-size: 2rem !important;
  }
  .prob-heading {
    font-size: 1.85rem !important;
  }
  .stmt {
    font-size: 2.2rem !important;
  }

  p,
  .body-p {
    font-size: 0.95rem;
    line-height: 1.8;
  }
  .step-h {
    font-size: 1rem;
  }
  .step-p {
    font-size: 0.88rem;
  }
  .rv-tx {
    font-size: 0.88rem;
  }
  .faq-btn {
    font-size: 0.95rem;
  }
  .faq-in {
    font-size: 0.88rem;
  }

  .pad {
    padding: 64px 5%;
  }
  .hero-text {
    padding: 32px 5% 80px;
  }
  .ba-item-list li {
    font-size: 0.82rem;
  }
  .img-block .img-cap h3 {
    font-size: 1.3rem;
  }

  .ft-brand p {
    font-size: 0.78rem;
  }
  .f-trust {
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  h1.hero-h {
    font-size: 2.6rem !important;
  }
  h2.sec-h {
    font-size: 1.8rem !important;
  }
  .stmt {
    font-size: 1.9rem !important;
    letter-spacing: -1px;
  }
  .prob-heading {
    font-size: 1.65rem !important;
  }
  .prob-cards {
    grid-template-columns: 1fr;
  }
  .m2 {
    grid-template-columns: 1fr;
  }

  p,
  .body-p {
    font-size: 0.92rem;
  }
  .pc-t {
    font-size: 0.95rem;
  }
  .tg-title {
    font-size: 0.9rem;
  }
  .tg-sub {
    font-size: 0.76rem;
  }
}

/* ── SUPABASE STATUS PILL (optional visual) ── */
.sb-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 252, 249, 0.2);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 10px;
}
.sb-dot-ok {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #34d399;
}
.sb-dot-off {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

/* ── HERO CLARITY BULLETS (added for D2C conversion clarity) ── */
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 460px;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.96rem;
  line-height: 1.5;
  color: rgba(255, 252, 249, 0.82);
  font-weight: 500;
}
.hb-tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(200, 96, 26, 0.18);
  color: var(--or, #c8601a);
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 2px;
}
@media (max-width: 720px) {
  .hero-bullets {
    margin: 12px 0 18px;
    gap: 6px;
  }
  .hero-bullets li {
    font-size: 0.9rem;
  }
}

/* ── PROOF LINE (used in "What is this" section) ── */
.proof-line {
  display: inline-block;
  margin: 8px 0 0;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(200, 96, 26, 0.08);
  border-left: 3px solid var(--or, #c8601a);
  font-size: 0.92rem;
  color: #2c241f;
  line-height: 1.55;
}
.proof-line strong {
  color: var(--or, #c8601a);
  font-weight: 700;
}

/* ── "What is this" responsive collapse ── */
@media (max-width: 820px) {
  #what .inner {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  #what .ratio-what {
    min-height: 240px !important;
  }
}

/* ── SUCCESS STEP LABEL (post-submit conversion clarity) ── */
.suc-step {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: #34d399;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(52, 211, 153, 0.12);
  margin-bottom: 10px;
}

/* ── INSTANT UNDERSTANDING STRIP (post-hero clarity) ── */
.iu-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  padding: 14px 6vw;
  background: #1a1512;
  color: rgba(255, 252, 249, 0.78);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}
.iu-strip .iu-dot {
  color: var(--or, #c8601a);
  font-weight: 700;
  opacity: 0.8;
}
.iu-strip .iu-item {
  white-space: nowrap;
}
@media (max-width: 600px) {
  .iu-strip {
    font-size: 0.82rem;
    padding: 12px 5vw;
    gap: 6px 10px;
  }
}

/* ── STICKY MOBILE CTA (always-visible reserve button on phones) ── */
.sticky-mcta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(26, 21, 18, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  gap: 10px;
  align-items: center;
}
.sticky-mcta .smcta-btn {
  flex: 1;
  padding: 13px 16px;
  border: 0;
  border-radius: 100px;
  background: var(--or, #c8601a);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
}
.sticky-mcta .smcta-wa {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
@media (max-width: 720px) {
  .sticky-mcta {
    display: flex;
  }
  /* leave room above the floating WA button + sticky bar */
  body {
    padding-bottom: 64px;
  }
}
/* NAV BLOG BUTTON FIX */
.btn-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fffdf9;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: 0.25s ease;
}

.btn-nav-link:hover {
  color: #f3a35c;
  border-color: rgba(243, 163, 92, 0.45);
  background: rgba(243, 163, 92, 0.08);
}

/* COMMON ODOR PROBLEMS READABILITY FIX */
#common-odor-problems .pc {
  background: rgba(26, 21, 18, 0.045);
  border: 1px solid rgba(26, 21, 18, 0.08);
  box-shadow: 0 18px 50px rgba(26, 21, 18, 0.06);
}

#common-odor-problems .pc-tag {
  color: #c8601a;
  opacity: 1;
}

#common-odor-problems .pc-t {
  color: #1a1512;
  opacity: 1;
}
.seo-hidden {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(26, 21, 18, 0.62);
  max-width: 760px;
  margin: 12px 0 0;
}
.seo-card {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  transition: 0.3s ease;
}

.seo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 96, 26, 0.45);
  box-shadow: 0 24px 70px rgba(26, 21, 18, 0.1);
}

.pc-desc {
  margin: 10px 0 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(26, 21, 18, 0.6);
}
#home-blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.home-blog-card {
  display: block;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: #fffdf9;
  text-decoration: none;
}

.home-blog-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--or);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-blog-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.home-blog-card p {
  margin: 0;
  color: rgba(255, 252, 249, 0.58);
  line-height: 1.6;
}
