/* ============================================================
   FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,600;0,9..40,700;0,9..40,900;1,9..40,400&display=swap');

/* ============================================================
   CSS VARIABLES / DESIGN TOKENS
   ============================================================ */
:root {
  --background: #ffffff;
  --foreground: #190831;
  --primary: #190831;
  --primary-foreground: #ffffff;
  --muted: hsl(270, 15%, 95%);
  --muted-foreground: hsl(268, 20%, 40%);
  --accent: #d63f41;
  --accent-foreground: #ffffff;
  --border: hsl(270, 10%, 85%);
  --radius: 5px;

  --hero-gradient: radial-gradient(ellipse at 70% 50%, #4a1942 0%, #2d1035 30%, #190831 70%);
  --section-purple-4: hsl(270, 20%, 94%);
  --section-purple-6: hsl(270, 15%, 90%);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.02em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ============================================================
   UTILITIES
   ============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.fade-up[data-delay="1"] { transition-delay: 0.1s; }
.fade-up[data-delay="2"] { transition-delay: 0.2s; }
.fade-up[data-delay="3"] { transition-delay: 0.3s; }
.fade-up[data-delay="4"] { transition-delay: 0.4s; }

/* ============================================================
   HERO LOAD ANIMATIONS
   ============================================================ */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeUpSm {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroCardIn {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroTrustIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-trust-animate { animation: heroTrustIn 0.6s ease 0.0s both; }
.hero-h1-animate    { animation: heroFadeUp  0.7s ease 0.3s both; }
.hero-p-animate     { animation: heroFadeUpSm 0.6s ease 0.5s both; }
.hero-cta-animate   { animation: heroFadeUpSm 0.6s ease 0.7s both; }
.hero-card-animate  { animation: heroCardIn  0.8s ease 0.6s both; }

/* ============================================================
   ORB ANIMATIONS (HERO BACKGROUND)
   ============================================================ */
@keyframes orb1 {
  0%, 100% { transform: translate(0,  0) scale(1); }
  50%       { transform: translate(40px, 30px) scale(1.1); }
}
@keyframes orb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-30px, -40px) scale(1.15); }
}
@keyframes orb3 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(20px, -20px); }
}
.orb-1 { animation: orb1 8s ease-in-out infinite; }
.orb-2 { animation: orb2 10s ease-in-out infinite; }
.orb-3 { animation: orb3 6s ease-in-out infinite; }

/* ============================================================
   HERO CARD INNER ANIMATIONS
   ============================================================ */
@keyframes scanLine {
  0%   { top: -30%; }
  100% { top: 100%; }
}
@keyframes rotateY {
  0%   { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
@keyframes pulseBar {
  0%, 100% { transform: scaleX(0.5); opacity: 0.5; }
  50%       { transform: scaleX(1);   opacity: 1;   }
}

/* ============================================================
   RETAILER SCROLL STRIP
   ============================================================ */
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.retailer-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: scrollLeft 40s linear infinite;
  width: max-content;
}

/* ============================================================
   BUTTON STYLES
   ============================================================ */
.btn-accent {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background: var(--accent);
  color: white;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-accent:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(214, 63, 65, 0.4);
}
.btn-accent .btn-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #d63f41, #e85d5d);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-accent:hover .btn-overlay { opacity: 1; }
.btn-accent span { position: relative; z-index: 1; }
.btn-accent svg { position: relative; z-index: 1; }

.btn-accent-sm {
  font-size: 0.75rem;
  padding: 0.375rem 1rem;
  border-radius: 0.5rem;
}
.btn-accent-sm:hover {
  box-shadow: 0 0 20px rgba(214, 63, 65, 0.4);
}

/* ============================================================
   TRUST BANNER
   ============================================================ */
.trust-banner {
  border: 1px solid #d63f41;
  background: rgba(214, 63, 65, 0.3);
  border-radius: var(--radius);
  padding: 0.625rem 1rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  background: var(--primary);
  color: var(--primary-foreground);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.nav-logo svg { height: 2.5rem; width: auto; display: block; }
.nav-links {
  display: none;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
}
.nav-link {
  position: relative;
  display: inline-block;
  padding: 1rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.15s;
}
.nav-link:hover { color: var(--accent); }
.nav-link.active { color: white; }
.nav-link.active::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 0 0 3px 3px;
}
.nav-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
.nav-login {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  padding: 0.375rem 1rem;
  transition: color 0.15s;
}
.nav-login:hover { color: white; }
.mobile-toggle {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-toggle svg { width: 24px; height: 24px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 5vw 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { padding: 0.5rem 0; }
.mobile-menu-cta { display: flex; gap: 0.5rem; margin-top: 0.5rem; }

@media (min-width: 1024px) {
  .nav-inner { height: 72px; }
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .mobile-toggle { display: none; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  overflow: hidden;
  background: #0e0520;
}
.hero-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
}
.hero-orb-1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, #d7316d 0%, transparent 70%);
  opacity: 0.3;
  filter: blur(120px);
  top: -20%; left: -10%;
}
.hero-orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #017bc6 0%, transparent 70%);
  opacity: 0.2;
  filter: blur(100px);
  top: 10%; right: -5%;
}
.hero-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  opacity: 0.15;
  filter: blur(80px);
  bottom: 0%; left: 40%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-trust-wrap {
  position: relative;
  z-index: 10;
  padding: 0.75rem 1rem 0;
}
.hero-trust-inner { max-width: 1800px; margin: 0 auto; }
.trust-list {
  display: none;
  align-items: center;
  justify-content: space-around;
  color: white;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
  line-height: 1.375;
}
.trust-item-icon { color: var(--accent); width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.trust-item-big { font-size: 1.25rem; font-weight: 900; }
.trust-stars { display: inline-flex; gap: 0; }
.trust-stars svg { width: 10px; height: 10px; fill: currentColor; }
.trust-stars .half { opacity: 0.5; }
.trust-badge {
  width: 1.75rem; height: 1.75rem;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 900;
}
.trust-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: white;
  font-size: 11px;
}
.trust-mobile-item { display: flex; align-items: center; gap: 0.375rem; }
.trust-mobile-icon { color: var(--accent); width: 1rem; height: 1rem; flex-shrink: 0; }
.trust-sep { color: rgba(255,255,255,0.3); }
.trust-mobile-big { font-size: 1rem; font-weight: 900; }

@media (min-width: 768px) {
  .trust-list   { display: flex; }
  .trust-mobile { display: none; }
  .trust-item.hidden-md { display: none; }
}
@media (min-width: 1024px) {
  .trust-item.hidden-md { display: flex; }
}

.hero-content {
  max-width: 1800px;
  margin: 0 auto;
  padding: 5rem 5vw;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}
.hero-text {
  width: 100%;
  position: relative;
  z-index: 10;
  text-align: center;
}
.hero-h1 {
  font-size: 2.25rem;
  font-weight: 900;
  color: white;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  letter-spacing: -0.035em;
}
.hero-p {
  color: rgba(255,255,255,0.6);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
}
.hero-p strong { color: white; font-weight: 600; }
.hero-cta-wrap { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

.hero-card-wrap {
  display: none;
  position: absolute;
  right: 5vw;
  top: 35%;
  transform: translateY(-50%);
  width: 38%;
}
.hero-card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(215,49,109,0.2), rgba(1,123,198,0.2));
  filter: blur(40px);
  border-radius: 1.5rem;
}
.hero-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 2.5rem;
}
.hero-card-scan {
  position: absolute;
  left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.05), transparent);
  animation: scanLine 3s linear infinite;
  pointer-events: none;
}
.hero-card-inner { text-align: center; position: relative; z-index: 10; }
.hero-rocket {
  font-size: 3.75rem;
  margin-bottom: 1rem;
  display: block;
  animation: rotateY 4s ease-in-out infinite;
}
.hero-card-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.hero-card-sub {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
}
.hero-card-bar {
  display: block;
  margin: 1.25rem auto 0;
  height: 4px;
  width: 4rem;
  border-radius: 9999px;
  background: var(--accent);
  animation: pulseBar 2s ease-in-out infinite;
  transform-origin: center;
}
.hero-bottom-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
}

@media (min-width: 768px) {
  .hero-content { padding: 8rem 5vw; }
  .hero-text { max-width: 58%; text-align: left; }
  .hero-h1 { font-size: 3rem; }
  .hero-p { font-size: 1.25rem; margin-left: 0; margin-right: 0; }
  .hero-cta-wrap { justify-content: flex-start; }
}
@media (min-width: 1024px) {
  .hero-h1 { font-size: 4.5rem; }
  .hero-card-wrap { display: block; }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  padding: 4rem 0;
  background: var(--section-purple-6);
  position: relative;
  overflow: hidden;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}
.section-label {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.75rem;
}
.about-text {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}
.section-h2 {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.about-p {
  color: rgba(25,8,49,0.7);
  font-size: 1rem;
  line-height: 1.625;
  margin-bottom: 1rem;
}
.about-p strong { color: var(--foreground); }
.about-img-wrap { max-width: 48rem; margin: 0 auto; }
.img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  background: var(--muted);
  border: 1px solid rgba(25,8,49,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder svg { color: rgba(25,8,49,0.15); }

@media (min-width: 768px) {
  #about { padding: 6rem 0; }
  .section-h2 { font-size: 3rem; }
  .about-p { font-size: 1.125rem; }
}

/* ============================================================
   CHROME BANNER / RETAILERS
   ============================================================ */
#retailers {
  padding: 3.5rem 0 3.5rem;
  background: var(--primary);
  color: white;
  overflow: hidden;
}
.retailers-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.retailers-h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.75rem;
  letter-spacing: -0.035em;
}
.retailers-p { color: rgba(255,255,255,0.5); font-size: 1rem; max-width: 36rem; margin: 0 auto; }
.retailers-strip { position: relative; overflow: hidden; }
.retailers-fade-left {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 6rem;
  background: linear-gradient(to right, var(--primary), transparent);
  z-index: 10;
  pointer-events: none;
}
.retailers-fade-right {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 6rem;
  background: linear-gradient(to left, var(--primary), transparent);
  z-index: 10;
  pointer-events: none;
}
.retailer-card {
  flex-shrink: 0;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
}
.retailer-card img {
  height: 2.5rem;
  max-width: 130px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}
.retailers-cta { text-align: center; margin-top: 2.5rem; }

@media (min-width: 768px) {
  #retailers { padding: 5rem 0; }
  .retailers-h2 { font-size: 2.25rem; }
}

/* ============================================================
   KEY FEATURES
   ============================================================ */
#features {
  padding: 4rem 0;
  background: var(--section-purple-6);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}
.features-header { text-align: center; margin-bottom: 3.5rem; }
.features-h2 {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.features-sub {
  color: rgba(25,8,49,0.6);
  font-size: 1rem;
  max-width: 42rem;
  margin: 0 auto;
}
.features-grid-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.feature-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgba(25,8,49,0.1);
  background: white;
  padding: 2rem;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}
.feature-mock {
  width: 100%;
  height: 12rem;
  border-radius: 0.75rem;
  background: var(--muted);
  border: 1px solid rgba(25,8,49,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.feature-mock svg { color: rgba(25,8,49,0.2); }
.feature-mock-sm {
  height: 10rem;
  margin-bottom: 1.25rem;
}
.feature-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.feature-title-row svg { color: var(--accent); flex-shrink: 0; }
.feature-title {
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--foreground);
}
.feature-title-sm { font-size: 1rem; }
.feature-desc { font-size: 0.875rem; color: rgba(25,8,49,0.6); line-height: 1.625; }
.feature-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(214,63,65,0.1);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 9999px;
}
.feature-mid-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgba(25,8,49,0.1);
  background: white;
  padding: 2rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-mid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}
