/* ============================================
   VestaOS - Airbnb-inspired Design System
   Theme color: Orange (replacing Airbnb's #FF385C)
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Brand — orange replaces Airbnb's pinkish red */
  --brand: #FF6A00;
  --brand-hover: #E85D00;
  --brand-dark: #CC5200;
  --brand-soft: #FFF1E6;
  --brand-gradient-start: #FF6A00;
  --brand-gradient-end: #FF9347;

  /* Neutrals (Airbnb-like) */
  --black: #222222;
  --text: #222222;
  --text-secondary: #717171;
  --text-tertiary: #B0B0B0;
  --border: #EBEBEB;
  --border-strong: #DDDDDD;
  --bg: #FFFFFF;
  --bg-soft: #F7F7F7;
  --bg-card: #FFFFFF;

  /* Accents */
  --success: #008A05;
  --star: #FFB400;

  /* Shadow (Airbnb-like soft) */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.12);
  --shadow-nav: 0 1px 0 rgba(0,0,0,0.08);

  /* Radius (Airbnb uses heavy rounding) */
  --r-xs: 6px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Type scale (Airbnb-like) */
  --font: 'Circular', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --container: 1280px;
  --nav-h: 80px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 600; letter-spacing: -0.02em; color: var(--text); }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Typography (Airbnb hierarchy) ---------- */
.t-hero {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.t-h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.t-h2 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.t-h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
}
.t-lead {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--text-secondary);
}
.t-body { font-size: 16px; color: var(--text); }
.t-small { font-size: 14px; color: var(--text-secondary); }
.t-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

/* ---------- Buttons (Airbnb pill + gradient) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--r-sm);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--brand-gradient-start) 0%, #FF7A1F 50%, var(--brand-gradient-end) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #E85D00 0%, #FF6A00 50%, #FF8A33 100%);
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.45);
}

.btn-dark {
  background: var(--black);
  color: #fff;
}
.btn-dark:hover { background: #000; }

.btn-ghost {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--text); }

.btn-link {
  color: var(--text);
  padding: 0;
  background: none;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}
.btn-link:hover { color: var(--brand); }

.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 17px; }
.btn-pill { border-radius: var(--r-pill); }
.btn-block { width: 100%; }

/* ---------- Top Navigation (Airbnb-like) ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.nav-logo svg { width: 30px; height: 30px; }

.nav-center {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 12px 16px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: background .15s ease;
}
.nav-link:hover { background: var(--bg-soft); }
.nav-link.active { color: var(--brand); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  background: #fff;
  transition: box-shadow .15s ease;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
}
.nav-icon-btn:hover { box-shadow: var(--shadow-sm); }
.nav-icon-btn .avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--text-secondary);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
}

.nav-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  align-items: center;
  justify-content: center;
  color: var(--text);
}
@media (max-width: 960px) {
  .nav-center { display: none; }
  .nav-icon-btn span:not(.avatar) { display: none; }
  .nav-menu-toggle { display: inline-flex; }
}

.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: #fff;
  z-index: 90;
  padding: 24px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a {
  display: block;
  padding: 16px 8px;
  border-bottom: 1px solid var(--border);
  font-size: 18px;
  font-weight: 500;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 40px 0 56px; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(255,106,0,0.2);
}
.hero h1 { margin-bottom: 24px; }
.hero .lead { margin-bottom: 36px; max-width: 560px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 0; }

/* Hero visual — stylized listing card stack (Airbnb-like) */
.hero-visual {
  position: relative;
  aspect-ratio: 5 / 6;
  max-width: 560px;
  margin-left: auto;
}
.hero-card {
  position: absolute;
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero-card-main {
  inset: 0 0 10% 0;
  z-index: 3;
}
.hero-card-main .photo {
  width: 100%; height: 62%;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.05), rgba(0,0,0,0)),
    url('https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1200&auto=format&fit=crop') center/cover no-repeat,
    linear-gradient(135deg, #FFD9B8, #FFA15C);
}
.hero-card-main .meta {
  padding: 20px 22px;
}
.hero-card-main .meta-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.hero-card-main h4 { font-size: 16px; font-weight: 600; }
.hero-card-main .rating {
  display: inline-flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 600;
}
.hero-card-main .rating svg { width: 14px; height: 14px; color: var(--black); fill: currentColor; }
.hero-card-main .sub { color: var(--text-secondary); font-size: 14px; }
.hero-card-main .price { margin-top: 10px; font-weight: 600; }
.hero-card-main .price span { color: var(--text-secondary); font-weight: 400; }

