/* ═══════════════════════════════════════════
   CarCheckBot — Redesign 2026
   Dark theme · Bento grid · Glassmorphism
   ═══════════════════════════════════════════ */

:root {
  --bg: #09090b;
  --bg-soft: #111114;
  --surface: #16161a;
  --surface-hover: #1c1c21;
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 255, 255, 0.14);
  --ink: #f4f4f5;
  --ink-soft: #a1a1aa;
  --ink-muted: #63636e;
  --accent: #6366f1;
  --accent-soft: rgba(99, 102, 241, 0.15);
  --accent-glow: rgba(99, 102, 241, 0.35);
  --green: #22c55e;
  --green-soft: rgba(34, 197, 94, 0.12);
  --amber: #f59e0b;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  --transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ─── Noise texture ─── */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* ─── Layout ─── */
.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: #818cf8;
  border-color: #818cf8;
  transform: translateY(-1px);
  box-shadow: 0 0 30px var(--accent-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--border);
}

.btn--ghost:hover {
  color: var(--ink);
  border-color: var(--border-hover);
  background: var(--surface);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-hover);
}

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

.btn--full {
  width: 100%;
}

.btn--lg {
  height: 56px;
  padding: 0 32px;
  font-size: 1rem;
}

/* ═══════════════════════════════
   HEADER
   ═══════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.header.is-scrolled {
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
}

.logo-text {
  font-family: "Syne", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

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

.nav a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--ink);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ═══════════════════════════════
   HERO
   ═══════════════════════════════ */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(99, 102, 241, 0.15), transparent),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(139, 92, 246, 0.1), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  margin-top: 24px;
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Search box */
.search-box {
  margin-top: 36px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(12px);
}

.search-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.search-tab {
  height: 36px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.search-tab:hover {
  border-color: var(--border-hover);
  color: var(--ink);
}

.search-tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.search-form input {
  height: 52px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  color: var(--ink);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.search-form input::placeholder {
  color: var(--ink-muted);
}

.search-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.search-btn {
  height: 52px;
  padding: 0 24px;
}

.search-hint {
  margin-top: 12px;
  color: var(--ink-muted);
  font-size: 0.8rem;
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: 0.82rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(9, 9, 11, 0.7));
}

/* Floating cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
  background: rgba(22, 22, 26, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}

.float-card svg {
  flex-shrink: 0;
  color: var(--accent);
}

.float-card small {
  display: block;
  color: var(--ink-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.float-card strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 2px;
}

.float-card--vin {
  top: 12%;
  left: -30px;
}

.float-card--reserve {
  bottom: 26%;
  right: -20px;
  animation-delay: -2s;
}

.float-card--risk {
  bottom: 8%;
  left: 10%;
  animation-delay: -4s;
}

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

/* ═══════════════════════════════
   LOGOS
   ═══════════════════════════════ */
.logos {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.logos-track {
  display: flex;
  gap: 60px;
  animation: scroll-logos 20s linear infinite;
}

.logo-item {
  flex-shrink: 0;
  font-family: "Syne", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink-muted);
  opacity: 0.5;
  white-space: nowrap;
}

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════
   SECTION COMMON
   ═══════════════════════════════ */
.section-label {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.section-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin-bottom: 48px;
}

/* ═══════════════════════════════
   BENTO GRID (Services)
   ═══════════════════════════════ */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
}

.services-header .section-title {
  margin-bottom: 0;
}

.services-intro {
  max-width: 320px;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: right;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 16px;
}

.bento-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}

.bento-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Glow effect */
.bento-card__glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  transition: opacity 500ms ease;
  pointer-events: none;
  background: var(--accent);
  top: -60px;
  right: -60px;
}

.bento-card__glow--purple {
  background: #a855f7;
}

.bento-card:hover .bento-card__glow {
  opacity: 0.08;
}

/* Content & Visual layout */
.bento-card__content {
  position: relative;
  z-index: 1;
}

.bento-card__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 75%;
  overflow: hidden;
  border-radius: var(--radius-md) 0 0 0;
}

.bento-card__visual--tall {
  height: 85%;
  width: 40%;
}

.bento-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  transition: opacity 500ms ease, transform 600ms ease;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.5), transparent 90%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.5), transparent 90%);
}

.bento-card:hover .bento-card__visual img {
  opacity: 0.35;
  transform: scale(1.05);
}

/* Tag */
.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.bento-tag__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* Card titles */
.bento-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 8px;
}

.bento-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 380px;
}

/* Icon variants */
.bento-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 18px;
  transition: transform 300ms ease;
}

.bento-card:hover .bento-icon {
  transform: scale(1.1) rotate(-3deg);
}

