:root {
  --bg: #F6F3EE;
  --fg: #1A1816;
  --accent: #D4581A;
  --accent-light: #F0D9C8;
  --muted: #8A8278;
  --card-bg: #FFFFFF;
  --border: #E2DDD6;
  --stat-bg: #1A1816;
  --stat-fg: #F6F3EE;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 243, 238, 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;
  justify-content: space-between;
}

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

.brand-mark {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.brand-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  font-family: 'Sora', sans-serif;
}
.nav-phone:hover { color: var(--accent); }

.nav-tag {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-lede {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 460px;
}

/* Dashboard preview */
.dash-preview {
  background: var(--stat-bg);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 24px 64px rgba(26, 24, 22, 0.18), 0 4px 16px rgba(26, 24, 22, 0.08);
}

.dash-header {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(246, 243, 238, 0.2);
}

.dash-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.dash-stat {
  background: rgba(246, 243, 238, 0.08);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
}

.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #F6F3EE;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 10px;
  color: rgba(246, 243, 238, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dash-status {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(246, 243, 238, 0.5);
  padding: 10px 4px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #4ADE80;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-accent-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
}

/* Features */
.features {
  padding: 96px 32px;
  background: var(--card-bg);
}

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

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(212, 88, 26, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* Outcomes */
.outcomes {
  padding: 64px 32px;
  background: var(--fg);
}

.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.outcome-block {
  text-align: center;
  padding: 0 56px;
}

.outcome-number {
  font-family: 'Sora', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.outcome-label {
  font-size: 14px;
  color: rgba(246, 243, 238, 0.55);
  max-width: 180px;
  line-height: 1.5;
}

.outcome-divider {
  width: 1px;
  height: 60px;
  background: rgba(246, 243, 238, 0.12);
  flex-shrink: 0;
}

/* Closing */
.closing {
  padding: 96px 32px;
  background: var(--bg);
  text-align: center;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing-headline {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.closing-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 32px;
  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: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.footer-tag {
  font-size: 13px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 56px 24px 48px;
  }

  .hero-visual {
    order: -1;
  }

  .dash-body {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .outcomes-inner {
    flex-direction: column;
    gap: 32px;
  }

  .outcome-divider {
    width: 60px;
    height: 1px;
  }

  .outcome-block {
    padding: 0;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: #b94d16; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-block;
  color: var(--muted);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 20px;
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.btn-ghost:hover { color: var(--fg); background: rgba(26,24,22,0.06); }

.btn-ghost-sm {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-ghost-sm:hover { background: #b94d16; }

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover:not(:disabled) { background: #b94d16; transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Hero actions row */
.hero-phone {
  margin-top: 24px;
}
.hero-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--fg);
  text-decoration: none;
  transition: color 0.2s;
}
.hero-phone-link:hover { color: var(--accent); }
.hero-phone-link svg { color: var(--accent); flex-shrink: 0; }

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Hero image */
.hero-image-frame {
  border-radius: 16px;
  overflow: hidden;
  background: var(--border);
  aspect-ratio: 4/3;
}
.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
}
.hero-image-placeholder svg { opacity: 0.35; }
.hero-image-placeholder p { font-size: 13px; opacity: 0.6; }

/* Quote form section */
.quote-section {
  padding: 96px 32px;
  background: var(--card-bg);
}
.quote-inner {
  max-width: 680px;
  margin: 0 auto;
}
.quote-header { text-align: center; margin-bottom: 48px; }
.quote-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
}

.lead-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.01em;
}
.label-optional { font-weight: 400; color: var(--muted); }
.form-group input,
.form-group select {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  color: var(--fg);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group input::placeholder { color: var(--muted); }

.form-error {
  background: #fde8e8;
  color: #c0392b;
  border: 1px solid #f5c6c6;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
}
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.form-success {
  text-align: center;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--accent);
}
.form-success h3 { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 700; color: var(--fg); }
.form-success p { color: var(--muted); font-size: 15px; }

/* Services section */
.services { padding: 96px 32px; background: var(--bg); }
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(212,88,26,0.08);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-desc { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* Why us */
.why-us { padding: 80px 32px; background: var(--fg); }
.why-us-inner { max-width: 1100px; margin: 0 auto; }
.why-us .section-title { color: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.why-icon {
  width: 44px;
  height: 44px;
  background: rgba(246,243,238,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.why-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 6px;
}
.why-desc { font-size: 14px; color: rgba(246,243,238,0.55); line-height: 1.6; }

/* Social proof / reviews */
.social-proof { padding: 96px 32px; background: var(--card-bg); }
.social-proof-inner { max-width: 1100px; margin: 0 auto; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.stars { display: flex; gap: 2px; margin-bottom: 16px; color: var(--accent); }
.review-text {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.review-author { font-size: 13px; font-weight: 600; color: var(--muted); }

/* Closing */
.closing {
  padding: 96px 32px;
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 600px; margin: 0 auto; }
.closing-inner .btn-primary { margin-top: 28px; }

/* Footer */
.footer { background: var(--card-bg); border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-left { display: flex; flex-direction: column; gap: 6px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--fg);
}
.footer-tag { font-size: 13px; color: var(--muted); }
.footer-right { text-align: right; }
.footer-contact { font-size: 13px; color: var(--muted); line-height: 1.7; }
.footer-contact a { color: var(--muted); text-decoration: none; }
.footer-contact a:hover { color: var(--accent); }

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 56px 24px 48px; }
  .hero-visual { order: -1; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-right { text-align: left; }
  .quote-card { padding: 28px 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-ghost { padding-left: 0; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 40px; }
  .closing-headline { font-size: 28px; }
  .quote-section, .services, .social-proof { padding: 64px 20px; }
  .why-us { padding: 64px 20px; }
}