/* ═══════════════════════════════════════════════════════════
   ALSPIRE — style.css
   Dark luxury agency aesthetic · Fraunces + Inter · Sage green accent
   ═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────── */
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  z-index: 9999;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.skip-link:focus {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  clip-path: none;
}

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

[hidden] { display: none !important; }

:root {
  --bg: #0F0F0F;
  --surface: #161616;
  --surface2: #1e1e1e;
  --border: #2A2A2A;
  --border2: rgba(255, 255, 255, 0.07);
  --accent: #7D8A70;
  --accent-dim: #5e6b52;
  --accent-glow: rgba(125, 138, 112, 0.35);
  --text: #F5F5F5;
  --text-muted: #9CA3AF;
  --text-dim: #6B7280;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 60px;
  /* mobile default; bumped to 68px on 769px+ */
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
  font-size: 16px;
}

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

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  /* 24px on 481px+ */
}

.section {
  padding: 72px 0;
  /* 96px on 769px+ */
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border) 30%, var(--border) 70%, transparent 100%);
  margin: 0 auto;
  max-width: 900px;
}

.section-header {
  text-align: center;
  margin-bottom: 44px;
  /* 64px on 481px+ */
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  border: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), opacity 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 0 22px var(--accent-glow), 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
  box-shadow: 0 0 14px var(--accent-glow);
  transform: scale(1.03);
}

.btn-arrow {
  transition: transform 0.3s var(--ease);
}

.btn-primary:hover .btn-arrow {
  transform: translateY(3px);
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  transition: opacity 0.25s;
}

.nav-logo:hover {
  opacity: 0.8;
}

/* Hidden on mobile; revealed via min-width query below */
.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.25s var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hamburger: visible on mobile, hidden on 769px+ */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  z-index: 1010;
}

.bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.hamburger.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 1005;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 40px;
  transition: right 0.4s var(--ease);
}

.mobile-menu.open {
  right: 0;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 22px;
  cursor: pointer;
  transition: color 0.2s;
}

