/* ============================================================
   STREAMVAULT — Component Bridge + Overrides
   Maps generated class names to design system
   ============================================================ */

/* ── CRITICAL FIX: Legal content must always be visible ── */
.legal-content,
.legal-content.reveal-up,
.legal-content.reveal,
.legal-content.reveal-left,
.legal-content.reveal-right,
.legal-content.reveal-scale {
  opacity: 1 !important;
  transform: none !important;
}

/* ── Page Hero Inner ── */
.page-hero__inner {
  position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto;
  text-align: center;
}

/* ── Step Large Cards (how-it-works) ── */
.steps-large-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
@media (max-width: 900px) { .steps-large-grid { grid-template-columns: 1fr; } }
@media (min-width: 601px) and (max-width: 900px) { .steps-large-grid { grid-template-columns: repeat(2, 1fr); } }

.step-large-card {
  padding: var(--sp-8);
  display: flex; flex-direction: column; gap: var(--sp-4);
}
.step-large-card__header {
  display: flex; align-items: center; gap: var(--sp-4);
  margin-bottom: var(--sp-2);
}
.step-large-card__number {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: 50%;
  background: var(--gradient-cta);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: 800; color: #fff;
  box-shadow: var(--glow-primary);
}
.step-large-card__icon {
  width: 36px; height: 36px; color: var(--accent);
}
.step-large-card__icon svg { width: 100%; height: 100%; }
.step-large-card__title {
  font-size: var(--text-xl); font-weight: 700; line-height: 1.3;
}
.step-large-card__text {
  color: var(--text-secondary); line-height: 1.7; font-size: var(--text-sm);
}
.step-large-card__list {
  display: flex; flex-direction: column; gap: var(--sp-2);
  padding-left: 0; flex: 1;
}
.step-large-card__list li {
  display: flex; align-items: flex-start; gap: var(--sp-2);
  font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.6;
  padding-left: var(--sp-5); position: relative;
}
.step-large-card__list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--success); font-weight: 700; font-size: var(--text-xs);
  top: 3px;
}
.step-large-card .btn { margin-top: auto; align-self: flex-start; }

/* ── Setup Tabs (how-it-works) ── */
.setup-tabs {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
}
.setup-tabs__nav {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  overflow-x: auto;
}
.setup-tabs__tab {
  padding: var(--sp-4) var(--sp-6);
  font-size: var(--text-sm); font-weight: 600;
  color: var(--text-muted);
  transition: all var(--duration-base);
  white-space: nowrap; min-height: 52px;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  flex: 1;
}
.setup-tabs__tab:hover { color: var(--text-secondary); background: rgba(255,255,255,0.04); }
.setup-tabs__tab--active,
.setup-tabs__tab.active {
  color: var(--primary-light);
  border-bottom-color: var(--primary-light);
  background: rgba(124,58,237,0.06);
}
.setup-tabs__panels { padding: var(--sp-8); }
.setup-tabs__panel[hidden] { display: none; }
.setup-tabs__panel:not([hidden]) { display: block; }

/* Setup Guide layout */
.setup-guide {
  display: grid; grid-template-columns: auto 1fr;
  gap: var(--sp-8); align-items: start;
}
@media (max-width: 700px) { .setup-guide { grid-template-columns: 1fr; } }

.setup-guide__icon {
  width: 80px; height: 80px;
  background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-light); flex-shrink: 0;
}
@media (max-width: 700px) { .setup-guide__icon { display: none; } }
.setup-guide__icon svg { width: 40px; height: 40px; }

.setup-guide__title {
  font-size: var(--text-xl); font-weight: 700;
  margin-bottom: var(--sp-6);
}
.setup-guide__list {
  display: flex; flex-direction: column; gap: var(--sp-4);
  padding: 0;
}
.setup-guide__step {
  display: flex; gap: var(--sp-4); align-items: flex-start;
  padding: var(--sp-4) var(--sp-5);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  transition: border-color var(--duration-base);
}
.setup-guide__step:hover { border-color: rgba(124,58,237,0.25); }
.setup-guide__step-num {
  width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%;
  background: var(--gradient-cta);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-sm); font-weight: 800; color: #fff;
}
.setup-guide__step-content { flex: 1; }
.setup-guide__step-content strong {
  display: block; font-weight: 700; margin-bottom: var(--sp-1);
  color: var(--text-primary); font-size: var(--text-sm);
}
.setup-guide__step-content p {
  color: var(--text-secondary); font-size: var(--text-sm);
  line-height: 1.65; margin: 0;
}

