/* ═══════════════════════════════════════════════════════════
   Efficio.tech — Stylesheet
   Dark, premium, conversion-focused
   ═══════════════════════════════════════════════════════════ */

/* ─── Reset + Root ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #09090b;
  --bg-card:     #18181b;
  --bg-card2:    #1c1c20;
  --border:      #27272a;
  --border-2:    #3f3f46;
  --text:        #fafafa;
  --text-muted:  #a1a1aa;
  --text-dim:    #71717a;
  --cyan:        #06d6f5;
  --cyan-dim:    #0891b2;
  --violet:      #8b5cf6;
  --amber:       #f59e0b;
  --green:       #10b981;
  --red:         #ef4444;
  --radius:      14px;
  --radius-sm:   8px;
  --shadow:      0 4px 32px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 80px rgba(6,214,245,0.12);
  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w:       1160px;
  --transition:  0.2s ease;
}

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

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 1.7;
}

.section-dark { background: #0c0c0f; }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dim));
  color: #000;
  border-color: transparent;
  box-shadow: 0 0 24px rgba(6,214,245,0.25);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 36px rgba(6,214,245,0.4); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border-2);
}
.btn-ghost:hover { color: var(--text); border-color: var(--text-muted); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }

.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1.5px solid var(--border-2);
  color: var(--text-muted);
  transition: all var(--transition);
}
.btn-outline-sm:hover { border-color: var(--cyan); color: var(--cyan); }

.btn-lg { font-size: 16px; padding: 14px 28px; }
.btn-sm { font-size: 13px; padding: 9px 18px; }
.btn-full { width: 100%; }

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

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(9,9,11,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.nav.scrolled { border-bottom-color: var(--border); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dim));
  color: #000;
  border-radius: 6px;
  font-size: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.nav-cta { margin-left: auto; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.mobile-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 16px;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--text-muted);
}
.mobile-menu a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.mobile-menu .btn { margin-top: 8px; }
.mobile-menu.open { display: flex; }

/* ─── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 140px 0 100px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(6,214,245,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(6,214,245,0.3);
  background: rgba(6,214,245,0.06);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero-headline {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

.trust-item {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-icon { font-size: 16px; }
.trust-divider {
  width: 1px; height: 16px;
  background: var(--border-2);
}

/* ─── Pain ────────────────────────────────────────────────────── */
.pain { padding: 96px 0; }
.pain .section-title { text-align: center; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 48px 0;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition);
}
.pain-card:hover { border-color: var(--border-2); }

.pain-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.pain-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.pain-cta-text {
  text-align: center;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(6,214,245,0.04);
}
.pain-cta-text strong { color: var(--text); }

/* ─── Services ────────────────────────────────────────────────── */
.services { padding: 96px 0; }
.services .section-title { text-align: center; }

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

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
}

.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon-wrap.cyan   { background: rgba(6,214,245,0.12);  color: var(--cyan); }
.service-icon-wrap.violet { background: rgba(139,92,246,0.12); color: var(--violet); }
.service-icon-wrap.amber  { background: rgba(245,158,11,0.12); color: var(--amber); }
.service-icon-wrap.green  { background: rgba(16,185,129,0.12); color: var(--green); }

.service-tag {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(6,214,245,0.1);
  border: 1px solid rgba(6,214,245,0.2);
  padding: 4px 10px;
  border-radius: 999px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card > p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-list {
  margin-bottom: 24px;
}
.service-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.service-price {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.service-price strong { color: var(--text); font-size: 16px; }

/* ─── How It Works ────────────────────────────────────────────── */
.how-it-works { padding: 96px 0; }
.how-it-works .section-title { text-align: center; }

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 56px auto 0;
}

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

.step-number {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--border-2);
  line-height: 1;
  min-width: 80px;
  flex-shrink: 0;
  padding-top: 4px;
}

.step-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.step-callout {
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan);
}

.step-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--border-2), var(--border));
  margin-left: 39px;
  margin-top: 4px;
  margin-bottom: 4px;
}

/* ─── Results / Stats ─────────────────────────────────────────── */
.results { padding: 96px 0; }
.results .section-title { text-align: center; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 56px 0 64px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  position: relative;
}

.stat-number {
  display: inline;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-prefix, .stat-suffix {
  display: inline;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.5;
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}

.quote-mark {
  font-size: 64px;
  line-height: 1;
  color: var(--cyan);
  opacity: 0.3;
  font-family: Georgia, serif;
  margin-bottom: 8px;
}

.testimonial-card > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-dim), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 600; }
.author-title { font-size: 12px; color: var(--text-dim); }

/* ─── Pricing ─────────────────────────────────────────────────── */
.pricing { padding: 96px 0; }
.pricing .section-title,
.pricing .section-sub { text-align: center; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: border-color 0.3s;
}
.pricing-card:hover { border-color: var(--border-2); }

