/* ═══════════════════════════════════════════
   Chanlify Moldova (chanlify.md) — styles.css
   Forked from apps/chanlify/landing/css/styles.css.
   Physically copied, NEVER shared: .fr and .md must diverge freely.
   Only the @font-face block and the two font tokens differ so far —
   palette, logo, components and grid are intentionally identical.
   ═══════════════════════════════════════════ */

/* ─── FONT FACES ───────────────────────────────────────────────────────────
   Chanlify Moldova ships a DIFFERENT typeface pair from chanlify.fr.

   The .fr pair (Bricolage Grotesque + DM Sans) was verified with fontTools on
   2026-08-15 and contains ZERO Cyrillic glyphs (0/64 of U+0410–U+044F in all
   four shipped subsets). Bricolage has no Cyrillic cut at all. Worse for ro:
   the DM Sans latin-ext subset maps s-cedilla/t-cedilla (U+015F/U+0163) but
   NOT the comma-below ș/ț (U+0219/U+021B) that Romanian actually requires.

   Replacement pair, both verified to carry full Cyrillic basic + ă â î ș ț
   with correct comma-below forms:
     display — Onest   (geometric; by Dmitri Voloshin / Simpals, Chișinău)
     body    — Manrope (Inter/Manrope class, closest in feel to DM Sans)

   Both are variable fonts instanced to wght 400–800 and split by unicode-range
   so ro visitors never download the Cyrillic subsets.
   ─────────────────────────────────────────────────────────────────────────── */

/* Latin + Latin Extended-A/B — includes Romanian ă â î ș ț (comma-below) */
@font-face {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/onest-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2000-206F, U+20A0-20C0, U+2113, U+2122, U+2190-2193, U+2212, U+2215, U+2248, U+2260, U+2264-2265, U+2C60-2C7F, U+A720-A7FF, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/onest-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2000-206F, U+20A0-20C0, U+2113, U+2122, U+2190-2193, U+2212, U+2215, U+2248, U+2260, U+2264-2265, U+2C60-2C7F, U+A720-A7FF, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/manrope-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* ─── 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: 'Onest', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

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

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; }
button, input, select, textarea { -webkit-appearance: none; -moz-appearance: none; appearance: none; }
[id] { scroll-margin-top: 72px; }

/* ─── 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: 1000;
  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: var(--accent);
  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 DESKTOP ─── */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu-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-menu-links a:hover {
  color: var(--text);
  background: var(--bg);
}
.nav-menu-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
}

