/* ===========================
   KAEEKY — Styles
   B2B SaaS · Greek · Original layout
   =========================== */

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

:root {
  /* Kaeeky palette: navy ground, teal/mint accent, white surface */
  --navy:         #0A1628;
  --navy-2:       #0D1F3A;
  --navy-3:       #14264A;
  --navy-mid:     #0D1F3A;

  /* Teal accent — Kaeeky brand */
  --accent:       #00C8A0;
  --accent-bright:#1FDCB4;
  --accent-dark:  #009E7E;
  --accent-soft:  rgba(0,200,160,.14);

  /* CTAs use teal */
  --brand:        var(--accent);
  --brand-dark:   var(--accent-dark);
  --brand-light:  var(--accent-soft);

  /* Aliases kept for any v2 code still referring to "gold" — point them at teal */
  --gold:         var(--accent);
  --gold-bright:  var(--accent-bright);
  --gold-dark:    var(--accent-dark);

  --cream:        #F4F6F8;
  --cream-2:      #E5E9EE;
  --cream-soft:   #F7F9FB;

  --text:         #111827;
  --text-muted:   #5A6273;
  --text-on-dark: #FFFFFF;
  --text-on-dark-muted: rgba(255,255,255,.65);
  --border:       #E5E7EB;
  --bg:           #FFFFFF;
  --bg-subtle:    #F9FAFB;

  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --shadow-sm:    0 1px 6px rgba(0,0,0,.06);
  --shadow-md:    0 4px 20px rgba(0,0,0,.09);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.14);

  --font:         'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --max-w:        1200px;
  --nav-h:        76px;
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .18s, color .18s, border-color .18s, box-shadow .18s, transform .12s;
  white-space: nowrap;
}
.btn--primary { background: var(--brand); color: var(--navy); box-shadow: 0 4px 14px rgba(0,200,160,.32); }
.btn--primary:hover { background: var(--gold-bright); box-shadow: 0 6px 22px rgba(0,200,160,.45); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn--outline:hover { background: var(--brand-light); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.30); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255,255,255,.22); }
.btn--lg { padding: 14px 28px; font-size: 1rem; }

/* ===========================
   SHARED
   =========================== */

.label-tag {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}

/* ===========================
   NAV
   =========================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(10,22,40,.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,.95);
  border-bottom-color: rgba(229,231,235,.55);
  box-shadow: 0 1px 14px rgba(0,0,0,.07);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
}
/* Logo: white on dark nav, brand-blue when scrolled */
.nav__logo { font-family: var(--font-display); font-size: 1.45rem; font-weight: 800; color: #fff; letter-spacing: -.5px; flex-shrink: 0; transition: color .35s; }
.nav__logo em { color: var(--accent); font-style: normal; }
.nav.scrolled .nav__logo { color: var(--brand); }
.nav.scrolled .nav__logo em { color: var(--accent); }

.nav__links { display: flex; gap: 26px; margin-right: auto; }
.nav__links a { font-size: .86rem; font-weight: 500; color: rgba(255,255,255,.70); transition: color .15s; }
.nav__links a:hover { color: #fff; }
/* Current-page indicator (replaces inline style="color:var(--brand)") */
.nav__links a.nav__current { color: var(--accent); }
.nav.scrolled .nav__links a { color: var(--text-muted); }
.nav.scrolled .nav__links a:hover { color: var(--brand); }
.nav.scrolled .nav__links a.nav__current { color: var(--accent-dark); }

.nav__cta { display: flex; gap: 10px; }
/* Outline btn adapts to dark/light nav */
.nav .btn--outline { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.35); }
.nav .btn--outline:hover { background: rgba(255,255,255,.12); color: #fff; }
.nav.scrolled .btn--outline { color: var(--brand); border-color: var(--brand); }
.nav.scrolled .btn--outline:hover { background: var(--brand-light); color: var(--brand); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: auto;
  -webkit-tap-highlight-color: transparent;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease, background .35s ease;
  transform-origin: center;
}
.nav.scrolled .nav__hamburger span { background: var(--text); }

/* Hamburger → X animation when menu is open */
.nav.is-open .nav__hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav.is-open .nav__hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Language toggle ── */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 100px;
  padding: 5px 13px;
  cursor: pointer;
  font-family: var(--font);
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  color: rgba(255,255,255,.45);
  transition: background .18s, border-color .18s;
  flex-shrink: 0;
}
.lang-toggle:hover { background: rgba(255,255,255,.15); }
.lang-toggle__opt { transition: color .15s; }
.lang-toggle__opt.active { color: #fff; }
.lang-toggle__sep { color: rgba(255,255,255,.2); font-weight: 400; }
.nav.scrolled .lang-toggle {
  background: rgba(0,0,0,.05);
  border-color: rgba(0,0,0,.12);
  color: var(--text-muted);
}
.nav.scrolled .lang-toggle:hover { background: rgba(0,0,0,.09); }
.nav.scrolled .lang-toggle__opt.active { color: var(--brand); }
.nav.scrolled .lang-toggle__sep { color: rgba(0,0,0,.15); }

/* Mobile panel — lives inside .nav, absolutely below the bar */
.nav__mobile-panel {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,.11);
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}
.nav.is-open .nav__mobile-panel { max-height: 480px; }

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  padding: 8px 24px 4px;
}
.nav__mobile-links li { border-bottom: 1px solid var(--border); }
.nav__mobile-links li:last-child { border-bottom: none; }
.nav__mobile-links a {
  display: block;
  font-size: .98rem;
  font-weight: 500;
  color: var(--text);
  padding: 15px 0;
  transition: color .15s;
}
.nav__mobile-links a:hover { color: var(--brand); }