.hero-chip {
  position: absolute;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  z-index: 4;
  border: 1px solid var(--border);
}
.hero-chip .icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
}
.hero-chip strong { display: block; font-size: 14px; }
.hero-chip em { color: var(--text-secondary); font-style: normal; font-size: 13px; }

.hero-chip-1 { top: 8%; left: -6%; }
.hero-chip-2 { top: 45%; right: -6%; }
.hero-chip-3 { bottom: 8%; left: 8%; }
@media (max-width: 900px) {
  .hero-chip-1 { left: 0; }
  .hero-chip-2 { right: 0; }
}

/* Background glow */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle at center, rgba(255,106,0,0.14), transparent 60%);
  pointer-events: none;
}

/* ---------- Section ---------- */
.section {
  padding: 96px 0;
}
.section-sm { padding: 64px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--black); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark .t-lead { color: rgba(255,255,255,0.7); }

.section-head { max-width: 800px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 16px; }

/* ---------- Logo strip ---------- */
.logo-strip {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logo-strip-label {
  text-align: center;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.logo-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  opacity: 0.75;
}
.logo-row span {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
}

/* ---------- Feature / Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; }
}
.product-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card .cover {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}
.product-card .cover.cclaw {
  background: #efe6dc;
}
.product-card .cover.cleanfy {
  background: #efe6dc;
}
.product-card .cover::after {
  display: none;
}
.product-card .cover-label {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  color: var(--text);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}
.product-card .cover-name {
  display: none;
}
.product-preview {
  position: absolute;
  inset: 68px 20px 18px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  z-index: 2;
}
.mini-panel {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.mini-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.mini-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  color: var(--brand);
  background: rgba(255,106,0,0.12);
  border: 1px solid rgba(255,106,0,0.18);
  text-transform: uppercase;
}
.mini-badge.green {
  color: #33b864;
  background: rgba(51,184,100,0.12);
  border-color: rgba(51,184,100,0.18);
}
.mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: var(--text-secondary);
  padding: 7px 0;
  border-top: 1px solid rgba(17,17,17,0.06);
}
.mini-row:first-of-type { border-top: 0; padding-top: 0; }
.mini-row strong { color: var(--text); font-size: 12px; }
.mini-row.final strong { color: #7b2f6a; }
.chat-bubble {
  display: inline-block;
  max-width: 100%;
  padding: 8px 10px;
  border-radius: 12px;
  background: #f3f5f7;
  color: var(--text);
  font-size: 12px;
  margin-bottom: 8px;
}
.chat-bubble.reply {
  background: #fff1e5;
  border: 1px solid rgba(255,106,0,0.18);
}
.mini-foot {
  margin-top: 6px;
  font-size: 11px;
  color: var(--text-secondary);
}
.mini-foot.split {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.cleanfy-preview {
  grid-template-columns: 1fr;
}
.ops-panel {
  align-self: start;
}

.mini-subtitle {
  font-size: 12px;
  color: var(--text-secondary);
  margin: -4px 0 10px;
}
.uplift {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  padding: 1px 6px;
  border-radius: 999px;
  font-style: normal;
  font-size: 10px;
  line-height: 1.5;
  color: #33b864;
  background: rgba(51,184,100,0.12);
  border: 1px solid rgba(51,184,100,0.16);
}
.green-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #33b864;
  margin-right: 6px;
  transform: translateY(-1px);
}
.original-preview .pricing-panel,
.original-preview .chat-panel,
.original-preview .ops-panel {
  background: rgba(255,255,255,0.92);
}
.status-line {
  font-size: 12px;
  border-radius: 10px;
  padding: 9px 11px;
  margin-bottom: 8px;
  border: 1px solid transparent;
}
.status-line.done {
  color: #2d9f5a;
  background: rgba(51,184,100,0.08);
  border-color: rgba(51,184,100,0.16);
}
.status-line.warn {
  color: #d97706;
  background: rgba(245,158,11,0.10);
  border-color: rgba(245,158,11,0.18);
}
@media (max-width: 640px) {
  .product-preview { grid-template-columns: 1fr; inset: 72px 14px 14px 14px; }
  .product-card .cover-name { bottom: 18px; left: 18px; font-size: 32px; }
}
.product-card .body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.product-card .body h3 {
  font-size: 22px;
}
.product-card .body p {
  color: var(--text-secondary);
}
.product-card .feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.product-card .feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px;
}
.product-card .feature-list svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--brand);
  margin-top: 2px;
}
.product-card .card-cta {
  margin-top: auto;
  padding-top: 8px;
}

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  padding: 28px;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.section-dark .stat-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.stat-card .value {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card .label {
  font-size: 14px;
  color: var(--text-secondary);
}
.section-dark .stat-card .label { color: rgba(255,255,255,0.7); }

/* ---------- Before/After Comparison ---------- */
.compare-table {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1.3fr 1.3fr 0.8fr;
  align-items: center;
  padding: 20px 28px;
  border-top: 1px solid var(--border);
  font-size: 15px;
}
.compare-row:first-child { border-top: 0; background: var(--bg-soft); }
.compare-row .metric { font-weight: 600; }
.compare-row .before { color: var(--text-secondary); }
.compare-row .after { color: var(--brand-dark); font-weight: 600; }
.compare-row .delta {
  text-align: right;
  font-weight: 600;
  color: var(--success);
}
.compare-row .head {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}
@media (max-width: 760px) {
  .compare-row { grid-template-columns: 1fr 1fr; gap: 8px; padding: 16px; }
  .compare-row .delta { grid-column: span 2; text-align: left; }
  .compare-row .head:nth-child(4) { display: none; }
}

/* ---------- Feature grid (3 across) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; gap: 24px; } }
.feature-card {
  padding: 28px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--border);
  transition: box-shadow .2s ease, transform .2s ease;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-card .icon-box {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-card .icon-box svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 20px; margin-bottom: 10px; }
.feature-card p { color: var(--text-secondary); font-size: 15px; }

/* ---------- Workflow Steps ---------- */
.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}
@media (max-width: 900px) { .workflow { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .workflow { grid-template-columns: 1fr; } }
.workflow-step {
  padding: 28px;
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  position: relative;
}
.workflow-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}
.workflow-step h4 { font-size: 17px; margin-bottom: 8px; }
.workflow-step p { color: var(--text-secondary); font-size: 14px; }