/* ── Hero Overrides ── */
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-16);
  padding: var(--sp-20) 0;
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; padding: var(--sp-12) 0; }
}

.hero__content { position: relative; z-index: 1; }

.hero__badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  color: var(--primary-light);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: 600;
  margin-bottom: var(--sp-6);
}

.hero__btns {
  display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}
@media (max-width: 900px) { .hero__btns { justify-content: center; } }

.hero__trust {
  display: flex; align-items: center; gap: var(--sp-6); flex-wrap: wrap;
}
@media (max-width: 900px) { .hero__trust { justify-content: center; } }

.hero__trust-item {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-sm); color: var(--text-secondary);
}
.hero__trust-item svg { color: var(--success); flex-shrink: 0; }

/* Hero Mockup — agent version */
.hero__visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
@media (max-width: 900px) { .hero__visual { display: none; } }

.hero__mockup {
  width: 100%; max-width: 520px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 80px rgba(124,58,237,0.2);
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero__mockup-screen { display: flex; flex-direction: column; }

.hero__mockup-header {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: var(--text-sm); font-weight: 600;
}
.hero__mockup-logo {
  width: 28px; height: 28px; border-radius: var(--radius-sm);
  background: var(--gradient-cta);
  display: flex; align-items: center; justify-content: center;
}
.hero__mockup-live {
  margin-left: auto; display: flex; align-items: center; gap: var(--sp-1);
  font-size: var(--text-xs); font-weight: 700; color: #ef4444;
}
.hero__mockup-live::before {
  content: ''; width: 6px; height: 6px; background: #ef4444;
  border-radius: 50%; animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero__mockup-channels {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3); padding: var(--sp-4);
}

.hero__mockup-channel {
  display: flex; flex-direction: column; gap: var(--sp-2);
  cursor: pointer;
}
.hero__mockup-channel span {
  font-size: 0.65rem; color: var(--text-secondary);
  text-align: center; font-weight: 500;
}

.hero__mockup-thumb {
  aspect-ratio: 16/9; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
}
.hero__mockup-channel--1 .hero__mockup-thumb { background: linear-gradient(135deg, #1a0f3a 0%, #2d1b69 100%); }
.hero__mockup-channel--2 .hero__mockup-thumb { background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%); }
.hero__mockup-channel--3 .hero__mockup-thumb { background: linear-gradient(135deg, #1a0a0a 0%, #4a1a1a 100%); }
.hero__mockup-channel--4 .hero__mockup-thumb { background: linear-gradient(135deg, #0a2a1a 0%, #1a4a2a 100%); }
.hero__mockup-channel--5 .hero__mockup-thumb { background: linear-gradient(135deg, #1a1a2a 0%, #2a2a5a 100%); }
.hero__mockup-channel--6 .hero__mockup-thumb { background: linear-gradient(135deg, #2a1a0a 0%, #4a2a10 100%); }
.hero__mockup-thumb::after {
  content: '▶';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: rgba(255,255,255,0.3);
}

/* Progress bar on first thumb */
.hero__mockup-channel--1 .hero__mockup-thumb::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  height: 3px; width: 60%;
  background: var(--gradient-cta);
  border-radius: 0 2px 0 0;
  animation: progressBar 3s ease-in-out infinite;
}
@keyframes progressBar {
  0% { width: 20%; } 100% { width: 80%; }
}

/* ── Stats Strip ── */
.stats-strip {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-10) 0;
  position: relative; z-index: 1;
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
@media (max-width: 768px) {
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-strip__grid { grid-template-columns: 1fr 1fr; }
}
.stats-strip__item {
  text-align: center; padding: var(--sp-4);
  position: relative;
}
.stats-strip__item:not(:last-child)::after {
  content: ''; position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--border);
}
@media (max-width: 768px) {
  .stats-strip__item:nth-child(2)::after,
  .stats-strip__item:nth-child(4)::after { display: none; }
}
.stats-strip__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; line-height: 1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-2);
}
.stats-strip__label {
  font-size: var(--text-sm); color: var(--text-secondary); font-weight: 500;
}

/* ── Section Badge (alias for section__label) ── */
.section__badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: var(--sp-4);
}
.section__badge::before {
  content: ''; display: block;
  width: 20px; height: 2px;
  background: var(--accent); border-radius: var(--radius-full);
}
.section__cta { text-align: center; margin-top: var(--sp-10); }

/* ── Features Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-4);
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .features-grid { grid-template-columns: 1fr; } }

.features-grid__item {
  padding: var(--sp-8);
  position: relative; overflow: hidden;
  transition: all var(--duration-base) var(--ease-out);
}
.features-grid__item:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card), var(--glow-sm);
}
.features-grid__icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-5); color: var(--primary-light);
  transition: all var(--duration-base);
}
.features-grid__item:hover .features-grid__icon {
  background: rgba(124,58,237,0.22);
  box-shadow: var(--glow-sm);
}
.features-grid__icon svg { width: 26px; height: 26px; }
.features-grid__title { font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--sp-3); }
.features-grid__text { color: var(--text-secondary); line-height: 1.7; font-size: var(--text-sm); }

/* ── Devices Grid ── */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-4);
}
@media (max-width: 900px) { .devices-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .devices-grid { grid-template-columns: repeat(2, 1fr); } }

.device-card {
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-3);
  padding: var(--sp-6) var(--sp-4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--duration-base) var(--ease-out);
}
.device-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--glow-sm);
}
.device-card__icon { width: 40px; height: 40px; color: var(--text-secondary); transition: color var(--duration-base); }
.device-card:hover .device-card__icon { color: var(--primary-light); }
.device-card__icon svg { width: 100%; height: 100%; }
.device-card__name { font-size: var(--text-sm); font-weight: 600; color: var(--text-secondary); }

