/* Fonts */
:root {
  --bg: #F5F0E8;
  --fg: #1A1612;
  --accent: #E8541A;
  --accent-dark: #C44415;
  --muted: #7A6F66;
  --surface: #EDE8DF;
  --border: #D8D2C8;
  --white: #FFFFFF;
  --feature-bg: #F0EBE3;
}

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

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

h1, h2, h3, .hero-headline, .services-headline, .process-headline, .pricing-headline, .closing-headline, .proof-headline {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
}
.nav-tag {
  font-size: 12px;
  color: var(--muted);
  background: var(--surface);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 32px 80px;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4;
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.label-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-size: clamp(36px, 6vw, 68px);
  color: var(--fg);
  max-width: 820px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 40px;
  width: fit-content;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-value {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--accent);
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  max-width: 120px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin: 0 40px;
}

/* Proof */
.proof {
  padding: 80px 32px;
  background: var(--fg);
  color: var(--bg);
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.proof-headline {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 24px;
  color: var(--bg);
}
.proof-body {
  font-size: 17px;
  color: #C8C0B4;
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.proof-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #2E2924;
  border-radius: 12px;
  overflow: hidden;
}
.proof-num {
  padding: 32px 28px;
  background: #252019;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.proof-num strong {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--bg);
}
.proof-num span {
  font-size: 14px;
  color: #9A9086;
  line-height: 1.4;
}

/* Services */
.services {
  padding: 96px 32px;
}
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.services-headline {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 56px;
  max-width: 560px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}
.service-card {
  background: var(--bg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s;
}
.service-card:hover {
  background: var(--feature-bg);
}
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.service-card h3 {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
.service-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.services-cta-note {
  text-align: center;
}
.services-cta-note p {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  font-style: italic;
}

/* Process */
.process {
  padding: 96px 32px;
  background: var(--fg);
  color: var(--bg);
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.process .section-label {
  color: #E8541A;
}
.process-headline {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--bg);
  margin-bottom: 64px;
  max-width: 560px;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid #2E2924;
  align-items: start;
}
.step:last-child {
  border-bottom: none;
}
.step-num {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #3A3328;
  line-height: 1;
}
.step-body h3 {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 12px;
}
.step-body p {
  font-size: 16px;
  color: #9A9086;
  line-height: 1.7;
  max-width: 620px;
}

/* Pricing */
.pricing {
  padding: 96px 32px;
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-headline {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
}
.pricing-card--featured {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-tier {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.pricing-card--featured .pricing-tier {
  color: var(--bg);
}
.pricing-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}
.price-setup {
  font-size: 13px;
  color: var(--muted);
}
.pricing-card--featured .price-setup {
  color: #9A9086;
}
.price-month {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
}
.price-month span {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
}
.pricing-card--featured .price-month span {
  color: #9A9086;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.pricing-card--featured .pricing-features li {
  color: #C8C0B4;
}
.pricing-best {
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  line-height: 1.5;
}
.pricing-card--featured .pricing-best {
  color: #9A9086;
  border-top-color: #3A3328;
}

/* Industries */
.industries {
  padding: 80px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.industries-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.industries .section-label {
  margin-bottom: 32px;
}
.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.industry-tag {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 100px;
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  transition: all 0.2s;
}
.industry-tag:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.industries-cta p {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.4;
}

/* Closing */
.closing {
  padding: 96px 32px;
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.closing-headline {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 24px;
  max-width: 780px;
}
.closing-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-logo {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--fg);
}
.footer-desc {
  font-size: 13px;
  color: var(--muted);
  max-width: 320px;
}
.footer-meta {
  font-size: 12px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 64px 24px 56px; }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px 28px;
    width: 100%;
  }
  .stat-divider { display: none; }
  .stat { flex-direction: row; align-items: baseline; gap: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .proof-numbers { grid-template-columns: 1fr; }
  .step { grid-template-columns: 56px 1fr; gap: 20px; padding: 28px 0; }
  .step-num { font-size: 36px; }
  .nav-inner { padding: 14px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}