.nav__mobile-cta {
  display: flex;
  flex-direction: column;
  padding: 16px 24px 28px;
  gap: 10px;
}
.nav__mobile-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 13px 20px;
  font-size: .95rem;
}

/* ===========================
   HERO — two-column
   =========================== */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0a3060 100%);
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1500673922987-e212871fec22?w=1600&q=60');
  background-size: cover; background-position: center;
  opacity: .06; pointer-events: none;
}

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,22,40,.96) 40%, rgba(10,22,40,.45) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative; z-index: 2;
  padding: 80px 24px 80px 64px;
  max-width: 580px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  font-weight: 800; line-height: 1.04;
  color: #fff; letter-spacing: -1.8px;
  margin-bottom: 20px;
}
/* Hero title shimmer (same system as demo.html) */
.hero__title .shimmer {
  display: inline;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.5) 0%,
    rgba(255,255,255,.5) 32%,
    #fff 50%,
    rgba(255,255,255,.5) 68%,
    rgba(255,255,255,.5) 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer-sweep 3.5s linear infinite;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(
    90deg,
    rgba(0,200,160,.55) 0%,
    rgba(0,200,160,.55) 28%,
    rgba(31,220,180,1) 50%,
    rgba(0,200,160,.55) 72%,
    rgba(0,200,160,.55) 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer-sweep 3.5s linear infinite;
}
@keyframes shimmer-sweep {
  0%   { background-position: 250% center; }
  100% { background-position: -250% center; }
}

