/* ============================================
   Capsule Media Group — Premium Lead Gen Site
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #0a0a0f;
  --color-bg-alt: #111118;
  --color-surface: #16161f;
  --color-surface-2: #1e1e2a;
  --color-text: #eeeef0;
  --color-text-muted: #9999a8;
  --color-primary: #6c5ce7;
  --color-primary-light: #a29bfe;
  --color-accent: #00cec9;
  --color-accent-2: #fd79a8;
  --color-border: rgba(255,255,255,0.08);
  --color-border-focus: var(--color-primary);
  --color-error: #ff6b6b;
  --color-success: #00b894;
  --gradient-main: linear-gradient(135deg, #6c5ce7 0%, #00cec9 50%, #fd79a8 100%);
  --gradient-text: linear-gradient(135deg, #a29bfe 0%, #00cec9 50%, #fd79a8 100%);
  --gradient-card: linear-gradient(135deg, rgba(108,92,231,0.1), rgba(0,206,201,0.05));
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.3);
  --shadow-lg: 0 16px 60px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(108,92,231,0.15);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

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

img { max-width: 100%; display: block; }

a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--color-accent); }

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 760px;
}

/* Gradient text */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.813rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  background: rgba(0,206,201,0.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10,10,15,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(10,10,15,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo:hover { color: var(--color-text); text-decoration: none; }

.logo-icon {
  font-size: 1.5rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-accent {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--color-text);
  text-decoration: none;
}

.nav-cta {
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  background: var(--color-primary);
  padding: 10px 24px;
  border-radius: 100px;
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  background: #5a4bd4;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(108,92,231,0.4);
}

.cta-arrow {
  display: inline-block;
  transition: transform var(--transition);
}

.nav-cta:hover .cta-arrow {
  transform: translateX(3px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: saturate(0.5);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(108,92,231,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(0,206,201,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(253,121,168,0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--color-bg) 0%, transparent 20%, transparent 80%, var(--color-bg) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn:hover { text-decoration: none; }

.btn-primary {
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 4px 20px rgba(108,92,231,0.3);
}

.btn-primary:hover {
  background: #5a4bd4;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108,92,231,0.5);
  color: #fff;
}

.btn-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

.btn-ghost {
  color: var(--color-text);
  background: transparent;
  border: 1px solid var(--color-border);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
  color: var(--color-text);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px 48px;
  backdrop-filter: blur(10px);
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat span {
  display: block;
  font-size: 0.813rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: 48px 0;
  border-bottom: 1px solid var(--color-border);
}

.trust-label {
  text-align: center;
  font-size: 0.813rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  opacity: 0.6;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-logos span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-muted);
  opacity: 0.4;
  letter-spacing: -0.01em;
  transition: opacity var(--transition);
}

.trust-logos span:hover {
  opacity: 0.7;
}

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

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

.service-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px 28px 32px;
  transition: all var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: rgba(108,92,231,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  border-color: rgba(108,92,231,0.3);
  background: linear-gradient(180deg, rgba(108,92,231,0.08) 0%, var(--color-surface) 100%);
}

.service-card.featured::before {
  opacity: 1;
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.688rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  background: rgba(108,92,231,0.15);
  padding: 4px 12px;
  border-radius: 100px;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(108,92,231,0.1);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  color: var(--color-primary-light);
}

.service-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card > p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  font-size: 0.838rem;
  color: var(--color-text-muted);
  padding: 6px 0;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li::before {
  content: '→';
  color: var(--color-accent);
  font-weight: 600;
}

/* ============================================
   RESULTS / CHARTS
   ============================================ */
.results {
  padding: 120px 0;
  background: var(--color-bg-alt);
}

.charts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.chart-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--transition);
}

.chart-card:hover {
  border-color: rgba(108,92,231,0.3);
  box-shadow: var(--shadow-glow);
}

.chart-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.chart-desc {
  font-size: 0.838rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.chart-wrap {
  position: relative;
  height: 260px;
}

.chart-wrap canvas {
  width: 100% !important;
  height: 100% !important;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}

.stat-card:hover {
  border-color: rgba(0,206,201,0.3);
  transform: translateY(-3px);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.838rem;
  color: var(--color-text-muted);
}

/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.process {
  padding: 120px 0;
}

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

.process-step {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(108,92,231,0.3);
}

.step-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 3rem;
  font-weight: 900;
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
}

.step-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.8);
  transition: filter var(--transition);
}

.process-step:hover .step-img {
  filter: brightness(0.7) saturate(1);
}

.process-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 24px;
  padding-top: 24px;
  margin-bottom: 8px;
}

.process-step > p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0 24px;
  padding-bottom: 28px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 120px 0;
  background: var(--color-bg-alt);
}

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

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(253,121,168,0.3);
  transform: translateY(-3px);
}

