/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #007388;
  --primary-dark: #005a6b;
  --primary-light: #ddf2f5;
  --accent: #FF7300;
  --success: #10b981;
  --danger: #ef4444;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: 1.15rem; font-weight: 700; }
p  { color: var(--gray-500); }

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header p { margin-top: 12px; font-size: 1.1rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all .18s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,115,136,.3); }

.btn--ghost { background: transparent; color: var(--gray-700); border-color: var(--gray-200); }
.btn--ghost:hover { background: var(--gray-100); }

.btn--outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--outline:hover { background: var(--primary-light); }

.btn--white { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn--white:hover { background: var(--gray-100); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

.btn--sm  { padding: 8px 16px; font-size: 0.875rem; }
.btn--lg  { padding: 16px 28px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

.btn__icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon { font-size: 1.4rem; }
.nav__logo-img { height: 48px; width: auto; display: block; }

.nav__links {
  display: flex;
  gap: 8px;
  list-style: none;
  margin-left: auto;
}

.nav__links a {
  color: var(--gray-500);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav__links a:hover { color: var(--gray-900); background: var(--gray-100); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 15, 20, 0.92) 0%,
    rgba(0, 25, 35, 0.78) 42%,
    rgba(0, 15, 20, 0.18) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 120px 24px 100px;
  width: 100%;
}

.hero__content {
  max-width: 560px;
  text-align: left;
}

.hero__content * { text-align: left; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.65); }
}

.hero__headline { margin-bottom: 20px; color: var(--white); }
.hero__auto { display: block; }
.hero__auto--teal   { color: var(--primary); }
.hero__auto--orange { color: var(--accent); }

.hero__sub { font-size: 1.1rem; max-width: 480px; margin-bottom: 36px; color: rgba(255,255,255,.72); line-height: 1.7; }

.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.hero__launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero__signup-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  max-width: 520px;
}

.hero__email-input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: none;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--gray-900);
  background: rgba(255,255,255,.95);
  outline: none;
}

.hero__email-input::placeholder { color: var(--gray-400); }
.hero__email-input:focus { box-shadow: 0 0 0 3px rgba(255,115,0,.4); }

.hero__signup-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
}

.btn--accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--accent:hover { background: #e06600; border-color: #e06600; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,115,0,.4); }

.btn--hero-ghost {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.btn--hero-ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.7); }

.hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.55);
  font-size: 0.82rem;
  font-weight: 500;
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.55);
}

.hero__trust svg { width: 14px; height: 14px; flex-shrink: 0; }
.trust__dot { color: rgba(255,255,255,.3); }

/* ===== PHONE MOCKUP ===== */
.hero__phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 260px;
  background: #111;
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    0 40px 80px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,255,255,.08),
    inset 0 0 0 1px rgba(255,255,255,.05);
  position: relative;
}

.phone-notch {
  width: 80px;
  height: 24px;
  background: #111;
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen {
  background: var(--white);
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

.app-header {
  padding: 36px 16px 12px;
  border-bottom: 1px solid var(--gray-100);
}

.app-logo {
  height: 22px;
  width: auto;
}

.app-content {
  padding: 16px 16px 12px;
  flex: 1;
}

.app-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.25;
  margin-bottom: 6px;
}

.app-sub {
  font-size: 0.72rem;
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.5;
}

.app-field {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.75rem;
}

.app-field__icon { color: var(--gray-400); }
.app-field__icon svg { width: 14px; height: 14px; }
.app-field__label { color: var(--gray-500); font-weight: 500; }
.app-field__value { color: var(--gray-700); font-weight: 600; }

.app-cta {
  display: block;
  margin-top: 16px;
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
}

.app-nav {
  display: flex;
  justify-content: space-around;
  padding: 10px 8px 14px;
  border-top: 1px solid var(--gray-100);
}

.app-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--gray-400);
}

.app-nav__item svg { width: 18px; height: 18px; }
.app-nav__item--active { color: var(--primary); }

/* ===== KPI STRIP ===== */
.kpi-strip {
  background: transparent;
  padding: 0 0 60px;
  margin-top: -56px;
  position: relative;
  z-index: 10;
}

.kpi-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  padding: 36px 40px;
}

.kpi-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.kpi-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kpi-icon svg { width: 40px; height: 40px; }

.kpi-icon--teal   { color: var(--primary); }
.kpi-icon--orange { color: var(--accent); }

.kpi-text {
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.kpi-body strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 6px;
  line-height: 1.3;
}

.kpi-body p {
  font-size: 0.84rem;
  color: var(--gray-500);
  line-height: 1.55;
}

