:root {
  --navy: #1B2A4A;
  --ivory: #F5F0E8;
  --seafoam: #5E9E8D;
  --gold: #C9A84C;
  --white: #FFFFFF;
  --text: #2A2A2A;
  --muted: #6B6B6B;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

/* ── NAV ─────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.01em;
}
.nav-contact {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--seafoam);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ── HERO ─────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 96px 24px 88px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--ivory);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.18;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245,240,232,0.72);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 40px;
}
.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-meta-item {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(245,240,232,0.55);
  text-transform: uppercase;
  font-weight: 400;
}
.hero-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

/* ── PROOF BAR ────────────────────────────── */
.proof {
  background: var(--ivory);
  padding: 56px 24px;
  border-bottom: 1px solid rgba(27,42,74,0.08);
}
.proof-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.proof-item {
  padding: 0 24px;
}
.proof-stat {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.proof-label {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  background: rgba(27,42,74,0.12);
  align-self: stretch;
  margin: 8px 0;
}

/* ── SECTION LABEL ─────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 48px;
}

/* ── HOW IT WORKS ──────────────────────────── */
.hiw {
  padding: 80px 24px;
  background: var(--white);
}
.hiw-inner {
  max-width: 900px;
  margin: 0 auto;
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.hiw-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.85;
}
.hiw-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.hiw-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── WHO IT'S FOR ──────────────────────────── */
.who {
  padding: 80px 24px;
  background: var(--navy);
}
.who .section-label { color: var(--seafoam); }
.who-inner { max-width: 1000px; margin: 0 auto; }
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.who-card {
  background: rgba(255,255,255,0.04);
  padding: 40px 36px;
}
.who-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.who-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 14px;
}
.who-body {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.7;
}

/* ── FEATURES ──────────────────────────────── */
.features {
  padding: 80px 24px;
  background: var(--ivory);
}
.features-inner { max-width: 1000px; margin: 0 auto; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.feature-item {
  background: var(--white);
  padding: 44px 44px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}
.feature-body {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.72;
}

/* ── PRICING ──────────────────────────────── */
.pricing {
  padding: 80px 24px;
  background: var(--white);
  text-align: center;
}
.pricing-inner { max-width: 600px; margin: 0 auto; }
.pricing-from {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-per {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.pricing-note {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── TRAILERS ─────────────────────────────── */
.trailers {
  padding: 80px 24px;
  background: var(--ivory);
}
.trailers-inner { max-width: 1000px; margin: 0 auto; }
.trailer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.trailer-card {
  background: var(--navy);
  overflow: hidden;
}
.trailer-name-block {
  background: var(--seafoam);
  padding: 24px 32px;
}
.trailer-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.trailer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.05em;
}
.trailer-specs {
  padding: 28px 32px;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(245,240,232,0.1);
}
.spec-row:last-child { border-bottom: none; }
.spec-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  flex-shrink: 0;
}
.spec-value {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.85);
  text-align: right;
}

/* ── CLOSING ──────────────────────────────── */
.closing {
  padding: 100px 24px;
  background: var(--navy);
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.72;
  max-width: 560px;
  margin: 0 auto 40px;
}
.closing-contact {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.7);
}
.closing-phone, .closing-email {
  color: var(--seafoam);
  text-decoration: none;
}
.closing-phone:hover, .closing-email:hover { text-decoration: underline; }

/* ── FOOTER ──────────────────────────────── */
.footer {
  padding: 48px 24px 56px;
  background: #141E33;
}
.footer-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.45);
  margin-bottom: 16px;
}
.footer-address, .footer-phone, .footer-entity {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.3);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 768px) {
  .proof-inner { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .proof-divider { display: none; }
  .hiw-steps { grid-template-columns: 1fr; gap: 40px; }
  .who-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .trailer-grid { grid-template-columns: 1fr; }
  .hero { padding: 72px 24px 80px; }
  .feature-item { padding: 32px 24px; }
  .who-card { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 1.9rem; }
  .pricing-amount { font-size: 3rem; }
  .proof-inner { grid-template-columns: 1fr; }
}