.hero__sub {
  font-size: 1.02rem; color: rgba(255,255,255,.75);
  max-width: 460px; margin-bottom: 34px; line-height: 1.72;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.hero__note { font-size: .76rem; color: rgba(255,255,255,.38); }

/* dashboard mockup */
.hero__mockup {
  position: relative; z-index: 2;
  padding: 40px 40px 40px 0;
  display: flex; align-items: center; justify-content: center;
}

.mockup-browser {
  width: 100%; max-width: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.06);
  background: #1c2333;
}
.mockup-browser__bar {
  background: #252d3d; padding: 12px 16px;
  display: flex; gap: 7px; align-items: center;
}
.mockup-browser__bar span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.18); }
.mockup-browser__bar span:first-child { background: #ff5f57; }
.mockup-browser__bar span:nth-child(2) { background: #febc2e; }
.mockup-browser__bar span:nth-child(3) { background: #28c840; }

.dash-preview { display: flex; min-height: 290px; background: #f8fafc; }

.dash-preview__sidebar {
  width: 110px; flex-shrink: 0;
  background: var(--navy); padding: 18px 0;
}
.dash-preview__logo { font-size: 1.1rem; font-weight: 800; color: var(--accent); padding: 0 14px 14px; }
.dash-preview__sidebar li {
  font-size: .68rem; font-weight: 500; color: rgba(255,255,255,.45);
  padding: 7px 14px; border-left: 2px solid transparent;
}
.dash-preview__sidebar li.active { color: #fff; background: rgba(255,255,255,.07); border-left-color: var(--accent); }

.dash-preview__main { flex: 1; padding: 16px 14px; display: flex; flex-direction: column; gap: 14px; }

.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.dash-stat {
  background: #fff; border-radius: var(--radius-sm); padding: 10px 9px;
  border: 1px solid var(--border); display: flex; flex-direction: column; gap: 2px;
}
.dash-stat__num { font-size: 1rem; font-weight: 800; color: var(--text); letter-spacing: -.4px; }
.dash-stat__label { font-size: .58rem; color: var(--text-muted); font-weight: 500; }

.dash-reservations { background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--border); overflow: hidden; }
.dash-res-row {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 10px; font-size: .68rem; border-bottom: 1px solid var(--border);
}
.dash-res-row:last-child { border-bottom: none; }
.dash-res-row span:nth-child(2) { flex: 1; color: var(--text); }
.dash-res-status { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dash-res-status--confirmed { background: var(--accent); }
.dash-res-status--pending   { background: #f59e0b; }
.dash-res-amount { font-weight: 700; color: var(--text); }

/* ===========================
   FEATURE ROWS — alternating full-width
   The core layout: NO card grids.
   Each feature is a two-column horizontal band.
   =========================== */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.feature-row--reverse .feature-row__text  { order: 2; }
.feature-row--reverse .feature-row__visual { order: 1; }
.feature-row--tinted { background: var(--bg-subtle); }

.feature-row__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px;
}

.feature-row__num {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--brand);
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}

.feature-row__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}

.feature-row__text p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.75;
}

.feature-row__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 64px;
}

/* Visual column background for non-tinted rows */
.feature-row:not(.feature-row--tinted) .feature-row__visual {
  background: var(--bg-subtle);
}

/* ---- Embed preview (feature 1) ---- */

.embed-preview {
  width: 100%;
  max-width: 380px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  background: #fff;
}

.embed-preview__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}

