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

:root {
  --bg: #FDF8F0;
  --fg: #1C1410;
  --accent: #C8533A;
  --accent-dark: #9E3D28;
  --sand: #EDE3D3;
  --rust: #8B3D2B;
  --muted: #8A7B6B;
  --white: #FFFFFF;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;
  --ff-mono: 'Space Mono', monospace;
  --max-w: 1140px;
  --pad-x: clamp(1.25rem, 5vw, 3rem);
}

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

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

::selection { background: var(--accent); color: var(--white); }

img { display: block; max-width: 100%; }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--ff-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.1em;
}

.tagline {
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 400;
}

/* === SECTION COMMON === */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) var(--pad-x);
}

.section-label {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 2rem;
}

/* === HERO === */
.hero {
  background: var(--bg);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(3rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero-text h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.lede {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 480px;
}

.proof-line {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.proof-stat {
  font-family: var(--ff-mono);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--accent);
}

.proof-text {
  font-size: 0.9375rem;
  color: var(--muted);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-frame {
  width: clamp(240px, 35vw, 300px);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(28, 20, 16, 0.18), 0 4px 16px rgba(28, 20, 16, 0.1);
  border: 8px solid #1A1A1A;
}

.phone-frame img {
  width: 100%;
  display: block;
}

.speech-callout {
  position: absolute;
  bottom: -1.5rem;
  right: -0.5rem;
  background: var(--white);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  box-shadow: 0 4px 20px rgba(28, 20, 16, 0.12);
  border-left: 3px solid var(--accent);
}

.callout-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fg);
  font-style: italic;
}

.callout-sub {
  display: block;
  font-size: 0.6875rem;
  color: var(--muted);
  margin-top: 0.125rem;
}

/* === FEATURES === */
.features {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg);
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid var(--sand);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28, 20, 16, 0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--sand);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-family: var(--ff-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.625rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* === SECTORS === */
.sectors {
  background: var(--fg);
  color: var(--bg);
}

.sectors h2 { color: var(--bg); }

.sectors-intro {
  font-size: 1.0625rem;
  color: rgba(253, 248, 240, 0.7);
  max-width: 540px;
  margin-bottom: 3rem;
  line-height: 1.65;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.sector-card {
  background: rgba(253, 248, 240, 0.06);
  border: 1px solid rgba(253, 248, 240, 0.12);
  border-radius: 0.875rem;
  padding: 1.5rem;
  transition: background 0.2s ease;
}

.sector-card:hover {
  background: rgba(253, 248, 240, 0.1);
}

.sector-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}

.sector-card h3 {
  font-family: var(--ff-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 0.5rem;
}

.sector-card p {
  font-size: 0.8125rem;
  color: rgba(253, 248, 240, 0.55);
  line-height: 1.5;
}

.sectors-note {
  font-size: 0.875rem;
  color: rgba(253, 248, 240, 0.45);
  margin-top: 2.5rem;
  font-style: italic;
}

/* === HOW IT WORKS === */
.howitworks { background: var(--bg); }

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.5rem;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--sand);
  align-items: start;
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--ff-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
  padding-top: 0.25rem;
}

.step h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
}

/* === PRICING === */
.pricing { background: var(--sand); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.plan {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 2rem;
  border: 2px solid transparent;
  position: relative;
}

.plan-pro {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(200, 83, 58, 0.15);
}

.plan-badge {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 999px;
}

.plan-header { margin-bottom: 1rem; }

.plan-name {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.currency {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--fg);
}

.amount {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.period {
  font-size: 0.875rem;
  color: var(--muted);
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.plan-features li {
  font-size: 0.9rem;
  color: var(--fg);
  padding-left: 1.5rem;
  position: relative;
}

.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.pricing-note {
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: center;
  margin-top: 2rem;
}

/* === CLOSING === */
.closing {
  background: var(--accent);
  text-align: center;
}

.closing h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.closing p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* === FOOTER === */
footer {
  background: var(--fg);
  padding: 3rem var(--pad-x);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-inner .logo {
  color: var(--bg);
}

.footer-inner p {
  font-size: 0.875rem;
  color: rgba(253, 248, 240, 0.5);
}

.copyright {
  margin-top: 0.5rem;
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  color: rgba(253, 248, 240, 0.3);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 1rem; }
  .hero-visual .phone-frame { width: 200px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .step { grid-template-columns: 56px 1fr; gap: 1rem; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .hero-visual { align-items: flex-start; }
  .hero-visual .phone-frame { width: 160px; }
}