.feature-mid-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.feature-mid-text { flex: 1; }
.feature-mid-mock {
  width: 100%;
  height: 12rem;
  border-radius: 0.75rem;
  background: var(--muted);
  border: 1px solid rgba(25,8,49,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.features-grid-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  #features { padding: 6rem 0; }
  .features-h2 { font-size: 3rem; }
  .features-sub { font-size: 1.125rem; }
  .features-grid-top { grid-template-columns: 1fr 1fr; }
  .feature-mid-inner { flex-direction: row; }
  .feature-mid-mock { width: 50%; }
  .features-grid-bottom { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how-it-works {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: var(--hero-gradient);
}
.hiw-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hiw-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
  position: relative;
  z-index: 10;
}
.hiw-header { text-align: center; margin-bottom: 5rem; }
.hiw-h2 {
  font-size: 1.875rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.035em;
}
.hiw-sub { color: rgba(255,255,255,0.5); font-size: 1rem; max-width: 36rem; margin: 0 auto; }
.steps-container { position: relative; }
.steps-container > * + * { margin-top: 2rem; }
.timeline-line {
  display: none;
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
}
.step-row {
  position: relative;
}
.step-dot-wrap {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}
.step-dot {
  width: 1rem; height: 1rem;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
}
.step-content {
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(4px);
  padding: 2rem;
  transition: border-color 0.5s;
}
.step-content:hover { border-color: rgba(255,255,255,0.2); }
.step-content-glow {
  position: absolute;
  inset: -4px;
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.5s;
  filter: blur(28px);
  pointer-events: none;
}
.step-content:hover .step-content-glow { opacity: 1; }
.step-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.step-number {
  font-size: 3rem;
  font-weight: 900;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  letter-spacing: -0.035em;
}
.step-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon svg { color: white; }
.step-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.035em;
}
.step-title-sub { color: rgba(255,255,255,0.4); font-weight: 700; }
.step-desc { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.625; margin-top: 0.75rem; }
.step-line {
  margin-top: 1.5rem;
  height: 2px;
  width: 3rem;
  border-radius: 9999px;
  opacity: 0.5;
  transition: width 0.5s, opacity 0.5s;
}
.step-content:hover .step-line { width: 100%; opacity: 1; }
.hiw-cta { text-align: center; margin-top: 4rem; }

@media (min-width: 768px) {
  .hiw-h2 { font-size: 3rem; }
}
@media (min-width: 1024px) {
  #how-it-works { padding: 8rem 0; }
  .hiw-h2 { font-size: 3.75rem; }
  .hiw-sub { font-size: 1.125rem; }
  .timeline-line { display: block; }
  .step-dot-wrap { display: block; }
  .steps-container > * + * { margin-top: 0; }
  .step-row {
    display: flex;
    align-items: center;
    min-height: 220px;
  }
  .step-content-wrap { width: 45%; }
  .step-even .step-content-wrap { margin-right: auto; padding-right: 3rem; }
  .step-odd  .step-content-wrap { margin-left: auto;  padding-left:  3rem; }
  .step-number { font-size: 3.75rem; }
  .step-title { font-size: 1.875rem; }
}

/* ============================================================
   WHY CHOOSE
   ============================================================ */
#why-choose {
  padding: 4rem 0;
  background: var(--section-purple-4);
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}
.why-header { text-align: center; margin-bottom: 3.5rem; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.why-card {
  border-radius: 1rem;
  border: 1px solid rgba(25,8,49,0.1);
  background: white;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}
.why-card-img {
  width: 100%;
  height: 13rem;
  background: var(--muted);
  border-bottom: 1px solid rgba(25,8,49,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card-img svg { color: rgba(25,8,49,0.15); }
.why-card-body { padding: 1.5rem; }
.why-card-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.why-card-title-row svg { color: var(--accent); flex-shrink: 0; }
.why-card-title { font-size: 1rem; font-weight: 900; color: var(--foreground); }
.why-card-desc { font-size: 0.875rem; color: rgba(25,8,49,0.6); line-height: 1.625; }

@media (min-width: 640px)  { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px)  { #why-choose { padding: 6rem 0; } }

/* ============================================================
   STATS SECTION
   ============================================================ */
#stats {
  padding: 4rem 0;
  background: var(--section-purple-4);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}
.stats-header { text-align: center; margin-bottom: 3.5rem; }
.stats-h2 {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.stats-sub { color: rgba(25,8,49,0.6); font-size: 1rem; max-width: 42rem; margin: 0 auto; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat-card {
  border-radius: 1rem;
  border: 1px solid rgba(25,8,49,0.1);
  background: white;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}
.stat-icon { color: var(--accent); margin: 0 auto 0.75rem; display: block; }
.stat-icon svg { width: 28px; height: 28px; display: block; margin: 0 auto; }
.stat-value { font-size: 1.875rem; font-weight: 900; color: var(--foreground); margin-bottom: 0.25rem; letter-spacing: -0.035em; }
.stat-label { font-size: 0.875rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.25rem; }
.stat-desc { font-size: 0.75rem; color: rgba(25,8,49,0.5); line-height: 1.625; }

@media (min-width: 768px)  { #stats { padding: 6rem 0; } .stats-h2 { font-size: 3rem; } .stats-sub { font-size: 1.125rem; } .stat-value { font-size: 2.25rem; } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  background: var(--hero-gradient);
}
.testimonials-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
  position: relative;
  z-index: 10;
}
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-h2 {
  font-size: 1.875rem;
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: -0.035em;
}
.testimonials-sub { color: rgba(255,255,255,0.5); font-size: 1rem; max-width: 36rem; margin: 0 auto; }
.testimonials-masonry {
  columns: 1;
  gap: 1.25rem;
}
.testimonials-masonry > * { margin-bottom: 1.25rem; }
.testimonial-card {
  break-inside: avoid;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  transition: border-color 0.3s;
  display: inline-block;
  width: 100%;
}
.testimonial-card:hover { border-color: rgba(255,255,255,0.2); }
.testimonial-quote-icon { color: rgba(214,63,65,0.4); margin-bottom: 0.75rem; }
.testimonial-quote-icon svg { width: 20px; height: 20px; }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 0.75rem; }
.testimonial-stars svg { width: 14px; height: 14px; fill: var(--accent); color: var(--accent); }
.testimonial-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.625;
  margin-bottom: 1.25rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.875rem; font-weight: 700; color: white; }
.testimonial-location { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

@media (min-width: 640px)  { .testimonials-masonry { columns: 2; } }
@media (min-width: 768px)  { #testimonials { padding: 6rem 0; } .testimonials-h2 { font-size: 3rem; } .testimonials-sub { font-size: 1.125rem; } }
@media (min-width: 1024px) { .testimonials-masonry { columns: 3; } }

/* ============================================================
   CTA SECTION
   ============================================================ */
#cta {
  padding: 5rem 0;
  background: var(--section-purple-4);
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 5vw;
  text-align: center;
}
.cta-h2 {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--foreground);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  letter-spacing: -0.035em;
}
.cta-h2 span { color: var(--accent); }
.cta-p { color: rgba(25,8,49,0.6); font-size: 1rem; max-width: 32rem; margin: 0 auto 2rem; }
.cta-perks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 1rem;
  margin-bottom: 2.5rem;
}
.cta-perk { display: flex; align-items: center; gap: 0.375rem; }
.cta-perk svg { color: var(--accent); width: 15px; height: 15px; flex-shrink: 0; }
.cta-perk-text { font-size: 0.875rem; color: rgba(25,8,49,0.5); }
.cta-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.btn-accent-xl {
  padding: 1rem 2rem;
  border-radius: 0.75rem;
}
.btn-accent-xl:hover {
  box-shadow: 0 0 40px rgba(214,63,65,0.3);
}
.cta-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(214,63,65,0.7);
  transition: color 0.15s;
}
.cta-link:hover { color: var(--accent); }

@media (min-width: 640px) { .cta-btns { flex-direction: row; } }
@media (min-width: 768px) {
  #cta { padding: 7rem 0; }
  .cta-h2 { font-size: 3rem; }
  .cta-p { font-size: 1.125rem; }
}
@media (min-width: 1024px) {
  .cta-h2 { font-size: 3.75rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #190831;
  color: white;
}
.footer-accent-bar { height: 4px; background: var(--accent); width: 100%; }
.footer-inner {
  max-width: 1800px;
  margin: 0 auto;
  padding: 3rem 5vw;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col-title {
  font-size: 1.125rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.footer-award-row { display: flex; align-items: flex-start; gap: 1rem; }
.footer-award-text { font-size: 0.75rem; color: rgba(255,255,255,0.6); line-height: 1.625; flex: 1; }
.footer-award-text strong { color: white; }
.footer-award-badge {
  width: 5rem; height: 5rem;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}
.footer-links { display: flex; flex-direction: column; gap: 0.375rem; }
.footer-links a { font-size: 0.75rem; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-links a:hover { color: var(--accent); }
.footer-socials { display: flex; gap: 0.75rem; }
.social-btn {
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.social-btn:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.footer-bottom svg { height: 1.25rem; width: auto; }
.footer-copy { font-size: 10px; color: rgba(255,255,255,0.4); line-height: 1.5; }
.footer-copy strong { color: rgba(255,255,255,0.6); }

@media (min-width: 768px) {
  .footer-inner { padding: 4rem 5vw; }
  .footer-grid { grid-template-columns: 5fr 3fr 3fr; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}


/* ============================================================
   PAGE HERO (shared across inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
  background: var(--hero-gradient);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5vw;
  position: relative;
  z-index: 10;
}
.page-hero-center { text-align: center; }
.page-hero-label {
  display: block;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.page-hero-h1 {
  font-size: 1.875rem;
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  letter-spacing: -0.035em;
}
.page-hero-sub {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
}
.page-hero-sub strong { color: white; }
.page-hero-bottom-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
}
@media (min-width: 768px) {
  .page-hero { padding: 6rem 0 7rem; }
  .page-hero-h1 { font-size: 3rem; }
  .page-hero-sub { font-size: 1.125rem; }
}
@media (min-width: 1024px) {
  .page-hero-h1 { font-size: 3.75rem; }
}


/* ============================================================
   ACCORDION
   ============================================================ */
.accordion-group { border-radius: 0.75rem; overflow: hidden; }
.accordion-item { border-bottom: 1px solid rgba(25,8,49,0.1); }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(25,8,49,0.7);
  text-align: left;
  transition: color 0.15s;
}
.accordion-trigger:hover { color: var(--foreground); }
.accordion-trigger.open { color: var(--foreground); }
.accordion-chevron {
  flex-shrink: 0;
  width: 1rem; height: 1rem;
  transition: transform 0.25s;
  color: rgba(25,8,49,0.4);
}
.accordion-trigger.open .accordion-chevron { transform: rotate(180deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.accordion-content.open { max-height: 500px; }
.accordion-content-inner {
  padding-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(25,8,49,0.6);
  line-height: 1.7;
}


/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-section {
  padding: 4rem 0;
  background: var(--section-purple-4);
}
.pricing-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 5vw;
}
.currency-toggle-wrap { display: flex; justify-content: flex-end; margin-bottom: 2rem; }
.currency-toggle {
  display: inline-flex;
  border-radius: 0.5rem;
  border: 1px solid rgba(25,8,49,0.1);
  overflow: hidden;
}
.currency-btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  background: white;
  color: rgba(25,8,49,0.6);
  transition: background 0.15s, color 0.15s;
  font-family: 'DM Sans', system-ui, sans-serif;
  cursor: pointer;
  border: none;
}
.currency-btn:hover { color: var(--foreground); }
.currency-btn.active { background: var(--accent); color: white; }
.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.plan-card {
  border-radius: 1rem;
  border: 1px solid rgba(25,8,49,0.1);
  background: white;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.plan-card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.plan-header {
  background: var(--primary);
  color: white;
  padding: 1.25rem 1.5rem;
  text-align: center;
  position: relative;
}
.plan-name { font-size: 1.25rem; font-weight: 900; letter-spacing: -0.02em; }
.plan-best-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--accent);
  color: white;
  padding: 2px 8px;
  border-radius: 9999px;
}
.plan-body { padding: 2rem 1.5rem; text-align: center; }
.plan-trial { font-size: 0.875rem; color: rgba(25,8,49,0.5); margin-bottom: 0.75rem; }
.plan-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.plan-old-price { font-size: 1.875rem; font-weight: 900; color: rgba(25,8,49,0.3); text-decoration: line-through; }
.plan-price { font-size: 3rem; font-weight: 900; color: var(--foreground); letter-spacing: -0.04em; }
.plan-period { font-size: 1.125rem; color: rgba(25,8,49,0.5); }
.plan-highlight { color: var(--accent); font-weight: 700; font-size: 0.875rem; margin-bottom: 0.5rem; }
.plan-subtitle {
  font-size: 0.75rem;
  color: rgba(25,8,49,0.5);
  line-height: 1.6;
  white-space: pre-line;
  margin-bottom: 2rem;
}
.plan-features { text-align: left; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.625rem; }
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(25,8,49,0.7);
}
.plan-feature-check { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.plan-feature-check svg { width: 16px; height: 16px; }
.plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background: var(--accent);
  color: white;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.plan-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(214,63,65,0.4);
}
.plan-cta .btn-overlay { position: absolute; inset: 0; background: linear-gradient(to right,#d63f41,#e85d5d); opacity: 0; transition: opacity 0.3s; }
.plan-cta:hover .btn-overlay { opacity: 1; }
.plan-cta span { position: relative; z-index: 1; }
.pricing-faq-section {
  padding: 4rem 0 5rem;
  background: var(--section-purple-6);
}
.pricing-faq-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 5vw;
}
.pricing-faq-header { text-align: center; margin-bottom: 3rem; }
.pricing-faq-h2 {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--foreground);
  margin-bottom: 1rem;
  letter-spacing: -0.035em;
}
.pricing-faq-p { color: rgba(25,8,49,0.6); font-size: 1rem; max-width: 36rem; margin: 0 auto; }
.pricing-faq-p a { color: var(--accent); }
.pricing-faq-p a:hover { text-decoration: underline; }
.pricing-faq-group-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--foreground);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.pricing-faq-gap { margin-bottom: 2.5rem; }

@media (min-width: 768px) {
  .pricing-section { padding: 5rem 0; }
  .plan-price { font-size: 3.75rem; }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .pricing-faq-section { padding: 6rem 0; }
  .pricing-faq-h2 { font-size: 3rem; }
}


/* ============================================================
   WHAT IS ONLINE ARBITRAGE PAGE
   ============================================================ */
.woa-section-light { padding: 4rem 0; background: var(--section-purple-4); }
.woa-section-white { padding: 4rem 0; background: white; }
.woa-section-mid { padding: 4rem 0; background: var(--section-purple-6); }
.woa-inner-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5vw;
}
.woa-inner-wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5vw;
}
.woa-hero-img {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5vw;
  margin-top: -1rem;
  position: relative;
  z-index: 10;
}
.woa-hero-img-inner {
  border-radius: 1rem;
  background: rgba(25,8,49,0.05);
  border: 1px solid rgba(25,8,49,0.1);
  aspect-ratio: 21 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.woa-img-placeholder-label { font-size: 0.875rem; font-weight: 600; color: rgba(25,8,49,0.3); margin-top: 0.75rem; }
.woa-img-placeholder-sub { font-size: 0.75rem; color: rgba(25,8,49,0.2); }
.woa-h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--foreground);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.woa-body { display: flex; flex-direction: column; gap: 1rem; color: rgba(25,8,49,0.6); font-size: 15px; line-height: 1.7; }
.woa-body strong { color: var(--foreground); }
.woa-body a { color: var(--accent); font-weight: 600; }
.woa-body a:hover { text-decoration: underline; }
.woa-body u { text-decoration-color: rgba(25,8,49,0.3); }
.woa-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.woa-img-box {
  border-radius: 1rem;
  background: var(--primary);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.woa-img-box-light {
  background: rgba(25,8,49,0.05);
  border: 1px solid rgba(25,8,49,0.1);
  aspect-ratio: 4/3;
}
.woa-video-play {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: rgba(214,63,65,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.2s;
}
.woa-img-box:hover .woa-video-play { transform: scale(1.1); }
.woa-video-title { color: white; font-weight: 700; font-size: 1.125rem; }
.woa-video-sub { color: rgba(255,255,255,0.4); font-size: 0.75rem; margin-top: 0.25rem; }
.woa-bullet-list { display: flex; flex-direction: column; gap: 0.75rem; }
.woa-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(25,8,49,0.6);
  font-size: 15px;
  line-height: 1.7;
}
.woa-bullet-dot {
  flex-shrink: 0;
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.6rem;
}
.woa-cta-section {
  padding: 4rem 0;
  background: var(--section-purple-4);
  text-align: center;
}
.woa-cta-inner { max-width: 700px; margin: 0 auto; padding: 0 5vw; }
.woa-cta-h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--foreground);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.woa-cta-p { color: rgba(25,8,49,0.6); font-size: 1rem; margin-bottom: 2rem; }

@media (min-width: 768px) {
  .woa-section-light, .woa-section-white, .woa-section-mid { padding: 6rem 0; }
  .woa-h2 { font-size: 2.25rem; }
  .woa-grid-2 { grid-template-columns: 1fr 1fr; align-items: start; }
  .woa-cta-section { padding: 6rem 0; }
  .woa-cta-h2 { font-size: 2.25rem; }
}


/* ============================================================
   FAQs PAGE
   ============================================================ */
.faq-hero {
  position: relative;
  overflow: hidden;
  background: #0e0520;
  padding: 4rem 0 5rem;
}
.faq-hero-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.faq-hero-orb-1 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  opacity: 0.25;
  filter: blur(100px);
  top: -10%; right: 15%;
  animation: orbFaq1 9s ease-in-out infinite;
}
.faq-hero-orb-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, #d7316d 0%, transparent 70%);
  opacity: 0.15;
  filter: blur(80px);
  bottom: -10%; left: 5%;
  animation: orbFaq2 7s ease-in-out infinite;
}
@keyframes orbFaq1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-25px, 25px) scale(1.08); }
}
@keyframes orbFaq2 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(15px, -15px); }
}
.faq-hero-grid {
  position: absolute; inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.faq-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5vw;
  position: relative;
  z-index: 10;
}
.faq-hero-label {
  display: block;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.faq-hero-h1 {
  font-size: 1.875rem;
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.035em;
}
.faq-hero-sub {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  max-width: 36rem;
  line-height: 1.7;
}
.faq-hero-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent); }
.faq-content-section {
  padding: 4rem 0;
  background: white;
}
.faq-content-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5vw;
}
.faq-category { margin-bottom: 3rem; }
.faq-category-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--foreground);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.faq-still-help {
  padding: 4rem 0;
  background: var(--section-purple-4);
  text-align: center;
}
.faq-still-inner { max-width: 900px; margin: 0 auto; padding: 0 5vw; }
.faq-still-h2 { font-size: 1.5rem; font-weight: 900; color: var(--foreground); margin-bottom: 0.75rem; letter-spacing: -0.03em; }
.faq-still-p { color: rgba(25,8,49,0.6); font-size: 1rem; margin-bottom: 1.5rem; }