.kpi-divider {
  width: 1px;
  height: 64px;
  background: var(--gray-200);
  margin: 0 40px;
}


/* ===== LOGOS ===== */
.logos {
  padding: 48px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.logos__label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-300);
  margin-bottom: 24px;
}

.logos__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-item {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: -0.01em;
}

/* ===== PROBLEM ===== */
.problem { padding: 56px 0; background: var(--gray-100); }


/* Two cards */
.problem__cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-bottom: 24px;
}

.prob-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  padding: 32px;
}
.prob-card--bad  { border-color: var(--accent); }
.prob-card--good { border-color: var(--primary); }

.prob-card__header {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.55rem; font-weight: 800;
  margin-bottom: 16px;
}
.prob-card--bad  .prob-card__header { color: var(--accent); }
.prob-card--good .prob-card__header { color: var(--primary); }

.prob-card__icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.prob-card__icon--bad  { color: var(--accent); }
.prob-card__icon--good { color: var(--primary); }

.prob-card__divider { height: 1px; background: var(--gray-200); margin-bottom: 24px; }
.prob-card--good .prob-card__divider { background: var(--primary-light); }

/* List */
.prob-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.prob-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; font-weight: 500; color: var(--gray-700); }

.prob-icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.prob-icon--bad  { color: var(--accent); border: 1.5px solid var(--accent); }
.prob-icon--good { color: var(--primary); border: 1.5px solid var(--primary); }

/* Stats strip */
.problem__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden;
}
.prob-stat {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 24px 20px; border-right: 1px solid var(--gray-200);
}
.prob-stat:last-child { border-right: none; }
.prob-stat__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.prob-stat strong { display: block; font-size: 1.4rem; font-weight: 900; color: var(--gray-900); line-height: 1; }
.prob-stat span   { display: block; font-size: 0.82rem; font-weight: 600; color: var(--gray-700); margin-top: 3px; }
.prob-stat small  { display: block; font-size: 0.75rem; color: var(--gray-500); margin-top: 2px; }

/* ===== PRODUCT SECTION ===== */
.product-section { padding: 56px 0 100px; background: var(--white); }

.headline-dot { color: inherit; }

/* Product highlight strip */
.product-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.product-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all .2s ease;
}
.product-highlight:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-highlight__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.product-highlight strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.product-highlight p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.5; margin: 0; }

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

.product-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 680px;
  margin: 0 auto;
}

.text-primary { color: var(--primary); font-weight: 800; }

.product-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.product-row--2 { grid-template-columns: 1fr 1fr; }
.product-row--3 { grid-template-columns: 1fr 1fr 1fr; }

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all .2s ease;
}

.product-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-row--2 .product-icon { width: 100px; height: 100px; border-radius: 20px; }
.product-icon svg { width: 52px; height: 52px; }
.product-row--2 .product-icon svg { width: 60px; height: 60px; }

.product-icon--teal   { color: var(--primary); }
.product-icon--orange { color: var(--accent); }

.product-card__body h3 { font-size: 1rem; margin-bottom: 8px; }
.product-card__body p  { font-size: 0.875rem; line-height: 1.6; color: var(--gray-500); }

.product-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 14px;
  letter-spacing: 0.04em;
}

/* Bottom trust strip */
.product-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 16px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 20px;
  border-right: 1px solid var(--gray-200);
}

.trust-item:last-child { border-right: none; }

.trust-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.trust-icon svg { width: 44px; height: 44px; }

.trust-item strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.trust-item p      { font-size: 0.82rem; color: var(--gray-500); line-height: 1.5; }

/* Product CTA banner */
.product-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 40px;
  overflow: hidden;
  padding: 110px 0;
}

.product-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.product-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 15, 20, 0.88) 0%,
    rgba(0, 25, 35, 0.72) 50%,
    rgba(0, 15, 20, 0.55) 100%
  );
}

.product-cta__content { position: relative; z-index: 1; width: 100%; }

.product-cta__content strong { display: block; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; }

.product-cta__bottom {
  display: flex;
  align-items: center;
  gap: 32px;
}

.product-cta__bottom p { font-size: 0.95rem; color: rgba(255,255,255,.7); line-height: 1.55; margin: 0; flex: 1; }

