/* ═══════════════════════════════════════════════════════════════════════
   Stay7.io - Design System
   Refreshed brand DNA: deeper teal, warm coral accent, warm neutrals,
   Bricolage Grotesque display + DM Sans body + JetBrains Mono details.
   ═══════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@400;500;600&family=Space+Grotesk:wght@400;500;600;700&display=swap');

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

:root {
  /* Surfaces (warm neutrals) */
  --bg:           #FBFAF7;
  --surface:      #FFFFFF;
  --surface-2:    #F4F2EC;
  --surface-3:    #EFEEE6;

  /* Text */
  --text:         #0E1A1F;
  --text-soft:    #324049;
  --muted:        #6B7E89;
  --muted-soft:   #8A9AA4;

  /* Borders */
  --border:       #E5E2DA;
  --border-soft:  #EFEEE6;

  /* Brand */
  --brand:        #0F8A6E;
  --brand-dark:   #0A6B55;
  --brand-deep:   #074A3C;
  --brand-soft:   #E6F4EF;
  --brand-tint:   #F2F9F6;

  /* Accent - warm coral, sparingly */
  --accent:       #E08855;
  --accent-dark:  #C66E3D;
  --accent-soft:  #FBEFE6;

  /* States */
  --success:      #16A34A;
  --success-soft: #DCFCE7;
  --warn:         #B45309;
  --warn-soft:    #FEF3C7;
  --danger:       #DC2626;
  --danger-soft:  #FEE2E2;

  /* Channel marks */
  --ch-airbnb:    #C9373C;
  --ch-airbnb-bg: #FFF0F0;
  --ch-airbnb-bd: #F4CECF;
  --ch-booking:   #1A3D8F;
  --ch-booking-bg:#EEF2FB;
  --ch-booking-bd:#CCD8F2;
  --ch-wp:        #2E6B8B;
  --ch-wp-bg:     #E8F1F6;
  --ch-wp-bd:     #C7DAE5;

  /* Shadow */
  --shadow-xs:    0 1px 2px rgba(14,26,31,.04);
  --shadow-sm:    0 4px 14px rgba(14,26,31,.06);
  --shadow-md:    0 14px 40px rgba(14,26,31,.08);
  --shadow-lg:    0 28px 70px rgba(14,26,31,.14);
  --shadow-brand: 0 18px 50px rgba(15,138,110,.22);

  /* Radius */
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  26px;
  --r-pill:9999px;

  /* Layout */
  --max-w: 1200px;

  /* Fonts */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ── Base ─────────────────────────────────────────────────────────────── */

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  line-height: 1.04;
  font-weight: 600;
  font-variation-settings: "opsz" 32;
  text-wrap: balance;
}
h1 { letter-spacing: -0.035em; font-variation-settings: "opsz" 96; }
p  { text-wrap: pretty; }

button { font-family: inherit; }

::selection { background: var(--brand-soft); color: var(--brand-dark); }

/* ── Utility ─────────────────────────────────────────────────────────── */

.container   { max-width: var(--max-w); margin-inline: auto; padding-inline: 28px; }
.muted       { color: var(--muted); }
.text-center { text-align: center; }

/* Mono eyebrows / tags */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 14px;
  height: 1.5px;
  background: currentColor;
  opacity: 0.4;
}

