/*
  Beta Digitals — Design System 2026
  Brand Identity: Deep Navy + Signal Red
  Background: #0D1117 / #111827
  Accent:     #FF3B30
  Text:       #FFFFFF / #9CA3AF
*/

/* ── Design Tokens ───────────────────────────────────────────── */
:root {
  /* Brand accent — used ONLY for CTAs, highlights, links */
  --primary:          #FF3B30;
  --primary-dark:     #d92d22;
  --primary-glow:     rgba(255, 59, 48, 0.22);
  --secondary:        #FF6B63;

  /* Dark background system */
  --dark:             #000000;
  --darker:           #000000;
  --dark-mid:         #050505;
  --dark-deep:        #080808;

  /* Text system */
  --text:             #9CA3AF;
  --text-strong:      #E5E7EB;
  --muted:            #6B7280;
  --border:           rgba(255,255,255,0.08);

  /* Glass / utility */
  --glass:            rgba(255, 255, 255, 0.03);
  --glass-border:     rgba(255, 255, 255, 0.08);
  --white:            #ffffff;

  /* Typography */
  --font-heading:     'Lato', sans-serif;
  --font-body:        'Poppins', sans-serif;

  /* Spacing */
  --section-padding:  80px;
  --transition:       all 0.45s cubic-bezier(0.16, 1, 0.3, 1);

  /* Bootstrap 5 brand tokens */
  --bs-primary:           #FF3B30;
  --bs-primary-rgb:       255, 59, 48;
  --bs-secondary:         #9CA3AF;
  --bs-secondary-rgb:     156, 163, 175;
  --bs-link-color:        #FF3B30;
  --bs-link-hover-color:  #d92d22;
  --bs-link-color-rgb:    255, 59, 48;
  --bs-btn-focus-shadow-rgb: 255, 59, 48;
}

/* ── Reset / Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  background-color: var(--dark);
  color: var(--white);
  line-height: 1.65;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* Subtle noise texture for depth */
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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.025'/%3E%3C/svg%3E");
  background-color: var(--dark);
}

body .container {
  max-width: 1100px !important;
}

.section-padding { padding: 80px 0; }

/* ── Tiko-inspired Typography Overrides ─────────────────────── */
.ekit-heading .ekit-heading--title {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}

.ekit-heading .ekit-heading--title span {
  position: relative;
  display: inline-block;
  color: var(--primary);
  z-index: 1;
}

.ekit-heading .ekit-heading--title span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 12%;
  width: 100%;
  height: 25%;
  background: rgba(229, 32, 14, 0.15);
  z-index: -1;
  transform: skewX(-15deg);
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
}

.display-1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
}
.display-2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

h1 span, h2 span { color: var(--primary); }

p {
  font-size: clamp(0.95rem, 1.25vw, 1.15rem);
  line-height: 1.75;
  color: var(--text-strong);
  max-width: 800px;
}
.text-center p { margin-left: auto; margin-right: auto; }

a { color: var(--primary); }
a:hover { color: var(--primary-dark); }

/* ── Bootstrap 5 overrides: buttons ────────────────────────── */
.btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
  font-weight: 700;
}
.btn-primary:hover, .btn-primary:active {
  filter: brightness(.88);
  color: #fff !important;
}
.btn-primary:focus-visible {
  box-shadow: 0 0 0 .25rem rgba(229, 32, 14, .35) !important;
}
.btn-outline-primary {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
  background: transparent !important;
}
.btn-outline-primary:hover, .btn-outline-primary:active {
  background-color: var(--primary) !important;
  color: #fff !important;
}

/* Bootstrap pagination & list-group: use brand primary */
.page-link { color: var(--primary); }
.page-link:hover { color: var(--primary-dark); }
.page-item.active .page-link {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}
.list-group-item.active {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}
.text-primary { color: var(--primary) !important; }
.bg-primary    { background-color: var(--primary) !important; }
.border-primary { border-color: var(--primary) !important; }

/* ── Custom Button System (non-Bootstrap pages) ─────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 0.88rem;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: scale(0.97); }
.btn:focus-visible { outline: 3px solid var(--primary); outline-offset: 4px; }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.85);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -8px var(--primary-glow);
}

/* Hero-specific buttons (press-main style) */
.btn-hero-primary {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: .85rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
}
.btn-hero-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229, 32, 14, .40);
}