.embed-preview__dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.embed-preview__dot:nth-child(1) { background: #ff5f57; }
.embed-preview__dot:nth-child(2) { background: #febc2e; }
.embed-preview__dot:nth-child(3) { background: #28c840; }

.embed-preview__url {
  font-size: .7rem;
  color: var(--text-muted);
  background: #fff;
  border: 1px solid var(--border);
  padding: 3px 12px;
  border-radius: 100px;
  margin-left: 6px;
}

.embed-preview .widget-demo {
  border: none;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
}

/* ---- Widget demo (feature 1) ---- */

.widget-demo {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.widget-demo__header {
  padding: 18px 22px 12px;
  font-size: .9rem;
}

.widget-demo__calendar {
  padding: 0 22px 12px;
}

.cal-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 4px;
  text-align: center;
}

.cal-head span {
  font-size: .65rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 4px 0;
}

.cal-row span {
  font-size: .78rem;
  font-weight: 500;
  padding: 8px 0;
  border-radius: 6px;
  cursor: pointer;
  transition: background .15s;
}
.cal-row span:hover { background: var(--bg-subtle); }
.cal-past { color: #D1D5DB; pointer-events: none; }
.cal-booked { color: #D1D5DB; text-decoration: line-through; pointer-events: none; }
.cal-selected { background: var(--brand) !important; color: #fff !important; border-radius: 6px; }

.widget-demo__footer {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
}
.widget-demo__price { font-weight: 800; color: var(--text); font-size: .95rem; }

/* ---- Fleet panel (feature 2) ---- */

.fleet-panel {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.fleet-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
}
.fleet-panel__header strong { font-size: .9rem; color: var(--text); }

.fleet-panel__count {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
}

.fleet-panel__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.fleet-panel__row:last-child { border-bottom: none; }
.fleet-panel__row:hover { background: var(--bg-subtle); }

.fleet-panel__info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fleet-panel__info strong { font-size: .88rem; display: block; margin-bottom: 2px; color: var(--text); }
.fleet-panel__info small { font-size: .72rem; color: var(--text-muted); }

.fleet-panel__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.fleet-panel__dot--active { background: var(--accent); }
.fleet-panel__dot--paused { background: #f59e0b; }

.fleet-panel__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fleet-panel__price {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  min-width: 36px;
  text-align: right;
}

.fleet-badge {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
  width: fit-content;
  margin-top: 2px;
}
.fleet-badge--active { background: rgba(0,200,160,.14); color: var(--accent-dark); }
.fleet-badge--paused { background: rgba(245,158,11,.14); color: #b45309; }

/* ---- Dashboard feed (feature 3) ---- */

.dash-feed {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.dash-feed__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
}
.dash-feed__header strong { font-size: .9rem; color: var(--text); }

.dash-feed__badge {
  font-size: .7rem;
  font-weight: 700;
  background: var(--brand);
  color: #fff;
  padding: 3px 10px;
  border-radius: 100px;
}

.dash-feed .notif-demo {
  border: none;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  max-width: none;
}

/* ---- Notification demo (feature 3) ---- */

.notif-demo {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.notif {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.notif:last-child { border-bottom: none; }
.notif:hover { background: var(--bg-subtle); }

.notif__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.notif__dot--green  { background: var(--accent); }
.notif__dot--blue   { background: var(--brand); }
.notif__dot--orange { background: #f59e0b; }

.notif div { flex: 1; }
.notif strong { font-size: .85rem; display: block; margin-bottom: 2px; }
.notif p { font-size: .78rem; color: var(--text-muted); line-height: 1.5; }
.notif__time { font-size: .7rem; color: var(--text-muted); white-space: nowrap; margin-top: 3px; }

/* ===========================
   PROCESS / TIMELINE
   Vertical line, not cards
   =========================== */

.process {
  padding: 140px 0;
  background: var(--bg);
}

.process__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 72px;
}

.timeline {
  position: relative;
  padding-left: 48px;
  max-width: 640px;
}

/* vertical line */
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 17px;
  width: 2px;
  background: var(--border);
}

.timeline__item {
  position: relative;
  padding-bottom: 72px;
}
.timeline__item:last-child { padding-bottom: 0; }

.timeline__marker {
  position: absolute;
  left: -48px;
  top: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.timeline__content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}

.timeline__content p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* ===========================
   WEBSITE BUILD — cinematic
   =========================== */

.site-build {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
}

.site-build__bg {
  position: absolute; inset: 0;
  background-image: url('assets/photos/divider-idra.jpg');
  background-size: cover;
  background-position: center 60%;
}

.site-build__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,22,40,.92) 0%, rgba(10,22,40,.78) 55%, rgba(10,22,40,.48) 100%);
}

.site-build__content {
  position: relative;
  z-index: 1;
  max-width: 540px;
  color: #fff;
}

.site-build__content .label-tag {
  background: rgba(0,200,160,.18);
  color: var(--gold-bright);
  border: 1px solid rgba(0,200,160,.4);
}

.site-build__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.08;
  margin-bottom: 18px;
}

.site-build__content > p {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin-bottom: 32px;
}

.site-build__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.site-build__list li {
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding-left: 24px;
  position: relative;
}
.site-build__list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 767px) {
  .site-build__content .btn {
    display: block;
    text-align: center;
  }
}

/* ===========================
   FINAL CTA
   =========================== */

.final-cta {
  position: relative;
  padding: 140px 0;
  background: var(--navy);
  text-align: center;
  overflow: hidden;
}

.final-cta__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,200,160,.22) 0%, rgba(244,233,216,.06) 45%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.final-cta__inner {
  position: relative; z-index: 1;
}

.final-cta__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,200,160,.16); color: var(--gold-bright);
  border: 1px solid rgba(0,200,160,.4);
  padding: 6px 18px; border-radius: 100px;
  font-size: .72rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; margin-bottom: 28px;
}

.final-cta__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.final-cta__inner h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold-bright) 0%, var(--cream) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.final-cta__inner > p {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 44px;
  max-width: 460px;
  margin-left: auto; margin-right: auto;
  line-height: 1.75;
}