/* ── Features Grid 4-col modifier ── */
.features-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) { .features-grid--4col { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .features-grid--4col { grid-template-columns: 1fr; } }

/* ── Devices Detailed Grid (features page) ── */
.devices-detailed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 900px) { .devices-detailed-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .devices-detailed-grid { grid-template-columns: 1fr; } }

.device-detailed-card {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-5);
  padding: var(--sp-7);
  transition: all var(--duration-base) var(--ease-out);
}
.device-detailed-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card), var(--glow-sm);
}
.device-detailed-card__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-light);
  transition: all var(--duration-base);
}
.device-detailed-card:hover .device-detailed-card__icon {
  background: rgba(124,58,237,0.22);
  box-shadow: var(--glow-sm);
}
.device-detailed-card__icon svg { width: 24px; height: 24px; }
.device-detailed-card__content { flex: 1; }
.device-detailed-card__name {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--sp-2);
  color: var(--text-primary);
}
.device-detailed-card__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}
.device-detailed-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-full);
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  color: var(--primary-light);
}

/* ── Channel Categories Grid (features page) ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 900px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .categories-grid { grid-template-columns: 1fr; } }

.category-card {
  padding: var(--sp-7);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: all var(--duration-base) var(--ease-out);
}
.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card), var(--glow-sm);
}
.category-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: all var(--duration-base);
}
.category-card:hover .category-card__icon {
  background: rgba(6,182,212,0.18);
  box-shadow: 0 0 16px rgba(6,182,212,0.25);
}
.category-card__icon svg { width: 24px; height: 24px; }
.category-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
}
.category-card__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}
.category-card__count {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.2);
  color: var(--accent);
  align-self: flex-start;
}

/* ── Steps Grid ── */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  position: relative;
}
.steps-grid::before {
  content: ''; position: absolute;
  top: 38px; left: calc(16.66% + 30px); right: calc(16.66% + 30px);
  height: 1px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0.25;
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .steps-grid::before { display: none; }
}

.step-card {
  text-align: center; padding: var(--sp-8) var(--sp-6);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--duration-base);
}
.step-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-card); }

.step-card__number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gradient-cta);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: 800;
  color: #fff; margin: 0 auto var(--sp-5);
  box-shadow: var(--glow-primary);
  position: relative; z-index: 1;
}
.step-card__icon {
  width: 40px; height: 40px; margin: 0 auto var(--sp-4);
  color: var(--accent);
}
.step-card__icon svg { width: 100%; height: 100%; }
.step-card__title { font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--sp-3); }
.step-card__text { color: var(--text-secondary); line-height: 1.7; font-size: var(--text-sm); }

