/* =============================================
   oleksiak.dev — Cookie Compliance Service
   style.css
   ============================================= */

/* ---------- Custom Properties ---------- */
:root {
  --bg:           #080b14;
  --surface:      #111827;
  --border:       #1e2a3a;
  --accent:       #6366f1;
  --accent-hover: #4f46e5;
  --text:         #e2e8f0;
  --muted:        #94a3b8;
  --danger:       #ef4444;
  --success:      #10b981;

  --radius:    0.75rem;
  --radius-sm: 0.375rem;
  --transition: 0.2s ease;

  --max-w: 1160px;
  --nav-h: 64px;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

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

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 54ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  border: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

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

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Navigation ---------- */
#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(8, 11, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.wordmark {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.wordmark span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--muted);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--surface);
}

.nav-cta { margin-left: 0.5rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
#hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
  text-align: center;
}

/* Animated gradient blob */
.hero-blob {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-blob::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.18) 0%, transparent 70%);
  animation: blob-pulse 6s ease-in-out infinite alternate;
}

@keyframes blob-pulse {
  from { opacity: 0.6; transform: translateX(-50%) scale(1); }
  to   { opacity: 1;   transform: translateX(-50%) scale(1.1); }
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.25;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: 9999px;
  padding: 0.35rem 1rem;
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 15ch;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

.hero-title .highlight { color: var(--accent); }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.1875rem);
  color: var(--muted);
  max-width: 54ch;
  margin-inline: auto;
  margin-bottom: 2.25rem;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

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

.stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* ---------- Shared section padding ---------- */
.section { padding: 5rem 0; }
.section-alt { background: var(--surface); }

.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin-inline: auto; }

/* ---------- Why Comply ---------- */
.penalty-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.penalty-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.penalty-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.penalty-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.card-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.card-ref {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1rem;
  font-family: 'Courier New', monospace;
}

.card-body {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}

.fine-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--danger);
  display: block;
  margin-bottom: 0.5rem;
}

.penalty-note {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}

.penalty-note strong { color: var(--danger); }

/* ---------- Compliance Requirements Grid ---------- */
.req-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.req-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.625rem;
  transition: border-color var(--transition), transform var(--transition);
}

.req-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.req-icon {
  font-size: 1.5rem;
  margin-bottom: 0.875rem;
}

.req-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.req-body {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.req-body strong { color: var(--text); }

/* ---------- Process divider ---------- */
.process-divider {
  text-align: center;
  margin-bottom: 2rem;
}

.process-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0.5rem 0 0.75rem;
}

/* ---------- Access callout ---------- */
.access-callout {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}

.access-callout strong { color: var(--text); }

.access-callout-icon {
  font-size: 1.375rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ---------- Vertical steps ---------- */
.steps-v {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.steps-v::before {
  content: '';
  position: absolute;
  left: 1.9375rem;
  top: 2rem;
  bottom: 2rem;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), var(--border));
  z-index: 0;
}

.step-v {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
  padding-bottom: 2rem;
}

.step-v:last-child { padding-bottom: 0; }

.step-v-number {
  flex-shrink: 0;
  width: 3.875rem;
  height: 3.875rem;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 1.125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-v-content { padding-top: 0.75rem; }

.step-v-content .step-title { margin-bottom: 0.375rem; }

.step-v-content code {
  font-family: 'Courier New', monospace;
  font-size: 0.875em;
  color: var(--accent);
  background: rgba(99,102,241,0.1);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}

/* ---------- Old horizontal steps (kept for compatibility) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(12.5% + 2rem);
  right: calc(12.5% + 2rem);
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--border) 100%);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.5rem;
}

.step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.step-body {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ---------- Pricing ---------- */

/* Cookiebot subscription note */
.cookiebot-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(16,185,129,0.07);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}

.cookiebot-note strong { color: var(--text); }

.cookiebot-note-icon {
  font-size: 1.375rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Always included block */
.pricing-always {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
}

.pricing-always-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.always-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.always-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--muted);
}

.always-item .feature-icon { flex-shrink: 0; margin-top: 0.05rem; }

.always-base {
  font-size: 0.9375rem;
  color: var(--muted);
  padding-top: 0.875rem;
  border-top: 1px solid var(--border);
}

.always-base strong { color: var(--success); font-size: 1.125rem; }

/* Add-ons */
.addons-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.addon-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.375rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  transition: border-color var(--transition), transform var(--transition);
}

.addon-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.addon-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.addon-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
}

.addon-price {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--accent);
  white-space: nowrap;
}