.final-cta__btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brand);
  color: var(--navy);
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  letter-spacing: -.2px;
  text-decoration: none;
  box-shadow: 0 0 0 0 rgba(0,200,160,.5);
  transition: background .18s, transform .15s, box-shadow .18s;
  margin-bottom: 20px;
}
.final-cta__btn span { transition: transform .15s; }
.final-cta__btn:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,200,160,.45);
}
.final-cta__btn:hover span { transform: translateX(4px); }

.final-cta__note {
  font-size: .78rem;
  color: rgba(255,255,255,.28);
  display: block;
}

/* ===========================
   FOOTER
   =========================== */

.footer { background: var(--navy); color: rgba(255,255,255,.60); }

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 80px;
  padding-top: 80px; padding-bottom: 80px;
}

.footer__logo { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 10px; letter-spacing: -.5px; }
.footer__logo em { color: var(--accent); font-style: normal; }
.footer__brand p { font-size: .85rem; line-height: 1.65; max-width: 220px; }
.footer__company { margin-top: 8px; font-size: .78rem; color: rgba(255,255,255,.40); }

.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__links strong { display: block; color: #fff; font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 14px; }
.footer__links ul { display: flex; flex-direction: column; gap: 9px; }
.footer__links a { font-size: .85rem; color: rgba(255,255,255,.50); transition: color .15s; }
.footer__links a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
  text-align: center;
  font-size: .76rem;
  color: rgba(255,255,255,.28);
}

.footer__social {
  margin-top: 14px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,.28);
  transition: color .2s;
}

.footer__social a:hover {
  color: rgba(255,255,255,.75);
}

/* ===========================
   FAQ PAGE (shared styles)
   =========================== */

.page-header {
  padding: 140px 0 60px;
  background: var(--navy);
  color: #fff;
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.8px;
  margin-bottom: 10px;
}
.page-header p { font-size: 1rem; color: rgba(255,255,255,.65); max-width: 480px; }

.faq-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.faq-section:last-of-type { border-bottom: none; }

.faq-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.4px;
  color: var(--text);
  margin-bottom: 24px;
}

/* FAQ accordion */
.faq-item {
  max-width: 720px;
  border-bottom: 1px solid var(--border);
}
.faq-item:first-of-type { border-top: 1px solid var(--border); }

.faq-item summary {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  padding: 18px 32px 18px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color .15s;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform .2s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item summary:hover { color: var(--brand); }

.faq-item .faq-answer {
  padding: 0 0 20px;
}

.faq-item p, .faq-item ul {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item ul {
  padding-left: 20px;
  margin-top: 8px;
}
.faq-item li {
  list-style: disc;
  margin-bottom: 6px;
}

.terms-section {
  padding: 72px 0;
}

.terms-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.4px;
  color: var(--text);
  margin-bottom: 28px;
}

.terms-section h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 28px;
  margin-bottom: 10px;
}

.terms-section p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 14px;
}

/* ===========================
   BLUR FADE — Scroll entrance animation
   Ported from 21st.dev / MagicUI
   =========================== */

