:root {
  --bg: #f8f6f1;
  --bg-alt: #eeece7;
  --fg: #1a1a2e;
  --fg-muted: #6b6b7a;
  --accent: #e8572a;
  --accent-light: #fef3ee;
  --surface: #ffffff;
  --border: #e2e0db;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 48px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.5;
}
.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,87,42,0.08) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 52px;
  line-height: 1.65;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.stat { text-align: center; padding: 0 32px; }
.stat-num { display: block; font-family: var(--font-display); font-size: 36px; color: var(--fg); }
.stat-label { display: block; font-size: 13px; color: var(--fg-muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: var(--border); }

/* Sections */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 80px 48px; }
.section-label { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.section-headline { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); line-height: 1.2; color: var(--fg); margin-bottom: 56px; letter-spacing: -0.01em; }

/* What We Do */
.whatwedo { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
.service-icon { margin-bottom: 20px; }
.service-card h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 10px; }
.service-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.6; }

/* How It Works */
.howitworks { background: var(--bg-alt); }
.steps-row { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 64px; }
.step { flex: 1; }
.step-number { font-family: var(--font-display); font-size: 48px; color: var(--accent); opacity: 0.25; margin-bottom: 12px; }
.step-body h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 10px; }
.step-body p { font-size: 15px; color: var(--fg-muted); }
.step-connector { display: flex; align-items: center; padding-top: 28px; flex-shrink: 0; }

/* Workflow visual */
.workflow-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 48px;
}
.wv-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
}
.wv-icon { color: var(--accent); }
.wv-icon-ai { color: #7c6af7; }
.wv-node span { font-size: 13px; font-weight: 500; color: var(--fg-muted); }
.wv-arrow { display: flex; align-items: center; padding: 0 4px; }
.wv-arrow-line { width: 32px; height: 2px; background: var(--border); }
.wv-arrow-head { width: 0; height: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 8px solid var(--border); }

/* Pricing */
.pricing { background: var(--bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
}
.pricing-card-featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 8px 40px rgba(232,87,42,0.12); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 16px; border-radius: 100px; white-space: nowrap; }
.pricing-header h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 8px; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 12px; }
.price-amount { font-family: var(--font-display); font-size: 42px; color: var(--fg); }
.price-period { font-size: 15px; color: var(--fg-muted); }
.pricing-desc { font-size: 14px; color: var(--fg-muted); margin-bottom: 24px; line-height: 1.5; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 14px; color: var(--fg); display: flex; align-items: flex-start; gap: 10px; }
.pricing-features li::before { content: ''; width: 18px; height: 18px; min-width: 18px; border-radius: 50%; background: var(--accent-light); display: flex; align-items: center; justify-content: center; margin-top: 1px; background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2 2 4-4' stroke='%23e8572a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.pricing-cta-note { text-align: center; font-size: 14px; color: var(--fg-muted); margin-top: 40px; }

/* Closing */
.closing { background: var(--fg); color: white; }
.closing-inner { max-width: 760px; margin: 0 auto; padding: 100px 48px; text-align: center; }
.closing-visual { display: flex; align-items: center; justify-content: center; gap: 32px; margin-bottom: 48px; }
.closing-clock { flex-shrink: 0; }
.closing-quote blockquote { font-family: var(--font-display); font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.8); font-style: italic; }
.closing-headline { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); line-height: 1.15; margin-bottom: 24px; color: white; }
.closing-sub { font-size: 18px; color: rgba(255,255,255,0.65); line-height: 1.65; max-width: 580px; margin: 0 auto; }

/* Footer */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: var(--font-display); font-size: 22px; color: var(--fg); }
.footer-tagline { font-size: 14px; color: var(--fg-muted); margin-top: 4px; }
.footer-meta span { font-size: 13px; color: var(--fg-muted); }

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 80px 24px 60px; }
  .hero-stats { flex-direction: column; gap: 16px; padding: 20px 24px; }
  .stat { padding: 0; }
  .stat-divider { width: 48px; height: 1px; }
  .section-inner { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; }
  .step-connector { display: none; }
  .workflow-visual { flex-direction: column; gap: 12px; padding: 24px; }
  .wv-arrow { transform: rotate(90deg); }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing-visual { flex-direction: column; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}