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

:root {
  --bg-deep: #06091a;
  --bg-primary: #0a0e27;
  --bg-card: rgba(16, 22, 58, 0.6);
  --bg-card-hover: rgba(22, 30, 72, 0.7);
  --accent-blue: #3b7dff;
  --accent-blue-glow: rgba(59, 125, 255, 0.3);
  --accent-yellow: #ffd84d;
  --accent-yellow-glow: rgba(255, 216, 77, 0.2);
  --text-primary: #e8ecf4;
  --text-secondary: rgba(232, 236, 244, 0.6);
  --text-muted: rgba(232, 236, 244, 0.35);
  --border: rgba(59, 125, 255, 0.15);
  --border-bright: rgba(59, 125, 255, 0.35);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  width: 100%;
}

#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  backdrop-filter: blur(20px);
  background: rgba(6, 9, 26, 0.7);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
}
.site-header.scrolled {
  padding: 0.7rem 2rem;
  background: rgba(6, 9, 26, 0.92);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--accent-blue);
  border-radius: 8px;
  display: grid;
  place-items: center;
  position: relative;
}
.logo-icon::before {
  content: '';
  width: 12px; height: 12px;
  border: 2px solid #fff;
  border-radius: 2px;
  transform: rotate(45deg);
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--accent-blue);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--accent-blue) !important;
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s !important;
  box-shadow: 0 0 20px var(--accent-blue-glow);
}
.nav-cta:hover {
  background: #5090ff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 30px var(--accent-blue-glow);
}
.nav-cta::after { display: none !important; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px; height: 32px;
  position: relative;
}
.mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  position: absolute;
  left: 4px;
  transition: all 0.3s;
}
.mobile-toggle span:nth-child(1) { top: 8px; }
.mobile-toggle span:nth-child(2) { top: 15px; }
.mobile-toggle span:nth-child(3) { top: 22px; }

.content-wrapper {
  position: relative;
  z-index: 1;
}

section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 2rem 80px;
}

.hero {
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(59, 125, 255, 0.1);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-blue);
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--accent-blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.15s ease both;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s 0.45s ease both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--accent-blue);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 4px 30px var(--accent-blue-glow), inset 0 1px 0 rgba(255,255,255,0.1);
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(59, 125, 255, 0.5), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.35s ease;
  text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(59, 125, 255, 0.08);
  border-color: var(--accent-blue);
  transform: translateY(-1px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 1s 1s ease both;
}
.scroll-indicator span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-blue), transparent);
  animation: scrollPulse 2s infinite;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent-blue);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.pain-section { flex-direction: column; }
.pain-content { max-width: 800px; text-align: center; }
.pain-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
  max-width: 700px;
  width: 100%;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.4s ease;
  text-align: left;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
}
.pain-item.visible { opacity: 1; transform: translateY(0); }
.pain-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-bright);
  transform: translateX(6px);
}
.pain-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: rgba(59, 125, 255, 0.12);
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.pain-icon svg {
  width: 20px; height: 20px;
  stroke: var(--accent-blue);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pain-item p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.5; }
.pain-item p strong { color: var(--text-primary); font-weight: 600; }

.scroll-arrow {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.3s;
}
.scroll-arrow:hover { color: var(--accent-blue); }
.scroll-arrow span { font-size: 0.8rem; font-family: var(--font-mono); }
.scroll-arrow svg {
  width: 24px; height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  animation: bounceDown 2s infinite;
}

/* ===== HOW SECTION — SPLIT LAYOUT ===== */
.how-section {
  flex-direction: column;
  align-items: center;
  padding: 120px 2rem 80px;
  overflow: hidden;
}

/* soft glow — not clipped, bleeds freely */
.how-section::before {
  content: '';
  position: absolute;
  top: -8%;
  left: -6%;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(59,125,255,0.09), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.how-split {
  display: grid;
  grid-template-columns: 300px 1fr;
  max-width: 1280px;
  width: 100%;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.how-left {
  position: sticky;
  top: 120px;
}
.how-left .section-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 0;
}

.how-right {
  border-left: 1px solid var(--border);
  padding-left: 3.5rem;
  display: flex;
  flex-direction: column;
}

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateX(24px);
}
.how-step:first-child { padding-top: 0; }
.how-step:last-child  { border-bottom: none; padding-bottom: 0; }
.how-step.visible     { opacity: 1; transform: translateX(0); }

.how-step:hover .how-step-icon { border-color: var(--border-bright); background: rgba(59,125,255,0.08); }

.how-step-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border: 1px solid var(--border);
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(59,125,255,0.03);
  transition: all 0.35s ease;
}
.how-step-icon svg { width: 58px; height: 58px; }

.how-step-body { flex: 1; }
.how-step-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}
.how-step-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}
.how-step-body p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* legacy */
.how-cta-box { display: none; }
.step-card, .steps-grid, .how-content, .step-number { display: none; }