[data-fade] {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(8px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1), filter .7s ease;
}
[data-fade].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
/* Stagger delays */
[data-fade-delay="1"] { transition-delay: .08s; }
[data-fade-delay="2"] { transition-delay: .18s; }
[data-fade-delay="3"] { transition-delay: .28s; }
[data-fade-delay="4"] { transition-delay: .38s; }
[data-fade-delay="5"] { transition-delay: .48s; }
[data-fade-delay="6"] { transition-delay: .58s; }

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__content { padding: 80px 24px 48px; max-width: 100%; }
  .hero__mockup { padding: 0 24px 80px; justify-content: flex-start; }

  .feature-row { grid-template-columns: 1fr; min-height: auto; }
  .feature-row__text { padding: 64px 24px 32px; }
  .feature-row__visual { padding: 0 24px 64px; justify-content: flex-start; }
  .feature-row--reverse .feature-row__text  { order: 1; }
  .feature-row--reverse .feature-row__visual { order: 2; }
}

@media (max-width: 768px) {
  .nav__inner { padding: 0 16px; gap: 10px; }
  .nav__links { display: none; }
  /* Keep Login (outline) visible on mobile; hide the bulkier Demo CTA — it lives in the mobile menu */
  .nav__cta { display: flex; gap: 6px; margin-left: auto; }
  .nav__cta .btn--primary { display: none; }
  .nav__cta .btn--outline { padding: 7px 14px; font-size: .8rem; }
  .nav__hamburger { display: flex; margin-left: 0; }
  .lang-toggle { padding: 5px 10px; font-size: .68rem; }
  .nav__mobile-panel { display: flex; }

  .widget-demo, .fleet-demo, .notif-demo { width: 100%; max-width: 380px; }

  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__links { grid-template-columns: 1fr 1fr; }

  .cta-form { flex-direction: column; align-items: center; }
  .cta-form input[type="email"] { width: 100%; max-width: 340px; }
}

@media (max-width: 480px) {
  .footer__links { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: 1fr 1fr; }
}

/* ===========================
   SOCIAL PROOF
   =========================== */

.social-proof {
  padding: 100px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 72px;
}

.proof-stat {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.proof-stat__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -1.5px;
  line-height: 1;
}

.proof-stat__label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: box-shadow .2s;
}
.testimonial:hover { box-shadow: var(--shadow-md); }

.testimonial__quote {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
}

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

.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  font-size: .78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial__author strong {
  display: block;
  font-size: .88rem;
  color: var(--text);
  margin-bottom: 2px;
}

.testimonial__author span {
  font-size: .76rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .proof-stats { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
}

/* ===========================
   ACCESSIBILITY
   =========================== */

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .shimmer,
  .hero__title em {
    animation: none;
    background-position: 0 center;
  }
  [data-fade] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* Ensure content is visible if JS is disabled */
@media (scripting: none) {
  [data-fade] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* ===========================
   v2 — MARITIME PREMIUM ADDITIONS
   Photographic hero, real-screenshot frames,
   gold eyebrow labels, photo dividers,
   live-demo iframe + pricing wedge.
   =========================== */

/* Hero v2 — single-column photographic + navy gradient overlay */
.hero {
  position: relative;
  isolation: isolate;
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(10,22,40,.55) 0%, rgba(10,22,40,.78) 60%, rgba(10,22,40,.96) 100%),
    var(--hero-image, none) center / cover no-repeat,
    var(--navy);
  color: var(--cream);
}
.hero::before { display: none; }
.hero__overlay { display: none; }
.hero__content {
  max-width: 780px;
  padding: 80px 24px 96px;
  margin: 0 auto;
}
.hero__title,
.hero__sub,
.hero__note { color: var(--cream); }
.hero__title { letter-spacing: -1.5px; font-weight: 700; }
.hero__sub {
  color: rgba(244,233,216,.82);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.08rem;
}
.hero__note { color: rgba(244,233,216,.55); }
.hero__actions { justify-content: center; }
.hero__mockup { display: none !important; }

/* Big animated KAEEKY brand wordmark — page-load reveal */
.hero__brand {
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.6rem, 11.5vw, 8rem);
  line-height: .9;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 36px;
  user-select: none;
}
.hero__brand-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(36px) scale(.92);
  animation: kaeeky-letter-in .85s cubic-bezier(.2,.7,.2,1) forwards;
  text-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.hero__brand-letter--accent { color: var(--accent); }