/* ── Pricing (agent classes) ── */
.pricing-toggle {
  display: flex; align-items: center; justify-content: center; gap: var(--sp-3);
  margin-bottom: var(--sp-10);
}
.pricing-toggle__container {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: var(--sp-1);
}
.pricing-toggle__btn {
  padding: var(--sp-2) var(--sp-6);
  border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--duration-base);
  min-height: 40px;
  display: flex; align-items: center; gap: var(--sp-2);
}
.pricing-toggle__btn--active,
.pricing-toggle__btn.active {
  background: var(--gradient-cta);
  color: #fff; box-shadow: var(--glow-sm);
}
.pricing-toggle__save {
  font-size: var(--text-xs); font-weight: 600;
  background: rgba(16,185,129,0.2); color: #34d399;
  padding: 2px 8px; border-radius: var(--radius-full);
  border: 1px solid rgba(16,185,129,0.3);
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6); align-items: start;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  padding: var(--sp-8);
  position: relative; overflow: hidden;
  transition: all var(--duration-base) var(--ease-out);
}
.pricing-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.pricing-card--featured {
  border-color: rgba(124,58,237,0.5) !important;
  box-shadow: var(--glow-primary), var(--shadow-card);
  transform: scale(1.03);
}
.pricing-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card--featured::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(6,182,212,0.04));
  pointer-events: none;
}
.pricing-card__badge {
  position: absolute; top: var(--sp-4); right: var(--sp-4);
  background: var(--gradient-cta);
  color: #fff; font-size: var(--text-xs); font-weight: 700;
  padding: var(--sp-1) var(--sp-3); border-radius: var(--radius-full);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.pricing-card__plan-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: rgba(124,58,237,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4); color: var(--accent);
}
.pricing-card--featured .pricing-card__plan-icon { background: rgba(124,58,237,0.22); }
.pricing-card__name {
  font-family: var(--font-display);
  font-size: var(--text-2xl); font-weight: 800;
  color: var(--text-primary); margin-bottom: var(--sp-1);
  letter-spacing: -0.01em;
}
.pricing-card__tagline {
  font-size: var(--text-sm); color: var(--text-muted);
  margin-bottom: var(--sp-5);
}
.pricing-card__price {
  display: flex; align-items: baseline; gap: var(--sp-1);
  margin-bottom: var(--sp-2);
}
.pricing-card__currency { font-size: var(--text-2xl); font-weight: 700; }
.pricing-card__amount {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 4vw, 3.5rem);
  font-weight: 800; line-height: 1;
}
.pricing-card__period { font-size: var(--text-sm); color: var(--text-secondary); }
.pricing-card__yearly-note {
  font-size: var(--text-xs); color: var(--text-muted); margin-bottom: var(--sp-6); min-height: 18px;
}
.pricing-card__divider {
  height: 1px; background: var(--border); margin: var(--sp-5) 0;
}
.pricing-card__features { display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-8); }
.pricing-card__feature {
  display: flex; align-items: center; gap: var(--sp-3);
  font-size: var(--text-sm); color: var(--text-secondary);
}
.pricing-card__feature::before { content: ''; width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%; }
.pricing-card__feature--yes::before {
  background: rgba(16,185,129,0.2); border: 1.5px solid #34d399;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2334d399'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.pricing-card__feature--no { opacity: 0.4; }
.pricing-card__feature--no::before {
  background: rgba(239,68,68,0.1); border: 1.5px solid rgba(239,68,68,0.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ef4444'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
  background-size: 10px; background-repeat: no-repeat; background-position: center;
}
.pricing-card .btn { width: 100%; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6);
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
@media (min-width: 601px) and (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }

.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--sp-8);
  backdrop-filter: blur(12px);
  transition: all var(--duration-base);
}
.testimonial-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.testimonial-card__stars { display: flex; gap: 3px; margin-bottom: var(--sp-4); }
.testimonial-card__stars svg { width: 18px; height: 18px; fill: var(--warning); color: var(--warning); }
.testimonial-card__quote {
  font-size: var(--text-base); color: var(--text-secondary); line-height: 1.7;
  margin-bottom: var(--sp-6); font-style: italic;
}
.testimonial-card__author { display: flex; align-items: center; gap: var(--sp-3); }
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-cta);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: var(--text-base); color: #fff; flex-shrink: 0;
}
.testimonial-card__name { font-weight: 600; font-size: var(--text-sm); }
.testimonial-card__meta { font-size: var(--text-xs); color: var(--text-muted); }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--sp-3); }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color var(--duration-base);
}
.faq-item.open { border-color: rgba(124,58,237,0.35); }
.faq-item__question {
  width: 100%; padding: var(--sp-5) var(--sp-6);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  font-size: var(--text-base); font-weight: 600; text-align: left;
  color: var(--text-primary); background: var(--bg-card);
  transition: background var(--duration-fast); min-height: 60px;
}
.faq-item__question:hover { background: var(--bg-card-hover); }
.faq-item__icon {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); transition: all var(--duration-base);
}
.faq-item.open .faq-item__icon {
  background: var(--primary); border-color: var(--primary);
  color: #fff; transform: rotate(45deg);
}
.faq-item__answer {
  display: none; padding: 0 var(--sp-6) var(--sp-5);
  color: var(--text-secondary); line-height: 1.75;
  font-size: var(--text-sm); background: var(--bg-card);
}
.faq-item.open .faq-item__answer { display: block; }