/* Pill badge with optional dot */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(15,138,110,.5);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(15,138,110,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(15,138,110,0); }
  100% { box-shadow: 0 0 0 0 rgba(15,138,110,0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: transform .14s, box-shadow .2s, background .15s, border-color .15s, color .15s;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 16px rgba(15,138,110,.28), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-primary:hover { background: var(--brand-dark); box-shadow: 0 10px 26px rgba(15,138,110,.34); }

.btn-dark {
  background: var(--text);
  color: #fff;
  box-shadow: 0 6px 16px rgba(14,26,31,.25);
}
.btn-dark:hover { background: #000; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--text); }

.btn-white {
  background: #fff;
  color: var(--brand-dark);
  box-shadow: 0 6px 18px rgba(14,26,31,.16);
}
.btn-white:hover { box-shadow: 0 10px 28px rgba(14,26,31,.22); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn-sm { padding: 9px 16px; font-size: 0.875rem; }
.btn-lg { padding: 16px 30px; font-size: 1.02rem; }

/* ── Logo ────────────────────────────────────────────────────────────── */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--text);
  letter-spacing: -0.025em;
  text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo .logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  overflow: hidden;
  flex-shrink: 0;
  background: transparent;
}
.logo .logo-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.logo .logo-dot {
  color: var(--muted-soft);
  font-weight: 500;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  margin-left: -2px;
  align-self: flex-end;
  margin-bottom: 3px;
}

/* ── Navigation ──────────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,250,247,.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); background: var(--surface-2); }

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

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 14px 28px 20px;
  border-top: 1px solid var(--border-soft);
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-weight: 500;
  color: var(--text);
}
.nav-mobile a:hover { background: var(--surface-2); }
.nav-mobile-cta { margin-top: 10px; }

@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── Sections / Heading scale ─────────────────────────────────────────── */

section { padding: 110px 0; }
section + section { padding-top: 0; }

.section-title {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.section-sub {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 620px;
  margin-inline: auto;
  line-height: 1.65;
}

.section-head { margin-bottom: 60px; }
.section-head .eyebrow { margin-bottom: 18px; }

/* ── Hero ────────────────────────────────────────────────────────────── */

.hero {
  padding: 96px 0 60px;
  background:
    radial-gradient(60% 50% at 12% 0%, rgba(15,138,110,.10) 0%, transparent 60%),
    radial-gradient(45% 40% at 100% 0%, rgba(224,136,85,.08) 0%, transparent 65%),
    var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before, .hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(14,26,31,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center top;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent 70%);
  opacity: 0.7;
}
.hero::after {
  background-image: linear-gradient(to bottom, rgba(14,26,31,.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero .container { position: relative; z-index: 1; }

.hero-eyebrow-row {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2.2rem, 5.4vw, 4.2rem);
  max-width: 1080px;
  margin-inline: auto;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--brand) 0%, #18A286 50%, var(--brand-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-title .seven {
  font-style: normal;
  color: var(--accent);
  font-variation-settings: "opsz" 96;
}

.hero-subtitle {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--muted);
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

/* Hero stat strip */
.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 36px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px dashed var(--border);
  max-width: 720px;
  margin-inline: auto;
}
.hero-stats .hs-item {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--muted);
}
.hero-stats .hs-item strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* Hero mockup container */
.hero-visual {
  margin-top: 64px;
  max-width: 1080px;
  margin-inline: auto;
  position: relative;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -40px -40px 0 -40px;
  background: radial-gradient(60% 60% at 50% 0%, rgba(15,138,110,.16) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-mockup {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 1;
}

/* ── App mockup chrome ───────────────────────────────────────────────── */

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.mockup-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.mockup-dot:nth-child(1) { background: #fc6058; }
.mockup-dot:nth-child(2) { background: #fec02f; }
.mockup-dot:nth-child(3) { background: #2ac940; }

.mockup-url {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 5px 14px;
  max-width: 320px;
  margin-inline: auto;
}

/* ── Live app shell ──────────────────────────────────────────────────── */

.app-shell {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 480px;
}

.app-sidebar {
  background: var(--surface-2);
  border-right: 1px solid var(--border);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}
.app-brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  overflow: hidden;
}
.app-brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.app-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.app-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.app-nav-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
  transition: background .15s, color .15s;
}
.app-nav-link:hover { background: var(--surface-3); color: var(--text); }
.app-nav-link.active {
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 600;
}
.app-nav-link svg { opacity: 0.85; }

.app-user {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 8px 4px;
  border-top: 1px solid var(--border);
  margin-top: 10px;
}
.app-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #C66E3D 100%);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
}
.app-user-info { min-width: 0; }
.app-user-name { font-size: 0.74rem; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-user-email { font-size: 0.65rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-family: var(--font-mono); }

/* Main area */
.app-main {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--bg);
  overflow: hidden;
}

.app-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.app-page-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.app-page-sub {
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 3px;
}

.app-sync {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  color: var(--brand-dark);
  background: var(--brand-soft);
  border: 1px solid #C7E5DA;
  padding: 5px 11px 5px 9px;
  border-radius: var(--r-pill);
  font-weight: 600;
}
.app-sync .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(15,138,110,.55);
  animation: pulse 1.8s ease-out infinite;
}

/* Stats */
.app-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.app-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 16px;
}
.app-stat-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 8px;
}
.app-stat-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 7px;
  letter-spacing: -0.02em;
}
.app-stat-trend {
  font-size: 0.7rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.app-stat-trend.up { color: var(--success); }

.app-progress {
  height: 5px;
  background: var(--surface-2);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 4px;
}
.app-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand) 0%, #2BC0A0 100%);
  border-radius: 4px;
  transition: width .8s cubic-bezier(.4,0,.2,1);
}

/* Table */
.app-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  flex: 1;
}
.app-table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 0;
}
.app-table-title {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text);
}
.app-table-action {
  font-size: 0.68rem;
  color: var(--brand);
  font-weight: 600;
  font-family: var(--font-mono);
}

.app-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.74rem;
  margin-top: 10px;
}
.app-table th {
  text-align: left;
  padding: 9px 14px;
  background: var(--surface-2);
  color: var(--muted);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.app-table td {
  padding: 11px 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border-soft);
  white-space: nowrap;
}
.app-table tr:last-child td { border-bottom: none; }
.app-table tr:hover td { background: var(--brand-tint); }

.app-table tr.new-row {
  animation: rowIn .6s cubic-bezier(.4,0,.2,1);
}
@keyframes rowIn {
  from { background: var(--brand-soft); opacity: 0; transform: translateY(-8px); }
  to   { background: transparent; opacity: 1; transform: translateY(0); }
}

.cell-bold  { font-weight: 600; }
.cell-muted { color: var(--muted); }