/* Secondary / Tiko style (Light/Glass) */
.btn-hero-secondary,
.btn-tiko {
  background: #ffffff !important;
  border: 2px solid rgba(229, 32, 14, 0.3) !important;
  color: var(--darker) !important;
  padding: .85rem 2.2rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255,255,255,0.1);
}

.btn-hero-secondary:hover,
.btn-tiko:hover {
  background: #f8f9fa !important;
  color: var(--primary) !important;
  border-color: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(229, 32, 14, 0.2);
}

/* ── Layout / Container ─────────────────────────────────────── */
.container      { max-width: 1280px; margin: 0 auto; padding: 0 5%; width: 100%; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 5%; }
.container-nav  { max-width: 1280px; }

section { padding: var(--section-padding) 0; position: relative; }

/* ── Custom 12-Col Grid ─────────────────────────────────────── */
/* Used by existing pages; works alongside Bootstrap's .row/.col-* */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2.5rem;
  width: 100%;
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
  min-width: 0;
}
.col-1  { grid-column: span 1 / span 1; }
.col-2  { grid-column: span 2 / span 2; }
.col-3  { grid-column: span 3 / span 3; }
.col-4  { grid-column: span 4 / span 4; }
.col-5  { grid-column: span 5 / span 5; }
.col-6  { grid-column: span 6 / span 6; }
.col-7  { grid-column: span 7 / span 7; }
.col-8  { grid-column: span 8 / span 8; }
.col-9  { grid-column: span 9 / span 9; }
.col-10 { grid-column: span 10 / span 10; }
.col-11 { grid-column: span 11 / span 11; }
.col-12 { grid-column: span 12 / span 12; }

/* Grid variant helpers */
.grid-2   { grid-template-columns: repeat(2, 1fr); }
.grid-3   { grid-template-columns: repeat(3, 1fr); }
.grid-4   { grid-template-columns: repeat(4, 1fr); }
.grid-2-1 { grid-template-columns: 2fr 1fr; }

/* ── Navbar ─────────────────────────────────────────────────── */
#mainNav {
  background: rgba(13, 17, 23, 0.96) !important;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-top: .9rem;
  padding-bottom: .9rem;
  transition: var(--transition);
  backdrop-filter: blur(12px);
}
#mainNav.scrolled {
  background: rgba(8, 12, 18, 0.98) !important;
  backdrop-filter: blur(24px);
  box-shadow: 0 4px 40px rgba(0, 0, 0, .7);
  padding-top: .6rem;
  padding-bottom: .6rem;
}
#mainNav .navbar-brand {
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -.5px;
  text-decoration: none;
  color: #fff;
}
#mainNav .navbar-brand:hover { color: rgba(255,255,255,.85); }
#mainNav .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .5px;
  padding: .55rem .9rem !important;
  transition: color .2s;
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active { color: #fff !important; }
#mainNav .dropdown-menu {
  background: var(--dark-mid) !important;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 6px 0;
  min-width: 220px;
  box-shadow: 0 20px 40px rgba(0,0,0,.5);
}
#mainNav .dropdown-item {
  color: rgba(255,255,255,.85);
  font-size: .875rem;
  padding: .6rem 1.25rem;
  transition: background .15s, color .15s;
}
#mainNav .dropdown-item:hover {
  background: rgba(229, 32, 14, .15) !important;
  color: #fff !important;
}
#mainNav .dropdown-item.active,
#mainNav .dropdown-item:active {
  background: var(--primary) !important;
  color: #fff !important;
}
/* Scroll progress bar */
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--primary);
  transition: width .1s linear;
}
/* Social links in navbar */
.social-nav-link {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  text-decoration: none;
  transition: color .2s, transform .2s;
}
.social-nav-link:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