/* Stagger letters; the accent pair drifts in slightly later for a "punch" */
.hero__brand-letter:nth-child(1) { animation-delay: .10s; }
.hero__brand-letter:nth-child(2) { animation-delay: .17s; }
.hero__brand-letter:nth-child(3) { animation-delay: .24s; }
.hero__brand-letter:nth-child(4) { animation-delay: .31s; }
.hero__brand-letter:nth-child(5) { animation-delay: .46s; }
.hero__brand-letter:nth-child(6) { animation-delay: .53s; }
@keyframes kaeeky-letter-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__brand-letter { animation: none; opacity: 1; transform: none; }
}
@media (max-width: 480px) {
  .hero__brand { margin-bottom: 24px; }
}

/* hero shimmer still uses cream/white but on photo bg the white reads clearly */
.hero__title .shimmer {
  background: linear-gradient(
    90deg,
    rgba(244,233,216,.7) 0%,
    rgba(244,233,216,.7) 28%,
    #fff 50%,
    rgba(244,233,216,.7) 72%,
    rgba(244,233,216,.7) 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@media (max-width: 720px) {
  .hero__content { padding: 60px 20px 80px; }
}

/* Eyebrow label — small gold uppercase, used above every section heading */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow--on-light { color: var(--gold-dark); }

/* Section base for feature rows (override of feature-row tinted bg) */
.feature-row--tinted { background: var(--cream-soft); }

/* Real screenshot frame — replaces fake CSS mockups ------------- */
.screenshot-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 1px 2px rgba(10,22,40,.06),
    0 12px 32px rgba(10,22,40,.16),
    0 32px 64px rgba(10,22,40,.10);
  border: 1px solid rgba(10,22,40,.06);
  transition: transform .4s cubic-bezier(.2,.6,.2,1), box-shadow .4s;
}
.screenshot-frame:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 2px rgba(10,22,40,.06),
    0 18px 44px rgba(10,22,40,.22),
    0 40px 80px rgba(10,22,40,.14);
}
.screenshot-frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* Photo divider — full-bleed thin band between sections */
.photo-divider {
  position: relative;
  height: 240px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.photo-divider::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,.25) 0%, rgba(10,22,40,.55) 100%);
}
@media (max-width: 720px) {
  .photo-divider { height: 180px; }
}

/* Live booking demo section — navy w/ iframe in fake browser chrome */
.live-demo {
  background: var(--navy);
  color: var(--cream);
  padding: 110px 0 130px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.live-demo__head { max-width: 760px; margin: 0 auto 56px; padding: 0 24px; }
.live-demo h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.08;
  margin-bottom: 18px;
  color: var(--cream);
}
.live-demo h2 em {
  font-style: normal;
  color: var(--gold);
}
.live-demo p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(244,233,216,.72);
  max-width: 560px;
  margin: 0 auto;
}