.addon-body {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.addon-cta {
  align-self: flex-start;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  margin-top: 0.25rem;
}

/* Feature icon (shared with pricing) */
.feature-icon {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon.check { color: var(--success); }
.feature-icon.dash  { color: var(--border); }

/* Typical totals */
.price-examples {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  text-align: center;
}

.price-examples-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.example-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 1.125rem 0.75rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.example-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.example-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.example-detail {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.price-examples-note {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 50ch;
  margin-inline: auto;
}

/* Keep feature-text for any remaining usages */
.feature-text { color: var(--muted); }
.feature-text.active { color: var(--text); }

.plan-cta { width: 100%; justify-content: center; padding: 0.875rem; }

/* ---------- Contact Form ---------- */
#contact { padding: 5rem 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { padding-top: 0.5rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.contact-item-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-item-text { font-size: 0.9375rem; color: var(--muted); line-height: 1.6; }
.contact-item-text strong { color: var(--text); display: block; margin-bottom: 0.125rem; }

/* Form */
#contact-form { display: flex; flex-direction: column; gap: 1rem; }

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

.field { display: flex; flex-direction: column; gap: 0.375rem; }

.field label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.field input,
.field select,
.field textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  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%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.field select option { background: var(--surface); }

.field textarea { resize: vertical; min-height: 110px; }

.field input::placeholder,
.field textarea::placeholder { color: var(--muted); opacity: 0.5; }

.form-submit { margin-top: 0.5rem; }

.submit-btn {
  width: 100%;
  justify-content: center;
  padding: 0.9375rem;
  font-size: 1rem;
}

#form-status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.5rem;
  border-radius: var(--radius-sm);
  padding: 0.625rem 1rem;
  display: none;
}

#form-status.success {
  display: block;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--success);
}

#form-status.error {
  display: block;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: var(--danger);
}

/* ---------- Form Mode Toggle ---------- */
.form-mode-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.mode-btn {
  flex: 1;
  padding: 0.6875rem 1rem;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  font-family: inherit;
  line-height: 1.4;
}

.mode-btn.active {
  background: var(--accent);
  color: #fff;
}

.mode-btn:not(.active):hover {
  background: rgba(99,102,241,0.08);
  color: var(--text);
}

/* ---------- Form section toggle ---------- */
.form-section.hidden { display: none; }

/* ---------- Addon checkboxes ---------- */
.addon-fieldset {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 1.125rem 1rem;
  margin-bottom: 1rem;
}

.addon-legend {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.03em;
  padding: 0 0.375rem;
}

.addon-checks { display: flex; flex-direction: column; }

.check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  user-select: none;
}

.check-item:last-child { border-bottom: none; }
.check-item.base { cursor: default; }

.check-item input[type="checkbox"] {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  accent-color: var(--accent);
  cursor: pointer;
}

.check-fake {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  color: var(--success);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-label {
  flex: 1;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.4;
}

.check-item:has(input:checked) .check-label,
.check-item.base .check-label { color: var(--text); }

.check-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  margin-left: auto;
  flex-shrink: 0;
}

.check-item.base .check-price { color: var(--success); }
.check-item:has(input:checked) .check-price { color: var(--accent); }

/* Running total */
.price-running {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 0.875rem;
  margin-top: 0.25rem;
  gap: 0.5rem;
}

.price-running-label {
  font-size: 0.8125rem;
  color: var(--muted);
}

.price-running-label em { font-style: normal; }

.price-running-value {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.price-running-note {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.65;
  margin-top: 0.25rem;
}

/* ---------- Below-form footnotes ---------- */
.form-footnotes {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.form-footnote {
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.text-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.text-link:hover { color: var(--accent-hover); }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left { font-size: 0.875rem; color: var(--muted); }
.footer-left .wordmark { font-size: 0.875rem; display: inline; }

.footer-note {
  font-size: 0.8125rem;
  color: var(--muted);
  opacity: 0.7;
  margin-top: 0.25rem;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: color var(--transition), border-color var(--transition);
  font-size: 0.875rem;
}

.social-link:hover { color: var(--text); border-color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .req-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps::before { display: none; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .steps-v::before { display: none; }
}

@media (max-width: 680px) {
  .nav-links,
  .nav-cta { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    gap: 0.25rem;
    z-index: 99;
  }

  .nav-links.open a { padding: 0.625rem 1rem; font-size: 1rem; }

  .nav-toggle { display: flex; }

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

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

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

  .hero-stats {
    gap: 1.5rem;
  }

  .access-callout,
  .cookiebot-note {
    flex-direction: column;
    gap: 0.625rem;
  }

  .pricing-always {
    padding: 1.25rem;
  }

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

@media (max-width: 400px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .btn { width: 100%; justify-content: center; }
}

#CookiebotWidget .CookiebotWidget-body .CookiebotWidget-main-logo svg, #CybotCookiebotDialogPoweredbyCybot svg {
    fill: #6366f1 !important;
}