.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  font-size: 0.66rem;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  white-space: nowrap;
  border: 1px solid transparent;
}
.tag.airbnb   { background: var(--ch-airbnb-bg); color: var(--ch-airbnb);  border-color: var(--ch-airbnb-bd); }
.tag.booking  { background: var(--ch-booking-bg); color: var(--ch-booking); border-color: var(--ch-booking-bd); }
.tag.wp       { background: var(--ch-wp-bg); color: var(--ch-wp); border-color: var(--ch-wp-bd); }
.tag.confirmed{ background: var(--success-soft); color: #166534; border-color: #BBF7D0; }
.tag.pending  { background: var(--warn-soft); color: var(--warn); border-color: #FDE68A; }

/* ── Logos / channels strip ─────────────────────────────────────────── */

.channels-strip {
  padding: 44px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.channels-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 28px;
  text-align: center;
}
.channels-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px 56px;
  flex-wrap: wrap;
}
.channel-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--muted);
  opacity: 0.72;
  transition: opacity .2s, color .2s;
  letter-spacing: -0.02em;
}
.channel-item:hover { opacity: 1; color: var(--text); }
.channel-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}
.channel-mark img { display: block; object-fit: contain; }
.channel-mark-airbnb,
.channel-mark-booking,
.channel-mark-wp { background: var(--surface); }

/* ── Features ────────────────────────────────────────────────────────── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 34px 28px 30px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--border);
}
.feature-card.feature-accent { background: linear-gradient(140deg, #FBF7F3 0%, var(--surface) 100%); }
.feature-card.feature-brand  { background: linear-gradient(140deg, var(--brand-tint) 0%, var(--surface) 100%); }

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  background: var(--brand-soft);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--brand-dark);
}
.feature-accent .feature-icon { background: var(--accent-soft); color: var(--accent-dark); }
.feature-brand  .feature-icon { background: #fff; color: var(--brand-dark); }

.feature-title {
  font-size: 1.18rem;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.feature-desc {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.6;
}

.feature-tag {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border: 1px solid #F4D5BD;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* ── How it works (Steps) ────────────────────────────────────────────── */

.steps-section {
  background:
    radial-gradient(40% 50% at 90% 20%, rgba(15,138,110,.08) 0%, transparent 60%),
    var(--bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
}
.step-num {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: var(--text);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.step:nth-child(2) .step-num { background: var(--brand); }
.step:nth-child(3) .step-num { background: var(--accent); }

.step-mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.step-title {
  font-size: 1.16rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.step-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 800px) { .steps-grid { grid-template-columns: 1fr; } }

/* ── Why Stay7 - comparison block ─────────────────────────────────────── */

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 56px;
}
.compare-card {
  border-radius: var(--r-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
}
.compare-card.before {
  background: var(--surface);
  color: var(--muted);
}
.compare-card.after {
  background: var(--text);
  color: #E5E2DA;
  border-color: var(--text);
  position: relative;
  overflow: hidden;
}
.compare-card.after::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 100% 0%, rgba(15,138,110,.25) 0%, transparent 60%);
  pointer-events: none;
}
.compare-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.compare-card.before .compare-eyebrow { color: var(--muted); }
.compare-card.after .compare-eyebrow { color: #2BC0A0; }

.compare-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.compare-card.before .compare-title { color: var(--text); }
.compare-card.after .compare-title { color: #fff; }

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.96rem;
  line-height: 1.55;
}
.compare-list li .mark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}
.compare-card.before .mark {
  background: #FFEEEC;
  color: #DC2626;
}
.compare-card.after .mark {
  background: #134E40;
  color: #2BC0A0;
}

@media (max-width: 760px) { .compare-grid { grid-template-columns: 1fr; } }

/* ── Floating pill nav (alternative header) ─────────────────────────── */

.nav-pill {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1080px;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 100;
}

.nav-pill-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 60px;
  padding: 0 10px 0 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(14, 26, 31, 0.07);
  border-radius: 999px;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 8px 30px rgba(14, 26, 31, 0.08),
    0 2px 6px rgba(14, 26, 31, 0.04);
}

.nav-pill .logo {
  font-size: 1.1rem;
}
.nav-pill .logo-mark { width: 32px; height: 32px; border-radius: 8px; }

.nav-pill .nav-links {
  gap: 2px;
  background: rgba(14, 26, 31, 0.04);
  padding: 4px;
  border-radius: 999px;
}
.nav-pill .nav-links a {
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-soft);
  transition: color .15s, background .15s;
}
.nav-pill .nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.5); }
.nav-pill .nav-links a.active {
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 1px 3px rgba(14,26,31,0.06);
}

.nav-pill .nav-link-quiet {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0 8px;
  transition: color .15s;
}
.nav-pill .nav-link-quiet:hover { color: var(--text); text-decoration: none; }

.nav-pill .btn-primary.btn-sm {
  border-radius: 999px;
  padding: 9px 18px;
}

.nav-pill .nav-mobile {
  margin-top: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 12px;
  box-shadow: var(--shadow-md);
}

/* Push hero down to clear the floating pill */
.nav-pill ~ .hero { padding-top: 130px; }

@media (max-width: 820px) {
  .nav-pill .nav-links,
  .nav-pill .nav-cta { display: none; }
  .nav-pill-bar { padding-right: 14px; }
}