@media (min-width: 768px) {
  .faq-hero { padding: 6rem 0 7rem; }
  .faq-hero-h1 { font-size: 2.5rem; }
  .faq-hero-sub { font-size: 1.125rem; }
  .faq-content-section { padding: 6rem 0; }
  .faq-still-help { padding: 5rem 0; }
  .faq-still-h2 { font-size: 1.875rem; }
  .faq-category-title { font-size: 1.5rem; }
}
@media (min-width: 1024px) {
  .faq-hero-h1 { font-size: 3rem; }
}


/* ============================================================
   FREE TRAINING PAGE
   ============================================================ */
.ft-hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
  background: var(--hero-gradient);
}
.ft-hero-blob-1 {
  position: absolute;
  top: 2.5rem; right: 10%;
  width: 16rem; height: 16rem;
  background: rgba(214,63,65,0.1);
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}
.ft-hero-blob-2 {
  position: absolute;
  bottom: 0; left: 5%;
  width: 12rem; height: 12rem;
  background: rgba(214,63,65,0.05);
  border-radius: 50%;
  filter: blur(32px);
  pointer-events: none;
}
.ft-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 5vw;
  position: relative;
  z-index: 10;
}
.ft-hero-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ft-hero-label svg { flex-shrink: 0; }
.ft-hero-h1 {
  font-size: 1.875rem;
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  letter-spacing: -0.035em;
}
.ft-hero-h1 .accent-text { color: var(--accent); }
.ft-hero-p {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  max-width: 32rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.ft-hero-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.ft-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 600;
  transition: border-color 0.15s, color 0.15s;
}
.ft-hero-link:hover { border-color: var(--accent); color: var(--accent); }
.ft-hero-link .link-count { font-size: 0.75rem; color: rgba(255,255,255,0.3); transition: color 0.15s; }
.ft-hero-link:hover .link-count { color: rgba(214,63,65,0.5); }
.ft-cat-section { padding: 4rem 0; background: var(--section-purple-4); }
.ft-cat-inner { max-width: 1000px; margin: 0 auto; padding: 0 5vw; }
.ft-cat-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.ft-cat-card {
  display: block;
  border-radius: 1rem;
  border: 1px solid rgba(25,8,49,0.1);
  background: white;
  padding: 2rem;
  transition: box-shadow 0.3s, border-color 0.3s;
  text-decoration: none;
}
.ft-cat-card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); border-color: rgba(214,63,65,0.2); }
.ft-cat-card-row { display: flex; align-items: flex-start; gap: 1.25rem; }
.ft-cat-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 0.75rem;
  background: rgba(214,63,65,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.ft-cat-card:hover .ft-cat-icon { background: rgba(214,63,65,0.2); }
.ft-cat-icon svg { color: var(--accent); width: 24px; height: 24px; }
.ft-cat-title {
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  transition: color 0.15s;
}
.ft-cat-card:hover .ft-cat-title { color: var(--accent); }
.ft-cat-desc { font-size: 0.875rem; color: rgba(25,8,49,0.6); margin-bottom: 0.75rem; line-height: 1.6; }
.ft-cat-view {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ft-cat-view svg { transition: transform 0.15s; }
.ft-cat-card:hover .ft-cat-view svg { transform: translateX(3px); }
.ft-guides-section { padding: 4rem 0; background: white; }
.ft-guides-inner { max-width: 1000px; margin: 0 auto; padding: 0 5vw; }
.ft-guides-h2 { font-size: 1.5rem; font-weight: 900; color: var(--foreground); margin-bottom: 2rem; letter-spacing: -0.03em; }
.ft-guide-list { display: flex; flex-direction: column; gap: 0.75rem; }
.ft-guide-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(25,8,49,0.1);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ft-guide-row:hover { border-color: rgba(214,63,65,0.2); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.07); }
.ft-guide-row-left { display: flex; align-items: center; gap: 1rem; }
.ft-guide-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(214,63,65,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ft-guide-icon svg { color: var(--accent); width: 18px; height: 18px; }
.ft-guide-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
  transition: color 0.15s;
  display: block;
  margin-bottom: 0.125rem;
}
.ft-guide-row:hover .ft-guide-title { color: var(--accent); }
.ft-guide-meta { font-size: 0.75rem; color: rgba(25,8,49,0.4); }
.ft-guide-arrow { color: rgba(25,8,49,0.2); flex-shrink: 0; transition: color 0.15s, transform 0.15s; }
.ft-guide-arrow svg { width: 16px; height: 16px; }
.ft-guide-row:hover .ft-guide-arrow { color: var(--accent); transform: translateX(3px); }
.ft-still-section { padding: 4rem 0; background: var(--section-purple-6); }
.ft-still-inner { max-width: 900px; margin: 0 auto; padding: 0 5vw; }
.ft-still-h2 { font-size: 1.5rem; font-weight: 900; color: var(--foreground); margin-bottom: 0.75rem; letter-spacing: -0.03em; }
.ft-still-p { color: rgba(25,8,49,0.6); font-size: 1rem; margin-bottom: 1.5rem; }

@media (min-width: 768px) {
  .ft-hero { padding: 6rem 0 7rem; }
  .ft-hero-h1 { font-size: 3rem; }
  .ft-hero-p { font-size: 1.125rem; }
  .ft-cat-section { padding: 6rem 0; }
  .ft-cat-grid { grid-template-columns: 1fr 1fr; }
  .ft-guides-section { padding: 5rem 0; }
  .ft-guides-h2 { font-size: 1.875rem; }
  .ft-still-section { padding: 5rem 0; }
  .ft-still-h2 { font-size: 1.875rem; }
}
@media (min-width: 1024px) {
  .ft-hero-h1 { font-size: 3.75rem; }
}


/* ============================================================
   TRAINING GUIDES LISTING (/free-training/getting-started)
   ============================================================ */
.tg-breadcrumb-bar {
  background: var(--primary);
  padding: 0.75rem 0;
}
.tg-breadcrumb-inner { max-width: 1100px; margin: 0 auto; padding: 0 5vw; }
.tg-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}
.tg-breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.15s; }
.tg-breadcrumb a:hover { color: white; }
.tg-breadcrumb .current { color: rgba(255,255,255,0.8); }
.tg-listing-section { padding: 4rem 0; background: var(--section-purple-4); }
.tg-listing-inner { max-width: 1100px; margin: 0 auto; padding: 0 5vw; }
.tg-listing-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.tg-listing-count { font-size: 1.5rem; font-weight: 900; color: var(--foreground); letter-spacing: -0.03em; }
.tg-card-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.tg-card {
  display: block;
  border-radius: 0.75rem;
  border: 1px solid rgba(25,8,49,0.1);
  background: white;
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
  text-decoration: none;
}
.tg-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); border-color: rgba(214,63,65,0.2); }
.tg-card-img {
  aspect-ratio: 16/9;
  background: rgba(25,8,49,0.05);
  display: flex; align-items: center; justify-content: center;
}
.tg-card-img svg { color: rgba(25,8,49,0.15); width: 28px; height: 28px; }
.tg-card-body { padding: 1.25rem; }
.tg-card-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.4;
  margin-bottom: 0.5rem;
  transition: color 0.15s;
}
.tg-card:hover .tg-card-title { color: var(--accent); }
.tg-card-excerpt {
  font-size: 0.75rem;
  color: rgba(25,8,49,0.5);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tg-card-footer { display: flex; align-items: center; justify-content: space-between; }
.tg-card-date { font-size: 11px; color: rgba(25,8,49,0.3); }
.tg-card-arrow { color: rgba(25,8,49,0.2); transition: color 0.15s, transform 0.15s; }
.tg-card-arrow svg { width: 14px; height: 14px; }
.tg-card:hover .tg-card-arrow { color: var(--accent); transform: translateX(3px); }

@media (min-width: 640px) { .tg-card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .tg-card-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 768px) {
  .tg-listing-section { padding: 5rem 0; }
  .tg-listing-count { font-size: 1.875rem; }
}


/* ============================================================
   ABOUT US PAGE
   ============================================================ */
.about-hero {
  position: relative;
  overflow: hidden;
  background: #0e0520;
  padding: 4rem 0 5rem;
}
.about-hero-orb-1 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, #d7316d 0%, transparent 70%);
  opacity: 0.25;
  filter: blur(120px);
  top: -30%; left: 10%;
  animation: aboutOrb1 8s ease-in-out infinite;
}
.about-hero-orb-2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, #017bc6 0%, transparent 70%);
  opacity: 0.15;
  filter: blur(100px);
  bottom: -20%; right: 5%;
  animation: aboutOrb2 10s ease-in-out infinite;
}
@keyframes aboutOrb1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(30px,20px) scale(1.1); }
}
@keyframes aboutOrb2 {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(-20px,-30px); }
}
.about-hero-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.about-hero-inner { max-width: 900px; margin: 0 auto; padding: 0 5vw; position: relative; z-index: 10; }
.about-hero-label { display: block; color: var(--accent); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.about-hero-h1 { font-size: 1.875rem; font-weight: 900; color: white; line-height: 1.05; margin-bottom: 1.5rem; letter-spacing: -0.035em; }
.about-hero-sub { color: rgba(255,255,255,0.5); font-size: 1rem; max-width: 36rem; line-height: 1.7; }
.about-hero-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent); }
.about-content-section { padding: 4rem 0; background: white; }
.about-content-inner { max-width: 1000px; margin: 0 auto; padding: 0 5vw; }
.about-content-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; color: rgba(25,8,49,0.6); font-size: 15px; line-height: 1.7; }
.about-col { display: flex; flex-direction: column; gap: 1.25rem; }
.about-values-section { padding: 4rem 0; background: var(--section-purple-4); }
.about-values-inner { max-width: 1000px; margin: 0 auto; padding: 0 5vw; }
.about-values-h2 { font-size: 1.5rem; font-weight: 900; color: var(--foreground); text-align: center; margin-bottom: 3rem; letter-spacing: -0.03em; }
.about-values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.about-value-item { text-align: center; }
.about-value-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 1rem;
  background: rgba(214,63,65,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.about-value-icon svg { color: var(--accent); width: 24px; height: 24px; }
.about-value-title { font-size: 0.875rem; font-weight: 900; color: var(--foreground); margin-bottom: 0.5rem; }
.about-value-desc { font-size: 0.75rem; color: rgba(25,8,49,0.5); line-height: 1.6; }

@media (min-width: 768px) {
  .about-hero { padding: 6rem 0 7rem; }
  .about-hero-h1 { font-size: 2.5rem; }
  .about-hero-sub { font-size: 1.125rem; }
  .about-content-section { padding: 6rem 0; }
  .about-content-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .about-values-section { padding: 6rem 0; }
  .about-values-h2 { font-size: 2.25rem; }
  .about-values-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) { .about-hero-h1 { font-size: 3rem; } }


/* ============================================================
   SITES WE COMPARE PAGE
   ============================================================ */
.swc-hero {
  position: relative;
  overflow: hidden;
  background: #0e0520;
  padding: 4rem 0 5rem;
}
.swc-hero-orb-1 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, #017bc6 0%, transparent 70%);
  opacity: 0.2;
  filter: blur(120px);
  top: -20%; right: 0%;
  animation: swcOrb1 9s ease-in-out infinite;
}
.swc-hero-orb-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  opacity: 0.2;
  filter: blur(80px);
  bottom: 0%; left: 20%;
  animation: swcOrb2 7s ease-in-out infinite;
}
@keyframes swcOrb1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-30px,20px) scale(1.1); }
}
@keyframes swcOrb2 {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(20px,-20px); }
}
.swc-hero-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.swc-hero-inner { max-width: 900px; margin: 0 auto; padding: 0 5vw; position: relative; z-index: 10; }
.swc-hero-label { display: block; color: var(--accent); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.swc-hero-h1 { font-size: 1.875rem; font-weight: 900; color: white; line-height: 1.05; margin-bottom: 1.5rem; letter-spacing: -0.035em; }
.swc-hero-sub { color: rgba(255,255,255,0.5); font-size: 1rem; max-width: 36rem; line-height: 1.7; }
.swc-hero-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent); }
.swc-stats-bar {
  padding: 2rem 0;
  background: var(--section-purple-4);
  border-bottom: 1px solid rgba(25,8,49,0.08);
}
.swc-stats-inner { max-width: 900px; margin: 0 auto; padding: 0 5vw; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2rem; }
.swc-stat { text-align: center; }
.swc-stat-num { font-size: 1.5rem; font-weight: 900; color: var(--foreground); letter-spacing: -0.03em; }
.swc-stat-label { font-size: 0.75rem; color: rgba(25,8,49,0.5); }
.swc-content-section { padding: 4rem 0; background: white; }
.swc-content-inner { max-width: 900px; margin: 0 auto; padding: 0 5vw; }
.swc-content-h2 { font-size: 1.25rem; font-weight: 900; color: var(--foreground); line-height: 1.3; margin-bottom: 1rem; letter-spacing: -0.025em; }
.swc-content-p { color: rgba(25,8,49,0.6); font-size: 15px; line-height: 1.7; margin-bottom: 2rem; }
.swc-site-list {
  column-count: 2;
  column-gap: 1.5rem;
  padding: 0.5rem 0 1rem;
}
.swc-site-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(25,8,49,0.6);
  margin-bottom: 0.375rem;
  break-inside: avoid;
}
.swc-site-dot { flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: 0.45rem; }

@media (min-width: 768px) {
  .swc-hero { padding: 6rem 0 7rem; }
  .swc-hero-h1 { font-size: 2.5rem; }
  .swc-hero-sub { font-size: 1.125rem; }
  .swc-stats-inner { gap: 4rem; }
  .swc-stat-num { font-size: 1.875rem; }
  .swc-content-section { padding: 6rem 0; }
  .swc-content-h2 { font-size: 1.875rem; }
  .swc-site-list { column-count: 3; }
}
@media (min-width: 1024px) { .swc-hero-h1 { font-size: 3rem; } }


/* ============================================================
   FREE TRAINING PAGE
   ============================================================ */