.product-cta__buttons { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

@media (max-width: 900px) {
  .product-cta { padding: 32px 24px; }
  .product-cta__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ===== EXCLUSIVE FEATURES ===== */
.exclusive { padding: 56px 0 100px; background: var(--gray-100); }

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

.excl-feat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all .2s ease;
}
.excl-feat-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.excl-feat-card__body { display: flex; flex-direction: column; gap: 8px; }
.excl-feat-card__body h3 { font-size: 1rem; font-weight: 700; color: var(--gray-900); line-height: 1.35; margin: 0; }
.excl-feat-card__body p  { font-size: 0.84rem; color: var(--gray-500); line-height: 1.6; margin: 0; }

.excl-feat-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  margin-bottom: 2px;
}
.excl-feat-icon--teal   { background: var(--primary-light); }
.excl-feat-icon--orange { background: #fff0e0; }

.excl-feat-card__mock {
  background: var(--gray-100);
  border-radius: 10px;
  padding: 14px;
  flex: 1;
}

/* Feature mock base */
.fm { display: flex; flex-direction: column; gap: 5px; }
.fm-header { font-size: 0.75rem; font-weight: 700; color: var(--gray-900); display: flex; align-items: center; gap: 6px; }
.fm-sub    { font-size: 0.68rem; color: var(--gray-500); }

.fm-badge { font-size: 0.62rem; font-weight: 700; padding: 2px 7px; border-radius: 999px; background: var(--accent); color: var(--white); }
.fm-badge--teal { background: var(--primary-light); color: var(--primary); }

/* Schedule mock */
.fm-row  { display: flex; align-items: center; gap: 4px; }
.fm-time { font-size: 0.62rem; color: var(--gray-500); width: 30px; flex-shrink: 0; }
.fm-slot { height: 13px; width: 28px; background: var(--gray-200); border-radius: 3px; flex-shrink: 0; }
.fm-slot--booked   { background: var(--primary-light); }
.fm-slot--discount { background: var(--accent); }

/* Pricing chart mock */
.fm-chart { position: relative; }
.fm-axis  { display: flex; justify-content: space-between; font-size: 0.58rem; color: var(--gray-400); margin-top: 2px; }
.fm-toggle-row { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; font-size: 0.7rem; color: var(--gray-700); font-weight: 600; }
.fm-toggle { width: 28px; height: 15px; border-radius: 999px; background: var(--gray-200); position: relative; flex-shrink: 0; }
.fm-toggle--on { background: var(--primary); }
.fm-toggle::after { content: ''; position: absolute; top: 2px; width: 11px; height: 11px; background: var(--white); border-radius: 50%; }
.fm-toggle--on::after { right: 2px; }
.fm-toggle:not(.fm-toggle--on)::after { left: 2px; }

/* Event mock */
.fm-event-img { height: 48px; background: url('media/image_2109.png') center/cover no-repeat; border-radius: 6px; margin-bottom: 6px; }
.fm-event-btn { background: var(--primary); color: var(--white); text-align: center; font-size: 0.68rem; font-weight: 700; padding: 6px; border-radius: 6px; margin-top: 4px; }

/* Settings mock */
.fm-settings-title { font-size: 0.73rem; font-weight: 700; color: var(--gray-900); margin-bottom: 2px; }
.fm-settings-row { display: flex; align-items: center; gap: 7px; padding: 4px 0; border-bottom: 1px solid var(--gray-200); font-size: 0.68rem; }
.fm-settings-row:last-child { border-bottom: none; }
.fm-s-icon { width: 16px; text-align: center; flex-shrink: 0; font-size: 0.65rem; }
.fm-settings-row > div { flex: 1; }
.fm-settings-row small { display: block; font-size: 0.58rem; color: var(--gray-400); line-height: 1.2; }
.fm-settings-row span { color: var(--gray-700); }
.fm-settings-row > span:last-child { color: var(--gray-400); }

/* Match mock */
.fm-match-header { display: flex; align-items: center; gap: 6px; font-size: 0.7rem; font-weight: 600; color: var(--gray-700); }
.fm-teams  { display: flex; align-items: center; gap: 12px; margin: 4px 0; }
.fm-team   { display: flex; align-items: center; gap: 5px; font-size: 0.7rem; font-weight: 600; }
.fm-dot    { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.fm-dot--red  { background: #e53e3e; }
.fm-dot--blue { background: #3b82f6; }
.fm-vs     { font-size: 0.62rem; font-weight: 700; color: var(--gray-400); text-align: center; }
.fm-match-meta { font-size: 0.62rem; color: var(--gray-500); line-height: 1.7; }
.fm-match-btn  { border: 1px solid var(--gray-300); text-align: center; font-size: 0.68rem; font-weight: 600; color: var(--gray-700); padding: 5px; border-radius: 6px; margin-top: 6px; }

/* Split mock */
.fm-split-title { font-size: 0.73rem; font-weight: 700; color: var(--gray-900); margin-bottom: 2px; }
.fm-split-row { display: flex; align-items: center; padding: 3px 0; border-bottom: 1px solid var(--gray-200); font-size: 0.68rem; }
.fm-split-row > span:first-child { flex: 1; color: var(--gray-700); }
.fm-split-row > span:nth-child(2) { color: var(--gray-700); margin-right: 8px; }
.fm-paid  { font-size: 0.6rem; font-weight: 700; padding: 1px 6px; border-radius: 999px; background: #dcfce7; color: #16a34a; }
.fm-split-total { display: flex; justify-content: space-between; font-size: 0.75rem; font-weight: 700; color: var(--gray-900); padding-top: 5px; }

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

/* ===== SOLUTIONS ===== */
.why { padding: 56px 0 100px; background: var(--white); }

.blt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.blt-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .2s ease;
  display: flex;
  flex-direction: column;
}

.blt-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.blt-card__photo {
  position: relative;
  height: 180px;
  flex-shrink: 0;
}

.blt-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.blt-card__icon {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.blt-card__body {
  padding: 32px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blt-card__body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--gray-900); }
.blt-card__body p  { font-size: 0.84rem; line-height: 1.6; color: var(--gray-500); flex: 1; margin-bottom: 16px; }

.blt-card__tagline {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  border-top: 1px solid var(--gray-100);
  padding-top: 14px;
  margin-top: auto;
}

.solutions__compare { margin-top: 20px; }

/* ===== WHY / COMPARISON ===== */

.comparison { overflow-x: auto; }

.comparison__table {
  min-width: 600px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.comparison__header,
.comparison__row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  align-items: center;
}

.comparison__header {
  background: var(--gray-100);
  border-bottom: 2px solid var(--gray-200);
}

.comparison__row { border-bottom: 1px solid var(--gray-100); }
.comparison__row:last-child { border-bottom: none; }

.comparison__col {
  padding: 16px 24px;
  font-size: 0.9rem;
}

.comparison__col--feature { font-weight: 500; color: var(--gray-700); }
.comparison__col--bookify { font-weight: 700; color: var(--success); text-align: center; }
.comparison__col--others  { color: var(--gray-500); text-align: center; }

.comparison__header .comparison__col {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
}

.comparison__header .comparison__col--bookify { color: var(--primary); }
.comparison__row:hover { background: var(--gray-100); }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; }

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

.testimonial-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.testimonial-card--featured {
  background: var(--primary);
  border-color: var(--primary);
}

.testimonial-card--featured p,
.testimonial-card--featured strong { color: var(--white); }
.testimonial-card--featured span { color: rgba(255,255,255,.7); }
.testimonial-card--featured .testimonial-card__stars { color: #fde68a; }

.testimonial-card__stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; }

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--gray-700);
}

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

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

.testimonial-card--featured .author-avatar {
  background: rgba(255,255,255,.2);
  color: var(--white);
}

.testimonial-card__author strong { display: block; font-size: 0.9rem; }
.testimonial-card__author span   { font-size: 0.8rem; color: var(--gray-500); }

/* ===== PRICING ===== */
.pricing { padding: 100px 0; background: var(--gray-100); }

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

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: box-shadow .2s;
}