/* ── Hero Section ───────────────────────────────────────────── */
.hero,
.hero-section {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-mid) 100%);
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
/* Radial glow behind hero text */
.hero-section::after,
.hero::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(255,59,48,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero-section::before,
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M50 50v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-40V6h-2v4h-4v2h4v4h2v-4h4V6h-4zM10 50v-4H8v4H4v2h4v4h2v-4h4v-2H10zM10 10V6H8v4H4v2h4v4h2v-4h4V6h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  background: rgba(240, 112, 96, .14);
  border: 1px solid rgba(240, 112, 96, .35);
  color: #F07060;
  display: inline-block;
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.13;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}
.hero-headline span { color: var(--secondary); }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 700px;
  opacity: 1;
}
.hero-tag {
  color: var(--secondary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: .78rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

/* ── Tag / Badge ────────────────────────────────────────────── */
.tag {
  display: inline-block;
  background: rgba(255, 59, 48, .08);
  border: 1px solid rgba(255, 59, 48, .22);
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .72rem;
  padding: .3rem .85rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

/* ── Section layout helpers ─────────────────────────────────── */
.section-header    { margin-bottom: 4.5rem; max-width: 900px; }
.section-header p  { margin-top: 1.5rem; font-size: 1.15rem; }
.text-center .section-header { margin-left: auto; margin-right: auto; }
.section-contrast {
  background: var(--dark-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section-title   { font-size: 2.2rem; font-weight: 800; line-height: 1.2; color: var(--white); }
.section-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.85); line-height: 1.75; }
.stat-light .lbl {
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2px; color: #e2e8f0; margin-top: .5rem;
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  /* Override Bootstrap's .card which sets color: var(--bs-card-color) = #212529 (dark) */
  --bs-card-color: #fff;
  --bs-card-bg: transparent;
  color: #fff;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--glass-border);
  padding: 3rem 2.5rem;
  border-radius: 12px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.01));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.card:hover { border-color: var(--primary); background: rgba(255,255,255,.055); }
.card h3 { color: #fff; margin-bottom: 1rem; font-size: 1.4rem; transition: color .3s; }
.card h4 { color: #fff; }
.card p  { color: rgba(255,255,255,.85); }
.card:hover h3 { color: var(--primary); }

/* Feature card (light bg, press-main style) */
.feature-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: var(--transition);
  background: #fff;
  color: var(--text);
}
.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(229, 32, 14, .10);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* Pricing card */
.pricing-card {
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
  background: #fff;
  color: var(--text);
}
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(229, 32, 14, .15);
}
.pricing-badge {
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 700;
}

/* ── Stats ──────────────────────────────────────────────────── */
.stat-item { text-align: center; }
.stat-item h2 {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -2px;
}
.stat-item p {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .85rem;
  opacity: .85;
}

/* Steps */
.step-num {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 1rem;
}

/* ── FAQ ────────────────────────────────────────────────────── */
/* ── FAQ Card System ───────────────────────────────────────── */
.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 0; /* Handled by grid gap in row */
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: fit-content;
}

.faq-item:hover {
  border-color: rgba(255, 59, 48, 0.3);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
}

.faq-question {
  padding: 1.5rem 1.75rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: background 0.3s;
}

.faq-question span {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  transition: color 0.3s;
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 59, 48, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(255, 255, 255, 0.015);
}

.faq-answer-inner {
  padding: 0 1.75rem 1.75rem 1.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

/* Active State */
.faq-item.open, .faq-item.active-faq {
  border-color: var(--primary);
  background: rgba(255, 59, 48, 0.02);
}

.faq-item.open .faq-question span {
  color: var(--white);
}

.faq-item.open .faq-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

/* ── Bullet list ────────────────────────────────────────────── */
.bullet-list { list-style: none; margin-top: 2rem; padding: 0; }
.bullet-list li {
  padding: 1.25rem 1.5rem;
  margin-bottom: .75rem;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  transition: var(--transition);
  background: var(--glass);
}
.bullet-list li:hover {
  background: rgba(255,255,255,.05);
  border-color: var(--primary);
  transform: translateX(8px);
}
.bullet-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary);
  margin-right: 1.25rem;
  font-size: .9rem;
}

/* ── Reveal Animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ── Video ──────────────────────────────────────────────────── */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 1000px;
  margin: 4rem auto 0;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 30px 60px -15px var(--primary-glow);
  background: var(--dark);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer,
footer.site-footer {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-mid) 60%, var(--dark-deep) 100%);
  color: rgba(255,255,255,.85);
  padding: 70px 0 32px;
}
.footer-brand {
  font-size: 1.45rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: -.5px;
}
.footer-brand span { color: var(--primary); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color .2s;
  font-size: .9rem;
}
.footer-links a:hover { color: #fff; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  font-size: 1.25rem;
  position: relative;
  opacity: 0;
  animation: iconPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation-fill-mode: forwards;
}

.social-link:hover {
  color: var(--primary);
  transform: translateY(-3px) scale(1.1);
}

.social-link i {
  transition: transform 0.3s ease;
}