.pricing-featured {
  border-color: rgba(6,214,245,0.35);
  background: var(--bg-card2);
  box-shadow: var(--shadow-glow);
}

.pricing-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dim));
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing-amount {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
  line-height: 1;
}
.pricing-custom { font-size: 40px; }
.price-dollar { font-size: 28px; vertical-align: super; }
.price-period { font-size: 16px; font-weight: 500; color: var(--text-muted); }

.pricing-setup {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pricing-features li.muted {
  color: var(--text-dim);
  text-decoration: none;
}

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 32px;
}
.pricing-note strong { color: var(--text); }

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq { padding: 96px 0; }
.faq .section-title { text-align: center; }

.faq-list {
  max-width: 720px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--border-2); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--bg-card2); }

.faq-arrow {
  font-size: 18px;
  color: var(--text-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: var(--bg-card);
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ─── Contact ─────────────────────────────────────────────────── */
.contact { padding: 96px 0; }

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

.contact-headline {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-copy > p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.contact-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-bullet {
  font-size: 15px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1.5px solid var(--border-2);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
}
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 80px; }

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

.form-disclaimer {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}

/* ─── Footer ──────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 12px;
  line-height: 1.6;
}

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

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
}

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 16px auto 0; }
}

@media (max-width: 900px) {
  .services-grid  { grid-template-columns: 1fr; }
  .testimonials   { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .contact-inner  { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner   { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .mobile-toggle { display: flex; }

  .hero { padding: 100px 0 72px; }

  .pain-grid      { grid-template-columns: 1fr 1fr; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-links   { grid-template-columns: repeat(2, 1fr); }
  .form-row       { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 520px) {
  .pain-grid      { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: 1fr 1fr; }
  .hero-ctas      { flex-direction: column; align-items: stretch; }
  .hero-trust     { flex-direction: column; gap: 8px; }
  .trust-divider  { display: none; }
  .contact-form-wrap { padding: 24px; }
  .footer-links   { grid-template-columns: 1fr; }
}

/* ─── Outbound Service Section ──────────────────────────────── */
.outbound-service { padding: 100px 0; }
.outbound-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto 48px;
}
.compare-col {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}
.compare-bad { border-top: 3px solid var(--red); }
.compare-good { border-top: 3px solid var(--green); }
.compare-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
  font-weight: 600;
}
.compare-bad .compare-label { color: var(--red); }
.compare-good .compare-label { color: var(--green); }
.compare-col ul { list-style: none; }
.compare-col ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.compare-col ul li:last-child { border-bottom: none; }
.compare-bad ul li::before { content: "✗ "; color: var(--red); font-weight: 700; }
.compare-good ul li::before { content: "✓ "; color: var(--green); font-weight: 700; }
.compare-vs {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--text-dim);
}
.outbound-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.ostat {
  text-align: center;
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.ostat-num {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: #D4872A;
  margin-bottom: 6px;
}
.ostat-label { font-size: 13px; color: var(--text-dim); line-height: 1.5; }

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

@media (max-width: 860px) {
  .outbound-compare { grid-template-columns: 1fr; }
  .compare-vs { justify-content: center; padding: 8px 0; }
  .outbound-stats { grid-template-columns: 1fr; }
}

/* ─── Contact — Calendly Option ──────────────────────────────── */
.contact-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 16px;
}
.contact-or-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.contact-or-text {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.contact-calendly {
  width: 100%;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted) !important;
}
.contact-calendly:hover {
  color: var(--cyan) !important;
  border-color: var(--cyan) !important;
}

/* ─── Footer Legal ────────────────────────────────────────────── */
.footer-legal {
  font-size: 11px;
  color: #3f3f46;
  margin-top: 8px;
  text-align: center;
}
.footer-legal a { color: #52525b; transition: color 0.2s; }
.footer-legal a:hover { color: var(--text-muted); }

/* ─── Trust indicators — SVG icons ───────────────────────────── */
.trust-item svg { color: var(--cyan); flex-shrink: 0; }
.contact-bullet svg { flex-shrink: 0; }

/* ─── Nav active state ────────────────────────────────────────── */
.nav-links a.active { color: var(--text); }

/* ─── Service card hover glow ─────────────────────────────────── */
.service-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

/* ─── Testimonial star rating ─────────────────────────────────── */
.testimonial-stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* ─── Pricing tab — premium style ────────────────────────────── */
.pricing-tabs {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 32px;
}
.pricing-tab-btn {
  padding: 10px 24px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.pricing-tab-btn.active {
  background: #D4872A;
  color: #fff;
}
.pricing-tab-btn:not(.active) {
  background: transparent;
  color: var(--text-muted);
}
.pricing-tab-btn:not(.active):hover {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

/* ─── Scroll progress bar ─────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  z-index: 200;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ─── Section dividers ────────────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}