/* ── CTA Band ── */
.cta-section { padding: 0 0 var(--sp-24); }
.cta-band {
  background: linear-gradient(135deg, rgba(124,58,237,0.12) 0%, rgba(6,182,212,0.07) 100%);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius-xl);
  padding: var(--sp-20) var(--sp-12);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band__eyebrow {
  display: inline-block; font-size: var(--text-sm); font-weight: 600;
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: var(--sp-4);
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 3vw, var(--text-5xl));
  font-weight: 800; margin-bottom: var(--sp-4);
  line-height: 1.15; letter-spacing: -0.02em;
}
.cta-band__sub {
  font-size: var(--text-lg); color: var(--text-secondary);
  max-width: 520px; margin: 0 auto var(--sp-8); line-height: 1.7;
}
.cta-band__actions { display: flex; justify-content: center; gap: var(--sp-4); flex-wrap: wrap; }
.cta-band__note {
  margin-top: var(--sp-5); font-size: var(--text-sm); color: var(--text-muted);
}

/* ── FAQ: hidden attribute + faq-item--open variant ── */
.faq-item__answer[hidden] { display: none; }
.faq-item__answer:not([hidden]) { display: block; padding: 0 var(--sp-6) var(--sp-5); color: var(--text-secondary); line-height: 1.75; font-size: var(--text-sm); background: var(--bg-card); }
.faq-item__answer p { margin: 0; color: var(--text-secondary); line-height: 1.75; font-size: var(--text-sm); }
.faq-item__question {
  width: 100%; padding: var(--sp-5) var(--sp-6);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  font-size: var(--text-base); font-weight: 600; text-align: left;
  color: var(--text-primary); background: var(--bg-card);
  transition: background var(--duration-fast); min-height: 60px;
}
.faq-item__question:hover { background: var(--bg-card-hover); }
.faq-item__icon {
  width: 22px; height: 22px; flex-shrink: 0;
  color: var(--text-secondary); transition: transform var(--duration-base);
}
.faq-item[aria-expanded="true"] .faq-item__icon,
.faq-item--open .faq-item__icon,
.faq-item__question[aria-expanded="true"] + .faq-item__answer { }
.faq-item__question[aria-expanded="true"] .faq-item__icon { transform: rotate(180deg); color: var(--primary-light); }
.faq-item--open { border-color: rgba(124,58,237,0.35); }

/* ── CTA Band as section ── */
section.cta-band {
  padding: var(--sp-16) 0;
  background: none;
  border: none;
  border-radius: 0;
}
.cta-band__inner {
  background: linear-gradient(135deg, rgba(124,58,237,0.12) 0%, rgba(6,182,212,0.07) 100%);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius-xl);
  padding: var(--sp-20) var(--sp-12);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band__inner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band__btns { display: flex; justify-content: center; gap: var(--sp-4); flex-wrap: wrap; }
@media (max-width: 640px) { .cta-band__inner { padding: var(--sp-12) var(--sp-6); } }

/* ── Section alt ── */
.section--alt { background: rgba(255,255,255,0.015); }

/* ── Comparison Table ── */
.comparison-table {
  width: 100%; border-collapse: collapse;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.comparison-table th, .comparison-table td {
  padding: var(--sp-4) var(--sp-6); text-align: center;
  border-bottom: 1px solid var(--border); font-size: var(--text-sm);
}
.comparison-table th { font-weight: 700; background: rgba(124,58,237,0.08); color: var(--text-primary); }
.comparison-table td:first-child { text-align: left; color: var(--text-secondary); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .check { color: #34d399; font-size: 1.1rem; }
.comparison-table .cross { color: #64748b; }
.comparison-table .featured-col { color: var(--primary-light); font-weight: 600; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + var(--sp-16)) 0 var(--sp-16);
  background: var(--gradient-hero);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero__eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-sm); font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: var(--sp-4);
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  font-weight: 800; line-height: 1.12; letter-spacing: -0.03em;
  margin-bottom: var(--sp-4);
}
.page-hero__sub {
  font-size: var(--text-xl); color: var(--text-secondary);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}

/* ── Tab component (how-it-works) ── */
.tabs__nav {
  display: flex; gap: var(--sp-2);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp-8); overflow-x: auto;
  padding-bottom: 1px;
}
.tabs__btn {
  padding: var(--sp-3) var(--sp-5); border-radius: var(--radius-md) var(--radius-md) 0 0;
  font-size: var(--text-sm); font-weight: 600; color: var(--text-muted);
  transition: all var(--duration-base); white-space: nowrap; min-height: 44px;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.tabs__btn:hover { color: var(--text-secondary); }
.tabs__btn.active { color: var(--primary-light); border-bottom-color: var(--primary-light); }
.tabs__panel { display: none; }
.tabs__panel.active { display: block; }

.setup-steps { display: flex; flex-direction: column; gap: var(--sp-4); }
.setup-step {
  display: flex; gap: var(--sp-4); align-items: flex-start;
  padding: var(--sp-4); background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.setup-step__num {
  width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%;
  background: var(--gradient-cta);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-sm); font-weight: 800; color: #fff;
}
.setup-step__text { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.6; padding-top: 6px; }

/* ── About / Values / Team ── */
.mission-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); align-items: center;
}
@media (max-width: 768px) { .mission-grid { grid-template-columns: 1fr; } }