.mobile-close:hover {
  color: var(--text);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-link {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}

.mobile-link:hover {
  color: var(--accent);
  padding-left: 8px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1004;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  backdrop-filter: blur(4px);
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Animated blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  animation: blobFloat 12s ease-in-out infinite alternate;
}

.blob-1 {
  width: 600px;
  height: 600px;
  top: -20%;
  right: -15%;
  background: radial-gradient(circle, #7D8A70, #5e6b52);
  animation-duration: 14s;
}

.blob-2 {
  width: 400px;
  height: 400px;
  top: 40%;
  left: -10%;
  background: radial-gradient(circle, #6b7a5e, #4a5840);
  animation-duration: 18s;
  animation-delay: -4s;
  opacity: 0.12;
}

.blob-3 {
  width: 300px;
  height: 300px;
  bottom: 5%;
  right: 20%;
  background: radial-gradient(circle, #99a88c, #7D8A70);
  animation-duration: 22s;
  animation-delay: -9s;
  opacity: 0.1;
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 30px) scale(0.97);
  }

  100% {
    transform: translate(15px, -10px) scale(1.03);
  }
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(125, 138, 112, 0.1);
  border: 1px solid rgba(125, 138, 112, 0.25);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 28px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(38px, 6.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 24px;
}

.headline-accent {
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

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

.hero-actions .btn {
  font-size: 16px;
  padding: 16px 36px;
}

.hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 13px;
  color: var(--text-dim);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

/* ── HOW IT WORKS ─────────────────────────────────────────── */
/* Mobile: single column; 3 columns on 1025px+ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}

.step-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.step-card:hover {
  border-color: rgba(125, 138, 112, 0.4);
  box-shadow: 0 0 28px rgba(125, 138, 112, 0.12);
  transform: translateY(-4px);
}

.step-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  opacity: 0.9;
}

.step-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Arrow connector: hidden on mobile, shown on 1025px+ */
.step-connector {
  display: none;
  position: absolute;
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.step-connector::after {
  content: '→';
  color: var(--accent);
  font-size: 18px;
  opacity: 0.5;
}

/* ── PRICING ──────────────────────────────────────────────── */
/* Mobile: single column centred; 3 columns on 1025px+ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 64px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.pricing-card--featured {
  background: rgba(125, 138, 112, 0.06);
  border-color: rgba(125, 138, 112, 0.45);
  box-shadow: 0 0 0 1px rgba(125, 138, 112, 0.2), 0 8px 40px rgba(125, 138, 112, 0.18);
  position: relative;
}

.pricing-card--featured:hover {
  box-shadow: 0 0 0 1px rgba(125, 138, 112, 0.5), 0 16px 56px rgba(125, 138, 112, 0.28);
}

/* Premium card uses same base styles as other cards — no special treatment */

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 4px 16px var(--accent-glow);
}

/* Mobile padding; bumped up on 769px+ */
.card-inner {
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured .card-inner {
  padding-top: 44px;
}

.tier-badge {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-badge-row {
  margin-bottom: 18px;
}

.price-block {
  display: flex;
  align-items: baseline;
  margin-bottom: 6px;
}

.price-amount {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-muted);
}

.price-meta {
  display: flex;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.meta-dot {
  color: var(--border);
}

.card-tagline {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 24px;
}

.card-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
  flex: 1;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.feat-check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.card-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* Addons — mobile padding; bumped on 769px+ */
.addons-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}

.addons-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.addons-grid {
  display: flex;
  flex-direction: column;
}

/* Mobile: stacked; 3-column on 769px+ */
.addon-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.addon-row:last-child {
  border-bottom: none;
}

/* Hidden on mobile; shown as grid header row on 769px+ */
.addon-header {
  display: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  padding-bottom: 12px;
}

.addon-name {
  font-size: 14px;
  font-weight: 600;
}

.addon-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.addon-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

/* ── PORTFOLIO ────────────────────────────────────────────── */
/* Mobile: single column; 3 columns on 769px+ */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(125, 138, 112, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.portfolio-placeholder {
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--surface2);
  border-bottom: 1px dashed var(--border);
}

.portfolio-icon {
  color: var(--border);
}

.portfolio-card:hover .portfolio-icon {
  color: var(--accent);
  transition: color 0.3s;
}

.placeholder-text {
  font-size: 14px;
  color: var(--text-dim);
}

.portfolio-meta {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portfolio-label {
  font-size: 13px;
  color: var(--text-muted);
}

.portfolio-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(125, 138, 112, 0.1);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

/* Glassmorphic circular icon buttons */
.btn-contact {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 20px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  text-decoration: none;
}

.btn-contact--email {
  background: rgba(125, 138, 112, 0.08);
  border-color: rgba(125, 138, 112, 0.25);
  color: var(--accent);
}

.btn-contact--email:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn-contact--disabled {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-dim);
  border: 1px solid var(--border);
  cursor: not-allowed;
  opacity: 0.45;
}

.btn-contact--disabled:hover {
  background: rgba(255, 255, 255, 0.04);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-reassurance {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 8px;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  background: var(--bg);
}

/* Mobile: stacked, centre-aligned; row layout on 769px+ */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-copy,
.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
}

/* ══════════════════════════ ANIMATIONS ══════════════════════ */

/* Hero initial animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.7s var(--ease) forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-reveal base state */
.scroll-reveal {
  opacity: 0;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: calc(var(--stagger, 0) * 120ms);
}

.scroll-reveal.visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Variants */
.fade-in {
  transform: translateY(24px);
}

.slide-left {
  transform: translateX(-36px);
}

.scale-in {
  transform: scale(0.95) translateY(16px);
}

/* ══════════════════════════ RESPONSIVE (mobile-first) ════════
   Base styles above are mobile (390px+).
   Media queries below progressively enhance for larger screens.
   ══════════════════════════════════════════════════════════════ */

/* ── Phablet+ (481px+) ───────────────────────────────────────── */
@media (min-width: 481px) {
  .container {
    padding: 0 24px;
  }

  .section-header {
    margin-bottom: 64px;
  }

  .hero-trust {
    gap: 8px 24px;
    font-size: 13px;
  }
}

/* ── Tablet+ (769px+) ────────────────────────────────────────── */
@media (min-width: 769px) {
  :root {
    --nav-h: 68px;
  }

  .section {
    padding: 96px 0;
  }

  /* Navigation */
  .nav-links {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  /* Hero */
  .hero-headline {
    font-size: clamp(38px, 6.5vw, 72px);
  }

  /* Grids */
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Addons table */
  .addon-row {
    grid-template-columns: 1fr 2fr auto;
    gap: 16px;
  }

  .addon-header {
    display: grid;
  }

  .addon-price {
    font-size: 15px;
  }

  .addons-section {
    padding: 36px;
  }

  /* Cards */
  .card-inner {
    padding: 36px 28px;
  }

  /* Footer */
  .footer-container {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    align-items: center;
  }
}

/* ── Desktop+ (1025px+) ──────────────────────────────────────── */
@media (min-width: 1025px) {
  .steps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .step-card {
    width: calc(33.333% - 16px);
  }
  
  .step-card:nth-child(3n) .step-connector {
    display: none;
  }

  .step-connector {
    display: flex;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}

/* ── Language Switcher ────────────────────────────────────────── */
#lang-switcher-desktop {
  display: none;
}

@media (min-width: 769px) {
  #lang-switcher-desktop {
    display: flex;
  }
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 2px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  font-family: inherit;
  line-height: 1;
}

.lang-btn.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 10px var(--accent-glow);
}

.lang-btn:not(.active):hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

/* Mobile: switcher lives inside mobile menu too */
.mobile-lang-switcher {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  justify-content: center;
}

/* ══════════════════════════ FOOTER LEGAL LINKS ══════════════ */
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal-links a {
  font-size: 12px;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: var(--accent);
}

.footer-legal-sep {
  color: var(--border);
  font-size: 12px;
}

/* ══════════════════════════ COOKIE BANNER ════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 2000;
  width: min(680px, calc(100vw - 32px));
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  pointer-events: none;
}

.cookie-banner--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(19, 19, 26, 0.95);
  border: 1px solid rgba(125, 138, 112, 0.25);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.cookie-banner__text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cookie-banner__icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-banner__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.cookie-banner__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.cookie-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 4px;
}

.cookie-link:hover {
  opacity: 0.8;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.btn-cookie {
  padding: 9px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all 0.25s var(--ease);
}

.btn-cookie--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn-cookie--secondary:hover {
  background: rgba(255, 255, 255, 0.10);
  color: var(--text);
}

.btn-cookie--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 14px var(--accent-glow);
}

.btn-cookie--primary:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

@media (min-width: 580px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
  }

  .cookie-banner__text {
    flex: 1;
  }

  .cookie-banner__actions {
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
  }
}

/* ══════════════════════════ LEGAL PAGES ═════════════════════ */
.legal-hero {
  padding: 64px 24px 48px;
  text-align: center;
}

.legal-hero .section-label {
  display: inline-block;
  margin-bottom: 8px;
}

.legal-content {
  padding-top: 0;
}

.legal-container {
  max-width: 800px;
}

.legal-block {
  margin-bottom: 40px;
}

.legal-block h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.legal-block h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  margin: 18px 0 8px;
}

.legal-block p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 10px;
}

.legal-block ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.legal-block ul li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.legal-block address {
  font-style: normal;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 8px;
}

.legal-block a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-block a:hover {
  opacity: 0.8;
}

.legal-block code {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 12px;
  background: rgba(125, 138, 112, 0.1);
  border: 1px solid rgba(125, 138, 112, 0.2);
  color: var(--accent);
  padding: 2px 7px;
  border-radius: 4px;
}

.legal-block--links {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-top: 48px;
}

.legal-block--links p {
  font-size: 14px;
}

/* Legal tables */
.legal-table-wrap {
  overflow-x: auto;
  margin: 12px 0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.legal-table th {
  text-align: left;
  padding: 10px 14px;
  background: rgba(125, 138, 112, 0.08);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(125, 138, 112, 0.2);
}

.legal-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  line-height: 1.55;
  vertical-align: top;
}

.legal-table td small {
  font-size: 11px;
  color: var(--text-dim);
}

.legal-table tr:last-child td {
  border-bottom: none;
}

/* Cookie reset button (in cookie policy page) */
.cookie-reset-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 13px;
  font-family: inherit;
  padding: 6px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  margin-left: 6px;
}

.cookie-reset-btn:hover {
  background: rgba(125, 138, 112, 0.1);
  border-color: var(--accent);
}

/* ══════════════════════ REDUCED MOTION ═══════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}