:root {
  --bg: #0F172A;
  --bg-elevated: #131E32;
  --bg-card: #1a2744;
  --fg: #F8FAFC;
  --fg-muted: #94A3B8;
  --accent: #F59E0B;
  --accent-light: rgba(245,158,11,0.15);
  --border: rgba(148,163,184,0.1);
  --radius: 12px;
}

* { 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;
  background-image: radial-gradient(circle, rgba(148,163,184,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--fg-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--fg); }

.section-inner { max-width: 1200px; margin: 0 auto; padding: 80px 40px; }
.section-label { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.section-headline { font-size: clamp(32px, 5vw, 56px); font-weight: 700; color: var(--fg); margin-bottom: 20px; }
.section-sub { font-size: 18px; color: var(--fg-muted); max-width: 540px; line-height: 1.7; }

.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 64px; }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 80px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; width: 100%; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 28px; }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-headline { font-size: clamp(44px, 6vw, 72px); font-weight: 900; color: var(--fg); margin-bottom: 28px; line-height: 1.05; }
.hero-sub { font-size: 18px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 12px; }
.hero-sub--accent { color: var(--accent) !important; font-weight: 500; }

.hero-visual { display: flex; flex-direction: column; gap: 24px; }
.calendar-widget { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: relative; }
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.cal-month { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; }
.cal-nav { display: flex; gap: 8px; }
.cal-arrow { width: 24px; height: 24px; border: 1px solid var(--border); border-radius: 6px; position: relative; }
.cal-arrow::after { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-bottom: 5px solid var(--fg-muted); transform: translate(-50%,-60%) rotate(-45deg); }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 8px; text-align: center; }
.cal-days span { font-size: 10px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-cell { aspect-ratio: 1; border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 13px; color: var(--fg-muted); gap: 2px; padding: 2px; transition: all 0.2s; }
.cal-cell--empty { background: transparent; }
.cal-cell--booked { background: var(--accent-light); border: 1px solid rgba(245,158,11,0.3); color: var(--fg); }
.cal-appt { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.cal-appt-time { font-size: 9px; font-weight: 600; color: var(--accent); }
.cal-appt-name { font-size: 8px; color: var(--fg-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%; }
.cal-badge { display: flex; align-items: center; gap: 6px; margin-top: 16px; padding: 10px 14px; background: var(--accent-light); border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--accent); }
.hero-stat { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; align-items: center; gap: 20px; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 900; color: var(--accent); line-height: 1; min-width: 80px; }
.stat-label { font-size: 15px; color: var(--fg-muted); line-height: 1.5; }

.how-it-works { background: var(--bg-elevated); }
.pipeline { display: flex; align-items: flex-start; margin-top: 64px; }
.pipeline-step { flex: 1; padding: 32px 28px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.step-icon { width: 48px; height: 48px; margin-bottom: 20px; }
.step-num { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 12px; }
.pipeline-step h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.pipeline-step p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }
.pipeline-connector { display: flex; align-items: center; width: 60px; flex-shrink: 0; }
.connector-line { flex: 1; height: 1px; background: var(--border); }
.connector-arrow { width: 8px; height: 8px; border-right: 2px solid var(--fg-muted); border-bottom: 2px solid var(--fg-muted); transform: rotate(-45deg); margin-left: -4px; }

.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.industry-card { padding: 32px; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color 0.3s, transform 0.3s; }
.industry-card:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-4px); }
.industry-icon { margin-bottom: 20px; }
.industry-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.industry-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