/* Staggered Entrance Animations */
@keyframes iconPop {
  0% { transform: scale(0.5) translateY(20px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.delay-1 { animation-delay: 0.1s !important; }
.delay-2 { animation-delay: 0.2s !important; }
.delay-3 { animation-delay: 0.3s !important; }
.delay-4 { animation-delay: 0.4s !important; }

/* Legacy footer (for pages still using old footer markup) */
footer:not(.site-footer) {
  padding: 80px 0 40px;
  border-top: 1px solid var(--glass-border);
  background: var(--darker);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr 1fr;
  gap: 4rem;
  margin-bottom: 60px;
}
.logo {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -.5px;
  text-decoration: none;
  color: var(--white);
  white-space: nowrap;
}
.logo span { color: var(--primary); }

/* ── Guarantee ──────────────────────────────────────────────── */
.guarantee-section {
  background: linear-gradient(135deg, var(--dark), var(--dark-mid), var(--dark-deep));
  color: #fff;
}
.money-back-badge {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, #F07060, #E5200E);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(229, 32, 14, .40);
}

/* ── Media logo ticker ──────────────────────────────────────── */
.media-logo {
  filter: grayscale(100%) opacity(.45);
  transition: var(--transition);
  height: 30px;
  object-fit: contain;
}
.media-logo:hover { filter: none; }

/* ── Utilities ──────────────────────────────────────────────── */
.text-left   { text-align: left !important; }
.text-center { text-align: center !important; }
.mx-auto  { margin-left: auto !important; margin-right: auto !important; }
.mx-0     { margin-left: 0 !important; margin-right: 0 !important; }

/* ── Post content typography ────────────────────────────────── */
.post-content { color: rgba(255,255,255,.85); font-size: 1.05rem; line-height: 1.95; }
.post-content h1, .post-content h2, .post-content h3,
.post-content h4, .post-content h5, .post-content h6 { color: #fff; margin: 2.5rem 0 1rem; }
.post-content p   { opacity: 1; max-width: 100%; }
.post-content a   { color: var(--primary); }
.post-content img { max-width: 100%; border-radius: 8px; margin: 2rem 0; }
.post-content ul, .post-content ol { padding-left: 2rem; margin: 1.5rem 0; }
.post-content li  { margin-bottom: .6rem; line-height: 1.8; }
.post-content blockquote {
  border-left: 3px solid var(--primary);
  padding: 1rem 0 1rem 2rem;
  color: rgba(255,255,255,.85);
  font-style: italic;
  margin: 2.5rem 0;
}

.bullet-list li { list-style: none; }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp .5s ease both; }

/* ── Responsive — Tablet ≤991px ─────────────────────────────── */
@media (max-width: 991px) {
  :root { --section-padding: 60px; }

  .hero, .hero-section { min-height: 75vh; padding-top: 80px; padding-bottom: 60px; }
  .hero-headline { font-size: clamp(1.9rem, 4.5vw, 2.8rem); }
  .hero-sub { font-size: 1.05rem; }

  .display-1 { font-size: clamp(2rem, 5vw, 3rem); }
  .display-2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }

  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2-1 { grid-template-columns: 1fr; }

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

  .step-connector { display: none !important; }
  .pricing-card.featured { transform: none; margin-top: 0; }
}

/* ── Responsive — Mobile ≤767px ─────────────────────────────── */
@media (max-width: 767px) {
  :root { --section-padding: 44px; }
  .container { padding: 0 1rem; }

  /* Grid: single column on mobile */
  .grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-2-1 { grid-template-columns: 1fr !important; gap: 2rem; }

  /* All col-* = full width on mobile */
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
  .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    grid-column: span 12;
  }

  .hero, .hero-section { min-height: auto; padding: 90px 0 52px; }
  .hero-headline { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .hero-sub { font-size: .95rem; }

  .display-1 { font-size: 2rem; letter-spacing: -1px; }
  .display-2 { font-size: 1.7rem; letter-spacing: -.5px; }

  .section-header { margin-bottom: 3rem; }
  .text-left { text-align: center !important; }

  .stat-item h2 { font-size: 3.5rem; }

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

  .btn-hero-primary,
  .btn-hero-secondary { width: 100%; text-align: center; padding: .8rem 1.25rem; }
}

/* ── Responsive — Small mobile ≤480px ──────────────────────── */
@media (max-width: 480px) {
  .hero-headline { font-size: 1.5rem; }
  .display-1 { font-size: 1.7rem; }
  .display-2 { font-size: 1.45rem; }
}

/* Glass Card Enhanced */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem;
  transition: var(--transition);
}
.glass-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
}