.bento-icon--amber { background: rgba(245, 158, 11, 0.12); color: #f59e0b; }
.bento-icon--purple { background: rgba(168, 85, 247, 0.12); color: #a855f7; }
.bento-icon--teal { background: rgba(20, 184, 166, 0.12); color: #14b8a6; }
.bento-icon--green { background: var(--green-soft); color: var(--green); }

/* ── Grid placement ── */
.bento--hero     { grid-column: 1 / 8;  grid-row: span 2; }
.bento--reserve  { grid-column: 8 / 13; }
.bento--history  { grid-column: 8 / 13; }
.bento--reports  { grid-column: 1 / 7;  grid-row: span 2; }
.bento--photos   { grid-column: 7 / 10; }
.bento--calc     { grid-column: 10 / 13; }

/* ── Hero card VIN demo ── */
.bento-demo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
}

.bento-demo__input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.bento-demo__result {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bento-demo__label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  font-weight: 600;
}

.bento-demo__label--accent {
  color: var(--green);
}

.bento-demo__result strong {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ── Reserve meter ── */
.bento-meter {
  margin-top: 20px;
}

.bento-meter__track {
  position: relative;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  overflow: visible;
}

.bento-meter__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--fill);
  border-radius: 4px;
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bento-meter__marker {
  position: absolute;
  left: var(--pos);
  top: -28px;
  transform: translateX(-50%);
}

.bento-meter__marker span {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  background: #f59e0b;
  color: #000;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.bento-meter__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.7rem;
  color: var(--ink-muted);
}

/* ── History chart ── */
.bento-chart {
  position: relative;
  margin-top: 16px;
  height: 90px;
}

.bento-chart__svg {
  width: 100%;
  height: 100%;
}

.bento-chart__line {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: draw-line 2s ease forwards;
  animation-play-state: paused;
}

.is-visible .bento-chart__line,
.bento-card:hover .bento-chart__line {
  animation-play-state: running;
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

.bento-chart__points {
  position: absolute;
  inset: 0;
}

.bento-chart__point {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  transform: translate(-50%, 50%);
  transition: transform 200ms ease;
}

.bento-chart__point small {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  color: var(--ink-muted);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 200ms;
}

.bento-card:hover .bento-chart__point small {
  opacity: 1;
}

.bento-chart__point--active {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.bento-chart__point--active small {
  color: var(--green);
  font-weight: 700;
  opacity: 1;
}

/* ── Badges ── */
.bento-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.bento-badge {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
  transition: border-color 200ms, background 200ms;
}

.bento-badge:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.08);
}

.bento-badge--highlight {
  background: var(--accent-soft);
  border-color: rgba(99, 102, 241, 0.2);
  color: var(--accent);
}

/* ── Photo gallery mini ── */
.bento-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.bento-gallery__item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--border);
}

.bento-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.bento-card:hover .bento-gallery__item img {
  transform: scale(1.08);
}

.bento-gallery__item--count {
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  border-color: rgba(99, 102, 241, 0.15);
}

.bento-gallery__item--count span {
  font-family: "Syne", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
}

/* ── Calculator breakdown ── */
.bento-breakdown {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bento-breakdown__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: 0.8rem;
}

.bento-breakdown__row span {
  color: var(--ink-muted);
}

.bento-breakdown__row strong {
  color: var(--ink-soft);
  font-weight: 600;
}

.bento-breakdown__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 0;
  margin-top: 4px;
  border-top: 1px solid var(--border);
}

.bento-breakdown__total span {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.85rem;
}

.bento-breakdown__total strong {
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green);
}

/* ═══════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: border-color var(--transition), transform var(--transition);
}

.step:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.step-num {
  font-family: "Syne", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}

.step-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 16/10;
  border: 1px solid var(--border);
}

.step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

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

.step h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ═══════════════════════════════
   SHOWCASE
   ═══════════════════════════════ */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.showcase-text {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 28px;
}

.showcase-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.showcase-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.showcase-visual {
  position: relative;
}

.showcase-visual .showcase-img {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.showcase-overlay-card {
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  padding: 20px 24px;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  background: rgba(22, 22, 26, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.showcase-oc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.pill {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pill--live {
  background: var(--green-soft);
  color: var(--green);
}

.showcase-oc-price {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-top: 8px;
}

.showcase-oc-meta {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  color: var(--ink-muted);
  font-size: 0.85rem;
}

.showcase-oc-meta strong {
  color: var(--ink-soft);
}

/* ═══════════════════════════════
   PRICING
   ═══════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.price-card {
  position: relative;
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
}

.price-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.price-card--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.08), var(--surface));
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.12);
}

.price-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-badge {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.price-amount {
  margin-bottom: 12px;
}

.price-amount span {
  font-family: "Syne", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.price-amount small {
  color: var(--ink-muted);
  font-size: 1rem;
}

.price-desc {
  color: var(--ink-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.price-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.price-card--featured .price-features li::before {
  background: var(--green);
}

/* ═══════════════════════════════
   FAQ
   ═══════════════════════════════ */
.faq-container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: var(--border-hover);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--ink-muted);
  transition: transform var(--transition);
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ═══════════════════════════════
   CTA
   ═══════════════════════════════ */
.cta-box {
  text-align: center;
  padding: 80px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse at center, rgba(99, 102, 241, 0.12), transparent 60%),
    var(--surface);
}

.cta-box h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin: 0 auto;
}

.cta-box p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-top: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.footer-tagline {
  color: var(--ink-muted);
  font-size: 0.88rem;
  margin-top: 14px;
  max-width: 240px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--ink-soft);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--border);
  color: var(--ink-muted);
  font-size: 0.82rem;
}

/* ═══════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════
   RESPONSIVE
   ═══════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .bento {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: auto;
  }

  .bento--hero     { grid-column: 1 / 7; grid-row: auto; }
  .bento--reserve  { grid-column: 1 / 4; }
  .bento--history  { grid-column: 4 / 7; }
  .bento--reports  { grid-column: 1 / 7; grid-row: auto; }
  .bento--photos   { grid-column: 1 / 4; }
  .bento--calc     { grid-column: 4 / 7; }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-intro {
    text-align: left;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nav {
    display: none;
  }

  .burger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 110px 0 48px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat strong {
    font-size: 1.3rem;
  }

  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bento--hero,
  .bento--reserve,
  .bento--history,
  .bento--reports,
  .bento--photos,
  .bento--calc {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .bento-card__visual {
    display: none;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .float-card {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .search-form {
    grid-template-columns: 1fr;
  }

  .search-btn {
    width: 100%;
  }

  .cta-box {
    padding: 48px 24px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}