:root {
  --bg: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --fg: #e8e8ed;
  --fg-muted: #8a8a9a;
  --accent: #ff4d2e;
  --accent-glow: rgba(255, 77, 46, 0.15);
  --accent-soft: #ff6b4f;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 60px;
  position: relative;
  background: 
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(255, 77, 46, 0.08), transparent),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(255, 107, 79, 0.05), transparent),
    var(--bg);
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.rec-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 32px;
  padding: 6px 14px;
  background: var(--accent-glow);
  border-radius: 100px;
  border: 1px solid rgba(255, 77, 46, 0.2);
}

.rec-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 40px;
  max-width: 800px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-soft);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  max-width: 160px;
}

/* ===== SECTION TAG ===== */
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* ===== PROBLEM ===== */
.problem {
  padding: 120px 24px;
  background: var(--bg-secondary);
}

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
}

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

.problem-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.problem-icon {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 24px;
}

.services-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.services h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
}

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

.service-card {
  padding: 40px 32px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

.service-card:hover {
  border-color: rgba(255, 77, 46, 0.3);
}

.service-highlight {
  border-color: rgba(255, 77, 46, 0.2);
  background: linear-gradient(135deg, var(--bg-card), rgba(255, 77, 46, 0.04));
}

.service-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== NICHES ===== */
.niches {
  padding: 120px 24px;
  background: var(--bg-secondary);
}

.niches-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.niches h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.niche-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.niche-tag {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg);
  transition: all 0.3s;
}

.niche-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.niches-note {
  font-size: 1.05rem;
  color: var(--fg-muted);
}

/* ===== HOW ===== */
.how {
  padding: 120px 24px;
}

.how-inner {
  max-width: 700px;
  margin: 0 auto;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
}

.how-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.step-marker {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border: 1px solid rgba(255, 77, 46, 0.25);
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.step-line {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255, 77, 46, 0.2), transparent);
  margin-left: 23px;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 24px;
  background: var(--bg-secondary);
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.closing p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.closing-line {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 40px auto;
}

.closing-tagline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg) !important;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 60px 24px 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand-col {
  flex-shrink: 0;
  min-width: 200px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.footer-links-grid {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 140px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--fg); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.footer-legal {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ===== NAV ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-link:hover { color: var(--fg); background: rgba(255,255,255,0.04); }

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(255, 77, 46, 0.25);
  border-radius: 8px;
  padding: 7px 16px;
  text-decoration: none;
  transition: all 0.2s;
  margin-left: 8px;
}

.nav-cta:hover {
  background: rgba(255, 77, 46, 0.22);
  border-color: rgba(255, 77, 46, 0.5);
}

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.nav-dropdown:hover .nav-dropdown-menu { display: flex; flex-direction: column; gap: 2px; }

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-dropdown-item:hover { color: var(--fg); background: rgba(255,255,255,0.05); }

.nav-dd-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  width: 24px;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.nav-mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--fg-muted);
  border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  background: var(--accent);
  border: none;
  border-radius: 10px;
  padding: 13px 26px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(255, 77, 46, 0.25);
}

.btn-primary:hover {
  background: var(--accent-soft);
  box-shadow: 0 6px 28px rgba(255, 77, 46, 0.35);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg-muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 24px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  color: var(--fg);
  border-color: rgba(255,255,255,0.15);
}

/* ===== HERO ACTIONS ===== */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ===== NICHE TAG LINKS ===== */
.niche-tag-link {
  text-decoration: none;
  display: inline-block;
}

/* ===== NICHES CTA ===== */
.niches-cta {
  margin-top: 40px;
}

/* ===== CLOSING ACTIONS ===== */
.closing-actions {
  margin-top: 40px;
}

/* ===== SERVICE LINK CARDS ===== */
.service-link-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-learn {
  display: block;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-4px);
}

.service-link-card:hover .service-learn {
  opacity: 1;
  transform: translateX(0);
}

/* ===== SERVICE DETAIL PAGE ===== */
.service-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 80px 24px 60px;
  background:
    radial-gradient(ellipse 50% 60% at 10% 50%, rgba(255, 77, 46, 0.07), transparent),
    var(--bg);
}

.service-hero-inner {
  max-width: 780px;
  margin: 0 auto;
}

.service-hero-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.service-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.service-hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.service-section-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 24px;
}