.testimonial-stars {
  font-size: 1.1rem;
  color: #ffd700;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-border);
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.testimonial-author span {
  font-size: 0.813rem;
  color: var(--color-text-muted);
}

/* ============================================
   CONTACT / LEAD FORM
   ============================================ */
.contact {
  padding: 120px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text);
}

.contact-feature svg {
  width: 20px;
  height: 20px;
  color: var(--color-success);
  flex-shrink: 0;
}

.contact-img {
  border-radius: var(--radius-xl);
  height: 240px;
  object-fit: cover;
  border: 1px solid var(--color-border);
}

.contact-form-wrap {
  position: sticky;
  top: 100px;
}

.lead-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text);
}

.req {
  color: var(--color-error);
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 0.938rem;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(108,92,231,0.2);
}

.form-group input.invalid,
.form-group textarea.invalid {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(255,107,107,0.15);
}

.form-group textarea {
  resize: vertical;
}

.field-note {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* Consent Block (A2P) */
.consent-block {
  margin: 24px 0 28px;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.consent-check input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.consent-label {
  font-size: 0.813rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  cursor: pointer;
}

.consent-fine-print {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 12px;
  line-height: 1.6;
  opacity: 0.7;
}

.consent-fine-print a {
  color: var(--color-primary-light);
  text-decoration: underline;
}

/* Tooltip */
.tooltip-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-style: normal;
  color: var(--color-primary-light);
  vertical-align: middle;
  margin-left: 4px;
}

.tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  padding: 16px;
  background: var(--color-surface-2);
  color: var(--color-text);
  font-size: 0.75rem;
  line-height: 1.6;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  z-index: 50;
  font-weight: 400;
}

.tooltip a {
  color: var(--color-accent);
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--color-surface-2);
}

.tooltip-trigger:hover .tooltip,
.tooltip-trigger:focus .tooltip {
  display: block;
}

/* Form Submit */
.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px;
  margin-top: 4px;
}

.form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(0,184,148,0.1);
  color: var(--color-success);
  border: 1px solid rgba(0,184,148,0.2);
}

.form-message.error {
  display: block;
  background: rgba(255,107,107,0.1);
  color: var(--color-error);
  border: 1px solid rgba(255,107,107,0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 64px 0 32px;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 300px;
}

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

.footer-col h4 {
  font-size: 0.813rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--color-text);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.813rem;
  color: var(--color-text-muted);
  opacity: 0.6;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding: 140px 0 80px;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 48px;
}

.legal-page h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--color-text);
}

.legal-page h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--color-text);
}

.legal-page p,
.legal-page li {
  font-size: 0.938rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.legal-page ul {
  padding-left: 24px;
  margin: 8px 0 16px;
}

.legal-page li {
  margin-bottom: 6px;
}

.legal-back {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.legal-back a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary-light);
  transition: color var(--transition);
}

.legal-back a:hover {
  color: var(--color-accent);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px 32px;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

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

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

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrap {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 24px 20px;
  }

  .tooltip {
    width: 260px;
    left: auto;
    right: -10px;
    transform: none;
  }

  .tooltip::after {
    left: auto;
    right: 16px;
    transform: none;
  }

  .trust-logos {
    gap: 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .stats-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}
