/* ============================================
   AVIATOR OYNA 2026 — Premium iGaming Landing
   ============================================ */

/* Fonts are loaded via <link> in HTML — faster, non-render-blocking */

/* --- CSS Variables --- */
:root {
  --bg-deep: #06080f;
  --bg-card: #0d1117;
  --bg-card-hover: #131a24;
  --bg-surface: #111827;
  --accent-red: #e5193e;
  --accent-red-dark: #b81432;
  --accent-red-glow: rgba(229, 25, 62, 0.35);
  --accent-gold: #f5c518;
  --text-primary: #f0f2f5;
  --text-secondary: #8b95a5;
  --text-muted: #4a5568;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(229, 25, 62, 0.2);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Background Atmosphere --- */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(229, 25, 62, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(30, 58, 138, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ========================
   HEADER / NAV
   ======================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(6, 8, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-base);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 36px;
  height: 36px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.logo-text span {
  color: var(--accent-red);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-dark) 100%);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--accent-red-dark) 0%, #8b0f24 100%);
  box-shadow: 0 4px 24px var(--accent-red-glow);
  transform: translateY(-1px);
}

/* ========================
   BREADCRUMBS
   ======================== */
.breadcrumbs {
  padding-top: 88px; /* offset for fixed header */
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumbs-item a {
  color: var(--text-secondary);
  transition: color var(--transition-base);
}

.breadcrumbs-item a:hover {
  color: var(--accent-red);
}

.breadcrumbs-current {
  color: var(--text-secondary);
}

.breadcrumbs-separator {
  color: var(--text-muted);
  font-size: 0.7rem;
  user-select: none;
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
  position: relative;
  min-height: min(100dvh, 860px);
  display: flex;
  align-items: center;
  padding-top: 24px; /* reduced because breadcrumbs now sit above */
  padding-bottom: 40px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(229, 25, 62, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: fadeSlideUp 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(229, 25, 62, 0.12);
  border: 1px solid rgba(229, 25, 62, 0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-red);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

h1 span {
  color: var(--accent-red);
  position: relative;
}

h1 span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-red);
  opacity: 0.4;
  border-radius: 2px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 440px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-dark) 100%);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-red-glow);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-meta svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

.hero-visual {
  position: relative;
  animation: fadeSlideUp 0.8s ease-out 0.2s both;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 60px rgba(229, 25, 62, 0.15), 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(229, 25, 62, 0.15);
  pointer-events: none;
}

.hero-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.hero-multiplier {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent-red);
  text-shadow: 0 0 30px var(--accent-red-glow);
  animation: countUp 3s ease-in-out infinite;
}

/* ========================
   SECTION SHARED STYLES
   ======================== */
section {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-red);
  margin-bottom: 6px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent-red);
  border-radius: 2px;
}

.section-date {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-intro {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ========================
   BRANDS SHOWCASE
   ======================== */
.brands-section {
  background: linear-gradient(180deg, transparent 0%, rgba(13, 17, 23, 0.5) 50%, transparent 100%);
}

.brand-card {
  display: grid;
  grid-template-columns: 180px 100px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.brand-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-red);
  opacity: 0;
  transition: var(--transition-base);
}

.brand-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateX(4px);
}

.brand-card:hover::before {
  opacity: 1;
}

.brand-card-rank {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-red);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 2;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo img {
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.3);
  padding: 6px 10px;
}

.brand-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.brand-rating-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent-gold);
  line-height: 1;
}

.brand-stars {
  display: flex;
  gap: 2px;
}

.brand-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-gold);
}

.brand-stars svg.half {
  fill: url(#star-half-grad);
}

.brand-stars svg.empty {
  fill: var(--text-muted);
}

.brand-bonus {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.brand-bonus strong {
  color: var(--text-primary);
  font-weight: 600;
  display: block;
  font-size: 1rem;
}

.btn-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-dark) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.btn-brand:hover {
  background: linear-gradient(135deg, var(--accent-red-dark) 0%, #8b0f24 100%);
  box-shadow: 0 4px 20px var(--accent-red-glow);
  transform: translateY(-1px);
}

/* ========================
   HOW TO PLAY (now an <ol>)
   Reset default list styles since cards have their own visual numbering
   ======================== */
.howto-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
  list-style: none !important;
  list-style-type: none !important;
  padding: 0;
  margin-left: 0;
}

.howto-step {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  position: relative;
  transition: var(--transition-base);
  list-style: none !important;
  list-style-type: none !important;
  display: block;
}

.howto-step::marker,
.howto-steps > li::marker {
  content: '' !important;
  display: none !important;
}

.howto-step::before,
.howto-steps > li::before {
  content: none !important;
  display: none !important;
}

.howto-step:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--accent-red);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.howto-step p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.howto-note {
  padding: 20px 24px;
  background: rgba(229, 25, 62, 0.06);
  border-left: 3px solid var(--accent-red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ========================
   DEMO SECTION
   ======================== */
.demo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  aspect-ratio: 16 / 9;
  max-width: 800px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.demo-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.demo-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 600px;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ========================
   STRATEGIES (now a <ul>)
   Reset default list styles since cards have their own visual identity
   ======================== */
.strategies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
  list-style: none !important;
  list-style-type: none !important;
  padding: 0;
  margin-left: 0;
}

.strategy-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  list-style: none !important;
  list-style-type: none !important;
  display: block;
}