.testimonial-card {
  max-width: 720px;
  margin-inline: auto;
  padding: 40px 44px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(60% 70% at 0% 0%, rgba(15,138,110,.06) 0%, transparent 60%),
              radial-gradient(50% 60% at 100% 100%, rgba(224,136,85,.05) 0%, transparent 60%);
  border-radius: var(--r-lg);
  pointer-events: none;
  z-index: 0;
}
.testimonial-card > * { position: relative; z-index: 1; }

.testimonial-quote-mark {
  color: var(--brand);
  opacity: 0.18;
  margin-bottom: 10px;
}
.testimonial-quote-mark svg { width: 32px; height: 32px; }

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.8vw, 1.4rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 26px;
  text-wrap: balance;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--border-soft);
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, #18A286 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.86rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15,138,110,.24);
}
.testimonial-author-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.testimonial-author-role {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 2px;
}

@media (max-width: 640px) {
  .testimonial-card { padding: 30px 24px 26px; }
}

/* ── CTA banner ──────────────────────────────────────────────────────── */

.cta-banner {
  background:
    radial-gradient(40% 60% at 0% 0%, rgba(43,192,160,.4) 0%, transparent 65%),
    radial-gradient(50% 60% at 100% 100%, rgba(224,136,85,.35) 0%, transparent 65%),
    linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 50%, #18A286 100%);
  border-radius: var(--r-xl);
  padding: 72px 56px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
  position: relative;
  color: #fff;
  letter-spacing: -0.03em;
}
.cta-banner p {
  font-size: 1.06rem;
  opacity: .9;
  margin-bottom: 36px;
  position: relative;
  max-width: 520px;
  margin-inline: auto;
}
.cta-banner-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}

/* ── Footer ──────────────────────────────────────────────────────────── */

footer {
  background: var(--text);
  color: #8AA1AB;
  padding: 80px 0 32px;
  margin-top: 100px;
}
footer .logo { color: #fff; }
footer .logo .logo-dot { color: rgba(255,255,255,.5); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 260px;
  margin-top: 16px;
  color: #8AA1AB;
}

.footer-contact {
  list-style: none;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #8AA1AB;
}
.footer-contact svg { color: #8AA1AB; flex-shrink: 0; }
.footer-contact a { color: #8AA1AB; transition: color .15s; }
.footer-contact a:hover { color: #fff; text-decoration: none; }
.footer-contact-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #25D366;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.28);
  padding: 2px 7px;
  border-radius: var(--r-pill);
  margin-left: 6px;
  vertical-align: middle;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col li { font-size: 0.92rem; color: #8AA1AB; }
.footer-col a {
  font-size: 0.92rem;
  color: #8AA1AB;
  transition: color .15s;
}
.footer-col a:hover { color: #fff; text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #8AA1AB;
  font-family: var(--font-mono);
  gap: 10px;
  flex-wrap: wrap;
}
.footer-bottom a { color: #8AA1AB; }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Pricing ────────────────────────────────────────────────────────── */

.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 40px 0 8px;
  font-size: 0.95rem;
  font-weight: 500;
}
.pricing-toggle {
  position: relative;
  width: 50px;
  height: 28px;
  cursor: pointer;
}
.pricing-toggle input { opacity: 0; width: 0; height: 0; }
.pricing-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 26px;
  transition: background .2s;
}
.pricing-toggle-slider::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: transform .2s;
  box-shadow: 0 2px 5px rgba(0,0,0,.18);
}
.pricing-toggle input:checked + .pricing-toggle-slider { background: var(--brand); }
.pricing-toggle input:checked + .pricing-toggle-slider::before { transform: translateX(22px); }

.pricing-save-pill {
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-mono);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  border: 1px solid #C7E5DA;
  margin-left: 6px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 36px;
}
.pricing-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
  position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.pricing-card.featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft), 0 18px 50px rgba(15,138,110,.18);
  background: linear-gradient(180deg, var(--brand-tint) 0%, var(--surface) 50%);
  transform: scale(1.02);
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-2px); }

/* Lite — visually de-emphasized */
.pricing-card.muted {
  background: var(--surface-2);
  border-color: var(--border-soft);
  box-shadow: none;
}
.pricing-card.muted:hover { box-shadow: var(--shadow-xs); }
.pricing-card.muted .pricing-plan-name { color: var(--text-soft); }
.pricing-card.muted .pricing-num { color: var(--text-soft); }
.pricing-card.muted .pricing-check {
  background: #fff;
  color: var(--muted);
  border: 1px solid var(--border);
}

/* Enterprise — text price */
.pricing-price-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--text);
}

/* Early Bird sub-badge inside Host card */
.pricing-earlybird {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--accent-soft);
  border: 1px solid #F4D5BD;
  border-radius: var(--r-md);
  padding: 10px 12px;
  margin-bottom: 18px;
}
.pricing-earlybird-icon {
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-earlybird-text {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--accent-dark);
}
.pricing-earlybird-text strong {
  color: #8C4A1D;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

/* Pricing disclaimer */
.pricing-disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin-top: 28px;
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.55;
}