/* ===== DEEPER SECTION ===== */
.deeper-section {
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.deeper-wave {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.deeper-wave-svg {
  width: 100%;
  height: 100%;
  animation: deeperPulse 6s ease-in-out infinite alternate;
}

@keyframes deeperPulse {
  from { opacity: 0.7; }
  to   { opacity: 1; }
}

.deeper-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.deeper-inner .section-tag { margin-bottom: 0; }

.deeper-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.deeper-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 520px;
}

.faq-section { flex-direction: column; }
.faq-content { max-width: 760px; width: 100%; }
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
}
.faq-item.visible { opacity: 1; transform: translateY(0); }
.faq-item:hover { border-color: var(--border-bright); }
.faq-q {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  user-select: none;
}
.faq-q svg {
  width: 20px; height: 20px;
  stroke: var(--accent-blue);
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s;
  min-width: 20px;
}
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a-inner { padding: 0 1.5rem 1.5rem; font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }

.cases-section { flex-direction: column; }
.cases-content { max-width: 700px; text-align: center; }
.cases-box {
  margin-top: 2.5rem;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.cases-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(59, 125, 255, 0.06), transparent 70%);
  pointer-events: none;
}
.cases-nda {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-yellow);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.cases-nda svg { width: 16px; height: 16px; stroke: var(--accent-yellow); fill: none; stroke-width: 1.5; }
.cases-box p { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 2rem; position: relative; }

.pricing-section { flex-direction: column; }
.pricing-content { max-width: 1100px; width: 100%; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.price-card {
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}
.price-card.visible { opacity: 1; transform: translateY(0); }
.price-card:hover { transform: translateY(-6px); border-color: var(--border-bright); }
.price-card.featured {
  border-color: var(--accent-blue);
  background: linear-gradient(180deg, rgba(59, 125, 255, 0.12), var(--bg-card));
}
.price-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-yellow));
}
.price-label { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; }
.price-amount { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--accent-blue); margin-bottom: 1rem; }
.price-amount small { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.price-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 2rem; }
.price-card .btn-primary,
.price-card .btn-secondary { width: 100%; justify-content: center; }

.cta-section { flex-direction: column; }
.cta-content { max-width: 600px; text-align: center; width: 100%; }
.cta-form { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.form-group { position: relative; }
.form-group input {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s;
}
.form-group input::placeholder { color: var(--text-muted); }
.form-group input:focus { border-color: var(--accent-blue); box-shadow: 0 0 0 3px var(--accent-blue-glow); }
.form-submit { margin-top: 0.5rem; }
.form-submit .btn-primary { width: 100%; justify-content: center; font-size: 1.05rem; padding: 1.1rem 2rem; }
.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.5rem; }
.form-note a { color: var(--accent-blue); text-decoration: underline; text-underline-offset: 2px; }

.form-error {
  display: none;
  text-align: center;
  padding: 1rem;
  margin-top: 0.5rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 10px;
  color: #f87171;
  font-size: 0.9rem;
}
.form-error.active { display: block; }

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  background: rgba(6, 9, 26, 0.9);
  backdrop-filter: blur(20px);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-left { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-copy { font-size: 0.85rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent-blue); }

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6, 9, 26, 0.85);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 20px;
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2.5rem;
}
.modal-box h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; margin-bottom: 1.5rem; }
.modal-box p, .modal-box li { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 0.75rem; }
.modal-box h3 { font-size: 1.05rem; font-weight: 600; color: var(--text-primary); margin-top: 1.5rem; margin-bottom: 0.75rem; }
.modal-box ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.modal-close {
  margin-top: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s;
}
.modal-close:hover { border-color: var(--accent-blue); }

.form-success { display: none; text-align: center; padding: 2rem; }
.form-success.active { display: block; }
.form-success svg { width: 48px; height: 48px; stroke: #4ade80; fill: none; stroke-width: 1.5; margin-bottom: 1rem; }
.form-success h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; }
.form-success p { color: var(--text-secondary); font-size: 0.95rem; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes scrollPulse { 0% { opacity: 1; transform: scaleY(1); } 50% { opacity: 0.3; transform: scaleY(0.6); } 100% { opacity: 1; transform: scaleY(1); } }
@keyframes bounceDown { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 900px) {
  .how-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .how-left {
    position: static;
  }
  .how-right {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 2.5rem;
  }
  .deeper-title { font-size: clamp(2rem, 6vw, 3rem); }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.75rem 1rem;
  }
  .site-header.scrolled {
    padding: 0.5rem 1rem;
  }
  .header-inner {
    width: 100%;
    min-width: 0;
  }

  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(6, 9, 26, 0.96);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 1rem;
    gap: 1rem;
    backdrop-filter: blur(20px);
    box-sizing: border-box;
  }

  section { padding: 100px 1rem 60px; min-height: auto; }
  .hero { min-height: 100vh; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .how-step { gap: 1rem; }
  .how-step-icon { width: 64px; height: 64px; min-width: 64px; border-radius: 12px; }
  .how-step-icon svg { width: 44px; height: 44px; }
  .how-step-body h3 { font-size: 1rem; }
  .deeper-section { min-height: 70vh; }
  .deeper-inner { padding: 0 1rem; }
}

/* Стили, перенесённые из inline-атрибутов */
.pricing-section .section-title { text-align: center; }

.cta-subtitle {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.footer-left .logo { font-size: 1.2rem; }
.footer-left .logo-icon { width: 28px; height: 28px; }