.ft-hero {
  position: relative;
  padding: 1.5rem 0 1.875rem;
  overflow: hidden;
  background: var(--hero-gradient);
}
.ft-hero-grid {
  position: absolute; inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.ft-hero-blob-1 {
  position: absolute;
  top: 10%; right: 10%;
  width: 256px; height: 256px;
  background: rgba(214,63,65,0.1);
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}
.ft-hero-blob-2 {
  position: absolute;
  bottom: 0; left: 5%;
  width: 192px; height: 192px;
  background: rgba(214,63,65,0.05);
  border-radius: 50%;
  filter: blur(32px);
  pointer-events: none;
}
.ft-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 5vw;
  position: relative;
  z-index: 10;
}
.ft-hero-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.ft-hero-label svg { flex-shrink: 0; }
.ft-hero-h1 {
  font-size: 1.875rem;
  font-weight: 900;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
}
.ft-hero-h1 .accent { color: var(--accent); }
.ft-hero-p {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  max-width: 32rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.ft-hero-cats { display: flex; flex-wrap: wrap; gap: 1rem; }
.ft-hero-cat-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}
.ft-hero-cat-link:hover { border-color: var(--accent); color: var(--accent); }
.ft-hero-cat-link .cat-count { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.ft-hero-cat-link:hover .cat-count { color: rgba(214,63,65,0.5); }
/* Category cards */
.ft-cats-section { padding: 2rem 0 2.5rem; background: var(--section-purple-4); }
.ft-cats-inner { max-width: 1200px; margin: 0 auto; padding: 0 5vw; }
.ft-cats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}
.ft-cat-card {
  display: block;
  flex: 0 0 calc(50% - 0.625rem);
  border-radius: 1rem;
  border: 1px solid rgba(25,8,49,0.1);
  background: white;
  padding: 1.75rem;
  transition: box-shadow 0.3s, border-color 0.3s;
  text-decoration: none;
}
@media (min-width: 900px) {
  .ft-cat-card { flex: 0 0 calc(33.333% - 0.834rem); }
}
.ft-cat-card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); border-color: rgba(214,63,65,0.2); }
.ft-cat-card-inner { display: flex; align-items: flex-start; gap: 1.25rem; }
.ft-cat-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  background: rgba(214,63,65,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
  color: var(--accent);
}
.ft-cat-card:hover .ft-cat-icon { background: rgba(214,63,65,0.2); }
.ft-cat-title { font-size: 1.125rem; font-weight: 900; color: var(--foreground); margin-bottom: 0.5rem; letter-spacing: -0.02em; transition: color 0.2s; }
.ft-cat-card:hover .ft-cat-title { color: var(--accent); }
.ft-cat-desc { font-size: 0.9375rem; color: rgba(25,8,49,0.6); margin-bottom: 0.875rem; line-height: 1.65; }
.ft-cat-cta { display: flex; align-items: center; gap: 0.25rem; font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); }
.ft-cat-cta svg { transition: transform 0.2s; }
.ft-cat-card:hover .ft-cat-cta svg { transform: translateX(4px); }
/* Popular guides */
.ft-guides-section { padding: 4rem 0; background: white; }
.ft-guides-inner { max-width: 1000px; margin: 0 auto; padding: 0 5vw; }
.ft-guides-h2 { font-size: 1.5rem; font-weight: 900; color: var(--foreground); margin-bottom: 2rem; letter-spacing: -0.03em; }
.ft-guide-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(25,8,49,0.1);
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 0.75rem;
}
.ft-guide-row:hover { border-color: rgba(214,63,65,0.2); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.07); }
.ft-guide-row-left { display: flex; align-items: center; gap: 1rem; }
.ft-guide-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(214,63,65,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.ft-guide-title { font-size: 0.875rem; font-weight: 700; color: var(--foreground); transition: color 0.15s; }
.ft-guide-row:hover .ft-guide-title { color: var(--accent); }
.ft-guide-meta { font-size: 0.75rem; color: rgba(25,8,49,0.4); }
.ft-guide-arrow { color: rgba(25,8,49,0.2); flex-shrink: 0; transition: color 0.15s, transform 0.15s; }
.ft-guide-row:hover .ft-guide-arrow { color: var(--accent); transform: translateX(4px); }
/* Still need help */
.ft-help-section { padding: 4rem 0; background: var(--section-purple-6); }
.ft-help-inner { max-width: 900px; margin: 0 auto; padding: 0 5vw; }
.ft-help-h2 { font-size: 1.5rem; font-weight: 900; color: var(--foreground); margin-bottom: 0.75rem; letter-spacing: -0.03em; }
.ft-help-p { color: rgba(25,8,49,0.6); font-size: 1rem; margin-bottom: 1.5rem; }

@media (min-width: 768px) {
  .ft-hero { padding: 2.25rem 0 2.625rem; }
  .ft-hero-h1 { font-size: 3.75rem; }
  .ft-hero-p { font-size: 1.125rem; }
  .ft-cats-section { padding: 2rem 0; }
  .ft-guides-section { padding: 5rem 0; }
  .ft-guides-h2 { font-size: 1.875rem; }
  .ft-help-section { padding: 5rem 0; }
  .ft-help-h2 { font-size: 1.875rem; }
}
@media (min-width: 1024px) {
  .ft-hero-h1 { font-size: 3.75rem; }
}


/* ============================================================
   FREE TRAINING — CATEGORY PAGE (getting-started etc)
   ============================================================ */
.ftc-breadcrumb {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.ftc-breadcrumb a { transition: color 0.15s; }
.ftc-breadcrumb a:hover { color: white; }
.ftc-guides-section { padding: 4rem 0; background: var(--section-purple-4); }
.ftc-guides-inner { max-width: 1100px; margin: 0 auto; padding: 0 5vw; }
.ftc-guides-count { font-size: 1.5rem; font-weight: 900; color: var(--foreground); margin-bottom: 2rem; letter-spacing: -0.03em; }
.ftc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.ftc-guide-card {
  display: block;
  border-radius: 0.75rem;
  border: 1px solid rgba(25,8,49,0.1);
  background: white;
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.ftc-guide-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08); border-color: rgba(214,63,65,0.2); }
.ftc-card-img {
  aspect-ratio: 16/9;
  background: rgba(25,8,49,0.05);
  display: flex; align-items: center; justify-content: center;
  color: rgba(25,8,49,0.15);
}
.ftc-card-body { padding: 1.25rem; }
.ftc-card-title { font-size: 0.875rem; font-weight: 700; color: var(--foreground); line-height: 1.4; margin-bottom: 0.5rem; transition: color 0.15s; }
.ftc-guide-card:hover .ftc-card-title { color: var(--accent); }
.ftc-card-excerpt { font-size: 0.75rem; color: rgba(25,8,49,0.5); line-height: 1.6; margin-bottom: 0.75rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ftc-card-footer { display: flex; align-items: center; justify-content: space-between; }
.ftc-card-date { font-size: 11px; color: rgba(25,8,49,0.3); }
.ftc-card-arrow { color: rgba(25,8,49,0.2); transition: color 0.15s, transform 0.15s; }
.ftc-guide-card:hover .ftc-card-arrow { color: var(--accent); transform: translateX(4px); }
@media (min-width: 640px)  { .ftc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .ftc-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 768px)  { .ftc-guides-section { padding: 5rem 0; } .ftc-guides-count { font-size: 1.875rem; } }
.ftc-empty { color: rgba(25,8,49,0.5); font-size: 1rem; padding: 3rem 0; }
.ftc-pagination { display: flex; justify-content: center; margin-top: 3rem; }


/* ============================================================
   ABOUT US PAGE
   ============================================================ */
.about-hero {
  position: relative;
  overflow: hidden;
  background: #0e0520;
  padding: 4rem 0 5rem;
}
.about-hero-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.about-orb-1 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, #d7316d 0%, transparent 70%);
  opacity: 0.25;
  filter: blur(120px);
  top: -30%; left: 10%;
  animation: aboutOrb1 8s ease-in-out infinite;
}
.about-orb-2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, #017bc6 0%, transparent 70%);
  opacity: 0.15;
  filter: blur(100px);
  bottom: -20%; right: 5%;
  animation: aboutOrb2 10s ease-in-out infinite;
}
@keyframes aboutOrb1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(30px,20px) scale(1.1); }
}
@keyframes aboutOrb2 {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(-20px,-30px); }
}
.about-hero-grid {
  position: absolute; inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.about-hero-inner { max-width: 900px; margin: 0 auto; padding: 0 5vw; position: relative; z-index: 10; }
.about-hero-label { display: block; color: var(--accent); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.about-hero-h1 { font-size: 1.875rem; font-weight: 900; color: white; line-height: 1.05; letter-spacing: -0.035em; margin-bottom: 1.5rem; }
.about-hero-sub { color: rgba(255,255,255,0.5); font-size: 1rem; max-width: 36rem; line-height: 1.7; }
.about-hero-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent); }
/* Content */
.about-content-section { padding: 4rem 0; background: white; }
.about-content-inner { max-width: 1000px; margin: 0 auto; padding: 0 5vw; }
.about-body-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem 3rem; color: rgba(25,8,49,0.6); font-size: 15px; line-height: 1.7; }
.about-body-col { display: flex; flex-direction: column; gap: 1.25rem; }
/* Values */
.about-values-section { padding: 4rem 0; background: var(--section-purple-4); }
.about-values-inner { max-width: 1000px; margin: 0 auto; padding: 0 5vw; }
.about-values-h2 { font-size: 1.5rem; font-weight: 900; color: var(--foreground); text-align: center; margin-bottom: 3rem; letter-spacing: -0.03em; }
.about-values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.about-value { text-align: center; }
.about-value-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 1rem;
  background: rgba(214,63,65,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: var(--accent);
}
.about-value-title { font-size: 0.875rem; font-weight: 900; color: var(--foreground); margin-bottom: 0.5rem; }
.about-value-desc { font-size: 0.75rem; color: rgba(25,8,49,0.5); line-height: 1.6; }
@media (min-width: 768px) {
  .about-hero { padding: 6rem 0 7rem; }
  .about-hero-h1 { font-size: 2.5rem; }
  .about-content-section { padding: 6rem 0; }
  .about-body-grid { grid-template-columns: 1fr 1fr; }
  .about-values-section { padding: 6rem 0; }
  .about-values-h2 { font-size: 2.5rem; }
  .about-values-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) { .about-hero-h1 { font-size: 3rem; } }


/* ============================================================
   SITES WE COMPARE PAGE
   ============================================================ */
.swc-hero {
  position: relative;
  overflow: hidden;
  background: #0e0520;
  padding: 4rem 0 5rem;
}
.swc-hero-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.swc-orb-1 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, #017bc6 0%, transparent 70%);
  opacity: 0.2;
  filter: blur(120px);
  top: -20%; right: 0%;
  animation: swcOrb1 9s ease-in-out infinite;
}
.swc-orb-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  opacity: 0.2;
  filter: blur(80px);
  bottom: 0%; left: 20%;
  animation: swcOrb2 7s ease-in-out infinite;
}
@keyframes swcOrb1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-30px,20px) scale(1.1); }
}
@keyframes swcOrb2 {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(20px,-20px); }
}
.swc-hero-grid {
  position: absolute; inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.swc-hero-inner { max-width: 900px; margin: 0 auto; padding: 0 5vw; position: relative; z-index: 10; }
.swc-hero-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent); }
/* Stats bar */
.swc-stats-bar { padding: 2rem 0; background: var(--section-purple-4); border-bottom: 1px solid rgba(25,8,49,0.08); }
.swc-stats-inner { max-width: 900px; margin: 0 auto; padding: 0 5vw; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2rem; }
.swc-stat { text-align: center; }
.swc-stat-num { font-size: 1.5rem; font-weight: 900; color: var(--foreground); letter-spacing: -0.04em; }
.swc-stat-label { font-size: 0.75rem; color: rgba(25,8,49,0.5); }
/* Content */
.swc-content-section { padding: 4rem 0; background: white; }
.swc-content-inner { max-width: 900px; margin: 0 auto; padding: 0 5vw; }
.swc-intro-h2 { font-size: 1.25rem; font-weight: 900; color: var(--foreground); line-height: 1.3; margin-bottom: 1rem; letter-spacing: -0.025em; }
.swc-intro-p { color: rgba(25,8,49,0.6); font-size: 15px; line-height: 1.7; margin-bottom: 2rem; }
/* Sites list in accordion */
.swc-sites-list {
  columns: 2;
  column-gap: 1.5rem;
  margin-bottom: 0.5rem;
}
.swc-site-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(25,8,49,0.6);
  padding: 0.2rem 0;
  break-inside: avoid;
}
.swc-site-dot { flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: 0.45rem; }
/* Accordion override for larger content */
.accordion-content.open.large { max-height: 2500px; }
.swc-accordion-trigger { font-size: 1rem; font-weight: 700; color: var(--foreground); }
@media (min-width: 640px) { .swc-sites-list { columns: 3; } }
@media (min-width: 768px) {
  .swc-hero { padding: 6rem 0 7rem; }
  .swc-stats-bar { padding: 2rem 0; }
  .swc-stats-inner { gap: 4rem; }
  .swc-stat-num { font-size: 1.875rem; }
  .swc-content-section { padding: 6rem 0; }
  .swc-intro-h2 { font-size: 1.875rem; }
}
@media (min-width: 1024px) { .swc-hero .about-hero-h1 { font-size: 3rem; } }


/* ============================================================
   AFFILIATES PAGE
   ============================================================ */
.aff-hero {
  position: relative;
  overflow: hidden;
  background: #0e0520;
  padding: 4rem 0 5rem;
}
.aff-hero-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.aff-orb-1 {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, #d7316d 0%, transparent 70%);
  opacity: 0.25; filter: blur(120px);
  top: -25%; left: -5%;
  animation: affOrb1 8s ease-in-out infinite;
}
.aff-orb-2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, #017bc6 0%, transparent 70%);
  opacity: 0.2; filter: blur(100px);
  bottom: -10%; right: 10%;
  animation: affOrb2 10s ease-in-out infinite;
}
@keyframes affOrb1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(40px,30px) scale(1.1)} }
@keyframes affOrb2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,-20px)} }
.aff-hero-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.1) 1px,transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.aff-hero-inner { max-width: 900px; margin: 0 auto; padding: 0 5vw; position: relative; z-index: 10; }
.aff-hero-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent); }
.aff-hero-btns { display: flex; gap: 0.75rem; margin-top: 2rem; flex-wrap: wrap; }
.btn-outline-white {
  display: inline-flex; align-items: center;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 700; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.025em;
  padding: 0.75rem 1.5rem; border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: white; transition: border-color 0.2s;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.4); }