.mission-grid__stats,
.mission-stats { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.mission-stat {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--sp-5); text-align: center;
}
.mission-stat__num,
.mission-stat__number {
  font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 800;
  background: var(--gradient-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: var(--sp-1);
}
.mission-stat__label { font-size: var(--text-xs); color: var(--text-secondary); }

.values-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-5);
}
@media (max-width: 600px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  padding: var(--sp-6); background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); backdrop-filter: blur(12px);
  transition: all var(--duration-base);
}
.value-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.value-card__icon {
  width: 48px; height: 48px; border-radius: var(--radius-md); flex-shrink: 0;
  background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.22);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4); color: var(--primary-light);
}
.value-card__icon svg { width: 22px; height: 22px; flex-shrink: 0; }
.value-card__title { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--sp-2); }
.value-card__text { color: var(--text-secondary); line-height: 1.7; font-size: var(--text-sm); }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  padding: var(--sp-6); text-align: center; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: all var(--duration-base);
}
.team-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.team-card__avatar {
  width: 72px; height: 72px; border-radius: 50%; background: var(--gradient-cta);
  margin: 0 auto var(--sp-4);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xl); font-weight: 800; color: #fff; box-shadow: var(--glow-sm);
}
.team-card__avatar-inner { line-height: 1; }
.team-card__name { font-weight: 700; margin-bottom: 4px; font-size: var(--text-base); }
.team-card__role { font-size: var(--text-xs); color: var(--text-muted); margin-bottom: var(--sp-3); text-transform: uppercase; letter-spacing: 0.06em; }
.team-card__bio { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.6; }

/* ── VS Cable list (about page) ── */
.vs-list {
  display: flex; flex-direction: column; gap: var(--sp-4);
  max-width: 860px; margin: 0 auto;
}
.vs-item {
  display: flex; gap: var(--sp-5); align-items: flex-start;
  padding: var(--sp-5) var(--sp-6);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: all var(--duration-base);
}
.vs-item:hover { border-color: var(--border-hover); transform: translateX(4px); box-shadow: var(--shadow-card); }
.vs-item__icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: var(--radius-md);
  background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-light); margin-top: 2px;
}
.vs-item__icon svg { width: 22px; height: 22px; flex-shrink: 0; }
.vs-item__content { flex: 1; min-width: 0; }
.vs-item__title { font-size: var(--text-base); font-weight: 700; margin-bottom: var(--sp-2); }
.vs-item__text { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.7; }
@media (max-width: 540px) {
  .vs-item { flex-direction: column; gap: var(--sp-3); }
  .vs-item__icon { width: 40px; height: 40px; }
}

/* ── Why Us comparison rows ── */
.why-grid { display: flex; flex-direction: column; gap: var(--sp-3); max-width: 760px; margin: 0 auto; }
.why-row {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: var(--sp-4);
  align-items: center; padding: var(--sp-4) var(--sp-5);
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.why-row__cable { font-size: var(--text-sm); color: var(--text-muted); text-align: right; }
.why-row__label {
  font-size: var(--text-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-secondary); text-align: center; white-space: nowrap;
}
.why-row__sv { font-size: var(--text-sm); color: var(--primary-light); font-weight: 600; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: var(--sp-12); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: var(--sp-4); }
.contact-card {
  display: flex; gap: var(--sp-4); align-items: flex-start;
  padding: var(--sp-5); background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: all var(--duration-base);
}
.contact-card:hover { border-color: var(--border-hover); transform: translateX(4px); }
.contact-card__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; color: var(--primary-light);
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card__label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; }
.contact-card__val { font-weight: 600; font-size: var(--text-sm); }

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