/* ─── 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;
  min-height: 48px;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  line-height: 1.4;
}
.btn-accent {
  background: #0369a1; /* sky-700 — WCAG AA with white text (5.36:1) */
  color: #ffffff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.18),
    0 6px 18px rgba(3, 105, 161, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn-accent:hover {
  background: #075985; /* sky-800 */
  transform: translateY(-1px);
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.22),
    0 10px 24px rgba(3, 105, 161, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.btn-accent:focus-visible {
  outline: 2px solid #38bdf8; /* sky-400 focus ring */
  outline-offset: 3px;
}
/* On dark CTA bands the sky-700 button surface fades into the near-black
   background (#0f172a). Add a bright ring + halo so the shape lifts clearly. */
.cta-band .btn-accent {
  background: #0284c7; /* sky-600 — brighter surface on dark bg */
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 8px 28px rgba(56, 189, 248, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.cta-band .btn-accent:hover {
  background: #0ea5e9; /* sky-500 on hover — max pop */
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.35),
    0 12px 36px rgba(56, 189, 248, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 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, border-color 0.2s;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}
.btn-ghost:hover {
  color: var(--text);
  background: var(--bg);
}
/* Dark-section variant. Many templates inline rgba(255,255,255,…) on .btn-ghost
   so it reads on a dark CTA. Without this rule, the inline `color:` wins over
   `.btn-ghost:hover` and the button goes white-on-near-white on hover. The
   attribute selector catches all existing inline-styled usages; `.btn-ghost-dark`
   is the preferred class going forward. !important is required to override
   the inline static `color:` (and `border-color:`) on the hover state. */
.btn-ghost-dark,
.btn-ghost[style*="rgba(255,255,255"] {
  color: rgba(255, 255, 255, 0.85) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  background: transparent;
}
.btn-ghost-dark:hover,
.btn-ghost[style*="rgba(255,255,255"]:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: var(--accent-dark); /* sky-700 — AA white text at 14px */
  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(3,105,161,0.45), inset 0 1px 0 rgba(255,255,255,0.18);
  min-height: 48px;
}
.btn-primary:hover {
  background: #075985; /* sky-800 */
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(3,105,161,0.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--accent-dark); /* sky-700 — AA white text at 15px */
  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(3,105,161,0.45), 0 4px 16px rgba(3,105,161,0.28), inset 0 1px 0 rgba(255,255,255,0.18);
  min-height: 48px;
}
.btn-primary-lg:hover {
  background: #075985; /* sky-800 */
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(3,105,161,0.5);
}
.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: #475569; }
.a2 { background: #64748b; }
.a3 { background: #334155; }
.a4 { background: #94a3b8; }
.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: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  opacity: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.platform-logo:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  border-color: var(--border-2);
}
.platform-logo--soon { opacity: 0.45; }
.platform-logo--soon:hover { opacity: 0.7; }
.platform-soon-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #0369a1;
  background: #e0f2fe;
  border-radius: 999px;
  text-transform: none;
}
.pl-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pl-badge {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  position: relative;
  flex-shrink: 0;
}
.pl-badge-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  bottom: 6px;
  right: 6px;
}
.platform-logo .pl-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.logos-disclaimer {
  margin-top: 20px;
  text-align: center;
  font-size: 11.5px;
  color: var(--text-3);
  letter-spacing: 0.01em;
  line-height: 1.5;
}

/* ─── 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-dark);
  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;
}

/* ─── WIDGET DEMO ─── */
.widget-demo-section {
  padding: 100px 0;
  overflow: hidden;
}
.widget-demo-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.widget-demo-copy .section-label { justify-content: flex-start; }
.widget-demo-copy .section-title { text-align: left; }
.widget-demo-copy .section-desc { text-align: left; max-width: 480px; }

.widget-demo-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.wdf-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .875rem;
  color: var(--text-2);
}
.wdf-item svg { flex-shrink: 0; }

.widget-demo-code {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: #1e293b;
}
.widget-demo-code-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #0f172a;
}
.widget-demo-code-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.widget-demo-code-label {
  margin-left: 8px;
  font-size: .75rem;
  color: #64748b;
  font-family: var(--font-body);
}
.widget-demo-code-body {
  padding: 16px 20px;
  margin: 0;
  overflow-x: auto;
}
.widget-demo-code-body code {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: .8125rem;
  line-height: 1.6;
  color: #e2e8f0;
  white-space: pre;
}

/* Phone frame */
.widget-demo-live {
  display: flex;
  justify-content: center;
}
.widget-demo-phone {
  position: relative;
  width: 380px;
  min-height: 680px;
  border-radius: 40px;
  border: 4px solid #1e293b;
  background: #fff;
  box-shadow: 0 25px 80px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.widget-demo-phone-notch {
  width: 120px;
  height: 28px;
  background: #1e293b;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  flex-shrink: 0;
}
.widget-demo-phone-screen {
  flex: 1;
  padding: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* Interactive booking widget (demo) */
.cnl-w {
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 16px 14px;
  background: #fff;
  color: #0f172a;
  font-size: 14px;
}
.cnl-w-head { text-align: center; margin-bottom: 16px; }
.cnl-w-title { font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.cnl-w-sub { font-size: 11px; color: #64748b; margin-top: 3px; }
.cnl-w-monthnav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.cnl-w-month { font-weight: 600; font-size: 13px; color: #0f172a; }
.cnl-w-navbtn {
  width: 30px; height: 30px; border-radius: 8px; border: 0;
  background: #f1f5f9; color: #0f172a;
  font-size: 18px; line-height: 1; padding: 0;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.cnl-w-navbtn:hover:not(:disabled) { background: #0284c7; color: #fff; }
.cnl-w-navbtn:disabled { opacity: .35; cursor: not-allowed; }
.cnl-w-legend {
  display: flex; gap: 12px; justify-content: flex-end;
  font-size: 10px; color: #64748b; margin-bottom: 8px;
}
.cnl-w-legend-item { display: inline-flex; align-items: center; gap: 4px; }
.cnl-w-dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.cnl-w-dot--free { background: #059669; }
.cnl-w-dot--booked { background: #dc2626; }
.cnl-w-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cnl-w-grid--labels { margin-bottom: 4px; }
.cnl-w-daylabel {
  text-align: center; font-size: 10px;
  color: #94a3b8; font-weight: 500;
  padding: 4px 0;
}
.cnl-w-day {
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  border: 0; border-radius: 8px; padding: 0;
  font-size: 12px; font-weight: 500; font-family: inherit;
  background: transparent; color: #0f172a;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, transform .1s ease;
}
.cnl-w-day--blank { background: transparent; pointer-events: none; }
.cnl-w-day--past { background: #f8fafc; color: #cbd5e1; cursor: not-allowed; }
.cnl-w-day--booked {
  background: #fee2e2; color: #dc2626;
  cursor: not-allowed; text-decoration: line-through;
}
.cnl-w-day--free { background: #ecfdf5; color: #059669; }
.cnl-w-day--free:hover { background: #0284c7; color: #fff; transform: scale(1.06); }
.cnl-w-day--in {
  background: #dbeafe !important; color: #0369a1 !important;
  border-radius: 0;
}
.cnl-w-day--start, .cnl-w-day--end {
  background: #0284c7 !important; color: #fff !important;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}
.cnl-w-foot { margin-top: auto; padding-top: 14px; }
.cnl-w-summary {
  font-size: 13px; color: #64748b;
  text-align: center; margin-bottom: 10px;
  min-height: 18px;
}
.cnl-w-summary strong { color: #0f172a; font-weight: 700; }
.cnl-w-summary--placeholder { color: #94a3b8; }
.cnl-w-summary--hint { color: #0369a1; font-weight: 500; }
.cnl-w-summary--done { color: #059669; font-weight: 600; }
.cnl-w-cta {
  display: block; width: 100%;
  background: #cbd5e1; color: #fff;
  padding: 12px 14px; border: 0; border-radius: 10px;
  font-size: 13px; font-weight: 600; font-family: inherit;
  cursor: not-allowed;
  transition: background .15s ease, transform .1s ease, box-shadow .15s ease;
}
.cnl-w-cta--active {
  background: #0284c7; cursor: pointer;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}
.cnl-w-cta--active:hover { background: #0369a1; transform: translateY(-1px); }
.cnl-w-cta--done {
  background: #059669 !important;
  cursor: default !important;
  box-shadow: none !important;
}
.cnl-w-foot-meta {
  text-align: center; margin-top: 10px;
  font-size: 9px; color: #94a3b8; letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Channel sync animation (after booking confirmed) */
.cnl-w-sync {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cnl-w-sync-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 500;
  color: #0f172a;
  background: #f1f5f9;
  border: 1px solid transparent;
  opacity: 0;
  transform: translateX(-12px);
  animation: cnlSyncRowIn 0.55s cubic-bezier(0.22, 0.9, 0.34, 1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes cnlSyncRowIn {
  0%   { opacity: 0; transform: translateX(-12px); background: #f1f5f9; border-color: transparent; }
  60%  { opacity: 1; transform: translateX(0); background: #e0f2fe; border-color: #bae6fd; }
  100% { opacity: 1; transform: translateX(0); background: #ecfdf5; border-color: #a7f3d0; }
}
.cnl-w-sync-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}
.cnl-w-sync-icon--booking { background: #003580; }
.cnl-w-sync-icon--booking::before { content: 'B'; }
.cnl-w-sync-icon--airbnb { background: #FF5A5F; }
.cnl-w-sync-icon--airbnb::before { content: '◯'; font-size: 12px; }
.cnl-w-sync-icon--direct { background: #0284c7; }
.cnl-w-sync-icon--direct::before { content: '⌂'; font-size: 12px; }
.cnl-w-sync-name { flex: 1; }
.cnl-w-sync-status {
  font-size: 11px;
  font-weight: 600;
  color: #059669;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  opacity: 0;
  animation: cnlSyncCheckIn 0.4s ease forwards;
  animation-delay: calc(var(--d, 0s) + 0.4s);
}
.cnl-w-sync-status::before {
  content: '✓';
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #059669;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
  text-align: center;
}
@keyframes cnlSyncCheckIn {
  0%   { opacity: 0; transform: scale(0.6); }
  60%  { opacity: 1; transform: scale(1.15); }
  100% { opacity: 1; transform: scale(1); }
}

@media (max-width: 600px) {
  .cnl-w { padding: 16px 12px 12px; }
  .cnl-w-grid { gap: 2px; }
  .cnl-w-day { font-size: 11px; }
}

/* Responsive */
@media (max-width: 900px) {
  .widget-demo-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .widget-demo-live {
    order: -1;
  }
  .widget-demo-phone {
    width: 340px;
    min-height: 600px;
  }
  .widget-demo-copy .section-title,
  .widget-demo-copy .section-desc {
    text-align: center;
  }
  .widget-demo-copy .section-label { justify-content: center; }
  .widget-demo-features { align-items: center; }
}
@media (max-width: 480px) {
  .widget-demo-phone {
    width: 100%;
    min-height: 560px;
    border-radius: 24px;
  }
  .widget-demo-phone-notch { width: 80px; height: 20px; border-radius: 0 0 10px 10px; }
}

/* ─── 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.coming-soon {
  opacity: 0.72;
  background: #fbfcfd;
}
.wizard-platform-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wizard-platform-pill {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.wizard-platform-pill.airbnb  { background: #E31C5F; }
.wizard-platform-pill.booking { background: #003580; }
.wizard-platform-pill.direct  {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  box-shadow: 0 1px 3px rgba(2, 132, 199, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.wizard-platform-pill.agoda   { background: #A20063; }
.wizard-platform-pill.expedia { background: #003B95; }
.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;
  flex-shrink: 0;
}
.wizard-platform-status.connected { color: var(--green); }
.wizard-platform-status.setup { color: var(--accent-dark); cursor: pointer; }
.wizard-platform-status.upcoming {
  color: var(--muted);
  background: #f1f5f9;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.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: #475569; }
.ta2 { background: #64748b; }
.ta3 { background: #334155; }
.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: 1fr;
  gap: 20px;
  align-items: start;
}
@media (min-width: 720px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
.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: #0f172a;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.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 > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  line-height: 1.6;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cta-note {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  margin-top: 20px;
}
.cta-section .btn-ghost:hover { color: white; background: rgba(255,255,255,0.1); }

/* ─── FOOTER ─── */
.site-footer {
  background: #0f172a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px 40px 0;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo-name {
  color: white;
}
.footer-trust {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
  display: grid;
  gap: 10px;
}
.footer-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.footer-trust li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent);
}
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--accent);
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}
.footer-cta:hover {
  background: #0369a1;
  transform: translateY(-1px);
}
.footer-cta svg {
  width: 16px;
  height: 16px;
}
.footer-secondary-cta {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
}
.footer-secondary-cta a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-secondary-cta a:hover {
  color: #fff;
}
.footer-origin {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
}
.footer-origin svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.footer-tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
  line-height: 1.65;
  max-width: 260px;
}
.footer-col .footer-heading {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  display: inline-block;
  padding: 4px 0;
  min-height: 44px;
  line-height: 36px;
}
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ─── 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 ─── */
/* Progressive enhancement: default to visible so content is readable even
   when JS / IntersectionObserver is unavailable, broken, or fails to fire
   (the IO at threshold 0.1 + rootMargin -40px has missed long elements like
   blog-listing grids). Entry animation runs via CSS keyframes — no JS
   required. The .visible class is kept as a legacy no-op alias. */
.reveal, .fade-up {
  opacity: 1;
  animation: chnl-fade-up 0.6s ease backwards;
}
@keyframes chnl-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.2s; }
.reveal-delay-3 { animation-delay: 0.3s; }
.reveal-delay-4 { animation-delay: 0.4s; }
.reveal.visible, .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .fade-up { animation: none; }
}

/* ─── MOBILE FULLSCREEN MENU ─── */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: white;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile.nav-mobile--open {
  display: flex;
  animation: mobilemenu-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes mobilemenu-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 64px;
  min-height: 64px;
  border-bottom: 1px solid var(--border);
}
.nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  color: var(--text);
  transition: background 0.2s;
}
.nav-close:hover { background: var(--bg); }
.nav-close svg { width: 20px; height: 20px; }
.nav-mobile-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 24px;
}
.nav-mobile-links a {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  padding: 12px 20px;
  border-radius: 12px;
  min-height: 56px;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-mobile-links a:hover,
.nav-mobile-links a:active {
  color: var(--accent);
}
.nav-mobile-cta {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 10px;
  border-top: 1px solid var(--border);
}
.nav-mobile-cta .btn-ghost {
  justify-content: center;
  text-align: center;
  font-size: 15px;
  min-height: 48px;
}
.nav-mobile-cta .btn-primary {
  justify-content: center;
  text-align: center;
  width: 100%;
  font-size: 15px;
  padding: 14px 24px;
}

/* ─── 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;
  flex-direction: column;
  gap: 5px;
  position: relative;
}
.burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s;
  transform-origin: center;
}
/* Open state: ≡ → ✕ */
.nav-burger[aria-expanded="true"] .burger-line-1 {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] .burger-line-2 {
  opacity: 0;
}
.nav-burger[aria-expanded="true"] .burger-line-3 {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 930px) {
  .nav { padding: 0 16px; background: rgba(255,255,255,0.95); }
  .nav-desktop { 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; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  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 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    padding: 20px 0;
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary-lg, .btn-outline-lg { justify-content: center; }
  .logos-row { gap: 20px; }
}

/* 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-top: env(safe-area-inset-top);
    padding-left: calc(40px + env(safe-area-inset-left));
    padding-right: calc(40px + env(safe-area-inset-right));
  }
}

/* ── Brand (wordmark wrapper in nav) ───────────────────────────────────── */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ═══════════════════════════════════════════
   MOLDOVA-ONLY ADDITIONS
   Components that do not exist on chanlify.fr. Appended in one block so a
   future diff against the .fr stylesheet stays readable.
   ═══════════════════════════════════════════ */

/* ─── Language switcher (MD | RU) ───
   Visible labels are MD and RU per operator ruling 2026-08-15. The BCP-47
   tags ro-MD / ru live on the hreflang and lang attributes, not on the chip. */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
}
.lang-opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  padding: 0.4375rem 0.625rem;
  border-radius: 999px;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s;
}
a.lang-opt:hover,
a.lang-opt:focus-visible { color: var(--text); background: var(--white); }
/* sky-700 not sky-600: --accent (#0284c7) fails AA for small text on white */
.lang-opt.is-current {
  background: var(--white);
  color: var(--accent-dark);
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  cursor: default;
}
.lang-opt.is-disabled { opacity: 0.4; cursor: not-allowed; }

.nav-mobile-lang { padding: 0 24px 8px; }
.footer-lang { margin-top: 1rem; }
.nav-legal-right { display: flex; align-items: center; gap: 0.75rem; margin-left: auto; }

@media (max-width: 900px) {
  /* The switcher must survive the mobile breakpoint that hides .nav-desktop —
     it is a trust signal, not a secondary control. */
  .nav-inner > .nav-desktop .lang-switcher { display: none; }
}

/* ─── Price block — lei primary, euro secondary ───
   Operator ruling 2026-08-15: a euro headline reads as a foreign product,
   a lei headline reads as a local price. Type scale enforces the hierarchy. */
.price-block { display: flex; flex-direction: column; gap: 0.375rem; }
.price-lei {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.1;
}
.price-amount { font-size: 3rem; }
/* Unit and period are one decided string ("lei/lună", "лей/мес.") joined to the
   amount by an &nbsp; in the template — no margin here, or the gap doubles. */
.price-unit   { font-size: 1.75rem; }
/* The VAT note carries a legal function (MD distance selling: the displayed
   total must be all-taxes-included on its face), so it is muted but never
   fine-print-small, and never visually detached from the figure above it. */
.price-vat    { font-size: 0.9375rem; color: var(--text-2); }
/* .price-eur intentionally REMOVED — operator ruling 2026-08-15 (second
   ruling): no euro conversion on customer-facing pages. A euro line re-anchors
   a local price to a foreign frame, and it was where the `≈` U+2248 font
   fallback defect lived. Do not restore the rule without restoring the ruling. */
/* Internal build guard. Unreachable while PRICING.monthlyLei is set; kept
   conspicuous so a future null can never quietly ship. */
.price-tbd {
  font-size: 1.25rem;
  color: var(--orange);
  border: 1px dashed var(--orange);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
}

/* ─── Placeholder markers ───
   Anything still carrying an operator-copy or asset TODO renders visibly.
   These rules exist so an unfinished page can never be mistaken for a
   finished one in a screenshot review. */
[data-todo] { outline: 1px dashed var(--orange); outline-offset: 2px; }
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  background: repeating-linear-gradient(45deg, var(--surface), var(--surface) 12px, var(--white) 12px, var(--white) 24px);
  border: 1px dashed var(--border-2);
  border-radius: var(--radius-lg);
  color: var(--muted);
  font-size: 0.875rem;
  text-align: center;
  padding: 1.5rem;
}


/* ═══════════════════════════════════════════
   MD — MOCKUP CAPTIONS
   ═══════════════════════════════════════════

   The .fr homepage fills its hero, its wizard and its phone with mockups of a
   FRENCH product interface. We may ship neither those (they would sell a
   localised product that does not exist) nor a fabricated Romanian/Russian
   dashboard for an interface that is still untranslated (open item #78).

   The mockups therefore stay — same components, same grid — but carry data
   rather than invented UI, and each one is captioned in our own page voice as
   an illustration. The caption is deliberately OUTSIDE the aria-hidden mock so
   a screen reader gets it too.

   Written mobile-first, like everything else added below the .fr fork.
   ═══════════════════════════════════════════ */
.mock-cap {
  margin-top: 14px;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-3);
  text-align: center;
}
/* The hero mock is absolutely-positioned decoration on wide screens; its
   caption must sit under the card, not float with it. */
.hero-visual .mock-cap { margin-top: 18px; }
.how-visual .mock-cap { margin-top: 12px; }
/* .widget-demo-live is a centring flex ROW in the .fr sheet; the caption would
   sit beside the phone. Stack it instead — the phone keeps its centring. */
.widget-demo-live { flex-direction: column; align-items: center; }
.widget-demo-live .mock-cap { margin-top: 16px; max-width: 380px; }

/* ═══════════════════════════════════════════
   MD — PRICE BLOCK INSIDE THE .fr PLAN CARD
   ═══════════════════════════════════════════

   The plan card is the .fr component (.plan-card.featured, unchanged). The
   number inside it is ours: the price partial owns lei formatting, the locale
   unit string and the VAT note, which is a legal display requirement for
   distance selling in Moldova and therefore not author-optional.

   These rules only re-scale the partial to the type sizes the .fr card was
   designed around (.plan-amount 44px), so the card looks the same on both
   sites while quoting a different currency in a different position — lei is a
   suffix, the euro was a prefix.
   ═══════════════════════════════════════════ */
.plan-card .price-block { align-items: center; gap: 0.25rem; }
.plan-card .price-lei { text-align: center; }
.plan-card .price-amount { font-size: 44px; letter-spacing: -2px; }
.plan-card .price-unit { font-size: 18px; font-weight: 600; color: var(--muted); }
.plan-card .price-vat { font-size: 0.8125rem; color: var(--muted); }
