/* ═══════════════════════════════════════════
   Chanlify Landing — styles.css
   ═══════════════════════════════════════════ */

/* ─── FONT FACES ─── */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/bricolage-grotesque-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/bricolage-grotesque-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/fonts/dm-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/fonts/dm-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ─── DESIGN TOKENS ─── */
:root {
  --white: #ffffff;
  --bg: #f8fafc;
  --text: #0f172a;
  --text-2: #334155;
  --muted: #64748b;
  --border: #e2e8f0;
  --border-2: #cbd5e1;
  --accent: #0284c7;
  --accent-light: #e0f2fe;
  --accent-mid: #38bdf8;
  --accent-dark: #0369a1;
  --green: #10b981;
  --orange: #f59e0b;
  --text-3: #94a3b8;
  --surface: #f1f5f9;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }

/* ─── ACCESSIBILITY ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--text);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  z-index: 9999;
  font-size: 0.875rem;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226,232,240,0.6);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
.nav-inner {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent) 0%, #0ea5e9 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg { width: 18px; height: 18px; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  display: flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  min-height: 48px;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--bg);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  line-height: 1.4;
}
.btn-accent {
  background: var(--accent);
  color: white;
  box-shadow: 0 1px 3px rgba(2,132,199,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(2,132,199,0.35);
}
.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 12px;
}
.btn-ghost {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}
.btn-ghost:hover {
  color: var(--text);
  background: var(--bg);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: var(--accent);
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 1px 3px rgba(2,132,199,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
  min-height: 48px;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(2,132,199,0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--accent);
  color: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 1px 3px rgba(2,132,199,0.4), 0 4px 16px rgba(2,132,199,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
  min-height: 48px;
}
.btn-primary-lg:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(2,132,199,0.4);
}
.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--text-2);
  font-size: 15px;
  font-weight: 500;
  border-radius: 11px;
  border: 1px solid var(--border-2);
  cursor: pointer;
  transition: all 0.2s;
  min-height: 48px;
}
.btn-outline-lg:hover {
  background: var(--bg);
  border-color: var(--border-2);
  color: var(--text);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: white;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  border-radius: 11px;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  min-height: 48px;
}
.btn-white:hover {
  background: var(--bg);
  transform: translateY(-1px);
}

.btn-dark-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  font-weight: 500;
  border-radius: 11px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.2s;
  min-height: 48px;
}
.btn-dark-outline:hover {
  color: white;
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
}

/* ─── HERO ─── */
.hero {
  padding: 136px 40px 100px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(2,132,199,0.07) 0%, rgba(56,189,248,0.04) 40%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 5px 8px;
  background: var(--accent-light);
  border: 1px solid rgba(2,132,199,0.2);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--accent-dark);
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 420px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}
.hero-trust-avatars {
  display: flex;
}
.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
}
.avatar:first-child { margin-left: 0; }
.a1 { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.a2 { background: linear-gradient(135deg, #0891b2, #38bdf8); }
.a3 { background: linear-gradient(135deg, #d97706, #fcd34d); }
.a4 { background: linear-gradient(135deg, #059669, #34d399); }
.hero-trust-text {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}
.hero-trust-text strong {
  color: var(--text-2);
  font-weight: 600;
}

/* ─── DASHBOARD MOCKUP ─── */
.hero-visual {
  position: relative;
}
.dashboard-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.dash-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dot-row { display: flex; gap: 5px; }
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot-r { background: #fc5c5c; }
.dot-y { background: #fbbd42; }
.dot-g { background: #34c749; }
.dash-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  flex: 1;
  text-align: center;
}
.dash-body { padding: 16px; }
.dash-top-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}
.stat-label {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.stat-value {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}
.stat-delta {
  font-size: 10px;
  font-weight: 600;
  color: var(--green);
  margin-top: 2px;
}
.dash-section-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.booking-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}
.booking-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.platform-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pd-airbnb { background: #FF5A5F; }
.pd-booking { background: #003580; }
.pd-direct { background: var(--accent); }
.booking-info { flex: 1; }
.booking-guest {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.booking-dates {
  font-size: 10.5px;
  color: var(--muted);
}
.booking-amount {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}
.booking-status {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 100px;
}
.bs-confirmed { background: rgba(16,185,129,0.1); color: #059669; }
.bs-pending { background: rgba(245,158,11,0.1); color: #d97706; }

.calendar-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid transparent;
}
.cal-day.occupied {
  background: var(--accent-light);
  border-color: rgba(2,132,199,0.15);
  color: var(--accent-dark);
  font-weight: 600;
}
.cal-day.today {
  background: var(--accent);
  color: white;
  font-weight: 700;
  border-color: var(--accent);
}
.cal-day.partial {
  background: rgba(249,115,22,0.1);
  border-color: rgba(249,115,22,0.2);
  color: #c2410c;
}

/* Floating cards */
.float-card {
  position: absolute;
  z-index: 2;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 10px 14px;
}
.fc-sync {
  top: -20px;
  right: -24px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 6s ease-in-out 1s infinite;
}
.fc-sync-icon {
  width: 28px;
  height: 28px;
  background: rgba(16,185,129,0.1);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-sync-text .label {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text);
}
.fc-sync-text .sub {
  font-size: 9.5px;
  color: var(--green);
  font-weight: 500;
}
.fc-revenue {
  bottom: 20px;
  left: -28px;
  animation: float 7s ease-in-out 2s infinite;
}
.fc-revenue .amount {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
}
.fc-revenue .period {
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 1px;
}
.fc-revenue .trend {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--green);
  margin-top: 4px;
}

/* ─── LOGOS / INTEGRATIONS ─── */
.logos-section {
  padding: 28px 40px 60px;
  border-top: 1px solid var(--border);
}
.logos-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.logos-label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
}
.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.platform-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.platform-logo:hover { opacity: 1; }
.pl-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── SECTION BASE ─── */
section {
  padding: 100px 40px;
}
.section-inner,
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-inner {
  padding: 0;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
h2.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.65;
}

/* ─── FEATURES GRID ─── */
.features-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-header {
  text-align: center;
  margin-bottom: 64px;
}
.features-header .section-desc {
  max-width: 520px;
  margin: 0 auto;
}
.features-header .section-label {
  justify-content: center;
}
.features-header .section-label::before { display: none; }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.feat-card:hover {
  border-color: var(--border-2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.feat-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
}
.feat-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}
.feat-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── HOW IT WORKS ─── */
.how-section {
  background: white;
}
.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}
.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.25s;
}
.step.active { opacity: 1; }
.step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.step.active .step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.step-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}
.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.how-visual {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* How visual — setup wizard mockup */
.wizard-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.wizard-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wizard-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.wizard-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}
.wizard-progress-bar {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: var(--border);
}
.wizard-progress-bar.filled {
  background: var(--accent);
}
.wizard-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.wizard-platforms {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wizard-platform {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 9px;
}
.wizard-platform.highlight {
  background: var(--accent-light);
  border-color: rgba(2,132,199,0.2);
}
.wizard-platform-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wizard-platform-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.wizard-platform-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.wizard-platform-sub {
  font-size: 11px;
  color: var(--muted);
}
.wizard-platform-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
}
.wizard-platform-status.connected { color: var(--green); }
.wizard-platform-status.setup { color: var(--accent); cursor: pointer; }
.wizard-cta {
  width: 100%;
  padding: 11px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  box-shadow: 0 1px 3px rgba(2,132,199,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  margin-top: 20px;
  min-height: 48px;
}

/* ─── TESTIMONIALS ─── */
.testimonial-section {
  background: white;
}
.testimonial-header {
  text-align: center;
}
.testimonial-header .section-label {
  justify-content: center;
}
.testimonial-header .section-label::before { display: none; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testi-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.star {
  color: var(--orange);
  font-size: 14px;
}
.testi-quote {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
}
.ta1 { background: linear-gradient(135deg, #0891b2, #38bdf8); }
.ta2 { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.ta3 { background: linear-gradient(135deg, #d97706, #fbbf24); }
.testi-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
}
.testi-role {
  font-size: 12px;
  color: var(--muted);
}

/* ─── PRICING ─── */
.pricing-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}
.pricing-header .section-label { justify-content: center; }
.pricing-header .section-label::before { display: none; }
.pricing-header .section-desc { margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.plan-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: box-shadow 0.2s;
}
.plan-card:hover {
  box-shadow: var(--shadow-lg);
}
.plan-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(2,132,199,0.08);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 6px;
}
.plan-currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-top: 6px;
}
.plan-amount {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -2px;
  line-height: 1;
}
.plan-period {
  font-size: 13px;
  color: var(--muted);
  align-self: flex-end;
  margin-bottom: 6px;
}
.plan-desc {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.plan-cta {
  display: block;
  text-align: center;
  padding: 11px 20px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  margin-bottom: 24px;
  min-height: 48px;
  line-height: 26px;
}
.plan-cta-outline {
  border: 1px solid var(--border-2);
  color: var(--text-2);
  background: transparent;
}
.plan-cta-outline:hover {
  background: var(--bg);
  color: var(--text);
}
.plan-cta-solid {
  background: var(--accent);
  color: white;
  border: 1px solid transparent;
  box-shadow: 0 1px 3px rgba(2,132,199,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}
.plan-cta-solid:hover {
  background: var(--accent-dark);
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text-2);
}
.plan-features .check {
  width: 16px;
  height: 16px;
  background: rgba(16,185,129,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--text);
  padding: 100px 40px;
}
.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: white;
  line-height: 1.1;
  margin-bottom: 18px;
}
.cta-inner h2 em {
  font-style: normal;
  color: var(--accent-mid);
}
.cta-inner > p {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  line-height: 1.6;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-note {
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
  margin-top: 20px;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--text);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 48px 40px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo-name {
  color: white;
}
.footer-tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,0.4);
  margin-top: 10px;
  line-height: 1.6;
  max-width: 240px;
}
.footer-col .footer-heading {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  max-width: 1160px;
  margin: 32px auto 0;
  padding: 24px 40px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 12.5px;
  color: rgba(255,255,255,0.25);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.55); }

/* ─── SITE CREDIT ─── */
.site-credit {
  padding: 12px 0;
  text-align: center;
  background: var(--text);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.site-credit p {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 300;
}
.site-credit a {
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-credit a:hover {
  color: rgba(255,255,255,0.5);
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal, .fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible, .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── MOBILE BURGER ─── */
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
}
.nav-burger svg {
  width: 24px;
  height: 24px;
  stroke: var(--text);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero { padding: 100px 24px 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .feat-grid { grid-template-columns: 1fr; }
  .how-inner { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  section { padding: 72px 24px; }
  .logos-section { padding: 20px 24px 48px; }
}

@media (max-width: 600px) {
  .fc-sync, .fc-revenue { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    padding: 24px 24px 0;
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary-lg, .btn-outline-lg { justify-content: center; }
}

/* Safe areas for notch devices */
@supports (padding: env(safe-area-inset-bottom)) {
  .site-footer { padding-bottom: calc(48px + env(safe-area-inset-bottom)); }
  .nav { padding-left: calc(40px + env(safe-area-inset-left)); padding-right: calc(40px + env(safe-area-inset-right)); }
}
