/* ================================================================
   YellowPages Scraper — Marketing Website Design System
   Dark premium SaaS theme with glassmorphism
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --bg: #0f0f14;
  --bg-alt: #13131a;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text: #e8e8ed;
  --text-muted: #8b8b9e;
  --text-dim: #5a5a6e;
  --primary: #6c5ce7;
  --primary-light: #a29bfe;
  --primary-dark: #5a4bd6;
  --primary-glow: rgba(108, 92, 231, 0.25);
  --green: #a29bfe;
  --green-glow: #a29bfe;
  --red: #ff6b6b;
  --amber: #fdcb6e;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.5);
  --nav-h: 72px;
  --max-w: 1200px;
  --transition: .25s cubic-bezier(.4, 0, .2, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px)
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color var(--transition)
}

a:hover {
  color: var(--green)
}

img {
  max-width: 100%;
  display: block
}

ul,
ol {
  list-style: none
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none
}

/* ── Utilities ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0)
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-light), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.text-center {
  text-align: center
}

.text-muted {
  color: var(--text-muted)
}

.mt-2 {
  margin-top: 16px
}

.mt-4 {
  margin-top: 32px
}

.mt-6 {
  margin-top: 48px
}

.mb-2 {
  margin-top: 16px
}

.mb-4 {
  margin-bottom: 32px
}

/* ── Typography ────────────────────────────────────────────── */
h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.1
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3
}

h4 {
  font-size: 1.1rem;
  font-weight: 700
}

.section-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-light);
  margin-bottom: 12px
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 12px auto 0
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(15, 15, 20, .82);
  border-bottom: 1px solid var(--glass-border);
  transition: background var(--transition)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  white-space: nowrap
}

.nav-brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  filter: drop-shadow(0 0 8px var(--primary-glow))
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px
}

.nav-links a {
  padding: 8px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: #ffffff;
  border-radius: var(--radius-xs);
  transition: all var(--transition)
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--surface)
}

.nav-cta {
  margin-left: 8px
}

.hamburger {
  display: none;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xs);
  padding: 8px 12px;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
  white-space: nowrap
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  color: #fff;
  box-shadow: 0 6px 24px var(--primary-glow)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px var(--primary-glow);
  color: #fff
}

.btn-glass {
  background: var(--surface);
  color: var(--text);
  border-color: var(--glass-border);
  backdrop-filter: blur(10px)
}

.btn-glass:hover {
  background: var(--surface-hover);
  transform: translateY(-1px);
  color: var(--text)
}

.btn-outline {
  background: transparent;
  color: var(--primary-light);
  border-color: var(--primary)
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff
}

.btn-sm {
  padding: 8px 18px;
  font-size: .85rem
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 700
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-xs)
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  text-align: center
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(108, 92, 231, .18), transparent 60%), radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0, 206, 201, .08), transparent 50%);
  pointer-events: none
}

.hero h1 {
  margin-bottom: 20px;
  position: relative
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 36px;
  position: relative
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative
}

.trust-strip {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
  position: relative
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500
}

.trust-item .icon {
  color: var(--green);
  font-size: 1rem
}

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(12px);
  transition: all .3s ease;
  position: relative
}

.card:hover {
  border-color: rgba(255, 255, 255, .12);
  transform: translateY(-3px);
  box-shadow: var(--shadow)
}

.card-highlight {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary-glow), var(--shadow)
}

.card-highlight::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--green));
  opacity: .08;
  pointer-events: none;
  z-index: 0
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  color: #fff;
  box-shadow: 0 4px 16px var(--primary-glow)
}

.card-icon.teal {
  background: linear-gradient(135deg, var(--green), #00b894);
  box-shadow: 0 4px 16px var(--green-glow)
}

/* ── Section ───────────────────────────────────────────────── */
.section {
  padding: 80px 0;
  position: relative
}

.section-alt {
  background: var(--bg-alt)
}

.section-header {
  text-align: center;
  margin-bottom: 56px
}

/* ── Feature Grid ──────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px
}

.feature-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  transition: all var(--transition)
}

.feature-card:hover {
  border-color: rgba(255, 255, 255, .1);
  background: var(--surface-hover)
}

.feature-card .icon {
  font-size: 1.5rem;
  margin-bottom: 10px
}

.feature-card h4 {
  margin-bottom: 6px
}

.feature-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.5
}

/* ── Dual Offer ────────────────────────────────────────────── */
.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.offer-card {
  padding: 36px;
  display: flex;
  flex-direction: column
}

.offer-card .offer-icon {
  font-size: 2.2rem;
  margin-bottom: 16px
}

.offer-card h3 {
  margin-bottom: 8px
}

.offer-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
  flex: 1
}