.pricing-popular-badge,
.pricing-trial-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
}
.pricing-popular-badge { background: var(--brand); }
.pricing-trial-badge { background: var(--accent); }

.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}
.pricing-plan-desc {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 28px;
  min-height: 44px;
  line-height: 1.55;
}
.pricing-amount {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 6px;
}
.pricing-currency { font-size: 1.3rem; font-weight: 600; margin-bottom: 10px; color: var(--muted); }
.pricing-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
}
.pricing-period { font-size: 0.82rem; color: var(--muted); margin-bottom: 8px; }
.pricing-annual-note {
  font-size: 0.74rem;
  color: var(--brand-dark);
  font-weight: 600;
  font-family: var(--font-mono);
  margin-bottom: 22px;
  min-height: 18px;
}
.pricing-divider {
  border: none;
  border-top: 1px solid var(--border-soft);
  margin: 18px 0 22px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.pricing-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-card .btn { width: 100%; justify-content: center; }

@media (max-width: 1080px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-2px); }
}
@media (max-width: 560px)  {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  /* On mobile, Host (.featured) jumps to top so it's seen first */
  .pricing-card.featured { order: -1; }
}

/* Two-card grid (Host + Pro, after Lite/Enterprise extraction) */
.pricing-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 720px;
  margin-inline: auto;
}
@media (max-width: 720px) {
  .pricing-grid.two { grid-template-columns: 1fr; max-width: 420px; }
}

/* Early Bird crossed-price treatment */
.pricing-amount.early {
  align-items: baseline;
  gap: 10px;
}
.pricing-amount .pricing-strike {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: var(--accent);
  letter-spacing: -0.02em;
  align-self: flex-end;
  margin-bottom: 8px;
}

/* Lite — slim inline mention below grid */
.pricing-lite-strip {
  margin: 36px auto 0;
  max-width: 720px;
  background: transparent;
  border: 1px dashed var(--border);
  border-radius: var(--r-md);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  transition: border-color .15s, background .15s;
}
.pricing-lite-strip:hover { border-color: var(--border); background: var(--surface-2); }
.pricing-lite-strip-text { line-height: 1.5; }
.pricing-lite-strip-text strong {
  color: var(--text-soft);
  font-weight: 600;
}
.pricing-lite-strip a {
  font-family: var(--font-mono);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--surface);
}
.pricing-lite-strip a:hover { border-color: var(--text); text-decoration: none; }

@media (max-width: 560px) {
  .pricing-lite-strip { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* Enterprise — soft contact CTA section */
.pricing-enterprise-cta {
  margin: 48px auto 0;
  max-width: 860px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-xs);
}
.pricing-enterprise-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--text);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.pricing-enterprise-body { min-width: 0; }
.pricing-enterprise-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.pricing-enterprise-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 680px) {
  .pricing-enterprise-cta {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 28px 24px;
  }
  .pricing-enterprise-cta .btn { width: 100%; }
}

/* ── FAQ ────────────────────────────────────────────────────────────── */

.faq-list { max-width: 760px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  letter-spacing: -0.015em;
}
.faq-question:hover { color: var(--brand-dark); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface-2);
  display: grid;
  place-items: center;
  color: var(--text);
  flex-shrink: 0;
  transition: transform .2s, background .2s, color .2s;
  font-size: 1.1rem;
  font-weight: 400;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--brand); color: #fff; }
.faq-answer {
  display: none;
  padding-bottom: 24px;
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 640px;
}
.faq-item.open .faq-answer { display: block; }

/* ── Contact ────────────────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  margin-top: 56px;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  background: var(--brand-soft);
  color: var(--brand-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-info-value { font-weight: 500; font-size: 0.96rem; }
.contact-info-value a { color: var(--text); }

.contact-quicklinks {
  background: var(--brand-soft);
  border: 1px solid #C7E5DA;
  border-radius: var(--r-lg);
  padding: 24px;
}
.contact-quicklinks-title {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--brand-dark);
}
.contact-quicklinks a {
  font-size: 0.92rem;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}
.contact-quicklinks a:hover { color: var(--brand-deep); text-decoration: none; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
}
.form-group label .req { color: var(--accent); margin-left: 2px; }
.form-control {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color .15s, box-shadow .15s, background .15s;
  width: 100%;
}
.form-control:hover { border-color: #C9C5BB; }
.form-control:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px var(--brand-soft);
}
.form-control::placeholder { color: #ABB6BD; }
.form-control.invalid { border-color: var(--danger); }
.form-control.invalid:focus { box-shadow: 0 0 0 4px var(--danger-soft); }
.form-error {
  font-size: 0.78rem;
  color: var(--danger);
  margin-top: 2px;
  display: none;
}
.form-group.has-error .form-error { display: block; }

textarea.form-control { resize: vertical; min-height: 140px; }

.form-success {
  display: none;
  background: var(--brand-soft);
  border: 1px solid #C7E5DA;
  border-radius: var(--r-md);
  padding: 16px 20px;
  color: var(--brand-dark);
  font-weight: 500;
  margin-top: 14px;
  align-items: center;
  gap: 10px;
}
.form-success.show { display: flex; animation: rowIn .4s ease-out; }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
}

/* ── Terms ────────────────────────────────────────────────────────── */

