:root {
  --bg: #FAF9F6;
  --bg-alt: #F2F0EC;
  --fg: #1A1A1A;
  --fg-muted: #6B6B6B;
  --accent: #FF6B35;
  --accent-dim: rgba(255, 107, 53, 0.12);
  --border: #E2DFDA;
}

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

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

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--fg);
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,53,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,53,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(255,107,53,0.18) 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255,107,53,0.3);
  background: rgba(255,107,53,0.08);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 48px;
}
.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto;
}
.proof-item {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
}
.proof-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.proof-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ── MISSION ── */
.mission {
  padding: 80px 24px;
  background: var(--bg);
}
.mission-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.mission-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.mission-statement {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}
.mission-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── SERVICES ── */
.services {
  padding: 80px 24px;
  background: var(--bg);
}
.services-header {
  max-width: 1100px;
  margin: 0 auto 56px;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--fg);
  line-height: 1.15;
}
.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  border-color: rgba(255,107,53,0.3);
  box-shadow: 0 4px 24px rgba(255,107,53,0.06);
}
.service-icon {
  margin-bottom: 16px;
}
.service-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.service-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.service-card-cta {
  background: var(--accent-dim);
  border: 1px solid rgba(255,107,53,0.2);
}
.service-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}
.cta-orb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.15;
}
.cta-text {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── DIFFERENCE ── */
.difference {
  padding: 80px 24px;
  background: var(--bg-alt);
}
.difference-header {
  max-width: 1100px;
  margin: 0 auto 48px;
}
.diff-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.diff-col {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}
.diff-col-warm {
  background: #FFF9F5;
  border-color: rgba(255,107,53,0.15);
}
.diff-col-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.diff-col-label-warm {
  color: var(--accent);
}
.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
}
.diff-item:last-child { border-bottom: none; }
.diff-item-warm {
  color: var(--fg);
}
.diff-x, .diff-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.diff-x { background: #F0F0F0; }
.diff-check { background: var(--accent-dim); }

/* ── PRICING ── */
.pricing {
  padding: 80px 24px;
  background: var(--bg);
}
.pricing-header {
  max-width: 1100px;
  margin: 0 auto 48px;
}
.pricing-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
}
.pricing-card-main {
  background: var(--fg);
  border-color: var(--fg);
}
.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.pricing-card-main .pricing-tier { color: rgba(255,107,53,0.7); }
.pricing-range {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 10px;
}
.pricing-card-main .pricing-range { color: #FFFFFF; }
.pricing-per {
  font-size: 20px;
  font-weight: 400;
}
.pricing-note {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.pricing-card-main .pricing-note { color: rgba(255,255,255,0.5); }
.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-includes li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
}
.pricing-card-main .pricing-includes li { color: rgba(255,255,255,0.6); }
.pricing-cta {
  max-width: 900px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
}

/* ── CLOSING ── */
.closing {
  padding: 80px 24px 100px;
  background: var(--fg);
}
.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 48px;
}
.closing-loop {
  display: flex;
  justify-content: center;
  animation: rotate-slow 20s linear infinite;
}
@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── FOOTER ── */
.site-footer {
  padding: 32px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--fg);
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .hero { padding: 64px 20px 56px; }
  .hero-proof { flex-direction: column; }
  .proof-divider { width: 60%; height: 1px; }
  .diff-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .nav-tagline { display: none; }
}