/* Intro */
.aff-intro-section { padding: 4rem 0; background: white; }
.aff-intro-inner { max-width: 900px; margin: 0 auto; padding: 0 5vw; }
.aff-intro-h2 { font-size: 1.5rem; font-weight: 900; color: var(--foreground); line-height: 1.2; margin-bottom: 1.5rem; letter-spacing: -0.03em; }
.aff-intro-body { max-width: 42rem; display: flex; flex-direction: column; gap: 1rem; color: rgba(25,8,49,0.6); font-size: 15px; line-height: 1.7; }
.aff-intro-body strong { color: var(--foreground); }
/* Benefits */
.aff-benefits-section { padding: 4rem 0; background: var(--section-purple-4); }
.aff-benefits-inner { max-width: 900px; margin: 0 auto; padding: 0 5vw; text-align: center; }
.aff-benefits-h2 { font-size: 1.5rem; font-weight: 900; color: var(--foreground); margin-bottom: 0.75rem; letter-spacing: -0.03em; }
.aff-benefits-p { font-size: 0.875rem; color: rgba(25,8,49,0.5); margin-bottom: 3rem; max-width: 32rem; margin-left: auto; margin-right: auto; }
.aff-benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.aff-benefit { text-align: center; }
.aff-benefit-icon { width: 3.5rem; height: 3.5rem; border-radius: 1rem; background: rgba(214,63,65,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--accent); }
.aff-benefit-title { font-size: 0.875rem; font-weight: 900; color: var(--foreground); margin-bottom: 0.5rem; }
.aff-benefit-desc { font-size: 0.75rem; color: rgba(25,8,49,0.5); line-height: 1.6; }
/* Testimonials */
.aff-testi-section { padding: 4rem 0; background: white; }
.aff-testi-inner { max-width: 700px; margin: 0 auto; padding: 0 5vw; text-align: center; }
.aff-testi-h2 { font-size: 1.25rem; font-weight: 900; color: var(--foreground); margin-bottom: 2.5rem; letter-spacing: -0.02em; }
.aff-testi-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.aff-testi-card { border-radius: 1rem; border: 1px solid rgba(25,8,49,0.08); background: white; padding: 1.5rem; text-align: left; }
.aff-testi-quote-icon { color: rgba(214,63,65,0.3); margin-bottom: 0.75rem; }
.aff-testi-text { font-size: 0.875rem; font-style: italic; color: rgba(25,8,49,0.7); margin-bottom: 1rem; line-height: 1.6; }
.aff-testi-author { font-size: 0.75rem; color: rgba(25,8,49,0.4); }
.aff-testi-author strong { color: var(--foreground); }
/* Affiliate testimonial */
.aff-quote-section { padding: 4rem 0; background: var(--section-purple-4); }
.aff-quote-inner { max-width: 600px; margin: 0 auto; padding: 0 5vw; text-align: center; }
.aff-quote-card { border-radius: 1rem; border: 1px solid rgba(25,8,49,0.08); background: white; padding: 2rem; }
.aff-quote-text { font-size: 1rem; font-style: italic; color: rgba(25,8,49,0.7); margin-bottom: 1rem; line-height: 1.7; }
.aff-quote-author { font-size: 0.875rem; color: rgba(25,8,49,0.4); }
/* CTA */
.aff-cta-section { padding: 4rem 0; background: var(--section-purple-6); text-align: center; }
.aff-cta-inner { max-width: 700px; margin: 0 auto; padding: 0 5vw; }
.aff-cta-h2 { font-size: 1.25rem; font-weight: 900; color: var(--foreground); margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.aff-cta-p { font-size: 0.875rem; color: rgba(25,8,49,0.5); margin-bottom: 1.5rem; }
@media (min-width: 768px) {
  .aff-hero { padding: 6rem 0 7rem; }
  .aff-intro-section { padding: 6rem 0; }
  .aff-intro-h2 { font-size: 2.5rem; }
  .aff-benefits-section { padding: 6rem 0; }
  .aff-benefits-h2 { font-size: 2.5rem; }
  .aff-benefits-grid { grid-template-columns: repeat(4, 1fr); }
  .aff-testi-section { padding: 5rem 0; }
  .aff-testi-h2 { font-size: 1.875rem; }
  .aff-testi-grid { grid-template-columns: 1fr 1fr; }
  .aff-quote-section { padding: 5rem 0; }
  .aff-cta-section { padding: 5rem 0; }
  .aff-cta-h2 { font-size: 1.875rem; }
}


/* ============================================================
   AFFILIATE SIGN-UP FORM
   ============================================================ */
.affsu-hero {
  position: relative; overflow: hidden;
  background: #0e0520; padding: 3.5rem 0 4rem;
}
.affsu-hero-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.affsu-orb-1 {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, #d7316d 0%, transparent 70%);
  opacity: 0.2; filter: blur(120px); top: -20%; left: 0%;
  animation: affOrb1 8s ease-in-out infinite;
}
.affsu-orb-2 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, #017bc6 0%, transparent 70%);
  opacity: 0.15; filter: blur(100px); bottom: -10%; right: 15%;
  animation: affOrb2 10s ease-in-out infinite;
}
.affsu-hero-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.1) 1px,transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.affsu-hero-inner { max-width: 900px; margin: 0 auto; padding: 0 5vw; position: relative; z-index: 10; text-align: center; }
.affsu-perks { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 2rem; }
.affsu-perk { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.affsu-perk svg { color: var(--accent); flex-shrink: 0; }
/* Form */
.affsu-form-section { padding: 3.5rem 0 5rem; background: white; }
.affsu-form-inner { max-width: 720px; margin: 0 auto; padding: 0 5vw; }
.affsu-fieldset { margin-bottom: 2.5rem; }
.affsu-fieldset-title { font-size: 1.125rem; font-weight: 900; color: var(--foreground); margin-bottom: 0.25rem; letter-spacing: -0.02em; }
.affsu-fieldset-sub { font-size: 0.875rem; color: rgba(25,8,49,0.5); margin-bottom: 1.5rem; }
.affsu-grid2 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.affsu-field { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.affsu-field:last-child { margin-bottom: 0; }
.affsu-label { font-size: 0.8125rem; font-weight: 600; color: rgba(25,8,49,0.7); }
.affsu-input, .affsu-select, .affsu-textarea {
  width: 100%; padding: 0.625rem 0.875rem;
  border: 1px solid rgba(25,8,49,0.15); border-radius: 0.5rem;
  font-family: 'DM Sans', system-ui, sans-serif; font-size: 0.875rem;
  color: var(--foreground); background: white;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.affsu-input::placeholder, .affsu-textarea::placeholder { color: rgba(25,8,49,0.3); }
.affsu-input:focus, .affsu-select:focus, .affsu-textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(214,63,65,0.1);
}
.affsu-textarea { resize: vertical; min-height: 90px; }
.affsu-select { cursor: pointer; }
.affsu-channels { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.375rem; }
.affsu-channel-btn {
  padding: 0.375rem 0.875rem; border-radius: 9999px;
  border: 1px solid rgba(25,8,49,0.15); background: white;
  font-family: 'DM Sans', system-ui, sans-serif; font-size: 0.75rem; font-weight: 500;
  color: rgba(25,8,49,0.6); cursor: pointer; transition: all 0.15s;
}
.affsu-channel-btn:hover { border-color: rgba(25,8,49,0.3); }
.affsu-channel-btn.selected { background: var(--accent); border-color: var(--accent); color: white; }
.affsu-divider { border: none; border-top: 1px solid rgba(25,8,49,0.08); margin: 0 0 2rem; }
.affsu-terms-row { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.5rem; cursor: pointer; }
.affsu-terms-row input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--accent); width: 14px; height: 14px; }
.affsu-terms-text { font-size: 0.875rem; color: rgba(25,8,49,0.7); line-height: 1.5; }
.affsu-terms-text a { color: var(--accent); text-decoration: underline; }
.affsu-error { font-size: 0.75rem; color: #dc2626; margin-top: 0.25rem; }
@media (min-width: 640px) { .affsu-grid2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .affsu-hero { padding: 5rem 0; } }


/* ============================================================
   AFFILIATE LOGIN (fullpage, no nav/footer)
   ============================================================ */
.aff-login-page {
  min-height: 100vh;
  position: relative; overflow: hidden;
  background: #0e0520;
  display: flex; align-items: center; justify-content: center;
}
.aff-login-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.aff-login-orb-1 {
  position: absolute; width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, #d7316d 0%, transparent 70%);
  opacity: 0.15; filter: blur(120px); top: -30%; left: -15%;
  animation: affOrb1 8s ease-in-out infinite;
}
.aff-login-orb-2 {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, #017bc6 0%, transparent 70%);
  opacity: 0.2; filter: blur(100px); bottom: -20%; right: -10%;
  animation: affOrb2 10s ease-in-out infinite;
}
.aff-login-orb-3 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  opacity: 0.15; filter: blur(80px); top: 50%; left: 50%;
  animation: affOrb3 6s ease-in-out infinite;
}
@keyframes affOrb3 { 0%,100%{transform:translate(-50%,-50%) translate(0,0)} 50%{transform:translate(-50%,-50%) translate(20px,-20px)} }
.aff-login-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.1) 1px,transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.aff-login-wrap {
  position: relative; z-index: 10;
  width: 100%; max-width: 1100px;
  margin: 0 auto; padding: 3rem 5vw;
  display: flex; flex-direction: column;
  align-items: center; gap: 3rem;
}
/* Branding side */
.aff-login-brand { flex: 1; text-align: center; }
.aff-login-logo { display: inline-block; margin-bottom: 2.5rem; }
.aff-login-logo svg { height: 32px; width: auto; filter: drop-shadow(0 0 15px rgba(0,0,0,0.8)); }
.aff-portal-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  border: 1px solid rgba(214,63,65,0.3); background: rgba(214,63,65,0.1);
  margin-bottom: 1.5rem;
}
.aff-portal-badge-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); }
.aff-login-h1 { font-size: 2rem; font-weight: 900; color: white; line-height: 0.95; letter-spacing: -0.04em; margin-bottom: 1.25rem; }
.aff-login-h1 .accent { color: var(--accent); }
.aff-login-tagline { font-size: 0.9375rem; color: rgba(255,255,255,0.4); max-width: 28rem; margin: 0 auto 2rem; line-height: 1.6; }
.aff-login-perks { display: none; flex-direction: column; gap: 0.75rem; }
.aff-login-perk { display: flex; align-items: center; gap: 0.625rem; }
.aff-login-perk svg { color: var(--accent); flex-shrink: 0; }
.aff-login-perk-text { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
/* Card side */
.aff-login-card-wrap { width: 100%; max-width: 420px; flex-shrink: 0; position: relative; }
.aff-login-card-glow {
  position: absolute; inset: -1rem;
  background: linear-gradient(135deg, rgba(215,49,109,0.1), rgba(1,123,198,0.1));
  filter: blur(40px); border-radius: 1.5rem; pointer-events: none;
}
.aff-login-card {
  position: relative;
  border-radius: 1rem; border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04); backdrop-filter: blur(20px);
  padding: 2rem;
}
.aff-login-card-title { font-size: 1.375rem; font-weight: 900; color: white; margin-bottom: 0.25rem; letter-spacing: -0.03em; }
.aff-login-card-sub { font-size: 0.875rem; color: rgba(255,255,255,0.4); margin-bottom: 2rem; }
.aff-login-field { margin-bottom: 1.25rem; }
.aff-login-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); margin-bottom: 0.375rem; }
.aff-login-input {
  width: 100%; padding: 0.75rem 1rem;
  border-radius: 0.5rem; border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05); font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.875rem; color: white; outline: none; transition: border-color 0.15s, box-shadow 0.15s;
}
.aff-login-input::placeholder { color: rgba(255,255,255,0.25); }
.aff-login-input:focus { border-color: rgba(214,63,65,0.4); box-shadow: 0 0 0 3px rgba(214,63,65,0.1); }
.aff-login-pw-wrap { position: relative; }
.aff-login-pw-wrap .aff-login-input { padding-right: 3rem; }
.aff-login-pw-toggle {
  position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.25); transition: color 0.15s; padding: 0;
}
.aff-login-pw-toggle:hover { color: rgba(255,255,255,0.6); }
.aff-login-row { display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; margin-bottom: 1.5rem; }
.aff-login-remember { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.4); cursor: pointer; }
.aff-login-remember input { border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); accent-color: var(--accent); }
.aff-login-forgot { color: var(--accent); font-weight: 600; }
.aff-login-forgot:hover { text-decoration: underline; }
.aff-login-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: 'DM Sans', system-ui, sans-serif; font-weight: 700; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.025em;
  padding: 0.875rem 1.5rem; border-radius: 0.5rem; border: none;
  background: var(--accent); color: white; cursor: pointer;
  position: relative; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s;
}
.aff-login-submit:hover { transform: scale(1.02); box-shadow: 0 0 30px rgba(214,63,65,0.4); }
.aff-login-submit .btn-overlay { position: absolute; inset: 0; background: linear-gradient(to right, #d63f41, #e85d5d); opacity: 0; transition: opacity 0.2s; }
.aff-login-submit:hover .btn-overlay { opacity: 1; }
.aff-login-submit-text { position: relative; z-index: 1; display: flex; align-items: center; gap: 0.5rem; }
.aff-login-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 1.5rem 0; }
.aff-login-signup-row { text-align: center; font-size: 0.875rem; color: rgba(255,255,255,0.4); }
.aff-login-signup-row a { color: var(--accent); font-weight: 600; }
.aff-login-signup-row a:hover { text-decoration: underline; }
.aff-login-copyright { position: absolute; bottom: 1.5rem; left: 0; right: 0; text-align: center; font-size: 11px; color: rgba(255,255,255,0.15); z-index: 10; }
@media (min-width: 1024px) {
  .aff-login-wrap { flex-direction: row; padding: 4rem 5vw; }
  .aff-login-brand { text-align: left; }
  .aff-login-tagline { margin-left: 0; }
  .aff-login-perks { display: flex; }
  .aff-login-h1 { font-size: 3rem; }
}


/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.pp-content-section { padding: 4rem 0 5rem; background: white; }
.pp-content-inner { max-width: 700px; margin: 0 auto; padding: 0 5vw; }
.pp-body { font-size: 15px; line-height: 1.8; color: rgba(25,8,49,0.6); }
.pp-body p { margin-bottom: 1rem; }
.pp-body h2 { font-size: 1.25rem; font-weight: 900; color: var(--foreground); margin: 2rem 0 0.75rem; letter-spacing: -0.02em; }
.pp-body h3 { font-size: 1rem; font-weight: 700; color: var(--foreground); margin: 1.25rem 0 0.5rem; }
.pp-body a { color: var(--accent); font-weight: 600; }
.pp-body a:hover { text-decoration: underline; }
.pp-body em { color: rgba(25,8,49,0.4); }
.pp-bullet-list { list-style: none; padding: 0; margin: 0.75rem 0 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.pp-bullet-item { display: flex; align-items: flex-start; gap: 0.625rem; }
.pp-bullet-dot { flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: rgba(25,8,49,0.3); margin-top: 0.55rem; }
.pp-address { font-style: normal; line-height: 1.7; color: rgba(25,8,49,0.4); font-size: 0.875rem; margin-top: 0.5rem; }
@media (min-width: 768px) { .pp-content-section { padding: 6rem 0; } .pp-body h2 { font-size: 1.375rem; } }


/* ============================================================
   AFFILIATES PAGE
   ============================================================ */
.aff-hero {
  position: relative; overflow: hidden;
  background: #0e0520; padding: 4rem 0 5rem;
}
.aff-hero-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.aff-orb-1 {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, #d7316d 0%, transparent 70%);
  opacity: 0.25; filter: blur(120px); top: -25%; left: -5%;
  animation: affOrb1 8s ease-in-out infinite;
}
.aff-orb-2 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, #017bc6 0%, transparent 70%);
  opacity: 0.2; filter: blur(100px); bottom: -10%; right: 10%;
  animation: affOrb2 10s ease-in-out infinite;
}
@keyframes affOrb1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(40px,30px) scale(1.1)} }
@keyframes affOrb2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,-20px)} }
.aff-hero-grid {
  position: absolute; inset: 0; opacity: 0.03; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.1) 1px,transparent 1px);
  background-size: 60px 60px;
}
.aff-hero-inner { max-width: 900px; margin: 0 auto; padding: 0 5vw; position: relative; z-index: 10; }
.aff-hero-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent); }
.aff-hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 2rem; }
.btn-outline-white {
  display: inline-flex; align-items: center;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 700; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.025em;
  padding: 0.75rem 1.5rem; border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.2); color: white; transition: border-color 0.2s;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.4); }