/* ── Legal pages ── */
.legal-content {
  max-width: 800px; margin: 0 auto; padding: var(--sp-16) var(--sp-6);
}
.legal-content h2 {
  font-size: var(--text-2xl); font-weight: 700;
  margin: var(--sp-10) 0 var(--sp-4);
  padding-top: var(--sp-8); border-top: 1px solid var(--border);
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content h3 { font-size: var(--text-lg); font-weight: 600; margin: var(--sp-6) 0 var(--sp-3); }
.legal-content p { color: var(--text-secondary); line-height: 1.8; margin-bottom: var(--sp-4); }
.legal-content ul { padding-left: var(--sp-6); margin-bottom: var(--sp-4); }
.legal-content li { color: var(--text-secondary); line-height: 1.8; margin-bottom: var(--sp-2); list-style: disc; }
.legal-content a { color: var(--primary-light); }
.legal-content a:hover { text-decoration: underline; }
.legal-content strong { color: var(--text-primary); }
.legal-meta {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--sp-4) var(--sp-6); margin-bottom: var(--sp-8);
  font-size: var(--text-sm); color: var(--text-secondary);
  display: flex; flex-wrap: wrap; gap: var(--sp-4);
}
.legal-toc {
  background: rgba(124,58,237,0.05); border: 1px solid rgba(124,58,237,0.15);
  border-radius: var(--radius-lg); padding: var(--sp-5) var(--sp-6); margin-bottom: var(--sp-8);
}
.legal-toc__title { font-weight: 700; margin-bottom: var(--sp-3); }
.legal-toc ol { padding-left: var(--sp-5); }
.legal-toc li { color: var(--primary-light); font-size: var(--text-sm); margin-bottom: var(--sp-2); list-style: decimal; }
.legal-toc a { color: var(--primary-light); }
.legal-toc a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   WHATSAPP BUTTON & FLOATING CTA
   ══════════════════════════════════════════ */

/* Green WhatsApp button variant */
.btn--whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #20c45a 100%);
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
  display: inline-flex; align-items: center; gap: var(--sp-2);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.18s ease;
  border-radius: var(--radius-full);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.btn--whatsapp:hover {
  background: linear-gradient(135deg, #20c45a 0%, #1ab84f 100%);
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(37,211,102,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-2px);
  color: #fff !important;
}
.btn--whatsapp:active {
  transform: translateY(0);
  box-shadow: 0 3px 12px rgba(37,211,102,0.35);
}
.btn--whatsapp svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Get Started — pricing card primary CTA */
.btn--get-started {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 45%, #6d28d9 100%);
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 4px 22px rgba(124,58,237,0.38), inset 0 1px 0 rgba(255,255,255,0.12);
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--radius-full);
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.btn--get-started::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn--get-started:hover {
  box-shadow: 0 8px 36px rgba(124,58,237,0.55), inset 0 1px 0 rgba(255,255,255,0.18);
  transform: translateY(-2px);
  color: #fff !important;
  border-color: transparent;
}
.btn--get-started:hover::after { opacity: 1; }
.btn--get-started:active {
  transform: translateY(0px);
  box-shadow: 0 3px 14px rgba(124,58,237,0.4);
}
.btn--get-started svg { flex-shrink: 0; transition: transform 0.18s ease; }
.btn--get-started:hover svg { transform: translateX(3px); }

/* Pricing card CTA button — full width, pill shape */
.pricing-card__cta {
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-full) !important;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
  font-size: var(--text-base) !important;
  letter-spacing: 0.03em;
}

/* Featured card (Most Popular) gets a brighter Get Started */
.pricing-card--featured .btn--get-started {
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 40%, #7c3aed 100%);
  box-shadow: 0 6px 28px rgba(139,92,246,0.5), inset 0 1px 0 rgba(255,255,255,0.18);
}
.pricing-card--featured .btn--get-started:hover {
  box-shadow: 0 10px 40px rgba(139,92,246,0.65), inset 0 1px 0 rgba(255,255,255,0.22);
}

