/* === FRONTDESK OS — THEME === */
:root {
  --bg: #faf8f4;
  --bg-alt: #f0ede6;
  --fg: #1a1a1a;
  --fg-muted: #6b6560;
  --accent: #e8a847;
  --accent-dark: #c98f30;
  --green: #1a3a2a;
  --green-light: #2d5c45;
  --white: #ffffff;
  --border: rgba(26, 58, 42, 0.12);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--green);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--green); }

/* === HERO === */
.hero {
  position: relative;
  padding: 80px 40px 0;
  overflow: hidden;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 58, 42, 0.08);
  color: var(--green);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--green);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 36px;
}

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero-price-note {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.price-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--green);
  letter-spacing: -0.5px;
}
.price-period {
  font-size: 18px;
  color: var(--fg-muted);
}
.price-compare {
  font-size: 14px;
  color: var(--fg-muted);
  opacity: 0.7;
}

/* Hero image */
.hero-image-wrap {
  position: relative;
}
.hero-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(26, 58, 42, 0.15);
}

.hero-call-badge {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(26, 58, 42, 0.12);
  border: 1px solid var(--border);
}

.call-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  position: relative;
  flex-shrink: 0;
}
.call-ring::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.4;
  animation: ringPulse 1.5s infinite;
}
@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.3); opacity: 0; }
}

.call-label {
  display: block;
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.call-name {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--green);
  margin-top: 2px;
}
.call-meta {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
}

.hero-wave {
  height: 80px;
  background: var(--green);
  clip-path: ellipse(60% 100% at 50% 100%);
}

/* === PROOF === */
.proof {
  background: var(--green);
  padding: 80px 40px;
  color: var(--white);
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.proof-header {
  margin-bottom: 48px;
}

.proof-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.proof-sub {
  font-size: 18px;
  opacity: 0.7;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.proof-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px;
}

.proof-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.proof-desc {
  font-size: 15px;
  opacity: 0.8;
  line-height: 1.5;
}

.proof-closing {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  opacity: 0.9;
}

/* === FEATURES === */
.features {
  padding: 100px 40px;
  background: var(--bg);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.features-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--green);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 56px;
  max-width: 520px;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(26, 58, 42, 0.1);
  transform: translateY(-2px);
}

.feature-card--featured {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.feature-card--featured .feature-icon svg circle { fill: rgba(255,255,255,0.15); }
.feature-card--featured .feature-icon svg path { stroke: var(--white); }
.feature-card--featured h3 { color: var(--white); }
.feature-card--featured p { color: rgba(255,255,255,0.75); }

.feature-card--featured .feature-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--green);
  margin-bottom: 12px;
  line-height: 1.2;
}

.feature-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === HOW IT WORKS === */
.howitworks {
  padding: 100px 40px;
  background: var(--bg-alt);
}

.howitworks-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.howitworks-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--green);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 64px;
}

.steps-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  position: relative;
}

.step {
  padding: 0 40px;
  position: relative;
}

.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

.step-number {
  font-family: 'DM Serif Display', serif;
  font-size: 64px;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.step h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--green);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.step-connector {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  margin: 0 0 28px;
}

.step-connector--last {
  background: none;
}

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

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--green);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.pricing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--green);
  color: var(--white);
  border-radius: 24px;
  padding: 48px;
  max-width: 540px;
  margin-bottom: 40px;
}

.pricing-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.pricing-plan-name {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-big {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--accent);
  letter-spacing: -1px;
}

.price-sm {
  font-size: 20px;
  opacity: 0.6;
}

.pricing-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.5;
}

.pricing-features svg { flex-shrink: 0; margin-top: 2px; }

.pricing-trial {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.pricing-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 540px;
}

.comparison-col {
  border-radius: 16px;
  padding: 28px;
}

.comparison-col--ai {
  background: rgba(26, 58, 42, 0.08);
  border: 1.5px solid rgba(26, 58, 42, 0.2);
}

.comparison-col--human {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
}

.comparison-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.comparison-price {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--green);
  margin-bottom: 16px;
}

.comparison-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comparison-col ul li {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
  padding-left: 12px;
  position: relative;
}

.comparison-col ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* === CLOSING === */
.closing {
  padding: 100px 40px;
  background: var(--green);
  position: relative;
  overflow: hidden;
}

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

.closing-shape {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(232, 168, 71, 0.08);
  pointer-events: none;
}

.closing-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

/* === FOOTER === */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 32px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  color: var(--green);
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
}

.footer-note {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .proof-stats { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; gap: 40px; }
  .pricing-comparison { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .hero { padding: 60px 24px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .proof, .features, .howitworks, .pricing, .closing {
    padding: 60px 24px;
  }
  .nav-inner { padding: 14px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .pricing-card { padding: 32px 24px; }
}