/* Intro */
.aff-intro-section { padding: 4rem 0; background: white; }
.aff-intro-inner { max-width: 900px; margin: 0 auto; padding: 0 5vw; }
.aff-intro-h2 { font-size: 1.5rem; font-weight: 900; color: var(--foreground); line-height: 1.2; margin-bottom: 1.5rem; letter-spacing: -0.03em; }
.aff-intro-body { max-width: 42rem; display: flex; flex-direction: column; gap: 1rem; color: rgba(25,8,49,0.6); font-size: 15px; line-height: 1.7; }
.aff-intro-body strong { color: var(--foreground); font-weight: 700; }
/* Benefits */
.aff-benefits-section { padding: 4rem 0; background: var(--section-purple-4); }
.aff-benefits-inner { max-width: 900px; margin: 0 auto; padding: 0 5vw; text-align: center; }
.aff-benefits-h2 { font-size: 1.5rem; font-weight: 900; color: var(--foreground); margin-bottom: 0.75rem; letter-spacing: -0.03em; }
.aff-benefits-p { font-size: 0.875rem; color: rgba(25,8,49,0.5); margin: 0 auto 3rem; max-width: 32rem; }
.aff-benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.aff-benefit { text-align: center; }
.aff-benefit-icon { width: 3.5rem; height: 3.5rem; border-radius: 1rem; background: rgba(214,63,65,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--accent); }
.aff-benefit-title { font-size: 0.875rem; font-weight: 900; color: var(--foreground); margin-bottom: 0.5rem; }
.aff-benefit-desc { font-size: 0.75rem; color: rgba(25,8,49,0.5); line-height: 1.6; }
/* Customer testimonials */
.aff-cust-testi-section { padding: 4rem 0; background: white; }
.aff-cust-testi-inner { max-width: 700px; margin: 0 auto; padding: 0 5vw; text-align: center; }
.aff-testi-h2 { font-size: 1.25rem; font-weight: 900; color: var(--foreground); margin-bottom: 2.5rem; letter-spacing: -0.02em; }
.aff-testi-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.aff-testi-card { border-radius: 1rem; border: 1px solid rgba(25,8,49,0.08); background: white; padding: 1.5rem; text-align: left; }
.aff-testi-quote-icon { color: rgba(214,63,65,0.3); margin-bottom: 0.75rem; }
.aff-testi-text { font-size: 0.875rem; font-style: italic; color: rgba(25,8,49,0.7); margin-bottom: 1rem; line-height: 1.6; }
.aff-testi-author { font-size: 0.75rem; color: rgba(25,8,49,0.4); }
.aff-testi-author strong { color: var(--foreground); }
/* Affiliate quote */
.aff-quote-section { padding: 4rem 0; background: var(--section-purple-4); }
.aff-quote-inner { max-width: 600px; margin: 0 auto; padding: 0 5vw; text-align: center; }
.aff-quote-card { border-radius: 1rem; border: 1px solid rgba(25,8,49,0.08); background: white; padding: 2rem; }
.aff-quote-text { font-size: 1rem; font-style: italic; color: rgba(25,8,49,0.7); margin-bottom: 1rem; line-height: 1.7; }
.aff-quote-author { font-size: 0.875rem; color: rgba(25,8,49,0.4); }
.aff-quote-author strong { color: var(--foreground); }
/* Join CTA */
.aff-join-section { padding: 4rem 0; background: var(--section-purple-6); text-align: center; }
.aff-join-inner { max-width: 700px; margin: 0 auto; padding: 0 5vw; }
.aff-join-h2 { font-size: 1.25rem; font-weight: 900; color: var(--foreground); margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.aff-join-p { font-size: 0.875rem; color: rgba(25,8,49,0.5); margin-bottom: 1.5rem; }
@media (min-width: 768px) {
  .aff-hero { padding: 6rem 0 7rem; }
  .aff-intro-section { padding: 6rem 0; } .aff-intro-h2 { font-size: 2.5rem; }
  .aff-benefits-section { padding: 6rem 0; } .aff-benefits-h2 { font-size: 2.5rem; }
  .aff-benefits-grid { grid-template-columns: repeat(4,1fr); }
  .aff-cust-testi-section { padding: 5rem 0; } .aff-testi-h2 { font-size: 1.875rem; }
  .aff-testi-grid { grid-template-columns: 1fr 1fr; }
  .aff-quote-section { padding: 5rem 0; } .aff-join-section { padding: 5rem 0; }
  .aff-join-h2 { font-size: 1.875rem; }
}


/* ============================================================
   AFFILIATE SIGN-UP FORM PAGE
   ============================================================ */
.affsu-hero {
  position: relative; overflow: hidden;
  background: #0e0520; padding: 3.5rem 0 4.5rem;
}
.affsu-hero-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.affsu-orb-1 {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, #d7316d 0%, transparent 70%);
  opacity: 0.2; filter: blur(120px); top: -20%; left: 0%;
  animation: affOrb1 8s ease-in-out infinite;
}
.affsu-orb-2 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, #017bc6 0%, transparent 70%);
  opacity: 0.15; filter: blur(100px); bottom: -10%; right: 15%;
  animation: affOrb2 10s ease-in-out infinite;
}
.affsu-hero-grid {
  position: absolute; inset: 0; opacity: 0.03; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.1) 1px,transparent 1px);
  background-size: 60px 60px;
}
.affsu-hero-inner { max-width: 900px; margin: 0 auto; padding: 0 5vw; position: relative; z-index: 10; text-align: center; }
.affsu-perks { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 2rem; }
.affsu-perk { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.affsu-perk-icon { color: var(--accent); flex-shrink: 0; }
/* Form section */
.affsu-form-section { padding: 3.5rem 0 5rem; background: white; }
.affsu-form-inner { max-width: 720px; margin: 0 auto; padding: 0 5vw; }
.affsu-fieldset { margin-bottom: 2.5rem; }
.affsu-fieldset-title { font-size: 1.125rem; font-weight: 900; color: var(--foreground); margin-bottom: 0.25rem; letter-spacing: -0.02em; }
.affsu-fieldset-sub { font-size: 0.875rem; color: rgba(25,8,49,0.5); margin-bottom: 1.5rem; }
.affsu-row2 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.affsu-field { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.affsu-label { font-size: 0.8125rem; font-weight: 600; color: rgba(25,8,49,0.7); }
.affsu-input, .affsu-select, .affsu-textarea {
  width: 100%; padding: 0.625rem 0.875rem;
  border: 1px solid rgba(25,8,49,0.15); border-radius: 0.5rem;
  font-family: 'DM Sans', system-ui, sans-serif; font-size: 0.875rem;
  color: var(--foreground); background: white; outline: none;
  transition: border-color 0.15s, box-shadow 0.15s; box-sizing: border-box;
}
.affsu-input::placeholder, .affsu-textarea::placeholder { color: rgba(25,8,49,0.3); }
.affsu-input:focus, .affsu-select:focus, .affsu-textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(214,63,65,0.1);
}
.affsu-textarea { resize: vertical; min-height: 90px; }
.affsu-select { cursor: pointer; height: 40px; }
.affsu-channels { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.375rem; }
.affsu-ch-btn {
  padding: 0.375rem 0.875rem; border-radius: 9999px;
  border: 1px solid rgba(25,8,49,0.15); background: white;
  font-family: 'DM Sans', system-ui, sans-serif; font-size: 0.75rem; font-weight: 500;
  color: rgba(25,8,49,0.6); cursor: pointer; transition: all 0.15s;
  display: inline-flex; align-items: center; gap: 0.25rem;
}
.affsu-ch-btn:hover { border-color: rgba(25,8,49,0.35); }
.affsu-ch-btn.active { background: var(--accent); border-color: var(--accent); color: white; }
.affsu-divider { border: none; border-top: 1px solid rgba(25,8,49,0.08); margin: 0 0 2rem; }
.affsu-terms-row { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.5rem; }
.affsu-terms-row input { margin-top: 3px; flex-shrink: 0; accent-color: var(--accent); }
.affsu-terms-text { font-size: 0.875rem; color: rgba(25,8,49,0.7); line-height: 1.5; }
.affsu-terms-text a { color: var(--accent); text-decoration: underline; }
.affsu-error { font-size: 0.75rem; color: #dc2626; margin-top: 0.25rem; display: none; }
.affsu-error.visible { display: block; }
@media (min-width: 640px) { .affsu-row2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .affsu-hero { padding: 5rem 0; } .affsu-form-section { padding: 5rem 0; } }


/* ============================================================
   AFFILIATE LOGIN (full-page, no nav/footer)
   ============================================================ */
.aff-login-page {
  min-height: 100vh; position: relative; overflow: hidden;
  background: #0e0520; display: flex; align-items: center; justify-content: center;
}
.aff-login-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.aff-login-orb-1 {
  position: absolute; width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, #d7316d 0%, transparent 70%);
  opacity: 0.15; filter: blur(120px); top: -30%; left: -15%;
  animation: affOrb1 8s ease-in-out infinite;
}
.aff-login-orb-2 {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, #017bc6 0%, transparent 70%);
  opacity: 0.2; filter: blur(100px); bottom: -20%; right: -10%;
  animation: affOrb2 10s ease-in-out infinite;
}
.aff-login-orb-3 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  opacity: 0.15; filter: blur(80px); top: 50%; left: 50%;
  animation: affOrb3 6s ease-in-out infinite;
}
@keyframes affOrb3 { 0%,100%{transform:translate(-50%,-50%)} 50%{transform:translate(calc(-50% + 20px),calc(-50% - 20px))} }
.aff-login-grid {
  position: absolute; inset: 0; opacity: 0.03; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.1) 1px,transparent 1px);
  background-size: 60px 60px;
}
.aff-login-wrap {
  position: relative; z-index: 10; width: 100%; max-width: 1100px;
  margin: 0 auto; padding: 3rem 5vw;
  display: flex; flex-direction: column; align-items: center; gap: 3rem;
}
.aff-login-brand { flex: 1; text-align: center; }
.aff-login-logo { display: inline-block; margin-bottom: 2.5rem; filter: drop-shadow(0 0 15px rgba(0,0,0,0.8)); }
.aff-login-logo svg { height: 32px; width: auto; }
.aff-portal-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  border: 1px solid rgba(214,63,65,0.3); background: rgba(214,63,65,0.1);
  margin-bottom: 1.5rem;
}
.aff-portal-badge-icon { color: var(--accent); flex-shrink: 0; }
.aff-portal-badge-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); }
.aff-login-h1 { font-size: 2rem; font-weight: 900; color: white; line-height: 0.95; letter-spacing: -0.04em; margin-bottom: 1.25rem; }
.aff-login-h1 .accent { color: var(--accent); }
.aff-login-tagline { font-size: 0.9375rem; color: rgba(255,255,255,0.4); max-width: 28rem; margin: 0 auto 2rem; line-height: 1.6; }
.aff-login-perks { display: none; flex-direction: column; gap: 0.75rem; }
.aff-login-perk { display: flex; align-items: center; gap: 0.625rem; }
.aff-login-perk-icon { color: var(--accent); }
.aff-login-perk-text { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
/* Card */
.aff-login-card-wrap { width: 100%; max-width: 420px; flex-shrink: 0; position: relative; }
.aff-login-card-glow {
  position: absolute; top: -1rem; left: -1rem; right: -1rem; bottom: -1rem;
  background: linear-gradient(135deg, rgba(215,49,109,0.1), rgba(1,123,198,0.1));
  filter: blur(40px); border-radius: 1.5rem; pointer-events: none;
}
.aff-login-card {
  position: relative; border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04); backdrop-filter: blur(20px);
  padding: 2rem;
}
.aff-login-card-title { font-size: 1.375rem; font-weight: 900; color: white; margin-bottom: 0.25rem; letter-spacing: -0.03em; }
.aff-login-card-sub { font-size: 0.875rem; color: rgba(255,255,255,0.4); margin-bottom: 2rem; }
.aff-login-field { margin-bottom: 1.25rem; }
.aff-login-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); margin-bottom: 0.375rem; }
.aff-login-input {
  width: 100%; padding: 0.75rem 1rem; border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05);
  font-family: 'DM Sans', system-ui, sans-serif; font-size: 0.875rem;
  color: white; outline: none; transition: border-color 0.15s, box-shadow 0.15s; box-sizing: border-box;
}
.aff-login-input::placeholder { color: rgba(255,255,255,0.25); }
.aff-login-input:focus { border-color: rgba(214,63,65,0.4); box-shadow: 0 0 0 3px rgba(214,63,65,0.1); }
.aff-login-pw-wrap { position: relative; }
.aff-login-pw-wrap .aff-login-input { padding-right: 3rem; }
.aff-login-pw-btn {
  position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.25); transition: color 0.15s; padding: 0; line-height: 1;
}
.aff-login-pw-btn:hover { color: rgba(255,255,255,0.6); }
.aff-login-bottom-row { display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; margin-bottom: 1.5rem; gap: 1rem; }
.aff-login-remember { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.4); cursor: pointer; }
.aff-login-remember input { accent-color: var(--accent); }
.aff-login-forgot { color: var(--accent); font-weight: 600; }
.aff-login-forgot:hover { text-decoration: underline; }
.aff-login-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: 'DM Sans', system-ui, sans-serif; font-weight: 700; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.025em;
  padding: 0.875rem 1.5rem; border-radius: 0.5rem; border: none;
  background: var(--accent); color: white; cursor: pointer;
  position: relative; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s;
}
.aff-login-submit:hover { transform: scale(1.02); box-shadow: 0 0 30px rgba(214,63,65,0.4); }
.aff-login-submit .btn-overlay { position: absolute; inset: 0; background: linear-gradient(to right,#d63f41,#e85d5d); opacity: 0; transition: opacity 0.2s; }
.aff-login-submit:hover .btn-overlay { opacity: 1; }
.aff-login-submit span { position: relative; z-index: 1; display: flex; align-items: center; gap: 0.5rem; }
.aff-login-card-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 1.5rem 0; }
.aff-login-apply-row { text-align: center; font-size: 0.875rem; color: rgba(255,255,255,0.4); }
.aff-login-apply-row a { color: var(--accent); font-weight: 600; }
.aff-login-apply-row a:hover { text-decoration: underline; }
.aff-login-copyright { position: absolute; bottom: 1.5rem; left: 0; right: 0; text-align: center; font-size: 11px; color: rgba(255,255,255,0.15); z-index: 10; }
@media (min-width: 1024px) {
  .aff-login-wrap { flex-direction: row; padding: 4rem 5vw; }
  .aff-login-brand { text-align: left; }
  .aff-login-tagline { margin-left: 0; }
  .aff-login-perks { display: flex; }
  .aff-login-h1 { font-size: 3rem; }
}


/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.pp-content-section { padding: 4rem 0 5rem; background: white; }
.pp-content-inner { max-width: 700px; margin: 0 auto; padding: 0 5vw; }
.pp-body { font-size: 15px; line-height: 1.8; color: rgba(25,8,49,0.6); }
.pp-body p { margin-bottom: 1rem; }
.pp-body h2 { font-size: 1.25rem; font-weight: 900; color: var(--foreground); margin: 2rem 0 0.75rem; letter-spacing: -0.02em; }
.pp-body h3 { font-size: 1rem; font-weight: 700; color: var(--foreground); margin: 1.25rem 0 0.5rem; }
.pp-body a { color: var(--accent); font-weight: 600; }
.pp-body a:hover { text-decoration: underline; }
.pp-body em { color: rgba(25,8,49,0.4); font-style: italic; }
.pp-list { list-style: none; padding: 0; margin: 0.75rem 0 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.pp-list li { display: flex; align-items: flex-start; gap: 0.625rem; }
.pp-dot { flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: rgba(25,8,49,0.3); margin-top: 0.55rem; }
.pp-address { line-height: 1.7; color: rgba(25,8,49,0.4); font-size: 0.875rem; margin-top: 0.5rem; }
@media (min-width: 768px) { .pp-content-section { padding: 6rem 0; } .pp-body h2 { font-size: 1.375rem; } }

/* ============================================================
   TERMS OF SERVICE PAGE
   ============================================================ */
.tos-content-section { padding: 4rem 0 5rem; background: white; }
.tos-content-inner { max-width: 700px; margin: 0 auto; padding: 0 5vw; }
.tos-section { margin-bottom: 2.5rem; }
.tos-section h2 { font-size: 1.25rem; font-weight: 900; color: var(--foreground); margin: 0 0 0.75rem; letter-spacing: -0.02em; }
.tos-section p { font-size: 15px; line-height: 1.8; color: rgba(25,8,49,0.6); margin-bottom: 0.75rem; }
.tos-section a { color: var(--accent); font-weight: 600; }
.tos-section a:hover { text-decoration: underline; }
@media (min-width: 768px) { .tos-content-section { padding: 6rem 0; } .tos-section h2 { font-size: 1.375rem; } }


/* ============================================================
   COMPARE PAGE
   ============================================================ */

/* Hero */
.cmp-hero { position: relative; overflow: hidden; background: #0e0520; padding: 4rem 0 5rem; }
.cmp-hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.cmp-orb-1 {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, #d7316d 0%, transparent 70%);
  opacity: 0.25; filter: blur(120px); top: -30%; left: 10%;
}
.cmp-orb-2 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, #017bc6 0%, transparent 70%);
  opacity: 0.15; filter: blur(100px); bottom: -20%; right: 5%;
}
.cmp-hero-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.cmp-hero-inner { max-width: 900px; margin: 0 auto; padding: 0 5vw; position: relative; z-index: 10; }
.cmp-hero-h1 { font-size: 1.875rem; font-weight: 900; color: white; line-height: 1.05; margin-bottom: 1.25rem; letter-spacing: -0.035em; }
.cmp-hero-p { color: rgba(255,255,255,0.5); font-size: 1rem; max-width: 36rem; line-height: 1.7; }
.cmp-hero-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent); }

