/* ============================================
   SIMPLIFIC GROWTH LABS — MAIN STYLESHEET
   ============================================ */

:root {
  --bg:          #0a0a0f;
  --bg-2:        #111118;
  --bg-3:        #16161f;
  --border:      rgba(255,255,255,0.08);
  --border-2:    rgba(255,255,255,0.12);
  --text:        #f0f0f5;
  --text-muted:  #8888a0;
  --text-dim:    #5555 66;
  --accent:      #6c63ff;
  --accent-2:    #a78bfa;
  --accent-3:    #38bdf8;
  --green:       #34d399;
  --red:         #f87171;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.5);
  --font:        'Inter', sans-serif;
  --font-display:'Space Grotesk', sans-serif;
  --nav-h:       72px;
  --max-w:       1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* ── UTILS ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
  padding: 4px 12px;
  border: 1px solid rgba(167,139,250,0.2);
  border-radius: 100px;
  background: rgba(167,139,250,0.06);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px rgba(108,99,255,0.3);
}
.btn--primary:hover {
  background: #7c75ff;
  box-shadow: 0 0 32px rgba(108,99,255,0.5);
  transform: translateY(-1px);
}
.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.btn--outline {
  background: transparent;
  color: var(--accent-2);
  border: 1px solid rgba(167,139,250,0.3);
}
.btn--outline:hover {
  background: rgba(167,139,250,0.08);
  border-color: var(--accent-2);
}
.btn--nav {
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 8px;
}
.btn--nav:hover { background: #7c75ff; }
.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}
.btn--full { width: 100%; justify-content: center; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,15,0.9);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.logo-accent { color: var(--accent); }
.nav__links {
  display: flex;
  gap: 8px;
  margin-right: auto;
}
.nav__links a {
  padding: 6px 12px;
  font-size: 14px;
  color: var(--text-muted);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 32px 24px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-link {
  display: block;
  padding: 14px 16px;
  font-size: 18px;
  color: var(--text);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.2s;
}
.mobile-link:hover {
  background: var(--bg-2);
  border-color: var(--border);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}
.glow--1 {
  width: 600px; height: 600px;
  background: var(--accent);
  top: -100px; left: -100px;
  animation: glow-float 8s ease-in-out infinite;
}
.glow--2 {
  width: 400px; height: 400px;
  background: var(--accent-3);
  bottom: 0; right: -50px;
  animation: glow-float 10s ease-in-out infinite reverse;
}
@keyframes glow-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}
.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(108,99,255,0.3);
  border-radius: 100px;
  font-size: 13px;
  color: var(--accent-2);
  background: rgba(108,99,255,0.08);
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero__stats {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 20px 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.stat__label {
  font-size: 12px;
  color: var(--text-muted);
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scroll-down 2s ease-in-out infinite;
}
@keyframes scroll-down {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── PROOF STRIP ── */
.proof-strip {
  padding: 28px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-strip .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.proof-strip__label {
  font-size: 13px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.proof-strip__industries {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.proof-strip__industries span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.proof-strip__industries .dot {
  color: var(--text-muted);
}

/* ── PROBLEM ── */
.problem {
  padding: 120px 0;
}
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.problem__copy p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.75;
}
.problem__copy strong { color: var(--text); }
.check-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.check-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--green);
}
.problem__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pain-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-2);
}
.pain-card--bad {
  border-color: rgba(248,113,113,0.2);
  background: rgba(248,113,113,0.04);
}
.pain-card--good {
  border-color: rgba(52,211,153,0.25);
  background: rgba(52,211,153,0.05);
}
.pain-card__icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.pain-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}
.pain-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pain-card li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.pain-card li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