.service-why {
  background: var(--bg-secondary);
}

.service-why-text {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-top: 20px;
}

.service-bullets-section {
  background: var(--bg);
}

.service-bullets {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--fg-muted);
}

.bullet-check {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 2px;
}

.service-outcome {
  background: var(--bg-secondary);
}

.outcome-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 77, 46, 0.2);
  border-radius: var(--radius);
  padding: 48px 40px;
}

.outcome-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.outcome-text {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-other {
  background: var(--bg);
}

.service-other-intro {
  color: var(--fg-muted);
  margin: 12px 0 36px;
  font-size: 1rem;
}

/* ===== NICHE DETAIL PAGE ===== */
.niche-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 80px 24px 60px;
  background:
    radial-gradient(ellipse 50% 60% at 90% 40%, rgba(255, 77, 46, 0.06), transparent),
    var(--bg);
}

.niche-hero-inner {
  max-width: 780px;
  margin: 0 auto;
}

.niche-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 16px 0 20px;
}

.niche-hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.niche-section-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 24px;
}

.niche-pain {
  background: var(--bg-secondary);
}

.niche-pain-text {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-top: 20px;
}

.niche-stats {
  background: var(--bg);
}

.niche-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 12px;
}

.niche-stat-card {
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.niche-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-soft);
  margin-bottom: 8px;
}

.niche-stat-label {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.niche-services {
  background: var(--bg-secondary);
}

.niche-service-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.niche-service-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.niche-cta-section {
  background: var(--bg);
}

.niche-cta-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 77, 46, 0.15);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
}

.niche-cta-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.niche-cta-card p {
  color: var(--fg-muted);
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.6;
}

.other-niches {
  background: var(--bg-secondary);
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  min-height: calc(100vh - 60px);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  align-items: start;
}

.contact-header {
  margin-bottom: 36px;
}

.contact-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 12px 0 16px;
}

.contact-lede {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.form-error-banner {
  background: rgba(255, 77, 46, 0.12);
  border: 1px solid rgba(255, 77, 46, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--accent-soft);
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
}

.form-label-optional {
  font-weight: 400;
  color: var(--fg-muted);
  opacity: 0.6;
}

.form-input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--fg);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: rgba(255, 77, 46, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 77, 46, 0.08);
}

.form-input::placeholder { color: var(--fg-muted); opacity: 0.5; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8a9a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.6;
}

.btn-submit {
  width: 100%;
  font-size: 1rem;
  padding: 15px 24px;
  margin-top: 4px;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
  opacity: 0.7;
}

/* Contact sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 80px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.sidebar-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.sidebar-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.sidebar-step-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  width: 20px;
  margin-top: 2px;
}

.sidebar-card-proof {
  border-color: rgba(255, 77, 46, 0.12);
}

.sidebar-stat {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.sidebar-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-soft);
  font-size: 1.1rem;
}

/* Contact success */
.contact-success {
  text-align: center;
  padding: 60px 0;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-glow);
  border: 1px solid rgba(255, 77, 46, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto 28px;
}

.contact-success h1 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.contact-success p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-sidebar {
    padding-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .sidebar-card:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .hero { min-height: auto; padding: 60px 20px 40px; }
  .hero-stats { flex-direction: column; gap: 24px; margin-top: 40px; padding-top: 32px; }
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .problem, .services, .niches, .how, .closing { padding: 80px 20px; }
  .how-step { gap: 20px; }
  .step-marker { width: 40px; height: 40px; font-size: 12px; }
  .step-line { margin-left: 19px; }
  .niche-stats-grid { grid-template-columns: 1fr; }
  .service-section-inner, .niche-section-inner { padding: 60px 20px; }
  .outcome-card, .niche-cta-card { padding: 32px 24px; }
  .footer-top { flex-direction: column; gap: 36px; }
  .footer-links-grid { gap: 32px; }
  .nav-links { display: none; }
  .nav-links.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 4px;
  }
  .nav-mobile-toggle { display: flex; }
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 4px 0 4px 12px;
  }
  .nav-dropdown:hover .nav-dropdown-menu { display: flex; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .niche-tags { gap: 8px; }
  .niche-tag { font-size: 0.85rem; padding: 8px 16px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .contact-sidebar { display: flex; }
}