.live-frame {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.live-frame__shell {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(244,233,216,.08),
    0 30px 80px rgba(0,0,0,.55),
    0 8px 32px rgba(0,0,0,.45);
}
.live-frame__bar {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(180deg, #1c2638, #141c2a);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.live-frame__dots { display: flex; gap: 6px; }
.live-frame__dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.live-frame__dots span:nth-child(1) { background: #FF5F57; }
.live-frame__dots span:nth-child(2) { background: #FFBD2E; }
.live-frame__dots span:nth-child(3) { background: #28C840; }
.live-frame__url {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(255,255,255,.05);
  border-radius: 8px;
  padding: 6px 14px;
  color: rgba(244,233,216,.55);
  font-size: .78rem;
  font-family: var(--font);
  max-width: 380px; margin: 0 auto;
}
.live-frame__url::before {
  content: '';
  width: 12px; height: 12px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M12 1a4 4 0 0 0-4 4v4H6a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-9a2 2 0 0 0-2-2h-2V5a4 4 0 0 0-4-4Zm-2 4a2 2 0 0 1 4 0v4h-4V5Z' fill='%23000'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M12 1a4 4 0 0 0-4 4v4H6a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-9a2 2 0 0 0-2-2h-2V5a4 4 0 0 0-4-4Zm-2 4a2 2 0 0 1 4 0v4h-4V5Z' fill='%23000'/></svg>") center / contain no-repeat;
  opacity: .55;
}
.live-frame__viewport {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #f4f6fa;
  overflow: hidden;
}
.live-frame__viewport img {
  display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center;
}
.live-frame__viewport iframe {
  border: 0;
  width: 100%; height: 100%;
}
/* Single CTA under the iframe shell — replaces the prior cover/play/hint trio */
.live-frame__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 36px auto 0;
  padding: 14px 30px;
  background: var(--accent);
  color: var(--navy);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.2px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0,200,160,.40);
  transition: transform .15s, box-shadow .15s, background .15s;
}
.live-frame__cta:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,200,160,.55);
}
.live-frame__cta span:last-child { transition: transform .15s; }
.live-frame__cta:hover span:last-child { transform: translateX(4px); }
.live-frame { text-align: center; }

@media (max-width: 720px) {
  .live-demo { padding: 72px 0 80px; }
  .live-demo__head { margin-bottom: 36px; padding: 0 20px; }
  .live-frame { padding: 0 16px; }
  /* Let the modal screenshot keep its natural aspect — no crop on phones */
  .live-frame__viewport {
    aspect-ratio: auto;
    height: auto;
  }
  .live-frame__viewport img {
    height: auto;
    object-fit: contain;
    object-position: top center;
  }
  .live-frame__bar { padding: 10px 12px; gap: 8px; }
  .live-frame__url { font-size: .68rem; padding: 5px 10px; max-width: none; }
  .live-frame__url::before { width: 10px; height: 10px; }
  .live-frame__dots span { width: 8px; height: 8px; }
  .live-frame__cta {
    margin-top: 24px;
    padding: 12px 22px;
    font-size: .92rem;
    max-width: calc(100% - 16px);
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }
}
@media (max-width: 420px) {
  .live-frame__url { font-size: .62rem; }
}

/* Pricing wedge banner — light cream surface so it breaks up dark sections */
.pricing-wedge {
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,200,160,.06) 0%, transparent 70%),
    var(--bg);
  color: var(--text);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-wedge__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.pricing-wedge .eyebrow { color: var(--accent-dark); }
.pricing-wedge h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 18px;
}
.pricing-wedge h2 em {
  font-style: normal;
  color: var(--accent-dark);
}
.pricing-wedge p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}
.pricing-wedge p strong { color: var(--text); font-weight: 600; }
.pricing-wedge .btn--primary {
  font-size: 1rem;
  padding: 14px 30px;
}

/* (removed redundant .see-live — consolidated into single .live-frame__cta) */

/* Adjustments for feature rows that now hold real screenshots ---- */
.feature-row__visual .screenshot-frame { max-width: 600px; margin: 0 auto; }

/* When nav is over a navy hero, keep transparent style */
.nav__logo em { color: var(--gold); }
.nav.scrolled .nav__logo em { color: var(--gold-dark); }

/* Active section in nav uses gold */
.nav__links a:hover { color: var(--gold-bright); }
.nav.scrolled .nav__links a:hover { color: var(--gold-dark); }
.nav.scrolled .nav__logo { color: var(--navy); }

/* Lang toggle accent → gold */
.nav.scrolled .lang-toggle__opt.active { color: var(--gold-dark); }