/* ── HOW IT WORKS ── */
.how {
  padding: 120px 0;
  background: var(--bg-2);
}
.steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  width: 100%;
}
.step__connector {
  padding-left: 26px;
  height: 48px;
  display: flex;
  align-items: center;
  color: var(--border-2);
}
.step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-2);
  background: rgba(108,99,255,0.06);
  flex-shrink: 0;
}
.step__content {
  padding: 4px 0 24px;
}
.step__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(108,99,255,0.1);
  border: 1px solid rgba(108,99,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step__icon svg {
  width: 22px; height: 22px;
  color: var(--accent);
}
.step__content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.step__content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.step__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.step__tags span {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(108,99,255,0.1);
  color: var(--accent-2);
  border: 1px solid rgba(108,99,255,0.15);
}

/* ── SERVICES ── */
.services {
  padding: 120px 0;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover {
  border-color: var(--border-2);
  transform: translateY(-2px);
}
.service-card--featured {
  border-color: rgba(108,99,255,0.4);
  background: rgba(108,99,255,0.05);
  box-shadow: 0 0 40px rgba(108,99,255,0.1);
}
.service-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
}
.service-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(108,99,255,0.1);
  border: 1px solid rgba(108,99,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__icon svg {
  width: 26px; height: 26px;
  color: var(--accent);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
.service-card > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.service-card li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.service-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 11px;
}
.service-card__price {
  font-size: 14px;
  color: var(--text-muted);
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.service-card__price strong {
  color: #fff;
  font-size: 20px;
  font-family: var(--font-display);
}

/* ── RESULTS ── */
.results {
  padding: 120px 0;
  background: var(--bg-2);
}
.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.result-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-3);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
}
.result-card:hover {
  border-color: var(--border-2);
  transform: translateY(-2px);
}
.result-card--accent {
  border-color: rgba(56,189,248,0.2);
  background: rgba(56,189,248,0.03);
}
.result-card__industry {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-2);
}
.result-card__stat { }
.big-num {
  display: block;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.big-label {
  font-size: 14px;
  color: var(--text-muted);
}
.result-card > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.result-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.result-card__tags span {
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 12px;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* ── SYSTEM ── */
.system {
  padding: 120px 0;
  background: var(--bg);
}
.system__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.system__copy p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.75;
}
.tech-stack {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tech-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}
.tech-item strong { color: var(--text); }
.tech-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
/* Flow Diagram */
.system__visual {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}
.flow-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-3);
  min-width: 100px;
  text-align: center;
}
.flow-node span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.flow-node__icon { font-size: 22px; }
.flow-node--source {
  border-color: rgba(56,189,248,0.3);
  background: rgba(56,189,248,0.05);
}
.flow-node--ai {
  border-color: rgba(167,139,250,0.3);
  background: rgba(167,139,250,0.07);
  box-shadow: 0 0 20px rgba(108,99,255,0.15);
}
.flow-node--action {
  border-color: rgba(52,211,153,0.2);
  background: rgba(52,211,153,0.04);
}
.flow-node--result {
  border-color: rgba(251,191,36,0.3);
  background: rgba(251,191,36,0.05);
  min-width: 160px;
}
.flow-arrow {
  font-size: 20px;
  color: var(--text-muted);
  padding: 8px 0;
}
.flow-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 4px 0;
}
.flow-result {
  margin-top: 16px;
}

/* ── ABOUT ── */
.about {
  padding: 120px 0;
  background: var(--bg-2);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}
.about__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.about__info h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff;
  font-size: 16px;
}
.about__info p {
  font-size: 13px;
  color: var(--text-muted);
}
.about__quote {
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  background: rgba(108,99,255,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15px;
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
}
.about__credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cred {
  padding: 20px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.cred__num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cred__text {
  font-size: 12px;
  color: var(--text-muted);
}
.about__copy p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.75;
}
.about__copy .btn {
  margin-top: 8px;
}

/* ── FAQ ── */
.faq {
  padding: 120px 0;
  background: var(--bg);
}
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  transition: border-color 0.2s;
}
.faq__item:hover { border-color: var(--border-2); }
.faq__q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font);
}
.faq__arrow {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-muted);
}
.faq__item.open .faq__arrow { transform: rotate(180deg); }
.faq__a {
  display: none;
  padding: 0 24px 20px;
}
.faq__item.open .faq__a { display: block; }
.faq__a p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── CONTACT ── */
.contact {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(100px);
  opacity: 0.05;
  pointer-events: none;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact__copy p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.75;
}
.contact__promises {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.promise {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}
.promise svg {
  width: 18px; height: 18px;
  color: var(--green);
  flex-shrink: 0;
}
.contact__form-wrap {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.form-group input,
.form-group select {
  padding: 12px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder { color: #44445a; }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(108,99,255,0.15);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option { background: var(--bg-2); }
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.success-icon {
  width: 56px; height: 56px;
  background: rgba(52,211,153,0.15);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--green);
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: #fff;
  margin-bottom: 8px;
}
.form-success p {
  color: var(--text-muted);
}

/* ── FOOTER ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__brand p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 240px;
}
.footer__email a {
  font-size: 14px;
  color: var(--accent-2);
  transition: color 0.2s;
}
.footer__email a:hover { color: var(--accent); }
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__col li,
.footer__col a {
  font-size: 14px;
  color: #44445a;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #33334a;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── CONSENT CHECKBOX ── */
.form-group--consent {
  gap: 0;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}
.consent-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.consent-label a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-label a:hover { color: var(--accent); }

/* ── RESULTS DISCLAIMER ── */
.results__disclaimer {
  margin-top: 32px;
  font-size: 12px;
  color: #44445a;
  line-height: 1.6;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ── FOOTER LEGAL LINKS ── */
.footer__legal-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #33334a;
}
.footer__legal-links a {
  color: #44445a;
  transition: color 0.2s;
}
.footer__legal-links a:hover { color: var(--text-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
  .results__grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .btn--nav { display: none; }
  .nav__burger { display: flex; }

  .hero__stats {
    gap: 20px;
    padding: 16px 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat__divider { display: none; }

  .problem__grid { grid-template-columns: 1fr; gap: 48px; }
  .system__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; max-width: none; margin: 0; }
  .results__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: repeat(3, 1fr); }
  .footer__bottom { flex-direction: column; text-align: center; }
  .contact__form-wrap { padding: 28px 20px; }
  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 60px); padding-bottom: 60px; }
}

@media (max-width: 480px) {
  .hero__cta { flex-direction: column; align-items: center; }
  .btn--lg { width: 100%; justify-content: center; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__col:last-child { display: none; }
  .flow-row { flex-direction: column; align-items: center; }
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