.pricing-card:hover { box-shadow: var(--shadow-md); }

.pricing-card--featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__name {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.price-amount { font-size: 2.2rem; font-weight: 900; color: var(--gray-900); }
.price-period { font-size: 0.9rem; color: var(--gray-500); }

.pricing-card__desc { font-size: 0.875rem; margin-bottom: 24px; min-height: 48px; }

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-card__features li {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
}

.pricing-card__features li.disabled { color: var(--gray-300); }

/* ===== FAQ ===== */
.faq { padding: 100px 0; }

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  color: var(--gray-900);
  transition: background .15s;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gray-400);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform .2s;
}

.faq-item[open] summary { background: var(--white); }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { background: var(--white); }

.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.cta-final {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary), #009db8, var(--accent));
}

.cta-final__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-final__inner h2 { color: var(--white); margin-bottom: 16px; }
.cta-final__inner > p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 36px; }

.cta-final__note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.6);
}

/* ===== FOOTER ===== */
.footer { background: var(--gray-900); padding: 64px 0 0; }

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  padding-bottom: 48px;
  align-items: end;
}

.footer__brand .nav__logo { color: var(--white); margin-bottom: 12px; }
.footer__brand .nav__logo-img { filter: brightness(0) invert(1); }
.footer__brand p { color: var(--gray-500); font-size: 0.9rem; }

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