.offer-card ul {
  margin-bottom: 24px
}

.offer-card ul li {
  padding: 6px 0;
  font-size: .9rem;
  color: var(--text-muted)
}

.offer-card ul li::before {
  content: '✓ ';
  color: var(--green);
  font-weight: 700
}

.decision-table {
  margin-top: 32px;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden
}

.decision-table table {
  width: 100%;
  border-collapse: collapse
}

.decision-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  background: rgba(255, 255, 255, .02);
  border-bottom: 1px solid var(--glass-border)
}

.decision-table td {
  padding: 14px 20px;
  font-size: .9rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, .03)
}

.decision-table tr:last-child td {
  border-bottom: none
}

.decision-table td:last-child {
  color: var(--primary-light);
  font-weight: 600
}

/* ── Configurator ──────────────────────────────────────────── */
.configurator {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden
}

.configurator::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(108, 92, 231, .08), transparent 70%);
  pointer-events: none
}

.config-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px
}

.config-full {
  grid-column: 1/-1
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted)
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  transition: border-color var(--transition)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow)
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b8b9e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px
}

.form-group select:hover {
  border-color: rgba(255,255,255,.16);
  background-color: rgba(255,255,255,.06)
}

.form-group select option {
  background: #1a1a24;
  color: var(--text);
  padding: 10px 16px;
  font-size: .9rem
}

.form-group textarea {
  resize: vertical;
  min-height: 80px
}

.freshness-toggle {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xs);
  padding: 4px;
  overflow: hidden
}

.freshness-toggle button {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--radius-xs);
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  border: none;
  transition: all var(--transition)
}

.freshness-toggle button.active {
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  color: #fff;
  box-shadow: 0 2px 12px var(--primary-glow)
}

.price-display {
  background: rgba(108, 92, 231, .06);
  border: 1px solid rgba(108, 92, 231, .2);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-bottom: 20px
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: .9rem;
  color: var(--text-muted)
}

.price-row.total {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 12px;
  margin-top: 8px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text)
}

.price-row .value {
  color: var(--text);
  font-weight: 600
}

.price-row.total .value {
  color: var(--primary-light);
  font-size: 1.4rem
}

.config-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center
}

.config-secondary-path {
  font-size: .85rem;
  color: var(--text-dim)
}

.config-status {
  margin-top: 12px;
  font-size: .88rem;
  color: var(--green)
}

.config-status.error {
  color: var(--red)
}

/* ── Pricing Grid ──────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px
}

.price-card {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  text-align: center
}

.price-card.popular {
  border-color: var(--primary);
  background: rgba(108, 92, 231, .06)
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  color: #fff;
  padding: 4px 16px;
  border-radius: 99px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px
}

.price-card .price {
  font-size: 2.8rem;
  font-weight: 900;
  margin: 16px 0;
  background: linear-gradient(135deg, var(--text), var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.price-card .price span {
  font-size: .9rem;
  font-weight: 400;
  -webkit-text-fill-color: var(--text-muted)
}

.price-card .features {
  text-align: left;
  margin-bottom: 24px;
  flex: 1
}

.price-card .features li {
  padding: 5px 0;
  font-size: .85rem;
  color: var(--text-muted)
}

.price-card .features li::before {
  content: '✓ ';
  color: var(--green);
  font-weight: 700
}

.price-card .features li.highlight {
  color: var(--primary-light);
  font-weight: 600
}

.price-card .features li.highlight::before {
  color: var(--primary-light)
}

/* ── Steps / How It Works ──────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: step
}

.step {
  text-align: center;
  padding: 24px;
  position: relative;
  counter-increment: step
}

.step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px var(--primary-glow)
}

.step h4 {
  margin-bottom: 6px
}

.step p {
  font-size: .875rem;
  color: var(--text-muted)
}

/* ── FAQ Accordion ─────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition)
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, .12)
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  background: transparent;
  width: 100%;
  text-align: left;
  color: var(--text)
}

.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--text-dim);
  transition: transform var(--transition)
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
  color: var(--primary-light)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 24px 18px
}

.faq-a p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7
}

/* ── Contact Form ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px
}

.contact-card {
  padding: 32px
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.contact-method {
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.contact-method .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  font-size: 1.2rem;
  flex-shrink: 0
}

.contact-method h4 {
  margin-bottom: 2px
}

.contact-method p {
  font-size: .875rem;
  color: var(--text-muted)
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px
}

.payment-badge {
  padding: 6px 14px;
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  color: var(--text-muted)
}

/* ── Embed Frames ──────────────────────────────────────────── */
.embed-frame {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 24px 0
}