.terms-body {
  max-width: 760px;
  margin-inline: auto;
  padding-block: 60px 80px;
}
.terms-body h2 {
  font-size: 1.45rem;
  margin-top: 48px;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.terms-body p, .terms-body li {
  font-size: 0.96rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 12px;
}
.terms-body ul { padding-left: 22px; margin-bottom: 14px; }
.terms-body strong { color: var(--text); font-weight: 600; }
.terms-updated {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.02em;
}

/* ── Onboarding ──────────────────────────────────────────────────────── */

.onb-page {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
.onb-topbar {
  height: 68px;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: var(--surface);
}
.onb-topbar .logo { color: var(--text); }
.onb-help {
  font-size: 0.88rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.onb-help a { color: var(--text); font-weight: 500; }

.onb-shell {
  flex: 1;
  display: grid;
  grid-template-columns: 320px 1fr;
  max-width: 1320px;
  width: 100%;
  margin-inline: auto;
}

/* Left progress rail */
.onb-rail {
  padding: 56px 36px;
  border-right: 1px solid var(--border-soft);
  position: relative;
}
.onb-rail-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 16px;
}
.onb-rail h1 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.onb-rail-sub {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.55;
}

.onb-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.onb-step-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  position: relative;
}
.onb-step-item::before {
  content: "";
  position: absolute;
  top: 38px;
  bottom: -14px;
  left: 13px;
  width: 2px;
  background: var(--border);
}
.onb-step-item:last-child::before { display: none; }

.onb-step-item.done::before  { background: var(--brand); }

.onb-step-bullet {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  color: var(--muted);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  flex-shrink: 0;
  z-index: 1;
  transition: background .2s, border-color .2s, color .2s;
}
.onb-step-item.current .onb-step-bullet {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}
.onb-step-item.done .onb-step-bullet {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.onb-step-text { flex: 1; padding-top: 2px; }
.onb-step-title {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
  letter-spacing: -0.005em;
}
.onb-step-item:not(.current):not(.done) .onb-step-title { color: var(--muted); }
.onb-step-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

.onb-rail-foot {
  position: absolute;
  bottom: 56px;
  left: 36px;
  right: 36px;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Right content panel */
.onb-content {
  padding: 56px 64px;
  max-width: 720px;
  width: 100%;
}
.onb-step-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--brand-dark);
  margin-bottom: 14px;
}
.onb-step-heading {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  line-height: 1.1;
}
.onb-step-lead {
  font-size: 1.02rem;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 540px;
}

.onb-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-xs);
}

.onb-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 14px;
}
.onb-back {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.onb-back:hover { color: var(--text); }
.onb-actions .btn { padding: 13px 28px; }

/* Step screens */
.onb-screen { display: none; }
.onb-screen.active { display: block; animation: fadeStep .4s ease-out; }
@keyframes fadeStep {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Password strength bar */
.pw-strength {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}
.pw-strength-bar {
  flex: 1;
  height: 4px;
  background: var(--surface-2);
  border-radius: 2px;
  transition: background .25s;
}
.pw-label {
  font-size: 0.78rem;
  font-family: var(--font-mono);
  color: var(--muted);
  margin-top: 6px;
}
.pw-strength[data-strength="1"] .pw-strength-bar:nth-child(-n+1) { background: var(--danger); }
.pw-strength[data-strength="2"] .pw-strength-bar:nth-child(-n+2) { background: var(--accent); }
.pw-strength[data-strength="3"] .pw-strength-bar:nth-child(-n+3) { background: var(--warn); }
.pw-strength[data-strength="4"] .pw-strength-bar:nth-child(-n+4) { background: var(--brand); }

/* Property type radio cards */
.type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 10px;
}
.type-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 12px;
  text-align: center;
  cursor: pointer;
  background: var(--surface);
  transition: border-color .15s, background .15s;
}
.type-card:hover { border-color: var(--brand); }
.type-card.selected {
  border-color: var(--brand);
  background: var(--brand-tint);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.type-card svg { margin-inline: auto; margin-bottom: 8px; color: var(--text); }
.type-card.selected svg { color: var(--brand-dark); }
.type-card-name {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
}
.type-card.selected .type-card-name { color: var(--brand-dark); }

@media (max-width: 600px) { .type-grid { grid-template-columns: 1fr 1fr; } }

/* Credit card field with brand icon */
.cc-field {
  position: relative;
}
.cc-field .form-control { padding-right: 52px; }
.cc-brand {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0.9;
}

/* Trial reassurance shield */
.payment-shield {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--brand-soft);
  border: 1px solid #C7E5DA;
  border-radius: var(--r-md);
  padding: 16px 18px;
  margin-top: 6px;
  margin-bottom: 14px;
}
.payment-shield-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--brand-dark);
  flex-shrink: 0;
}
.payment-shield-body { flex: 1; min-width: 0; }
.payment-shield-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--brand-deep);
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.payment-shield-text {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.payment-shield-text strong { color: var(--text); font-weight: 600; }

.payment-secure {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: 4px;
}
.payment-secure svg { opacity: 0.7; }

/* Channel cards (connect step) */
.channel-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.channel-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 20px;
  transition: border-color .2s, background .2s;
}
.channel-row.connected {
  background: var(--brand-tint);
  border-color: #C7E5DA;
}
.channel-row.syncing { border-color: var(--accent); }

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  flex-shrink: 0;
  border: 1px solid transparent;
}
.channel-icon.airbnb  { background: var(--ch-airbnb-bg); color: var(--ch-airbnb); border-color: var(--ch-airbnb-bd); }
.channel-icon.booking { background: var(--ch-booking-bg); color: var(--ch-booking); border-color: var(--ch-booking-bd); }
.channel-icon.wp      { background: var(--ch-wp-bg); color: var(--ch-wp); border-color: var(--ch-wp-bd); }

