/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #060d18;
  --surface: #0a1628;
  --surface-2: #0f1e36;
  --border: rgba(59, 130, 246, 0.12);
  --accent: #3b82f6;
  --accent-cyan: #06b6d4;
  --accent-glow: rgba(59, 130, 246, 0.2);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(6, 13, 24, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

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

.nav-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.nav-link:hover { color: #fff; }

.nav-cta {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: #fff;
  background: var(--accent);
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 60px 80px;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.cta-lg {
  font-size: 0.95rem;
  padding: 14px 32px;
}

.hero-trust-badges {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.trust-badge-icon {
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 0.85rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}

.stat:first-child { padding-left: 0; }

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

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

/* === HERO VISUAL === */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 480px;
}

.geo-grid {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.geo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.geo-ring-1 { width: 260px; height: 260px; border-color: rgba(59, 130, 246, 0.3); }
.geo-ring-2 { width: 360px; height: 360px; border-color: rgba(6, 182, 212, 0.15); }
.geo-ring-3 { width: 480px; height: 480px; border-color: rgba(59, 130, 246, 0.08); border-style: dashed; }

.geo-node {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
}

.geo-node-1 { width: 12px; height: 12px; top: 20%; left: 35%; box-shadow: 0 0 20px var(--accent); }
.geo-node-2 { width: 8px; height: 8px; top: 50%; right: 20%; background: var(--accent-cyan); box-shadow: 0 0 16px var(--accent-cyan); }
.geo-node-3 { width: 16px; height: 16px; bottom: 25%; left: 25%; background: var(--accent); opacity: 0.7; }
.geo-node-4 { width: 6px; height: 6px; top: 35%; right: 35%; background: #fff; opacity: 0.5; }

.geo-line-h, .geo-line-v {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.geo-line-h { height: 1px; top: 50%; left: 10%; right: 10%; }
.geo-line-v { width: 1px; left: 50%; top: 10%; bottom: 10%; background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.2), transparent); }

.geo-badge {
  position: absolute;
  bottom: 18%;
  left: 5%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.geo-badge-2 {
  bottom: auto;
  top: 15%;
  right: 5%;
  left: auto;
}

.badge-icon { font-size: 1rem; }

/* === SECTIONS === */
.section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-cyan);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
}

/* === SERVICES === */
.services {
  padding: 120px 60px;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.service-card {
  background: var(--surface);
  padding: 40px 36px;
  transition: background 0.2s;
  position: relative;
}

.service-card:hover { background: var(--surface-2); }

.service-icon { margin-bottom: 20px; }

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

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

.service-tag {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* === WHY === */
.why {
  padding: 120px 60px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
  border-top: 1px solid var(--border);
}

.why-intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 480px;
}

.why-points { display: flex; flex-direction: column; gap: 32px; }

.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.point-marker {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-point h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.why-point p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.compliance-badge {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 28px;
  margin-bottom: 24px;
}

.badge-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.compliance-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compliance-list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.check { color: var(--accent-cyan); font-weight: 700; }

.uptime-widget {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
}

.uptime-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.uptime-bar {
  height: 4px;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
}

.uptime-fill {
  height: 100%;
  width: 99.9%;
  background: linear-gradient(90deg, var(--accent), var(--accent-cyan));
  border-radius: 2px;
}

.uptime-value {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* === PACKAGES === */
.packages {
  padding: 120px 60px;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

/* --- Comparison Table --- */
.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: 56px;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.comparison-table thead tr {
  background: var(--surface);
}

.comparison-table thead th {
  padding: 24px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  vertical-align: bottom;
}

.comparison-table thead th:last-child { border-right: none; }

.comparison-table thead th.feature-col {
  text-align: left;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  vertical-align: middle;
  background: var(--surface);
  min-width: 200px;
}

.tier-name {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.tier-price {
  display: block;
  font-size: 0.78rem;
  color: var(--accent-cyan);
  margin-bottom: 4px;
}

.tier-icp {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dim);
}

.tier-pro { position: relative; background: var(--surface-2) !important; }

.tier-badge-pop {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.comparison-table tbody tr {
  background: var(--surface);
  transition: background 0.15s;
}

.comparison-table tbody tr:hover { background: var(--surface-2); }

.comparison-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(59, 130, 246, 0.06);
  border-right: 1px solid rgba(59, 130, 246, 0.06);
  text-align: center;
  color: var(--text-muted);
}

.comparison-table tbody td:last-child { border-right: none; }

.comparison-table tbody td.feature-name {
  text-align: left;
  font-weight: 500;
  color: var(--text);
}

.check-icon {
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 0.9rem;
}

/* --- Expandable Package Details --- */
.package-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.detail-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.detail-card:hover { border-color: rgba(59, 130, 246, 0.35); }

.detail-card-featured {
  border-color: rgba(59, 130, 246, 0.4);
  background: var(--surface-2);
}

.detail-header {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
  text-align: left;
}

.detail-header-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.detail-tier-name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pop-label {
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
}

.detail-target {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.detail-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.detail-price {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.detail-price span {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-dim);
}

.detail-chevron {
  color: var(--text-dim);
  font-size: 0.9rem;
  transition: transform 0.2s;
}

.detail-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: 1px solid rgba(59, 130, 246, 0.06);
}

.detail-card.is-open .detail-body {
  /* max-height set via JS */
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 28px 24px;
}

.detail-section {}

.detail-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.detail-check-list,
.detail-x-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-check-list li,
.detail-x-list li {
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.detail-check-list li { color: var(--text-muted); }
.detail-x-list li { color: var(--text-dim); }

.x-icon {
  color: rgba(148, 163, 184, 0.35);
  flex-shrink: 0;
}

.detail-cta {
  padding: 0 24px 24px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.cta-btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.cta-btn-outline:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-1px);
}

.cta-btn-primary {
  background: var(--accent);
  color: #fff;
}

.cta-btn-primary:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

.packages-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* === SOCIAL PROOF === */
.social-proof {
  padding: 80px 60px;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.proof-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}

.proof-stat {
  text-align: center;
  padding: 0 40px;
}

.proof-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.proof-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.testimonial-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 36px;
  text-align: center;
}

.testimonial-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 24px;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.testimonial-author strong {
  display: block;
  font-size: 0.85rem;
  color: #fff;
}

.testimonial-author span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 2px;
}

/* === MID-PAGE CTA === */
.midcta {
  padding: 80px 60px;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.midcta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.midcta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.midcta h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

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

.midcta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.midcta-or {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.midcta-phone {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.midcta-phone:hover { color: var(--accent-cyan); }

/* === CLOSING / CONTACT FORM === */
.closing {
  padding: 100px 60px;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.closing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

.closing-text { max-width: 480px; }

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

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

.closing-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.closing-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.closing-alt {
  display: flex;
  align-items: center;
  gap: 10px;
}

.closing-alt-label {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.closing-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

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

.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-field input,
.form-field select {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #fff;
  font-family: 'DM Sans', system-ui, sans-serif;
  transition: border-color 0.2s;
  appearance: none;
}

.form-field input::placeholder {
  color: var(--text-dim);
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-field select option {
  background: var(--surface-2);
  color: #fff;
}

.cta-full {
  width: 100%;
  justify-content: center;
}

.cta-btn-callback {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  font-weight: 500;
}

.cta-btn-callback:hover {
  background: rgba(59, 130, 246, 0.06);
  color: var(--text);
  border-color: rgba(59, 130, 246, 0.3);
}

.cta-phone {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.cta-phone:hover { color: var(--accent-cyan); }

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

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-brand span {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.footer-info {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 100px 40px 60px; gap: 40px; }
  .hero-visual { display: none; }
  .services { padding: 80px 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; gap: 60px; padding: 80px 40px; }
  .packages { padding: 80px 40px; }
  .packages-grid { grid-template-columns: 1fr; }
  .social-proof { padding: 60px 40px; }
  .proof-numbers { gap: 0; }
  .proof-stat { padding: 0 24px; }
  .nav { padding: 16px 24px; }
  .nav-link { display: none; }
  .closing { padding: 80px 40px; }
  .closing-grid { grid-template-columns: 1fr; gap: 48px; }
  .midcta { padding: 60px 40px; }
  .footer { padding: 32px 40px; }
}

@media (max-width: 640px) {
  .hero { padding: 90px 24px 60px; }
  .hero-stats { flex-direction: column; gap: 20px; align-items: flex-start; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-trust-badges { flex-direction: column; gap: 10px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .services, .why, .packages { padding: 60px 24px; }
  .social-proof { padding: 48px 24px; }
  .proof-numbers { flex-direction: column; gap: 20px; }
  .proof-divider { width: 40px; height: 1px; }
  .proof-stat { padding: 0; }
  .testimonial-card { padding: 24px; }
  .midcta { padding: 48px 24px; }
  .midcta-actions { flex-direction: column; }
  .closing { padding: 60px 24px; }
  .closing-grid { gap: 32px; }
  .closing-form-wrap { padding: 24px; }
  .closing-alt { flex-direction: column; gap: 6px; }
  .footer { padding: 28px 24px; }
}