/* ReceptionIQ — Warm Caribbean Professional */

:root {
  --bg: #FBF7F0;
  --bg-alt: #F4EEE6;
  --fg: #1A1410;
  --fg-muted: #6B5E54;
  --accent: #C84B31;
  --accent-dark: #9E3823;
  --green: #2D4A3E;
  --green-light: #3D6A52;
  --border: #E2D9CF;
  --white: #FFFFFF;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 7rem 0 6rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}
.hero-overline {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 520px;
}

/* Hero Aside Stats */
.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.hero-stat {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.hero-stat:last-child { border-bottom: none; }
.hero-stat-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* Section title */
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 3rem;
}

/* How it works */
.how-it-works {
  padding: 6rem 0;
  background: var(--bg);
}
.how-it-works-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.step {
  padding: 2rem 1.75rem;
  background: var(--white);
  border-right: 1px solid var(--border);
}
.step:last-child { border-right: none; }
.step-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.4;
}
.step-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.step-body {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Verticals */
.verticals {
  padding: 6rem 0;
  background: var(--bg-alt);
}
.verticals-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.vertical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.vertical-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  border-top: 3px solid var(--accent);
}
.vertical-card--salons { border-top-color: var(--green); }
.vertical-card--restaurants { border-top-color: var(--fg-muted); }

.vertical-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.vertical-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  display: block;
  flex-shrink: 0;
}
.vertical-card--salons .vertical-icon { background: var(--green); }
.vertical-card--restaurants .vertical-icon { background: var(--fg-muted); }

.vertical-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--fg);
}
.vertical-features {
  list-style: none;
  margin-bottom: 1.5rem;
}
.vertical-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.vertical-features li:last-child { border-bottom: none; }
.vertical-pricing {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-top: auto;
}
.vertical-pricing strong {
  font-size: 1.3rem;
  color: var(--fg);
  font-weight: 600;
}

/* Cost Comparison */
.cost-comparison {
  padding: 6rem 0;
  background: var(--fg);
  color: var(--bg);
}
.cost-comparison .section-title {
  color: var(--bg);
}
.cost-comparison-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.comparison-col {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 2rem;
}
.comparison-col--receptioniq {
  border-color: var(--accent);
  background: rgba(200, 75, 49, 0.1);
}
.comparison-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.comparison-price {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--bg);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.comparison-col--receptioniq .comparison-price { color: var(--accent); }
.comparison-period {
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  opacity: 0.7;
}
.comparison-features {
  list-style: none;
}
.comparison-features li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  line-height: 1.4;
}
.comparison-features li:last-child { border-bottom: none; }
.comparison-outro {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: 8rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.closing-text {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.closing-text--accent {
  color: var(--accent);
  font-style: italic;
}

/* Footer */
.footer {
  padding: 3rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--fg);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  max-width: 320px;
  line-height: 1.5;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-aside {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 4px;
    overflow: hidden;
  }
  .hero-stat {
    border-right: 1px solid var(--border);
    border-bottom: none;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(3) { border-top: 1px solid var(--border); }
  .step:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .vertical-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .comparison-table {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero { padding: 4rem 0 4rem; }
  .steps {
    grid-template-columns: 1fr;
  }
  .step {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .step:last-child { border-bottom: none; }
  .hero-aside {
    grid-template-columns: 1fr;
  }
  .hero-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-tagline { display: none; }
}