/* Score Bar */
.cmp-score-bar { padding: 2rem 0; background: var(--section-purple-4); border-bottom: 1px solid rgba(25,8,49,0.08); }
.cmp-score-inner { max-width: 900px; margin: 0 auto; padding: 0 5vw; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2rem; }
.cmp-score-stat { text-align: center; }
.cmp-score-num { font-size: 1.5rem; font-weight: 900; color: var(--foreground); letter-spacing: -0.03em; }
.cmp-score-num.accent { color: var(--accent); }
.cmp-score-label { font-size: 0.75rem; color: rgba(25,8,49,0.5); }
.cmp-score-divider { width: 1px; height: 2.5rem; background: rgba(25,8,49,0.1); }

/* Advantages */
.cmp-advantages-section { padding: 4rem 0; background: white; }
.cmp-advantages-inner { max-width: 1000px; margin: 0 auto; padding: 0 5vw; }
.cmp-section-h2 { font-size: 1.5rem; font-weight: 900; color: var(--foreground); text-align: center; margin-bottom: 2.5rem; letter-spacing: -0.03em; }
.cmp-adv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.cmp-adv-card { padding: 1.75rem; border-radius: 1rem; border: 1px solid rgba(25,8,49,0.08); background: var(--section-purple-4); }
.cmp-adv-icon {
  width: 2.75rem; height: 2.75rem; border-radius: 0.75rem;
  background: rgba(214,63,65,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; color: var(--accent);
}
.cmp-adv-title { font-size: 0.9375rem; font-weight: 900; color: var(--foreground); margin-bottom: 0.375rem; }
.cmp-adv-desc { font-size: 0.875rem; color: rgba(25,8,49,0.55); line-height: 1.6; }

/* Comparison Table */
.cmp-table-section { padding: 4rem 0; background: var(--section-purple-4); }
.cmp-table-inner { max-width: 900px; margin: 0 auto; padding: 0 5vw; }
.cmp-table-sub { text-align: center; color: rgba(25,8,49,0.55); font-size: 15px; margin-top: -1.5rem; margin-bottom: 2.5rem; }
.cmp-table-wrap { border-radius: 1rem; border: 1px solid rgba(25,8,49,0.08); overflow: hidden; background: white; }
.cmp-table-header { display: grid; grid-template-columns: 1fr 140px 140px; background: var(--foreground); }
.cmp-th { padding: 1rem 1.25rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.4); }
.cmp-th.branded { text-align: center; }
.cmp-th-sm { display: block; font-size: 0.875rem; font-weight: 900; text-transform: none; letter-spacing: 0; }
.cmp-th-sm.us { color: var(--accent); }
.cmp-th-sm.them { color: rgba(255,255,255,0.5); }
.cmp-cat-header { display: flex; align-items: center; padding: 0.875rem 1.25rem; background: rgba(25,8,49,0.04); border-top: 1px solid rgba(25,8,49,0.07); }
.cmp-cat-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(25,8,49,0.4); }
.cmp-row { display: grid; grid-template-columns: 1fr 140px 140px; border-top: 1px solid rgba(25,8,49,0.06); }
.cmp-row:hover { background: rgba(25,8,49,0.02); }
.cmp-cell { padding: 0.875rem 1.25rem; display: flex; align-items: center; }
.cmp-cell.center { justify-content: center; }
.cmp-feat-name { font-size: 0.875rem; color: rgba(25,8,49,0.7); }
.cmp-check { display: flex; align-items: center; justify-content: center; width: 1.5rem; height: 1.5rem; border-radius: 50%; background: rgba(22,163,74,0.1); color: #16a34a; }
.cmp-cross { display: flex; align-items: center; justify-content: center; width: 1.5rem; height: 1.5rem; border-radius: 50%; background: rgba(239,68,68,0.08); color: rgba(239,68,68,0.5); }
.cmp-val-str { font-size: 0.875rem; font-weight: 700; color: var(--foreground); }

/* Testimonials */
.cmp-testi-section { padding: 4rem 0; background: white; }
.cmp-testi-inner { max-width: 1000px; margin: 0 auto; padding: 0 5vw; }
.cmp-testi-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.cmp-testi-card { padding: 1.75rem; border-radius: 1rem; border: 1px solid rgba(25,8,49,0.08); background: var(--section-purple-4); }
.cmp-quote-icon { color: var(--accent); margin-bottom: 0.875rem; }
.cmp-testi-text { font-size: 0.9375rem; color: rgba(25,8,49,0.7); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.cmp-testi-author { font-size: 0.8125rem; color: rgba(25,8,49,0.4); }
.cmp-testi-author strong { color: var(--foreground); font-weight: 700; }

/* CTA */
.cmp-cta-section { padding: 5rem 0 6rem; background: var(--foreground); text-align: center; }
.cmp-cta-inner { max-width: 640px; margin: 0 auto; padding: 0 5vw; }
.cmp-cta-h2 { font-size: 1.75rem; font-weight: 900; color: white; letter-spacing: -0.03em; margin-bottom: 0.875rem; }
.cmp-cta-p { color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }
.cmp-cta-perks { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 1.5rem; margin-bottom: 2rem; }
.cmp-cta-perk { display: flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.cmp-cta-perk svg { color: #22c55e; flex-shrink: 0; }

/* Responsive */
@media (min-width: 768px) {
  .cmp-hero { padding: 6rem 0 7rem; }
  .cmp-hero-h1 { font-size: 2.5rem; }
  .cmp-hero-p { font-size: 1.125rem; }
  .cmp-score-inner { gap: 4rem; }
  .cmp-score-num { font-size: 1.875rem; }
  .cmp-advantages-section { padding: 6rem 0; }
  .cmp-section-h2 { font-size: 2.25rem; }
  .cmp-adv-grid { grid-template-columns: repeat(4, 1fr); }
  .cmp-table-section { padding: 6rem 0; }
  .cmp-testi-section { padding: 6rem 0; }
  .cmp-testi-grid { grid-template-columns: repeat(3, 1fr); }
  .cmp-cta-section { padding: 7rem 0 8rem; }
  .cmp-cta-h2 { font-size: 2.5rem; }
}
@media (min-width: 1024px) { .cmp-hero-h1 { font-size: 3rem; } }

/* ============================================================
   LOGIN PAGE
   ============================================================ */
.login-page {
  min-height: 100vh;
  background: #0e0520;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.login-orbs { position: absolute; inset: 0; pointer-events: none; }
.login-orb-1 {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, #d7316d 0%, transparent 70%);
  opacity: 0.2; filter: blur(140px); top: -20%; left: -10%;
}
.login-orb-2 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, #017bc6 0%, transparent 70%);
  opacity: 0.15; filter: blur(100px); bottom: -10%; right: 10%;
}
.login-orb-3 {
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  opacity: 0.1; filter: blur(80px); top: 50%; right: 30%;
}
.login-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.login-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 3rem 1.5rem;
  gap: 3rem;
  position: relative;
  z-index: 10;
}
.login-brand { max-width: 480px; width: 100%; }
.login-brand-logo { display: block; margin-bottom: 2rem; }
.login-brand-logo svg { height: 28px; width: auto; }
.login-brand-h1 { font-size: 1.875rem; font-weight: 900; color: white; line-height: 1.15; letter-spacing: -0.035em; margin-bottom: 1rem; }
.login-brand-h1 span { color: var(--accent); }
.login-brand-p { color: rgba(255,255,255,0.5); font-size: 0.9375rem; line-height: 1.7; margin-bottom: 1.75rem; }
.login-perks { display: flex; flex-direction: column; gap: 0.625rem; }
.login-perk { display: flex; align-items: center; gap: 0.625rem; }
.login-perk-check { display: flex; align-items: center; justify-content: center; width: 1.25rem; height: 1.25rem; border-radius: 50%; background: rgba(214,63,65,0.2); color: var(--accent); flex-shrink: 0; }
.login-perk-text { font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.login-card-wrap { position: relative; max-width: 400px; width: 100%; }
.login-card-glow {
  position: absolute; inset: -1px; border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(214,63,65,0.3), rgba(1,123,198,0.3));
  filter: blur(12px); opacity: 0.6; z-index: -1;
}
.login-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.25rem;
  padding: 2rem;
}
.login-card-h2 { font-size: 1.25rem; font-weight: 900; color: white; margin-bottom: 0.375rem; }
.login-card-sub { font-size: 0.875rem; color: rgba(255,255,255,0.45); margin-bottom: 1.75rem; }
.login-form-fields { display: flex; flex-direction: column; gap: 1rem; }
.login-label { display: block; font-size: 0.8125rem; font-weight: 600; color: rgba(255,255,255,0.6); margin-bottom: 0.375rem; }
.login-input {
  width: 100%; padding: 0.75rem 1rem; border-radius: 0.625rem;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  color: white; font-size: 0.9375rem; outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.login-input::placeholder { color: rgba(255,255,255,0.25); }
.login-input:focus { border-color: var(--accent); background: rgba(255,255,255,0.1); }
.login-pw-wrap { position: relative; }
.login-pw-wrap .login-input { padding-right: 3rem; }
.login-pw-toggle {
  position: absolute; right: 0.875rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.35);
  display: flex; align-items: center;
}
.login-pw-toggle:hover { color: rgba(255,255,255,0.7); }
.login-meta { display: flex; align-items: center; justify-content: space-between; }
.login-remember { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: rgba(255,255,255,0.5); cursor: pointer; }
.login-remember input[type="checkbox"] { accent-color: var(--accent); }
.login-forgot { font-size: 0.8125rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.login-forgot:hover { color: var(--accent); }
.login-submit {
  position: relative; width: 100%; padding: 0.875rem; border-radius: 0.625rem;
  background: var(--accent); border: none; cursor: pointer;
  font-size: 0.9375rem; font-weight: 700; color: white; overflow: hidden;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.login-submit-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  opacity: 0; transition: opacity 0.3s;
}
.login-submit:hover .login-submit-overlay { opacity: 1; }
.login-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 1.25rem 0; }
.login-signup { font-size: 0.875rem; color: rgba(255,255,255,0.45); text-align: center; }
.login-signup a { color: var(--accent); font-weight: 600; }
.login-signup a:hover { text-decoration: underline; }
.login-copyright { position: relative; z-index: 10; text-align: center; padding: 1rem; font-size: 0.75rem; color: rgba(255,255,255,0.2); }
@media (min-width: 900px) {
  .login-wrap { flex-direction: row; justify-content: center; gap: 5rem; max-width: 1000px; margin: 0 auto; }
  .login-brand { flex: 1; }
  .login-brand-h1 { font-size: 2.5rem; }
  .login-card-wrap { flex-shrink: 0; }
}


/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.co-banner {
  background: var(--hero-gradient, linear-gradient(135deg,#190831 0%,#300d5c 45%,#0a1f4e 100%));
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.co-banner-inner { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.co-back {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.8125rem; color: rgba(255,255,255,0.45);
  transition: color 0.2s; margin-bottom: 0.375rem;
}
.co-back:hover { color: rgba(255,255,255,0.8); }
.co-banner-h1 { font-size: 1.375rem; font-weight: 900; color: white; letter-spacing: -0.03em; }
.co-trust-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; }
.co-trust-item { display: flex; align-items: center; gap: 0.375rem; }
.co-trust-icon { color: var(--accent); display: flex; }
.co-trust-text { font-size: 0.8125rem; color: rgba(255,255,255,0.55); font-weight: 500; }
.co-section { padding: 2.5rem 0 5rem; background: #f5f4f8; }
.co-inner { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }
.co-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.co-panel {
  background: white; border-radius: 1rem;
  border: 1px solid rgba(25,8,49,0.08);
  box-shadow: 0 1px 4px rgba(25,8,49,0.04);
  padding: 1.5rem; margin-bottom: 1.25rem;
}
.co-panel:last-child { margin-bottom: 0; }
.co-panel-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.co-step-badge {
  width: 1.875rem; height: 1.875rem; border-radius: 50%; flex-shrink: 0;
  background: var(--accent); color: white; font-size: 0.8125rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.co-panel-title { font-size: 1rem; font-weight: 700; color: var(--foreground); display: flex; align-items: center; gap: 0.5rem; }
.co-field-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; }
.co-field { display: flex; flex-direction: column; }
.co-label { font-size: 0.8125rem; font-weight: 600; color: rgba(25,8,49,0.55); margin-bottom: 0.375rem; }
.co-input {
  padding: 0.8125rem 1rem; border-radius: 0.625rem;
  border: 1.5px solid rgba(25,8,49,0.11); background: white;
  font-size: 0.9375rem; color: var(--foreground); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.co-input::placeholder { color: rgba(25,8,49,0.22); }
.co-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(214,63,65,0.09); }
.co-input-icon-wrap { position: relative; }
.co-input-icon-wrap .co-input { padding-right: 2.75rem; }
.co-input-icon { position: absolute; right: 0.875rem; top: 50%; transform: translateY(-50%); color: rgba(25,8,49,0.3); pointer-events: none; display: flex; }
.co-secure-note { font-size: 0.75rem; color: rgba(25,8,49,0.4); display: flex; align-items: center; gap: 0.375rem; }
.co-secure-note svg { flex-shrink: 0; }
.co-submit {
  position: relative; width: 100%; padding: 1rem; border-radius: 0.75rem;
  background: var(--accent); border: none; cursor: pointer; overflow: hidden;
  font-size: 1rem; font-weight: 700; color: white;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: transform 0.15s, box-shadow 0.15s;
}
.co-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(214,63,65,0.3); }
.co-submit-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  opacity: 0; transition: opacity 0.3s;
}
.co-submit:hover .co-submit-overlay { opacity: 1; }
.co-terms-note { font-size: 0.75rem; color: rgba(25,8,49,0.4); text-align: center; margin-top: 0.75rem; }
.co-sidebar {}
.co-sidebar-sticky { display: flex; flex-direction: column; gap: 1rem; }
.co-summary-card {
  background: white; border-radius: 1rem;
  border: 1px solid rgba(25,8,49,0.08);
  box-shadow: 0 1px 4px rgba(25,8,49,0.04);
  padding: 1.5rem;
}
.co-summary-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: rgba(25,8,49,0.38); margin-bottom: 1rem; }
.co-plan-box { background: #f5f4f8; border-radius: 0.75rem; padding: 1rem; margin-bottom: 1rem; }
.co-plan-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.co-plan-name { font-size: 0.9375rem; font-weight: 700; color: var(--foreground); }
.co-plan-billing { font-size: 0.75rem; color: rgba(25,8,49,0.45); margin-top: 0.125rem; }
.co-plan-price { font-size: 1.25rem; font-weight: 900; color: var(--foreground); }
.co-plan-period { font-size: 0.75rem; color: rgba(25,8,49,0.45); }
.co-due-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.625rem 0; border-bottom: 1px solid rgba(25,8,49,0.07);
  font-size: 0.875rem; color: rgba(25,8,49,0.6);
}
.co-due-row:first-of-type { border-top: 1px solid rgba(25,8,49,0.07); margin-top: 0.5rem; }
.co-due-label { font-size: 0.875rem; color: rgba(25,8,49,0.55); }
.co-due-price { font-size: 1.5rem; font-weight: 900; color: var(--foreground); }
.co-trial-badge {
  display: inline-flex; align-items: center; gap: 0.25rem;
  padding: 0.25rem 0.625rem; border-radius: 2rem;
  background: rgba(34,197,94,0.1); color: #16a34a;
  font-size: 0.6875rem; font-weight: 700; margin-left: 0.375rem;
}
.co-perks-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.625rem; }
.co-perks-list li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.8125rem; color: rgba(25,8,49,0.65); line-height: 1.5; }
.co-perks-list li svg { color: #16a34a; flex-shrink: 0; margin-top: 0.1rem; }
.co-review-card {
  background: white; border-radius: 1rem;
  border: 1px solid rgba(25,8,49,0.08);
  box-shadow: 0 1px 4px rgba(25,8,49,0.04);
  padding: 1.25rem;
}
.co-stars { display: flex; align-items: center; gap: 0.125rem; color: #f59e0b; margin-bottom: 0.75rem; }
.co-rating { font-size: 0.8125rem; font-weight: 700; color: var(--foreground); margin-left: 0.25rem; }
.co-review-text { font-size: 0.875rem; color: rgba(25,8,49,0.65); line-height: 1.6; font-style: italic; margin-bottom: 0.625rem; }
.co-review-author { font-size: 0.75rem; color: rgba(25,8,49,0.4); }
.co-badges-row { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.co-badge {
  display: flex; align-items: center; gap: 0.375rem;
  padding: 0.5rem 0.875rem; border-radius: 0.5rem;
  background: white; border: 1px solid rgba(25,8,49,0.09);
  font-size: 0.75rem; font-weight: 600; color: rgba(25,8,49,0.55);
}
.co-badge svg { color: rgba(25,8,49,0.35); flex-shrink: 0; }
@media (min-width: 768px) {
  .co-grid { grid-template-columns: 1fr 360px; align-items: start; gap: 2rem; }
  .co-sidebar-sticky { position: sticky; top: 1.5rem; }
}
@media (max-width: 540px) {
  .co-banner-inner { flex-direction: column; align-items: flex-start; }
  .co-trust-row { gap: 0.75rem; }
  .co-field-grid2 { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOG INDEX PAGE
   ============================================================ */
.blog-posts-section { padding: 3rem 0 5rem; background: #f8f9fb; }
.blog-posts-inner { max-width: 1320px; margin: 0 auto; padding: 0 1.5rem; }

/* Category filter tabs */
.blog-cat-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.blog-cat-tab {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.375rem 0.875rem; border-radius: 2rem;
  font-size: 0.8125rem; font-weight: 600; text-decoration: none;
  border: 1px solid rgba(25,8,49,0.12); color: rgba(25,8,49,0.55);
  background: white; transition: all 0.15s;
}
.blog-cat-tab:hover { border-color: rgba(214,63,65,0.4); color: var(--accent); }
.blog-cat-tab.active { background: var(--accent); border-color: var(--accent); color: white; }
.blog-cat-tab-count { font-size: 0.6875rem; opacity: 0.7; }
.blog-cat-tab.active .blog-cat-tab-count { opacity: 0.8; }

/* Three-column layout: categories | posts | search */
.blog-layout { display: grid; grid-template-columns: 175px 1fr 235px; gap: 1.75rem; align-items: start; }

/* Stacked post list */
.blog-list { display: flex; flex-direction: column; gap: 1.5rem; }

/* Large horizontal post card */
.blog-lc {
  display: flex; border-radius: 1rem; overflow: hidden;
  background: white; border: 1px solid rgba(25,8,49,0.07);
  text-decoration: none; transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s;
}
.blog-lc:hover { box-shadow: 0 14px 36px -6px rgba(25,8,49,0.13); border-color: rgba(214,63,65,0.15); transform: translateY(-2px); }
.blog-lc-img {
  flex-shrink: 0; width: 185px; min-height: 190px;
  background: linear-gradient(135deg, #160230 0%, #2a0854 45%, #0b2350 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.blog-lc-img::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 25% 60%, rgba(214,63,65,0.3) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 15%, rgba(1,123,198,0.22) 0%, transparent 50%);
}
.blog-lc-img-icon { position: relative; z-index: 1; color: rgba(255,255,255,0.18); }
.blog-lc-tags { position: absolute; top: 12px; left: 12px; z-index: 2; display: flex; flex-wrap: wrap; gap: 5px; }
.blog-lc-tag {
  padding: 3px 9px; border-radius: 4px; font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  background: rgba(214,63,65,0.85); color: white;
}
.blog-lc-body { flex: 1; min-width: 0; padding: 1.5rem 1.75rem; display: flex; flex-direction: column; }
.blog-lc-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: rgba(25,8,49,0.38); margin-bottom: 0.5rem; flex-wrap: wrap; }
.blog-lc-title { font-size: 1.1875rem; font-weight: 800; color: var(--foreground); line-height: 1.3; letter-spacing: -0.025em; margin-bottom: 0.625rem; transition: color 0.2s; }
.blog-lc:hover .blog-lc-title { color: var(--accent); }
.blog-lc-excerpt { font-size: 0.9rem; color: rgba(25,8,49,0.55); line-height: 1.65; margin-bottom: 1.25rem; flex: 1; }
.blog-lc-btn {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.8125rem; font-weight: 700; color: white;
  background: var(--accent); border-radius: 0.5rem;
  padding: 0.5rem 1.125rem; align-self: flex-start;
  transition: background 0.15s, transform 0.15s;
}
.blog-lc:hover .blog-lc-btn { background: #c23939; }

/* Left categories panel */
.blog-cats-panel { position: sticky; top: 1.5rem; }
/* Right sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 1.5rem; }
.blog-sw { background: white; border: 1px solid rgba(25,8,49,0.07); border-radius: 1rem; overflow: hidden; }
.blog-sw-head { padding: 0.875rem 1.25rem; border-bottom: 1px solid rgba(25,8,49,0.06); background: #fafafa; }
.blog-sw-title { font-size: 0.6875rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(25,8,49,0.35); }
.blog-sw-body { padding: 1.125rem 1.25rem; }
.blog-sw-search { display: flex; flex-direction: column; gap: 0.625rem; }
.blog-sw-search-input { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid rgba(25,8,49,0.12); border-radius: 0.625rem; font-size: 1rem; box-sizing: border-box; }
.blog-sw-search-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(214,63,65,0.08); }
.blog-sw-search-btn { width: 100%; padding: 0.75rem 1rem; background: var(--accent); color: white; border: none; border-radius: 0.625rem; font-size: 0.9375rem; font-weight: 700; cursor: pointer; transition: background 0.15s; }
.blog-sw-search-btn:hover { background: #c23939; }
.blog-sw-cats { list-style: none; margin: 0; padding: 0; }
.blog-sw-cat { display: flex; align-items: center; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid rgba(25,8,49,0.05); }
.blog-sw-cat:last-child { border-bottom: none; }
.blog-sw-cat a { font-size: 0.875rem; font-weight: 600; color: rgba(25,8,49,0.65); text-decoration: none; transition: color 0.15s; }
.blog-sw-cat a:hover, .blog-sw-cat a.active { color: var(--accent); }
.blog-sw-cat-count { font-size: 0.75rem; color: rgba(25,8,49,0.3); background: rgba(25,8,49,0.05); padding: 1px 7px; border-radius: 20px; }
.blog-sw-cta { background: var(--hero-gradient); border-radius: 1rem; padding: 1.5rem; text-align: center; }
.blog-sw-cta-title { font-size: 1rem; font-weight: 900; color: white; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.blog-sw-cta-text { font-size: 0.8125rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 1rem; }

/* Pagination */
.blog-pagination { display: flex; justify-content: center; padding: 1.5rem 0 0; }

/* Compact grid — used for related posts on article page */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.125rem; }
.blog-card {
  display: flex; gap: 1rem; border-radius: 0.875rem;
  border: 1px solid rgba(25,8,49,0.08); background: white;
  padding: 1rem; text-decoration: none; transition: box-shadow 0.2s, border-color 0.2s;
}
.blog-card:hover { box-shadow: 0 6px 18px -4px rgba(25,8,49,0.1); border-color: rgba(214,63,65,0.18); }
.blog-card-img {
  flex-shrink: 0; width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(214,63,65,0.08), rgba(1,123,198,0.06));
  border-radius: 0.5rem; display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.blog-card-body { flex: 1; min-width: 0; }
.blog-card-tag-row { display: flex; align-items: center; gap: 0.25rem; margin-bottom: 0.2rem; }
.blog-card-tag { font-size: 0.6875rem; font-weight: 700; color: rgba(25,8,49,0.4); text-transform: uppercase; letter-spacing: 0.06em; }
.blog-card-title { font-size: 0.9rem; font-weight: 800; color: var(--foreground); line-height: 1.35; margin-bottom: 0.25rem; transition: color 0.2s; }
.blog-card:hover .blog-card-title { color: var(--accent); }
.blog-card-excerpt { font-size: 0.8125rem; color: rgba(25,8,49,0.5); line-height: 1.6; margin-bottom: 0.5rem; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; }
.blog-card-date { font-size: 0.75rem; color: rgba(25,8,49,0.35); font-weight: 500; }
.blog-card-arrow { color: rgba(25,8,49,0.2); transition: color 0.15s, transform 0.15s; display: flex; align-items: center; }
.blog-card:hover .blog-card-arrow { color: var(--accent); transform: translateX(3px); }

@media (min-width: 640px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 960px) {
  .blog-layout { grid-template-columns: 155px 1fr; gap: 1.25rem; }
  .blog-sidebar { display: none; }
}
@media (max-width: 680px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-cats-panel { position: static; }
  .blog-sidebar { display: flex; }
}
@media (max-width: 580px) {
  .blog-lc { flex-direction: column; }
  .blog-lc-img { width: 100%; min-height: 160px; }
}

/* ============================================================
   BLOG POST PAGE  (bp-*)
   ============================================================ */
.bp-hero {
  position: relative; overflow: hidden;
  background: var(--hero-gradient);
  padding: 3rem 0 3.5rem;
}
.bp-hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.bp-orb-1 {
  position: absolute; top: -60px; right: 10%; width: 320px; height: 320px;
  background: rgba(214,63,65,0.12); border-radius: 50%; filter: blur(60px);
}
.bp-orb-2 {
  position: absolute; bottom: -40px; left: 5%; width: 220px; height: 220px;
  background: rgba(1,123,198,0.08); border-radius: 50%; filter: blur(48px);
}
.bp-hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.03;
  background-image: linear-gradient(rgba(255,255,255,.15) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.15) 1px,transparent 1px);
  background-size: 60px 60px;
}
.bp-hero-inner { max-width: 780px; margin: 0 auto; padding: 0 5vw; position: relative; z-index: 10; }
.bp-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.55); font-size: 0.875rem; font-weight: 500;
  text-decoration: none; margin-bottom: 1.5rem; transition: color 0.15s;
}
.bp-back:hover { color: white; }
.bp-meta { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.875rem; }
.bp-cat {
  display: inline-block; background: rgba(214,63,65,0.2); color: rgba(255,255,255,0.9);
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 3px 10px; border-radius: 20px;
}
.bp-meta-dot { color: rgba(255,255,255,0.3); }
.bp-date { display: flex; align-items: center; gap: 0.375rem; font-size: 0.8125rem; color: rgba(255,255,255,0.5); font-weight: 500; }
.bp-title { font-size: 1.75rem; font-weight: 900; color: white; line-height: 1.1; letter-spacing: -0.03em; }
.bp-hero-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right,transparent,rgba(255,255,255,0.15),transparent); }
/* Article */
.bp-article-section { padding: 3.5rem 0 5rem; background: white; }
.bp-article-inner { max-width: 780px; margin: 0 auto; padding: 0 5vw; }
.bp-article { font-size: 1.0625rem; color: rgba(25,8,49,0.85); line-height: 1.8; }
.bp-img-block {
  width: 100%; aspect-ratio: 16/7; border-radius: 0.875rem; margin-bottom: 2rem;
  background: linear-gradient(135deg, rgba(214,63,65,0.08), rgba(1,123,198,0.06));
  display: flex; align-items: center; justify-content: center; color: rgba(25,8,49,0.2);
}
.bp-p { margin-bottom: 1.25rem; }
.bp-h2 { font-size: 1.375rem; font-weight: 800; color: var(--foreground); margin: 2.5rem 0 0.875rem; letter-spacing: -0.025em; }
.bp-h3 { font-size: 1.125rem; font-weight: 700; color: var(--foreground); margin: 1.75rem 0 0.625rem; }
.bp-list { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: 0.625rem; }
.bp-list li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 1rem; color: rgba(25,8,49,0.8); }
.bp-check { flex-shrink: 0; color: var(--accent); margin-top: 1px; }
.bp-blockquote {
  border-left: 3px solid var(--accent); margin: 2rem 0; padding: 1rem 1.5rem;
  background: rgba(214,63,65,0.03); border-radius: 0 0.5rem 0.5rem 0;
  font-size: 1.0625rem; font-style: italic; color: rgba(25,8,49,0.7); line-height: 1.75;
}
/* CTA box */
.bp-cta-box { margin-top: 3.5rem; }
.bp-cta-inner {
  background: var(--hero-gradient); border-radius: 1.25rem;
  padding: 2.5rem; text-align: center;
}
.bp-cta-h3 { font-size: 1.5rem; font-weight: 900; color: white; letter-spacing: -0.025em; margin-bottom: 0.625rem; }
.bp-cta-p { color: rgba(255,255,255,0.6); font-size: 0.9375rem; line-height: 1.6; margin-bottom: 1.5rem; }
@media (min-width: 768px) {
  .bp-hero { padding: 4rem 0 4.5rem; }
  .bp-title { font-size: 2.75rem; }
  .bp-h2 { font-size: 1.625rem; }
}