.strategy-card::marker,
.strategies-grid > li::marker {
  content: '' !important;
  display: none !important;
}

.strategy-card::before,
.strategies-grid > li::before {
  content: none !important;
  display: none !important;
}

.strategy-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-red), transparent);
  opacity: 0;
  transition: var(--transition-base);
}

.strategy-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
}

.strategy-card:hover::after {
  opacity: 1;
}

.strategy-risk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.risk-low {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.risk-mid {
  background: rgba(245, 197, 24, 0.12);
  color: var(--accent-gold);
  border: 1px solid rgba(245, 197, 24, 0.2);
}

.risk-high {
  background: rgba(229, 25, 62, 0.12);
  color: var(--accent-red);
  border: 1px solid rgba(229, 25, 62, 0.2);
}

.risk-critical {
  background: rgba(168, 85, 247, 0.12);
  color: #a855f7;
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.strategy-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.strategy-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ========================
   TRUST / PROVABLY FAIR
   ======================== */
.trust-section {
  background: linear-gradient(180deg, transparent 0%, rgba(229, 25, 62, 0.03) 50%, transparent 100%);
}

.trust-content {
  max-width: 740px;
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  position: relative;
}

.trust-content::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
  border-radius: 2px;
}

.trust-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.trust-highlight {
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust-highlight-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(229, 25, 62, 0.1);
  border-radius: 10px;
  color: var(--accent-red);
}

.trust-highlight p {
  margin: 0;
  font-size: 0.95rem;
}

/* ========================
   ABOUT TEXT
   Removed 2-column layout and tiny font — now a regular readable paragraph
   ======================== */
.about-section {
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0;
}

.about-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 900px;
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-primary);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* ========================
   FOOTER
   ======================== */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo img {
  width: 28px;
  height: 28px;
}

.footer-logo span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: var(--text-secondary);
}

.footer-disclaimer {
  color: var(--text-muted);
  font-size: 0.78rem;
  max-width: 600px;
  line-height: 1.7;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ========================
   MOBILE STICKY CTA
   ======================== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: rgba(6, 8, 15, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
}

.mobile-sticky-cta .btn-sticky {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-dark) 100%);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.mobile-sticky-cta .btn-sticky::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.mobile-sticky-cta .btn-sticky:hover {
  background: linear-gradient(135deg, var(--accent-red-dark) 0%, #8b0f24 100%);
}

/* ========================
   ANIMATIONS
   ======================== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes shimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

@keyframes countUp {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; text-shadow: 0 0 50px var(--accent-red-glow); }
}

/* ========================
   SCROLL REVEAL
   IMPORTANT: content is visible by default for Googlebot and no-JS users.
   It only becomes hidden when the <html> element has the .js class
   (added by an inline script in <head>).
   ======================== */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(30px);
}

html.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Accessibility: respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content { order: 1; }
  .hero-visual { order: 0; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-meta { justify-content: center; }

  .brand-card {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
    padding: 24px;
  }

  .brand-logo {
    justify-content: center;
  }

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

@media (max-width: 768px) {
  section { padding: 32px 0; }

  .breadcrumbs {
    padding-top: 76px;
  }

  .mobile-sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 80px;
  }

  .nav-cta {
    padding: 8px 20px;
    font-size: 0.85rem;
  }

  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }

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

  .brand-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .demo-wrap {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 2rem; }
  .btn-primary { padding: 14px 28px; font-size: 0.95rem; }
  .trust-content { padding: 24px; }
}

/* ========================
   SECTION DIVIDERS / HIGHLIGHTS
   ======================== */
.section-divider {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), rgba(229, 25, 62, 0.15), var(--border-subtle), transparent);
}

.brand-card:first-of-type {
  border-color: rgba(229, 25, 62, 0.2);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(229, 25, 62, 0.04) 100%);
}

.strategies-grid .strategy-card:nth-child(1) { transition-delay: 0s; }
.strategies-grid .strategy-card:nth-child(2) { transition-delay: 0.05s; }
.strategies-grid .strategy-card:nth-child(3) { transition-delay: 0.1s; }
.strategies-grid .strategy-card:nth-child(4) { transition-delay: 0.15s; }