:root {
  --bg: #fafafa;
  --bg-subtle: #f4f4f5;
  --bg-warm: #f7f6f3;
  --bg-dark: #0c0c0e;
  --bg-dark-soft: #141418;
  --card: #ffffff;
  --text: #09090b;
  --text-secondary: #52525b;
  --text-muted: #a1a1aa;
  --accent: #1a6b52;
  --accent-bright: #22896a;
  --accent-soft: #d8f0e8;
  --accent-glow: rgba(26, 107, 82, 0.12);
  --border: rgba(9, 9, 11, 0.08);
  --border-strong: rgba(9, 9, 11, 0.12);
  --shadow-sm: 0 1px 2px rgba(9, 9, 11, 0.04), 0 4px 16px rgba(9, 9, 11, 0.04);
  --shadow-md: 0 4px 24px rgba(9, 9, 11, 0.08);
  --shadow-lg: 0 24px 64px rgba(9, 9, 11, 0.12);
  --radius: 8px;
  --radius-lg: 10px;
  --radius-sm: 4px;
  --radius-full: 999px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font);
  --max-width: 1180px;
  --header-h: 68px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul, ol { margin: 0; padding: 0; }

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

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: none;
  z-index: 100;
  width: 100%;
  max-width: none;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
  transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo span { color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav__links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav__links a:hover {
  color: var(--text);
  background: var(--bg-subtle);
}

.nav__links a.active {
  color: var(--accent);
  background: var(--accent-soft);
}

.nav > .btn {
  margin-left: 8px;
  padding: 10px 20px;
  font-size: 0.8125rem;
  border-radius: var(--radius-sm);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.lang-switch__btn {
  padding: 5px 10px;
  border: none;
  border-radius: 3px;
  background: transparent;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-switch__btn:hover {
  color: var(--text);
}

.lang-switch__btn.is-active {
  background: #fff;
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.25s var(--ease), background 0.2s;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px var(--accent-glow);
}

.btn--primary:hover {
  background: var(--accent-bright);
  box-shadow: 0 6px 24px var(--accent-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.btn--light {
  background: #fff;
  color: var(--accent);
}

.btn--light:hover { background: rgba(255, 255, 255, 0.9); }

.btn--lg { padding: 15px 28px; font-size: 0.95rem; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 48px) 0 100px;
  overflow-x: clip;
  overflow-y: visible;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.hero__orb--1 {
  width: min(640px, 70vw);
  height: min(640px, 70vw);
  top: -18%;
  right: -8%;
  background: radial-gradient(circle, rgba(26, 107, 82, 0.28) 0%, transparent 68%);
}

.hero__orb--2 {
  width: min(480px, 55vw);
  height: min(480px, 55vw);
  bottom: 0;
  left: -12%;
  background: radial-gradient(circle, rgba(45, 154, 114, 0.16) 0%, transparent 70%);
}

.hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(9, 9, 11, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 75%);
}

.hero__inner {
  position: relative;
}

.hero__intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  margin-bottom: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.hero__badge:hover {
  border-color: rgba(26, 107, 82, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  flex-shrink: 0;
}

.hero__intro {
  max-width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.hero__title {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.5em;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.hero__title-brand {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  color: var(--text);
}

.hero__title-tag {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-secondary);
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, #2d9a72 55%, #4ec9a0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Bento showcase */
.hero__bento {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto auto;
  gap: 14px;
  margin-top: 64px;
  overflow: visible;
}

.hero__tile {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.hero__tile:hover {
  box-shadow: var(--shadow-md);
}

.hero__tile--render {
  grid-column: 1 / 9;
  grid-row: 1 / 5;
  padding: 0;
  background: var(--bg-dark);
  border-color: rgba(255, 255, 255, 0.08);
  overflow: visible;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
}

.hero__tile--render .hero__chrome {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hero__render-stage {
  position: relative;
  overflow: visible;
  flex: 1 1 0;
  height: 0;
  min-height: clamp(220px, 42vw, 340px);
}

.hero__render-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.hero__render-frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__phone-wrap {
  position: absolute;
  left: 28px;
  bottom: -130px;
  width: 168px;
  z-index: 2;
  pointer-events: none;
}

.hero__phone-scaler {
  width: 168px;
  transform: none;
  transform-origin: bottom left;
}

/* Proportional scale only when bento stacks (full-width scene) */
@media (max-width: 1024px) {
  .hero__render-stage {
    container-type: inline-size;
    container-name: hero-render;
  }

  @container hero-render (min-width: 0) {
    .hero__phone-wrap {
      left: clamp(12px, 3.5%, 28px);
      bottom: clamp(-72px, -22%, -130px);
      width: clamp(88px, 22cqw, 168px);
    }

    .hero__phone-scaler {
      position: absolute;
      left: 0;
      bottom: 0;
      transform: scale(calc(clamp(88px, 22cqw, 168px) / 168px));
    }
  }
}

.hero__phone-float {
  transform: rotate(-2deg);
  animation: hero-float 7s ease-in-out infinite;
}

.hero__phone-wrap:hover .hero__phone-float {
  transform: rotate(-1deg) translateY(-4px);
}

.iphone {
  position: relative;
  width: 168px;
  margin: 0 auto;
}

.hero__chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(12, 12, 14, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}

.hero__chrome-dots {
  display: flex;
  gap: 5px;
}

.hero__chrome-dots i {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.hero__chrome-dots i:first-child { background: #ff5f57; }
.hero__chrome-dots i:nth-child(2) { background: #febc2e; }
.hero__chrome-dots i:nth-child(3) { background: #28c840; }

.hero__chrome-title {
  flex: 1;
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__chrome-tag {
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: #a7f3d0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.6rem;
}

.iphone__body {
  position: relative;
  padding: 10px;
  background: linear-gradient(145deg, #3a3a3c 0%, #1c1c1e 45%, #2c2c2e 100%);
  border-radius: 36px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 16px 40px rgba(0, 0, 0, 0.22);
}

.iphone__island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 22px;
  background: #000;
  border-radius: 14px;
  z-index: 3;
}

.iphone__screen {
  position: relative;
  aspect-ratio: 9 / 19.5;
  border-radius: 28px;
  overflow: hidden;
  background: #f2f2f7;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.iphone__topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 36px 14px 8px;
  font-size: 0.62rem;
  font-weight: 600;
  color: #1c1c1e;
  background: #f2f2f7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.iphone__time {
  font-variant-numeric: tabular-nums;
}

.iphone__title {
  font-size: 0.68rem;
  font-weight: 700;
}

.iphone__icons {
  justify-self: end;
  color: #1c1c1e;
}

.iphone__plan {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px 12px;
  background: #fafaf8;
}

.iphone__plan img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.iphone__footer {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px 14px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}

.iphone__btn {
  position: absolute;
  background: #2c2c2e;
  border-radius: 2px;
}

.iphone__btn--silent {
  left: -2px;
  top: 88px;
  width: 3px;
  height: 24px;
}

.iphone__btn--vol-up {
  left: -2px;
  top: 124px;
  width: 3px;
  height: 40px;
}

.iphone__btn--vol-down {
  left: -2px;
  top: 172px;
  width: 3px;
  height: 40px;
}

.iphone__btn--power {
  right: -2px;
  top: 140px;
  width: 3px;
  height: 56px;
}

.iphone__caption {
  margin: 12px 0 0;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  line-height: 1.45;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55), 0 0 12px rgba(0, 0, 0, 0.35);
}

.hero__tile--stat {
  position: relative;
  grid-column: 9 / 13;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  min-height: 0;
  overflow: hidden;
  --tint: var(--accent);
}

.hero__tile--stat-rooms { grid-row: 1; }
.hero__tile--stat-styles { grid-row: 2; }
.hero__tile--stat-furniture { grid-row: 3; }

.hero__tile--stat-rooms { --tint: #b8895a; }
.hero__tile--stat-styles { --tint: #6f8a6a; }
.hero__tile--stat-furniture { --tint: var(--accent); }

.hero__tile--stat::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--tint);
  opacity: 0.85;
}

.hero__stat-mark {
  position: absolute;
  top: -14px;
  right: -14px;
  color: var(--tint);
  opacity: 0.12;
  pointer-events: none;
}

.hero__stat-mark svg {
  width: 92px;
  height: 92px;
  display: block;
}

.hero__stat-eyebrow {
  position: relative;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tint);
}

.hero__stat-name {
  position: relative;
  margin: 3px 0 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.hero__stat-sub {
  position: relative;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.45;
}

.hero__tile--stat-accent {
  background: linear-gradient(150deg, var(--accent-soft) 0%, #fff 70%);
  border-color: rgba(26, 107, 82, 0.14);
}

.hero__tile--stat-accent .hero__stat-mark {
  opacity: 0.16;
}

.hero__tile--catalog {
  grid-column: 9 / 13;
  grid-row: 4;
}

.hero__tile--stat-catalog {
  --tint: #5a7390;
}

.hero__tile--flow {
  grid-column: 4 / 13;
  grid-row: 5;
  padding: 9px 14px;
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.hero__flow-step {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  padding: 6px 9px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.hero__flow-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--border);
  color: var(--accent);
  flex-shrink: 0;
}

.hero__flow-icon svg {
  width: 15px;
  height: 15px;
}

.hero__flow-step strong {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 1px;
  line-height: 1.2;
}

.hero__flow-step p {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.3;
}

.hero__flow-arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero__float {
  position: absolute;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  white-space: nowrap;
  z-index: 3;
}

.hero__float--sku {
  bottom: calc(22% - 28px);
  left: 32%;
  top: auto;
  right: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: hero-float 6s ease-in-out infinite;
  animation-delay: -2s;
}

.hero__float--style {
  top: 42%;
  left: 22%;
  bottom: auto;
  background: var(--text);
  color: #fff;
  border-color: transparent;
  animation: hero-float 5.5s ease-in-out infinite;
  animation-delay: -0.5s;
}

.hero__float-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6ee7b7;
  box-shadow: 0 0 8px rgba(110, 231, 183, 0.8);
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__phone-float,
  .hero__float--sku,
  .hero__float--style {
    animation: none;
  }
}

/* ─── Sections ─── */
.section { padding: 112px 0; }

.section--warm {
  background: var(--bg-warm);
  border-block: 1px solid var(--border);
}

.section--dark {
  background: var(--bg-dark);
  color: #fff;
}

.section--gallery {
  background: var(--bg-dark);
  color: #fff;
}

.section__header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}

.section__header--light .section__desc { color: rgba(255, 255, 255, 0.6); }

.section__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 0 0 16px;
  padding: 5px 10px;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
}

.section--dark .section__eyebrow,
.section--gallery .section__eyebrow {
  color: #6ee7b7;
  background: rgba(110, 231, 183, 0.1);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0 0 16px;
  line-height: 1.1;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
}

/* ─── Compare ─── */
.compare {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.compare__vs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  box-shadow: var(--shadow-md);
}

.compare__card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.compare__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.compare__card--other {
  background: var(--bg-subtle);
}

.compare__card--us {
  border-color: rgba(26, 107, 82, 0.3);
  box-shadow: 0 0 0 1px rgba(26, 107, 82, 0.15), var(--shadow-sm);
}

.compare__card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.02em;
}

.compare__mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.compare__mark--no {
  background: #fef2f2;
  color: #dc2626;
}

.compare__mark--yes {
  background: var(--accent-soft);
  color: var(--accent);
}

.compare__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.compare__list li {
  position: relative;
  padding: 12px 0 12px 24px;
  font-size: 0.925rem;
  line-height: 1.55;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
}

.compare__list li:first-child { border-top: none; padding-top: 0; }
.compare__list li:last-child { padding-bottom: 0; }

.compare__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
}

.compare__list li:first-child::before { top: 6px; }

.compare__card--us .compare__list li { color: var(--text); }
.compare__card--us .compare__list li::before { background: var(--accent); }

/* ─── Pillars ─── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pillar {
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.pillar:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.pillar__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  background: rgba(110, 231, 183, 0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: #6ee7b7;
  letter-spacing: -0.02em;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.pillar p {
  margin: 0;
  font-size: 0.925rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ─── Steps ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  list-style: none;
  counter-reset: none;
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 24px;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s;
}

.step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(26, 107, 82, 0.2);
}

.step__num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, #2d9a72 100%);
  color: #fff;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── Features ─── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature {
  padding: 32px 28px;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  color: var(--accent);
  line-height: 1;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.feature p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── Gallery ─── */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

.gallery__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  grid-column: span 4;
}

.gallery__card--featured {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery__card:nth-child(2) { grid-column: span 5; }
.gallery__card:nth-child(3) { grid-column: span 5; }
.gallery__card:nth-child(4) { grid-column: span 4; }
.gallery__card:nth-child(5) { grid-column: span 4; }
.gallery__card:nth-child(6) { grid-column: span 4; }

.gallery__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery__card:hover img { transform: scale(1.05); }

.gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, transparent 40%, rgba(12, 12, 14, 0.85) 100%);
  transition: background 0.35s;
}

.gallery__card:hover .gallery__overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(12, 12, 14, 0.92) 100%);
}

.gallery__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.gallery__tags span {
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
}

.gallery__overlay h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
  letter-spacing: -0.02em;
}

.gallery__note {
  text-align: center;
  margin: 40px 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── Audience ─── */
.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.audience__card {
  padding: 40px 36px;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.audience__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.audience__card--accent {
  background: linear-gradient(145deg, var(--accent) 0%, #145a44 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 16px 48px var(--accent-glow);
}

.audience__card--accent:hover {
  box-shadow: 0 20px 56px rgba(26, 107, 82, 0.25);
}

.audience__label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin: 0 0 16px;
  padding: 4px 8px;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
}

.audience__card--accent .audience__label {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
}

.audience__card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 24px;
  letter-spacing: -0.03em;
}

.audience__card ul {
  list-style: none;
  margin: 0 0 32px;
}

.audience__card li {
  position: relative;
  padding: 10px 0 10px 20px;
  font-size: 0.925rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
}

.audience__card li:first-child { border-top: none; padding-top: 0; }
.audience__card li:last-child { padding-bottom: 0; }
.audience__card--accent li { color: rgba(255, 255, 255, 0.8); border-color: rgba(255, 255, 255, 0.12); }

.audience__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.audience__card li:first-child::before { top: 6px; }
.audience__card--accent li::before { background: rgba(255, 255, 255, 0.5); }

/* ─── Trust strip ─── */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-strip__item {
  padding: 28px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: left;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.trust-strip__item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.trust-strip__dot {
  display: block;
  width: 8px;
  height: 8px;
  margin-bottom: 16px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.trust-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.trust-strip span:not(.trust-strip__dot) {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── FAQ ─── */
.faq {
  max-width: 720px;
  margin: 0 auto;
  padding: 8px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:last-child { border-bottom: none; }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
  letter-spacing: -0.01em;
}

.faq__question:hover { color: var(--accent); }

.faq__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.35s var(--ease);
  color: var(--text-muted);
}

.faq__item.open .faq__question { color: var(--accent); }
.faq__item.open .faq__chevron { transform: rotate(180deg); color: var(--accent); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq__item.open .faq__answer {
  max-height: 280px;
  padding-bottom: 22px;
}

.faq__answer p {
  margin: 0;
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ─── CTA ─── */
.cta-section {
  position: relative;
  background: var(--bg-dark);
  color: #fff;
  padding: 112px 0;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(26, 107, 82, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 100% 0%, rgba(26, 107, 82, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section .container { position: relative; }

.cta-section .section__eyebrow { color: #6ee7b7; background: rgba(110, 231, 183, 0.1); }
.cta-section h2 { color: #fff; }
.cta-section .section__desc { color: rgba(255, 255, 255, 0.6); }

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: start;
}

.cta__pricing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.cta__pricing::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6ee7b7;
}

.form {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.form__group { margin-bottom: 16px; }

.form__group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form__group textarea { resize: vertical; min-height: 88px; }

.form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
}

.form__submit { width: 100%; margin-top: 8px; }

.form__note {
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

.form__note a { color: var(--accent); }

.form__success,
.form__error {
  display: none;
  padding: 14px;
  border-radius: var(--radius-sm);
  margin-top: 14px;
  font-size: 0.875rem;
}

.form__success { background: var(--accent-soft); color: var(--accent); }
.form__error { background: #fef2f2; color: #dc2626; }
.form__success.visible, .form__error.visible { display: block; }

/* ─── Footer ─── */
.footer {
  padding: 64px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-subtle);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand p {
  margin: 16px 0 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 300px;
  line-height: 1.65;
}

.footer h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
  color: var(--text-muted);
}

.footer__links { list-style: none; }

.footer__links li { margin-bottom: 10px; }

.footer__links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--accent); }

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.6;
}

.footer__copy { font-size: 0.8rem; color: var(--text-muted); }

/* ─── Legal ─── */
.legal {
  padding: calc(var(--header-h) + 56px) 0 80px;
  max-width: 680px;
}

.legal h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 32px;
  letter-spacing: -0.03em;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 32px 0 12px;
}

.legal p { color: var(--text-secondary); margin: 0 0 16px; }
.legal a { color: var(--accent); }

/* ─── Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children in grids */
.steps .step:nth-child(2),
.features .feature:nth-child(2),
.pillars .pillar:nth-child(2),
.gallery .gallery__card:nth-child(2) { transition-delay: 0.06s; }

.steps .step:nth-child(3),
.features .feature:nth-child(3),
.pillars .pillar:nth-child(3),
.gallery .gallery__card:nth-child(3) { transition-delay: 0.12s; }

.steps .step:nth-child(4),
.features .feature:nth-child(4),
.gallery .gallery__card:nth-child(4) { transition-delay: 0.18s; }

.gallery .gallery__card:nth-child(5) { transition-delay: 0.1s; }
.gallery .gallery__card:nth-child(6) { transition-delay: 0.14s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero__bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .hero__tile--render,
  .hero__tile--stat,
  .hero__tile--catalog,
  .hero__tile--flow {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
    transform: none;
  }

  .hero__tile--render { grid-column: 1 / -1; }
  .hero__tile--stat-rooms { grid-column: 1 / 2; }
  .hero__tile--stat-styles { grid-column: 2 / 3; }
  .hero__tile--stat-furniture { grid-column: 1 / -1; }
  .hero__tile--catalog,
  .hero__tile--flow { grid-column: 1 / -1; }

  .hero__float { display: none; }

  .hero__tile--flow {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero__flow-arrow {
    justify-content: center;
    padding: 0;
    transform: rotate(90deg);
  }

  .compare { grid-template-columns: 1fr; }
  .compare__vs { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .gallery__card,
  .gallery__card--featured,
  .gallery__card:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery__card--featured { grid-column: span 2; }

  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header {
    top: 0;
    width: 100%;
    height: 60px;
  }

  :root { --header-h: 60px; }

  .header__inner { padding: 0 6px 0 16px; }

  .nav > .btn { display: none; }
  .nav__links { display: none; }
  .burger { display: flex; }

  .nav.mobile-open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--card);
    padding: 20px 24px;
    gap: 4px;
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    box-shadow: var(--shadow-md);
    z-index: 99;
  }

  .nav.mobile-open .nav__links a {
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .nav.mobile-open > .btn {
    display: inline-flex;
    position: fixed;
    top: calc(var(--header-h) + 280px);
    left: 24px;
    right: 24px;
    width: calc(100% - 48px);
    z-index: 99;
  }

  .section { padding: 80px 0; }
  .hero { padding-bottom: 72px; }
  .hero__bento { margin-top: 48px; gap: 12px; grid-template-columns: 1fr; }
  .hero__tile--stat-rooms,
  .hero__tile--stat-styles,
  .hero__tile--stat-furniture,
  .hero__tile--catalog,
  .hero__tile--flow,
  .hero__tile--render { grid-column: 1 / -1; }
  .hero__title-brand { font-size: clamp(1.65rem, 7vw, 2.25rem); }
  .hero__title-tag { font-size: clamp(0.72rem, 2.8vw, 0.95rem); }
  .hero__title { gap: 0.4em; }

  .steps, .features, .gallery, .audience, .trust-strip { grid-template-columns: 1fr; }
  .gallery__card--featured { grid-column: span 1; }
  .faq { padding: 4px 20px; }
  .footer__grid { grid-template-columns: 1fr; }
}
