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

:root {
  --bg: #faf8f5;
  --fg: #1e2a4a;
  --accent: #f5a623;
  --accent-dark: #d48c10;
  --navy: #1e2a4a;
  --light: #f0ebe3;
  --mid: #8a8f9e;
  --white: #ffffff;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  position: relative;
  padding: 80px 48px 100px;
  overflow: hidden;
  border-bottom: 1px solid rgba(30,42,74,0.08);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(245,166,35,0.07) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(30,42,74,0.03) 60px, rgba(30,42,74,0.03) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(30,42,74,0.03) 60px, rgba(30,42,74,0.03) 61px);
  pointer-events: none;
}

.hero-eyebrow {
  margin-bottom: 32px;
}

.eyebrow-pill {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(245,166,35,0.25);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
}

.headline-accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--mid);
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
}

/* Phone widget */
.hero-right {
  position: relative;
}

.phone-widget {
  background: var(--white);
  border-radius: 20px;
  border: 1.5px solid rgba(30,42,74,0.1);
  box-shadow: 0 20px 60px rgba(30,42,74,0.1);
  overflow: hidden;
  max-width: 320px;
  margin: 0 auto;
}

.phone-top-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--navy);
  color: white;
}

.phone-name-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.phone-status {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.phone-badge {
  margin-left: auto;
  background: rgba(245,166,35,0.2);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 10px;
  letter-spacing: 0.05em;
}

.phone-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
}

.msg {
  display: flex;
  flex-direction: column;
}

.msg.outgoing {
  align-items: flex-end;
}

.bubble {
  max-width: 75%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
}

.incoming-bubble {
  background: var(--light);
  color: var(--fg);
  border-bottom-left-radius: 4px;
}

.outgoing-bubble {
  background: var(--navy);
  color: white;
  border-bottom-right-radius: 4px;
}

.msg-time {
  font-size: 10px;
  color: var(--mid);
  margin-top: 4px;
  padding: 0 4px;
}

.booked-stamp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,0.15);
  color: var(--fg);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 10px;
  align-self: center;
  margin-top: 4px;
}

.floating-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid rgba(30,42,74,0.1);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg);
  box-shadow: 0 4px 16px rgba(30,42,74,0.08);
}

.tag-1 { top: -10px; right: -20px; }
.tag-2 { bottom: 60px; left: -30px; }
.tag-3 { bottom: 10px; right: -20px; }

/* SECTION SHARED */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--mid);
  font-size: 17px;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* THE NUMBERS */
.thenumbers {
  padding: 80px 48px;
  background: var(--navy);
  color: white;
}

.thenumbers .section-label { color: var(--accent); }

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 40px;
}

.number-card {
  padding: 40px 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.number-value {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.number-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.highlight-card {
  background: rgba(245,166,35,0.1);
  border-color: rgba(245,166,35,0.2);
}

.highlight-val { color: #fff; }

/* HOW IT WORKS */
.howitworks {
  padding: 100px 48px;
}

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

.step-card {
  position: relative;
  padding: 32px;
  background: var(--white);
  border: 1.5px solid rgba(30,42,74,0.08);
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30,42,74,0.1);
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}

.step-icon {
  margin-bottom: 16px;
}

.step-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}

/* FEATURES */
.features {
  padding: 100px 48px;
  background: var(--light);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
}

.feature-content h4 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.feature-content p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}

/* WHY BOOKMORE */
.whybookmore {
  padding: 100px 48px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-title {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 20px;
}

.why-desc {
  color: var(--mid);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.why-stats {
  display: flex;
  gap: 40px;
}

.why-stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.why-stat-label {
  font-size: 13px;
  color: var(--mid);
  max-width: 160px;
  line-height: 1.4;
}

.proof-card {
  padding: 28px 32px;
  background: var(--white);
  border: 1.5px solid rgba(30,42,74,0.08);
  border-radius: 16px;
  margin-bottom: 20px;
}

.proof-quote {
  font-size: 16px;
  color: var(--navy);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 12px;
}

.proof-source {
  font-size: 12px;
  color: var(--mid);
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  background: var(--navy);
  color: white;
  text-align: center;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: white;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-promise {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

/* FOOTER */
.site-footer {
  background: #151d2e;
  color: rgba(255,255,255,0.6);
  padding: 60px 48px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  justify-content: space-between;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
}

.footer-links {
  display: flex;
  gap: 60px;
}

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

.footer-col-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { padding: 60px 24px 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { flex-direction: column; gap: 40px; }
  .howitworks, .features, .whybookmore { padding: 70px 24px; }
  .closing { padding: 80px 24px; }
  .thenumbers { padding: 70px 24px; }
}

@media (max-width: 600px) {
  .numbers-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .closing-promise { flex-direction: column; gap: 16px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .hero-trust { flex-direction: column; gap: 12px; }
}