.channel-info { flex: 1; min-width: 0; }
.channel-name {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text);
  margin-bottom: 2px;
}
.channel-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.4;
}
.channel-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
}
.channel-state .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.channel-row.connected .channel-state { color: var(--brand-dark); }
.channel-row.syncing .channel-state {
  color: var(--accent-dark);
  animation: dimLoop 1.4s ease-in-out infinite;
}
@keyframes dimLoop {
  0%,100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.channel-btn {
  padding: 9px 18px;
  border-radius: var(--r-md);
  font-size: 0.86rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: all .15s;
}
.channel-btn:hover { border-color: var(--text); }
.channel-btn.connected {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  cursor: default;
}
.channel-btn.syncing {
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-color: var(--accent);
  cursor: default;
}

/* Success / done screen */
.onb-success {
  text-align: center;
  padding: 20px 0;
}
.onb-success-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--brand) 0%, #2BC0A0 100%);
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  color: #fff;
  box-shadow: var(--shadow-brand);
  animation: popIn .5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popIn {
  from { transform: scale(.6); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.onb-success h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.onb-success p {
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.onb-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 520px;
  margin: 0 auto 32px;
  text-align: left;
}
.onb-summary-cell-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 6px;
}
.onb-summary-cell-val {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}

@media (max-width: 900px) {
  .onb-shell { grid-template-columns: 1fr; }
  .onb-rail {
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
    padding: 36px 28px;
  }
  .onb-rail-foot { display: none; }
  .onb-content { padding: 36px 28px; }
}

/* ── Responsive last-mile ────────────────────────────────────────────── */

@media (max-width: 768px) {
  section { padding: 76px 0; }
  .hero { padding: 64px 0 40px; }
  .app-shell { grid-template-columns: 1fr; }
  .app-sidebar { display: none; }
  .app-stats { grid-template-columns: 1fr 1fr; }
  .app-main { padding: 16px 16px; gap: 12px; }
  .app-table th:nth-child(3),
  .app-table td:nth-child(3),
  .app-table th:nth-child(4),
  .app-table td:nth-child(4),
  .app-table th:nth-child(5),
  .app-table td:nth-child(5) { display: none; }
  .cta-banner { padding: 48px 28px; }
}
@media (max-width: 440px) {
  .app-stats { gap: 8px; }
  .app-stat { padding: 11px; }
  .app-stat-num { font-size: 1.15rem; }
  .app-header { flex-direction: column; gap: 6px; align-items: flex-start; }
}


/* ═══════════════════════════════════════════════════════════════════════
   TWEAKS — three expressive controls reshape the whole feel
   data-tweak-type    : modern | editorial | minimal
   data-tweak-mood    : forest | coastal | sunset
   data-tweak-density : compact | comfortable | generous
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Type personality ────────────────────────────────────────────────── */

[data-tweak-type="editorial"] {
  --font-display: 'Instrument Serif', Georgia, serif;
}
[data-tweak-type="editorial"] h1,
[data-tweak-type="editorial"] h2,
[data-tweak-type="editorial"] h3,
[data-tweak-type="editorial"] h4,
[data-tweak-type="editorial"] .pricing-num,
[data-tweak-type="editorial"] .pricing-plan-name,
[data-tweak-type="editorial"] .app-page-title,
[data-tweak-type="editorial"] .app-stat-num,
[data-tweak-type="editorial"] .feature-title,
[data-tweak-type="editorial"] .step-title,
[data-tweak-type="editorial"] .compare-title,
[data-tweak-type="editorial"] .testimonial-quote {
  letter-spacing: -0.005em;
  font-weight: 400;
}
[data-tweak-type="editorial"] .hero-title em {
  font-style: italic;
}
[data-tweak-type="editorial"] .logo { font-weight: 400; letter-spacing: 0; }

[data-tweak-type="minimal"] {
  --font-display: 'Space Grotesk', system-ui, sans-serif;
}
[data-tweak-type="minimal"] h1,
[data-tweak-type="minimal"] h2,
[data-tweak-type="minimal"] h3,
[data-tweak-type="minimal"] h4 {
  letter-spacing: -0.04em;
  font-weight: 600;
}
[data-tweak-type="minimal"] .hero-title { letter-spacing: -0.05em; }
[data-tweak-type="minimal"] .logo { letter-spacing: -0.04em; }

/* ── Mood palette ────────────────────────────────────────────────────── */

[data-tweak-mood="coastal"] {
  --bg:           #F6FAFC;
  --surface-2:    #EDF4F7;
  --surface-3:    #E4EEF2;
  --border:       #DCE6EC;
  --border-soft:  #E8EFF4;

  --brand:        #0E7C9C;
  --brand-dark:   #095A74;
  --brand-deep:   #073F52;
  --brand-soft:   #E2F0F5;
  --brand-tint:   #EFF7FA;

  --accent:       #D9A05B;
  --accent-dark:  #B47F3D;
  --accent-soft:  #FAF0DF;
}

[data-tweak-mood="sunset"] {
  --bg:           #FBF7F1;
  --surface-2:    #F2EBDC;
  --surface-3:    #EDE3D0;
  --border:       #E2D5BB;
  --border-soft:  #EBE0C8;

  --brand:        #C25A2A;
  --brand-dark:   #9A4520;
  --brand-deep:   #6F3115;
  --brand-soft:   #F8E6D8;
  --brand-tint:   #FBEFE2;

  --accent:       #6F8A4B;
  --accent-dark:  #54693A;
  --accent-soft:  #ECF1DE;
}

/* The hero radial gradients use the brand directly so they re-tint automatically.
   The CTA banner uses var(--brand-dark) and var(--brand). The "after" compare card
   uses --text (always ink). Logo PNG stays brand-stable — intentional identity hold. */

/* Steps section background gradient — re-tint per mood */
[data-tweak-mood="coastal"] .steps-section {
  background:
    radial-gradient(40% 50% at 90% 20%, rgba(14,124,156,.08) 0%, transparent 60%),
    var(--bg);
}
[data-tweak-mood="sunset"] .steps-section {
  background:
    radial-gradient(40% 50% at 90% 20%, rgba(194,90,42,.08) 0%, transparent 60%),
    var(--bg);
}

/* Hero gradient — re-tint */
[data-tweak-mood="coastal"] .hero {
  background:
    radial-gradient(60% 50% at 12% 0%, rgba(14,124,156,.10) 0%, transparent 60%),
    radial-gradient(45% 40% at 100% 0%, rgba(217,160,91,.08) 0%, transparent 65%),
    var(--bg);
}
[data-tweak-mood="sunset"] .hero {
  background:
    radial-gradient(60% 50% at 12% 0%, rgba(194,90,42,.10) 0%, transparent 60%),
    radial-gradient(45% 40% at 100% 0%, rgba(111,138,75,.08) 0%, transparent 65%),
    var(--bg);
}

/* ── Density ─────────────────────────────────────────────────────────── */

[data-tweak-density="compact"] section { padding: 68px 0; }
[data-tweak-density="compact"] .hero { padding: 60px 0 40px; }
[data-tweak-density="compact"] .hero-visual { margin-top: 40px; }
[data-tweak-density="compact"] .container { padding-inline: 22px; }
[data-tweak-density="compact"] .section-head { margin-bottom: 36px; }
[data-tweak-density="compact"] .features-grid { margin-top: 36px; gap: 14px; }
[data-tweak-density="compact"] .feature-card { padding: 26px 22px 24px; }
[data-tweak-density="compact"] .steps-grid { margin-top: 36px; gap: 16px; }
[data-tweak-density="compact"] .step { padding: 24px 22px; }
[data-tweak-density="compact"] .compare-grid { margin-top: 36px; gap: 14px; }
[data-tweak-density="compact"] .compare-card { padding: 26px 24px; }
[data-tweak-density="compact"] .testimonial-card { padding: 30px 32px 24px; max-width: 640px; }
[data-tweak-density="compact"] .cta-banner { padding: 48px 36px; }
[data-tweak-density="compact"] footer { padding: 56px 0 24px; margin-top: 64px; }
[data-tweak-density="compact"] .nav-inner { height: 60px; }

[data-tweak-density="generous"] section { padding: 150px 0; }
[data-tweak-density="generous"] .hero { padding: 130px 0 80px; }
[data-tweak-density="generous"] .hero-visual { margin-top: 90px; }
[data-tweak-density="generous"] .container { padding-inline: 32px; }
[data-tweak-density="generous"] .section-head { margin-bottom: 80px; }
[data-tweak-density="generous"] .features-grid { margin-top: 76px; gap: 22px; }
[data-tweak-density="generous"] .feature-card { padding: 42px 36px 36px; }
[data-tweak-density="generous"] .steps-grid { margin-top: 76px; gap: 28px; }
[data-tweak-density="generous"] .step { padding: 40px 36px; }
[data-tweak-density="generous"] .compare-grid { margin-top: 76px; gap: 22px; }
[data-tweak-density="generous"] .compare-card { padding: 48px 44px; }
[data-tweak-density="generous"] .testimonial-card { padding: 56px 64px 44px; max-width: 820px; }
[data-tweak-density="generous"] .cta-banner { padding: 96px 80px; }
[data-tweak-density="generous"] footer { padding: 110px 0 40px; margin-top: 140px; }
[data-tweak-density="generous"] .nav-inner { height: 78px; }