/* Floating sticky WhatsApp button */
.wa-float {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 9000;
  display: flex; align-items: center; gap: var(--sp-3);
  background: #25d366;
  color: #fff;
  border-radius: var(--radius-full);
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--text-sm); font-weight: 700;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.3);
  transition: all 0.2s var(--ease-out);
  text-decoration: none;
  cursor: pointer;
  animation: waFloat 3s ease-in-out infinite;
}
.wa-float:hover {
  background: #1ebe59;
  box-shadow: 0 12px 40px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.3);
  transform: translateY(-3px) scale(1.03);
  color: #fff;
}
.wa-float svg { width: 24px; height: 24px; flex-shrink: 0; }
.wa-float__text { white-space: nowrap; }
@keyframes waFloat {
  0%,100% { box-shadow: 0 8px 32px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.3); }
  50% { box-shadow: 0 12px 48px rgba(37,211,102,0.6), 0 2px 12px rgba(0,0,0,0.25); }
}
@media (max-width: 480px) {
  .wa-float__text { display: none; }
  .wa-float { padding: var(--sp-4); border-radius: 50%; bottom: 20px; right: 16px; }
}

/* WhatsApp inline promo banner */
.wa-cta-banner {
  display: flex; align-items: center; gap: var(--sp-4);
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: var(--radius-lg);
  padding: var(--sp-4) var(--sp-6);
  margin: var(--sp-6) 0;
  flex-wrap: wrap;
}
.wa-cta-banner svg { width: 28px; height: 28px; color: #25d366; flex-shrink: 0; }
.wa-cta-banner__text { flex: 1; font-size: var(--text-sm); color: var(--text-secondary); }
.wa-cta-banner__text strong { color: var(--text-primary); }

/* ══════════════════════════════════════════
   DURATION-BASED PRICING GRID
   ══════════════════════════════════════════ */

.pricing-duration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  align-items: stretch;
}
@media (max-width: 1024px) { .pricing-duration-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pricing-duration-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }

.pricing-card--value {
  border-color: rgba(6,182,212,0.45) !important;
  box-shadow: 0 0 40px rgba(6,182,212,0.15), var(--shadow-card);
}
.pricing-card--value::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,182,212,0.06), rgba(124,58,237,0.04));
  pointer-events: none;
}

.pricing-card__duration {
  font-size: var(--text-xs); color: var(--text-muted); margin-bottom: var(--sp-6);
  display: flex; align-items: center; gap: var(--sp-2);
}
.pricing-card__save {
  font-size: var(--text-xs); font-weight: 700;
  color: #34d399; background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  padding: 2px 8px; border-radius: var(--radius-full);
}
.pricing-card__note {
  font-size: var(--text-xs); color: var(--text-muted);
  margin-top: var(--sp-4); text-align: center; line-height: 1.5;
}

/* ══════════════════════════════════════════
   STEP CARD WITH WHATSAPP CTA (homepage)
   ══════════════════════════════════════════ */

.step-card--whatsapp {
  border-color: rgba(37,211,102,0.2) !important;
  background: linear-gradient(135deg, rgba(37,211,102,0.04), rgba(37,211,102,0.01)) !important;
}
.step-card--whatsapp:hover { border-color: rgba(37,211,102,0.4) !important; }
.step-card--whatsapp .step-card__number {
  background: linear-gradient(135deg, #1a9e4a, #25d366);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.step-card--whatsapp .step-card__icon { color: #25d366; }

/* ── Cookie table ── */
.cookie-table {
  width: 100%; border-collapse: collapse; font-size: var(--text-sm);
  margin: var(--sp-4) 0;
}
.cookie-table th, .cookie-table td {
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--border); text-align: left;
}
.cookie-table th { background: rgba(124,58,237,0.08); font-weight: 700; color: var(--text-primary); }
.cookie-table td { color: var(--text-secondary); }

/* ── Form ── */
.form { display: flex; flex-direction: column; gap: var(--sp-5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-label { font-size: var(--text-sm); font-weight: 600; color: var(--text-secondary); }
.form-label .required { color: var(--error); }
.form-input, .form-textarea, .form-select {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-base); font-family: var(--font-body);
  color: var(--text-primary); width: 100%;
  transition: all var(--duration-base); min-height: 48px;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary-light); background: rgba(124,58,237,0.05);
  outline: none; box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}
.form-input.error, .form-textarea.error { border-color: var(--error); }
.form-error { font-size: var(--text-xs); color: var(--error); display: none; }
.form-error.show { display: block; }
.form-textarea { min-height: 140px; resize: vertical; }
.form-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.form-success {
  display: none; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3);
  border-radius: var(--radius-md); padding: var(--sp-4); text-align: center;
  color: #34d399; font-weight: 600;
}
.form-success.show { display: block; }

/* ── Misc ── */
.section__head { margin-bottom: var(--sp-8); }
.section__head.text-center { text-align: center; }
.section__head.text-center .section__badge,
.section__head.text-center .section__label { justify-content: center; }
.section__head.text-center .section__sub { margin: 0 auto; }