/* ---------- Testimonial / Case study ---------- */
.case-card {
  background: linear-gradient(135deg, #FFF1E6 0%, #FFFFFF 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .case-card { grid-template-columns: 1fr; padding: 32px; } }
.case-card blockquote {
  margin: 0;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.case-card .attribution {
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: 15px;
}
.case-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.case-metric {
  background: #fff;
  padding: 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.case-metric strong { font-size: 28px; color: var(--brand); font-weight: 700; }
.case-metric span { color: var(--text-secondary); font-size: 14px; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.price-card:hover { box-shadow: var(--shadow-md); }
.price-card.featured {
  border: 2px solid var(--brand);
  box-shadow: var(--shadow-md);
  position: relative;
}
.price-card.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
}
.price-card h3 { font-size: 20px; }
.price-card .price {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}
.price-card .price small {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
}
.price-card .desc { color: var(--text-secondary); font-size: 15px; }
.price-card ul { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.price-card ul li { display: flex; align-items: flex-start; gap: 10px; }
.price-card ul svg {
  flex-shrink: 0; width: 18px; height: 18px;
  color: var(--brand);
  margin-top: 2px;
}
.price-card .btn { margin-top: auto; }

/* ---------- Team grid ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  text-align: center;
  padding: 28px 20px;
}
.team-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-gradient-end));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; font-weight: 700;
  letter-spacing: -0.02em;
}
.team-card h4 { font-size: 17px; margin-bottom: 2px; }
.team-card .role { color: var(--brand); font-weight: 600; font-size: 13px; margin-bottom: 10px; }
.team-card .bio { color: var(--text-secondary); font-size: 14px; line-height: 1.5; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, #FF6A00 0%, #FF8A33 100%);
  border-radius: var(--r-xl);
  padding: 56px;
  color: #fff;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 32px;
}
@media (max-width: 900px) { .cta-banner { grid-template-columns: 1fr; padding: 40px; } }
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.9); font-size: 17px; }
.cta-banner .btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 900px) { .cta-banner .btns { justify-content: flex-start; } }
.cta-banner .btn-primary {
  background: #fff;
  color: var(--brand-dark);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.cta-banner .btn-primary:hover { background: #fff; color: var(--brand-dark); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.cta-banner .btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
}
.cta-banner .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: #fff;
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--brand);
  transition: transform .2s ease;
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .answer {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- Footer (Airbnb-like) ---------- */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 56px 0 24px;
  color: var(--text);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer ul a {
  color: var(--text);
  font-size: 14px;
}
.footer ul a:hover { text-decoration: underline; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-secondary);
}
.footer-bottom .social { display: flex; gap: 16px; }
.footer-bottom .social a { color: var(--text); }
.footer-bottom .social a:hover { color: var(--brand); }

/* ---------- Page header (subpages) ---------- */
.page-header {
  padding: 72px 0 40px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,106,0,0.12), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(255,147,71,0.10), transparent 40%),
    #fff;
  border-bottom: 1px solid var(--border);
}
.page-header .eyebrow { margin-bottom: 12px; }
.page-header h1 { margin-bottom: 16px; max-width: 800px; }
.page-header p.lead { max-width: 680px; }

/* ---------- Two-col sections ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.flip > *:first-child { order: 2; }
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col.flip > *:first-child { order: 0; }
}
.two-col .visual {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-soft);
  position: relative;
  box-shadow: var(--shadow-md);
}

/* Illustration blocks */
.illus-cclaw {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.25), transparent 40%),
    linear-gradient(135deg, #FF6A00 0%, #FF9347 100%);
  color: #fff;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.illus-cleanfy {
  background:
    radial-gradient(circle at 20% 80%, rgba(255,106,0,0.2), transparent 40%),
    linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
  color: #fff;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Chat/dashboard mock */
.chat-mock {
  width: 100%; max-width: 380px;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.chat-mock .chat-head {
  display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.chat-mock .chat-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; }
.chat-mock .chat-head strong { font-size: 14px; }
.chat-mock .chat-head em { font-style: normal; color: var(--text-secondary); font-size: 12px; display: block; }
.chat-mock .msg { margin-top: 12px; font-size: 14px; line-height: 1.45; }
.chat-mock .msg.them { color: var(--text-secondary); }
.chat-mock .msg.us {
  background: var(--brand-soft); color: var(--text); padding: 10px 12px;
  border-radius: 12px 12px 4px 12px; align-self: flex-end;
  display: inline-block;
  max-width: 85%;
}
.chat-mock .msg-row { display: flex; }
.chat-mock .msg-row.right { justify-content: flex-end; }
.chat-mock .chat-footer { margin-top: 12px; font-size: 11px; color: var(--brand); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.chat-mock .chat-footer .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(255,106,0,0.2); }

/* Vendor dispatch mock */
.dispatch-mock {
  width: 100%; max-width: 380px;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.dispatch-mock .dm-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.dispatch-mock .dm-head strong { font-size: 14px; }
.dispatch-mock .dm-head .tag { background: var(--success); color: #fff; font-size: 11px; padding: 3px 8px; border-radius: var(--r-pill); font-weight: 600; }
.dispatch-mock .dm-row { display: flex; justify-content: space-between; padding: 10px 0; border-top: 1px solid var(--border); font-size: 14px; }
.dispatch-mock .dm-row:first-of-type { border-top: 0; }
.dispatch-mock .dm-row span:last-child { color: var(--text-secondary); }
.dispatch-mock .progress { height: 6px; background: var(--bg-soft); border-radius: var(--r-pill); overflow: hidden; margin-top: 14px; }
.dispatch-mock .progress-bar { height: 100%; width: 78%; background: linear-gradient(90deg, var(--brand), var(--brand-gradient-end)); border-radius: var(--r-pill); }
.dispatch-mock .progress-label { display: flex; justify-content: space-between; font-size: 12px; margin-top: 8px; color: var(--text-secondary); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.hide-mobile { display: initial; }
.show-mobile { display: none; }
@media (max-width: 760px) {
  .hide-mobile { display: none; }
  .show-mobile { display: initial; }
}


.nav-logo-image { height: 28px; width: auto; display: block; }
.nav-logo { color: inherit; }
@media (max-width: 768px) { .nav-logo-image { height: 24px; } }


/* tuned to match approved homepage product-card reference */
.product-card .cover.cclaw .mini-panel,
.product-card .cover.cleanfy .mini-panel {
  background: rgba(255,255,255,0.78);
  box-shadow: none;
}
.product-card .cover.cleanfy .ops-panel {
  background: rgba(255,255,255,0.82);
}
.product-card .cover.cclaw .chat-bubble.reply {
  background: #f6e6d7;
}
.product-card .cover.cleanfy .status-line.done {
  background: rgba(224, 245, 231, 0.7);
}
.product-card .cover.cleanfy .status-line.warn {
  background: rgba(248, 236, 221, 0.9);
}

.nav-brand { color: #111111 !important; font-weight: 700; letter-spacing: -0.02em; }
.nav-brand span { color: #F18C28 !important; }


/* title tuning */
.hero-title {
  max-width: 980px;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-title,
.case-title {
  font-size: clamp(40px, 4.2vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

@media (min-width: 1024px) {
  .one-line-title {
    white-space: nowrap;
  }
}

/* about page copy cleanup */
.about-copy {
  max-width: 920px;
}

.about-copy p {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
  margin: 0 0 18px 0;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

/* about page editorial style */
.about-copy-editorial {
  max-width: 860px;
}

.about-copy-editorial p {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 400;
  color: var(--text);
}

.about-copy-editorial p + p {
  margin-top: 24px;
}

.about-copy-editorial .about-lead {
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .about-copy-editorial p {
    font-size: 17px;
    line-height: 1.8;
  }

  .about-copy-editorial .about-lead {
    font-size: 24px;
    line-height: 1.4;
  }

  .about-copy-editorial p + p {
    margin-top: 20px;
  }
}

/* About page spacing */
.about-intro {
  padding-bottom: 120px;
}

.about-values {
  padding-top: 0;
}

@media (max-width: 768px) {
  .about-intro {
    padding-bottom: 72px;
  }
}

/* about page editorial style */
.about-intro {
  padding-bottom: 120px;
}

.about-values {
  padding-top: 0;
}

.about-copy-editorial {
  max-width: 860px;
}

.about-copy-editorial p {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 400;
  color: var(--text);
}

.about-copy-editorial p + p {
  margin-top: 24px;
}

.about-copy-editorial .about-lead {
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .about-intro {
    padding-bottom: 72px;
  }

  .about-copy-editorial p {
    font-size: 17px;
    line-height: 1.8;
  }

  .about-copy-editorial .about-lead {
    font-size: 24px;
    line-height: 1.4;
  }

  .about-copy-editorial p + p {
    margin-top: 20px;
  }
}

/* about page editorial style */
.about-copy-editorial {
  max-width: 980px;
}

.about-copy-editorial p {
  margin: 0;
  font-size: 20px;
  line-height: 1.85;
  font-weight: 400;
  color: var(--text);
}

.about-copy-editorial p + p {
  margin-top: 22px;
}

.about-copy-editorial .about-lead {
  font-size: 36px;
  line-height: 1.28;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--text);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .about-copy-editorial p {
    font-size: 18px;
    line-height: 1.75;
  }

  .about-copy-editorial .about-lead {
    font-size: 28px;
    line-height: 1.32;
  }

  .about-copy-editorial p + p {
    margin-top: 20px;
  }
}

/* about page unified editorial layout */
.about-section-editorial .container {
  max-width: 1080px !important;
}

.about-section-editorial .t-eyebrow {
  margin-bottom: 14px;
}

.about-section-editorial .t-h1 {
  max-width: 980px;
  font-size: clamp(46px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0;
}

.about-body-lead {
  max-width: 860px;
  margin: 22px 0 0 0;
  font-size: 19px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--muted);
}

.about-copy-editorial {
  max-width: 860px;
  margin-top: 18px;
}

.about-copy-editorial p {
  margin: 0;
  font-size: 19px;
  line-height: 1.82;
  font-weight: 400;
  color: var(--text);
}

.about-copy-editorial p + p {
  margin-top: 22px;
}

.about-section-title {
  margin: 0 0 22px 0;
  font-size: clamp(46px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: var(--text);
}

.about-intro {
  padding-bottom: 72px;
}

.about-values {
  padding-top: 0;
}

@media (max-width: 768px) {
  .about-section-editorial .t-h1,
  .about-section-title {
    font-size: 38px;
    line-height: 1.12;
  }

  .about-body-lead,
  .about-copy-editorial p {
    font-size: 17px;
    line-height: 1.75;
  }

  .about-copy-editorial p + p {
    margin-top: 18px;
  }

  .about-intro {
    padding-bottom: 52px;
  }
}

/* About page: make OUR STORY match OUR MISSION */
.about-story-copy {
  max-width: 860px;
}

.about-story-copy p {
  margin: 0;
  font-size: 19px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--muted);
}

.about-story-copy p + p {
  margin-top: 22px;
}

#story .t-h1 {
  max-width: 980px;
  font-size: clamp(46px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 0;
}

@media (max-width: 768px) {
  .about-story-copy p {
    font-size: 17px;
    line-height: 1.75;
  }

  #story .t-h1 {
    font-size: 38px;
    line-height: 1.12;
  }
}

/* our story layout */
.about-story-copy {
  max-width: 860px;
}

.about-story-copy p {
  margin: 0;
  font-size: 19px;
  line-height: 1.72;
  font-weight: 400;
  color: var(--text);
}

.about-story-copy p + p {
  margin-top: 22px;
}

#story .t-h1 {
  max-width: 980px;
  font-size: clamp(46px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 0;
}

@media (max-width: 768px) {
  .about-story-copy p {
    font-size: 17px;
    line-height: 1.75;
  }

  #story .t-h1 {
    font-size: 38px;
    line-height: 1.12;
  }
}


/* homepage / about cleanup */
.one-line-title {
  white-space: nowrap;
}

.t-hero {
  max-width: 1100px !important;
  font-size: clamp(56px, 6.2vw, 86px) !important;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.about-story-copy {
  max-width: 860px;
}

.about-story-copy p {
  margin: 0;
  font-size: 19px;
  line-height: 1.72;
  font-weight: 400;
  color: var(--text);
}

.about-story-copy p + p {
  margin-top: 22px;
}

#story .t-h1 {
  max-width: 980px;
  font-size: clamp(46px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 0;
}

@media (max-width: 1024px) {
  .one-line-title {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .about-story-copy p {
    font-size: 17px;
    line-height: 1.75;
  }

  #story .t-h1 {
    font-size: 38px;
    line-height: 1.12;
  }
}

/* structural problem title */
.one-line-title {
  display: inline-block;
  white-space: nowrap;
}

.one-line-title-wide {
  display: inline-block;
  white-space: nowrap;
  font-size: clamp(42px, 4.6vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}