.pricing { background: var(--bg-elevated); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.pricing-card { padding: 36px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); position: relative; transition: transform 0.3s, border-color 0.3s; }
.pricing-card:hover { transform: translateY(-4px); border-color: rgba(245,158,11,0.25); }
.pricing-card--featured { border-color: var(--accent); background: var(--bg-elevated); }
.pricing-card--featured .pricing-tier { color: var(--accent); }
.pricing-card-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--bg); font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: 20px; white-space: nowrap; }
.pricing-header { margin-bottom: 24px; }
.pricing-tier { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.pricing-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }
.pricing-amount { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 900; color: var(--fg); margin-bottom: 28px; }
.pricing-period { font-size: 16px; font-weight: 400; color: var(--fg-muted); font-family: 'DM Sans', sans-serif; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li { padding: 10px 0; font-size: 15px; color: var(--fg-muted); border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 10px; }
.pricing-features li::before { content: ''; width: 16px; height: 16px; border-radius: 4px; background: var(--accent-light); flex-shrink: 0; margin-top: 2px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 4' stroke='%23F59E0B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 16px; }
.pricing-fit { font-size: 12px; color: var(--fg-muted); padding: 12px; background: rgba(148,163,184,0.05); border-radius: 8px; font-weight: 500; }
.pricing-cta { display: block; text-align: center; padding: 14px 24px; background: var(--accent); color: var(--bg); font-weight: 600; border-radius: 8px; text-decoration: none; font-size: 15px; transition: opacity 0.2s; }
.pricing-cta:hover { opacity: 0.85; color: var(--bg); }
.pricing-enterprise { text-align: center; margin-top: 40px; font-size: 15px; color: var(--fg-muted); }
.pricing-enterprise a { color: var(--accent); text-decoration: none; }
.pricing-enterprise a:hover { text-decoration: underline; }

.comparison-section { background: var(--bg); }
.comparison-table { margin-top: 56px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.comparison-row { display: grid; grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr; border-bottom: 1px solid var(--border); }
.comparison-row:last-child { border-bottom: none; }
.comparison-row.comparison-header { background: var(--bg-card); }
.comparison-col { padding: 20px 24px; font-size: 15px; color: var(--fg-muted); display: flex; align-items: center; }
.comparison-col.comparison-label { color: var(--fg); font-weight: 500; }
.comparison-col.comparison-col--apptd { color: var(--fg); font-weight: 600; background: rgba(245,158,11,0.05); }
.comparison-header .comparison-col { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--fg); }
.comparison-header .comparison-col.comparison-col--apptd { color: var(--accent); }
.comparison-check { color: var(--accent); font-size: 18px; margin-right: 6px; }
.comparison-x { color: #EF4444; font-size: 18px; margin-right: 6px; }
.comparison-NA { color: var(--fg-muted); opacity: 0.5; }

.hero-cta { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.btn--primary { background: var(--accent); color: var(--bg); }
.btn--primary:hover { opacity: 0.85; color: var(--bg); }
.btn--ghost { background: transparent; border: 1px solid var(--border); color: var(--fg); }
.btn--ghost:hover { border-color: var(--fg); color: var(--fg); }
.btn--large { padding: 18px 36px; font-size: 16px; }

.why-now { padding: 80px 40px; }
.why-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-points { margin-top: 48px; }
.why-point { margin-bottom: 40px; }
.why-stat { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: var(--accent); margin-bottom: 8px; }
.why-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }
.why-visual { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.why-big-num { font-family: 'Playfair Display', serif; font-size: 120px; font-weight: 900; color: var(--accent); line-height: 1; }
.why-big-label { font-size: 18px; color: var(--fg-muted); line-height: 1.5; }
.why-big-result { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--fg); line-height: 1.35; max-width: 400px; }

.closing { background: var(--bg-elevated); padding: 100px 40px; }
.closing-content { max-width: 860px; margin: 0 auto; text-align: center; }
.closing-headline { font-size: clamp(32px, 5vw, 56px); font-weight: 900; margin-bottom: 28px; }
.closing-sub { font-size: 20px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 56px; }
.closing-vision { padding: 40px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; display: inline-block; text-align: left; max-width: 680px; }
.vision-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 16px; }
.closing-vision p { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; color: var(--fg); line-height: 1.5; font-style: italic; }

.footer { border-top: 1px solid var(--border); padding: 60px 40px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: var(--fg-muted); margin-top: 16px; max-width: 280px; }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--fg); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 32px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; font-size: 13px; color: var(--fg-muted); }

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .section-inner { padding: 60px 20px; }
  .hero-inner { grid-template-columns: 1fr; padding: 60px 20px; gap: 48px; }
  .pipeline { flex-direction: column; gap: 16px; }
  .pipeline-connector { transform: rotate(90deg); width: 40px; justify-content: center; }
  .industry-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}