.embed-frame .frame-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 10px
}

.embed-frame .frame-header .dots {
  display: flex;
  gap: 6px
}

.embed-frame .frame-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--glass-border)
}

.embed-frame .frame-header .dot:nth-child(1) {
  background: #ff5f57
}

.embed-frame .frame-header .dot:nth-child(2) {
  background: #ffbd2e
}

.embed-frame .frame-header .dot:nth-child(3) {
  background: #28ca41
}

.embed-frame .frame-title {
  font-size: .8rem;
  color: var(--text-dim);
  font-weight: 500
}

.embed-frame iframe,
.embed-frame .embed-placeholder {
  width: 100%;
  min-height: 480px;
  border: none;
  display: block
}

.embed-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-dim);
  font-size: .95rem;
  background: rgba(255, 255, 255, .02)
}

.embed-placeholder .icon {
  font-size: 3rem;
  opacity: .4
}

/* ── Legal Pages ───────────────────────────────────────────── */
.legal {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 80px
}

.legal h1 {
  font-size: 2rem;
  margin-bottom: 8px
}

.legal .updated {
  font-size: .875rem;
  color: var(--text-dim);
  margin-bottom: 40px
}

.legal h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--text)
}

.legal h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 8px
}

.legal p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8
}

.legal ul {
  margin-bottom: 16px;
  padding-left: 20px
}

.legal ul li {
  color: var(--text-muted);
  padding: 4px 0;
  line-height: 1.7;
  list-style: disc
}

.legal a {
  color: var(--primary-light)
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 32px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px
}

.footer-brand p {
  color: var(--text-muted);
  font-size: .875rem;
  margin-top: 8px;
  max-width: 280px;
  line-height: 1.6
}

.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  margin-bottom: 14px
}

.footer-col a {
  display: block;
  padding: 4px 0;
  font-size: .875rem;
  color: var(--text-muted);
  transition: color var(--transition)
}

.footer-col a:hover {
  color: var(--text)
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px
}

.footer-bottom p {
  font-size: .8rem;
  color: var(--text-dim)
}

.footer-payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.footer-payments span {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  color: var(--text-dim)
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes glow {

  0%,
  100% {
    opacity: .6
  }

  50% {
    opacity: 1
  }
}

.animate-in {
  animation: fadeUp .6s ease both
}

.delay-1 {
  animation-delay: .1s
}

.delay-2 {
  animation-delay: .2s
}

.delay-3 {
  animation-delay: .3s
}

.delay-4 {
  animation-delay: .4s
}

/* ── Responsive ────────────────────────────────────────────── */
@media(max-width:1024px) {

  .dual-grid,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .config-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(15, 15, 20, .96);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px;
    gap: 4px;
    backdrop-filter: blur(20px)
  }

  .nav-links.open {
    display: flex
  }

  .hamburger {
    display: block
  }

  .hero {
    padding: 120px 0 60px
  }

  h1 {
    font-size: 2rem
  }

  .section {
    padding: 56px 0
  }

  .feature-grid {
    grid-template-columns: 1fr
  }

  .pricing-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .steps {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center
  }

  .trust-strip {
    flex-direction: column;
    align-items: center
  }

  .steps {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }
}

.btn:focus-visible,
.nav-links a:focus-visible,
.faq-q:focus-visible,
.tab-btn:focus-visible,
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible,
.inline-form-input:focus-visible {
  outline: 3px solid rgba(82, 179, 255, 0.45);
  outline-offset: 3px;
}

.checkout-card {
  margin: 0 auto 24px;
  max-width: var(--max-w);
}

.inline-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-form-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.inline-form-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.inline-form-input {
  flex: 1 1 260px;
  min-height: 48px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.inline-form-input::placeholder {
  color: var(--text-muted);
}

.inline-status {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}