.footer__legal-links { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.footer__legal-links a { color: var(--gray-500); text-decoration: none; font-size: 0.85rem; transition: color .15s; }
.footer__legal-links a:hover { color: var(--gray-300); }
.footer__legal-links span { color: var(--gray-600); font-size: 0.75rem; }

.footer__socials { display: flex; gap: 12px; margin-bottom: 12px; }
.footer__social-link { color: var(--gray-500); transition: color .15s; }
.footer__social-link:hover { color: var(--white); }

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col strong { color: var(--white); font-size: 0.85rem; margin-bottom: 4px; }
.footer__col a { color: var(--gray-500); text-decoration: none; font-size: 0.85rem; transition: color .15s; }
.footer__col a:hover { color: var(--gray-300); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ===== HAMBURGER NAV ===== */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all .25s ease;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--gray-100);
  background: var(--white);
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  padding: 12px 4px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-700);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-100);
}
.nav__mobile-link:last-of-type { border-bottom: none; margin-bottom: 12px; }

/* ===== RESPONSIVE — TABLET (≤900px) ===== */
@media (max-width: 900px) {
  /* Nav */
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero__inner { padding: 100px 24px 60px; }
  .hero__content { max-width: 100%; }

  /* KPI */
  .kpi-strip { margin-top: -40px; }
  .kpi-card { grid-template-columns: 1fr; padding: 28px 24px; }
  .kpi-divider { width: 100%; height: 1px; margin: 20px 0; }

  /* Problem */
  .problem__cards { grid-template-columns: 1fr; }
  .problem__stats { grid-template-columns: 1fr 1fr; }
  .prob-stat:nth-child(2) { border-right: none; }
  .prob-stat:nth-child(1), .prob-stat:nth-child(2) { border-bottom: 1px solid var(--gray-200); }

  /* Product */
  .product-row--2,
  .product-row--3 { grid-template-columns: 1fr 1fr; }
  .product-trust  { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(1),
  .trust-item:nth-child(2) { border-bottom: 1px solid var(--gray-100); }

  /* Built for */
  .blt-grid { grid-template-columns: 1fr 1fr; }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== RESPONSIVE — MOBILE (≤600px) ===== */
@media (max-width: 600px) {
  /* Global spacing */
  .container { padding: 0 16px; }

  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }

  /* Sections */
  .product-section,
  .why,
  .testimonials,
  .pricing,
  .faq,
  .problem { padding: 64px 0; }
  .cta-final { padding: 64px 0; }

  /* Nav */
  .nav__inner { height: 64px; }
  .nav__logo-img { height: 38px; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero__inner { padding: 90px 16px 48px; }
  .hero__sub { font-size: 1rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__trust { flex-direction: column; gap: 8px; }
  .trust__dot { display: none; }

  /* KPI */
  .kpi-strip { margin-top: -32px; padding-bottom: 40px; }
  .kpi-card { border-radius: 14px; padding: 24px 20px; }
  .kpi-item { gap: 14px; }
  .kpi-icon { width: 36px; height: 36px; }
  .kpi-icon svg { width: 36px; height: 36px; }

  /* Product section */
  .product-subtitle { font-size: 0.95rem; }
  .product-row--2,
  .product-row--3 { grid-template-columns: 1fr; }
  .product-card { flex-direction: column; gap: 14px; }
  .product-icon { width: 64px; height: 64px; border-radius: 14px; }
  .product-row--2 .product-icon { width: 64px; height: 64px; border-radius: 14px; }
  .product-icon svg,
  .product-row--2 .product-icon svg { width: 32px; height: 32px; }
  .product-trust { grid-template-columns: 1fr; }
  .trust-item { border-right: none !important; border-bottom: 1px solid var(--gray-100) !important; }
  .trust-item:last-child { border-bottom: none !important; }

  /* Built for */
  .blt-grid { grid-template-columns: 1fr; }

  /* Section header */
  .section-header { margin-bottom: 40px; }
  .section-header p { font-size: 0.95rem; }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial-card--featured { order: -1; }

  /* Pricing */
  .pricing__grid { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-item summary { padding: 16px 18px; font-size: 0.9rem; }
  .faq-item p { padding: 0 18px 16px; }

  /* Footer */
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom .container { flex-direction: column; gap: 8px; text-align: center; }

  /* CTA final */
  .cta-final__inner h2 { font-size: 1.8rem; }
  .cta-final__inner > p { font-size: 0.95rem; }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a2332;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 16px 0;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__inner p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}

.cookie-banner__inner a {
  color: #5dd0e0;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 9px 20px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all .15s;
}

.btn-cookie--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.85);
}

.btn-cookie--outline:hover { border-color: var(--white); color: var(--white); }

.btn-cookie--primary {
  background: var(--accent);
  color: var(--white);
}

.btn-cookie--primary:hover { opacity: .9; }
