/* ============================================
   Freedom Flow – Alex Douedari
   1:1 nach Referenzbildern – Mobile-first
   ============================================ */

:root {
  --color-bg: #0b0b0f;
  --color-bg-alt: #111116;
  --color-card: rgba(255,255,255,0.04);
  --color-card-border: rgba(255,255,255,0.08);
  --color-card-hover: rgba(255,255,255,0.07);
  --color-hero: #080830;
  --color-hero-mid: #0c0c3a;
  --color-why-top: #0b0b2a;
  --color-why-bot: #141440;
  --color-accent: #4a90d9;
  --color-accent-line: rgba(74,144,217,0.5);
  --color-white: #ffffff;
  --color-off: #e8e8e8;
  --color-muted: #999;
  --color-dim: #666;
  --radius: 10px;
  --radius-lg: 14px;
  --tap: 44px;
  --max-w: 1100px;
  --px: 1.25rem;
}

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--color-bg);
  color: var(--color-white);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1,h2,h3,p,blockquote,figure { margin: 0; }

.skip-link {
  position: absolute; top: -3rem; left: 1rem; padding: .75rem 1rem;
  background: var(--color-card); color: var(--color-white);
  border-radius: var(--radius); z-index: 200; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
}

/* ===== Label (wie A STEP-BY-STEP PATH / REAL SKILLS) ===== */
.label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: .75rem;
}
.label::before, .label::after {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: var(--color-accent-line);
}

/* ===== Section heading ===== */
.section-heading {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 2rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: var(--tap); padding: .75rem 1.5rem;
  font-size: .9375rem; font-weight: 600;
  border: none; border-radius: 50px; cursor: pointer;
  transition: background .2s, transform .1s;
}
.btn:active { transform: scale(.97); }

.btn-white {
  background: var(--color-white);
  color: var(--color-hero);
}
.btn-white:hover { background: var(--color-off); }

.btn-header {
  background: var(--color-white);
  color: var(--color-hero);
  padding: .5rem 1.25rem;
  font-size: .875rem;
}
.btn-header:hover { background: var(--color-off); }

/* ===== Social proof ===== */
.social-proof {
  font-size: .8125rem;
  color: var(--color-muted);
  text-align: center;
  margin-top: .75rem;
}
.social-proof .fa-star {
  color: #f5c518;
  font-size: .625rem;
  margin-right: .05rem;
}
.social-proof--small { font-size: .75rem; text-align: left; }

/* ====================================================================
   PROMO BANNER
   ==================================================================== */
.promo-banner {
  background: #1a2fff;
  text-align: center;
  padding: .5rem var(--px);
}
.promo-banner p {
  margin: 0;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--color-white);
}

/* ====================================================================
   HEADER
   ==================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,8,48,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-card-border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto;
  padding: .75rem var(--px);
  position: relative;
}
.header-nav-left, .header-nav-right {
  display: none;
  align-items: center; gap: 1.5rem;
}
.header-nav-left a, .header-nav-right a:not(.btn) {
  font-size: .875rem; font-weight: 500; color: var(--color-off);
  min-height: var(--tap); display: inline-flex; align-items: center;
}
.header-nav-left a:hover, .header-nav-right a:not(.btn):hover { color: #fff; }

.logo {
  display: flex; align-items: center; gap: .4rem;
}
.logo-img {
  height: 16px;
  width: auto;
}
.logo-text {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--color-white);
}

.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: var(--tap); height: var(--tap);
  padding: .75rem; background: none; border: none; cursor: pointer;
}
.nav-toggle .bar {
  display: block; width: 22px; height: 2px;
  background: var(--color-white); border-radius: 1px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(280px, 85vw);
  background: var(--color-bg-alt);
  padding: 5rem 1.5rem 1.5rem;
  display: flex; flex-direction: column; gap: .25rem;
  transform: translateX(100%);
  transition: transform .25s ease;
  box-shadow: -4px 0 24px rgba(0,0,0,.4);
  z-index: 99;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a {
  display: block; min-height: var(--tap); padding: .75rem 0;
  font-weight: 500; color: var(--color-off);
}
.mobile-nav a:hover { color: #fff; }
.mobile-nav .btn-header { margin-top: .5rem; width: 100%; text-align: center; }

/* ====================================================================
   HERO
   ==================================================================== */
.hero {
  background: linear-gradient(180deg, var(--color-hero) 0%, var(--color-hero-mid) 60%, var(--color-bg) 100%);
  padding: 3rem 0 2rem;
}

/* Hero Grid: mobile = stacked, desktop = 2 columns */
.hero-grid {
  display: grid;
  gap: 2rem;
}
.hero-left {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.label--left {
  justify-content: center;
}

.hero-title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: .25rem;
  text-align: center;
}
.hero-title-sub {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-off);
  margin: 0 0 1.25rem;
  text-align: center;
}
.hero-desc {
  font-size: .9375rem;
  color: var(--color-off);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.hero-fitcheck {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.hero-fitcheck-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: .375rem;
}
.hero-fitcheck-desc {
  font-size: .875rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.hero-fitcheck .btn .fa-arrow-right {
  margin-right: .375rem;
  font-size: .75rem;
}

.hero-author {
  font-size: .8125rem;
  color: var(--color-muted);
  font-style: italic;
  margin: 0;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-embed {
  width: 100%;
}
/* Hero-Video: stumm als „Poster“, bei Klick von vorne mit Ton */
.hero-video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  border: 1px solid var(--color-card-border);
  overflow: hidden;
  background: #111;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,.5));
  transition: opacity 0.25s, background 0.25s;
}
.hero-video-overlay:hover {
  background: radial-gradient(ellipse at center, transparent 20%, rgba(0,0,0,.45));
}
.hero-video-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.hero-video-overlay .play-icon {
  width: 68px;
  height: 48px;
  position: relative;
  z-index: 1;
  transition: transform 0.2s;
}
.hero-video-overlay:hover .play-icon {
  transform: scale(1.1);
}
.video-placeholder {
  aspect-ratio: 16/9;
  background: #111;
  border-radius: var(--radius);
  border: 1px solid var(--color-card-border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.video-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,.5));
  pointer-events: none;
}
.play-icon {
  width: 68px; height: 48px;
  position: relative; z-index: 1;
}

.hero-cta {
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Hero Social Proof: Avatar stack + count */
.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: .75rem;
  margin-bottom: .5rem;
}
.avatar-stack {
  display: flex;
}
.avatar-img {
  width: 24px; height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-bg);
  margin-left: -6px;
}
.avatar-img:first-child { margin-left: 0; }
.participant-count {
  font-size: .75rem;
  font-weight: 600;
  color: var(--color-muted);
  margin: 0;
}

/* Hero Award Badges */
.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.badge-img {
  height: 44px;
  width: auto;
  opacity: .85;
}
.badge-img--small {
  height: 32px;
}

/* Hero Trustpilot (klein, über dem Label) */
.hero-trustpilot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: .75rem;
}
.trustpilot-stars {
  height: 18px;
  width: auto;
}
.trustpilot-logo {
  height: 15px;
  width: auto;
}

.trust-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-card-border);
}
.trust-bar li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .6875rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--color-muted);
}
.trust-icon {
  font-size: .75rem;
  color: var(--color-accent);
}

/* ====================================================================
   PROBLEM SECTION
   ==================================================================== */
.problem-section {
  background: var(--color-bg);
  padding: 4rem 0;
}
.problem-list {
  max-width: 560px;
  margin: 0 auto 2rem;
}
.problem-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .875rem 1.25rem;
  margin-bottom: .625rem;
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius);
  font-size: .9375rem;
  color: var(--color-off);
}
.problem-x {
  color: #e05555;
  font-size: .75rem;
  flex-shrink: 0;
}
.problem-conclusion {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.problem-conclusion p {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: .25rem;
}
.problem-conclusion strong {
  color: var(--color-white);
  font-size: 1.125rem;
}
.problem-highlight {
  font-size: 1.125rem !important;
  font-weight: 700;
  color: var(--color-accent) !important;
  margin-top: .5rem;
}

/* ====================================================================
   VIDEO TESTIMONIALS (alternierend: Video + Text)
   ==================================================================== */
.video-testimonials-section {
  display: none; /* ausgeblendet */
  background: var(--color-bg-alt);
  padding: 4rem 0;
}
.vt-row {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
}
.vt-row:last-child { margin-bottom: 0; }

.video-testimonial-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #111 0%, #1a1a2e 100%);
  border-radius: var(--radius);
  border: 1px solid var(--color-card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.video-testimonial-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,.5));
  pointer-events: none;
}
.video-testimonial-placeholder .play-icon {
  position: relative;
  z-index: 1;
  transition: transform .2s;
}
.video-testimonial-placeholder:hover .play-icon {
  transform: scale(1.1);
}

.vt-text .stars { margin-bottom: .5rem; }
.vt-quote {
  font-size: 1rem;
  color: var(--color-off);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.vt-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.vt-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #333 0%, #555 100%);
  flex-shrink: 0;
}
.vt-author strong {
  font-size: .9375rem;
  color: var(--color-white);
  display: block;
}
.vt-author span {
  font-size: .75rem;
  color: var(--color-muted);
}

.stars {
  font-size: .6875rem; letter-spacing: .1em;
  color: var(--color-white); margin-bottom: .75rem;
}
.stars .fa-star { color: #f5c518; }

/* ====================================================================
   FRAMEWORK SECTION (Bild links, Text rechts)
   ==================================================================== */
.framework-section {
  background:
    radial-gradient(ellipse 80% 60% at 30% 50%, rgba(20, 40, 120, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 70% 60%, rgba(60, 80, 180, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #0c0c1e 0%, #0e1030 40%, #0c0c1e 100%);
  padding: 4rem 0;
}
.framework-grid {
  display: grid;
  gap: 2rem;
}

/* Bild */
.framework-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tilt-wrapper {
  perspective: 800px;
  display: flex;
  justify-content: center;
}
.framework-img {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-lg);
  transform: rotateY(8deg) rotateX(4deg);
  transition: transform 0.3s ease-out;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(74,144,217,0.08);
}

/* Text rechts (mobil zentriert, desktop links) */
.framework-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}
.framework-nopes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
}
.framework-nope {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--color-off);
  background: rgba(224, 85, 85, 0.08);
  border: 1px solid rgba(224, 85, 85, 0.15);
  border-radius: 50px;
  padding: .375rem .875rem;
  margin: 0;
}
.fw-x {
  color: #e05555;
  font-size: .625rem;
}
.framework-desc {
  font-size: 1rem;
  color: var(--color-off);
  line-height: 1.65;
  margin: 0;
}
.framework-checklist-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  width: 100%;
  text-align: left;
}
.framework-checklist-title {
  font-size: .875rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: .875rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-align: center;
}
.framework-checklist {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.framework-checklist li {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .9375rem;
  color: var(--color-off);
}
.framework-checklist li strong {
  color: var(--color-white);
}
.fw-check {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  font-size: .6rem;
  flex-shrink: 0;
}
.check-icon {
  color: #4ade80;
  font-size: .75rem;
  flex-shrink: 0;
}

/* ====================================================================
   TRANSFORMATION SECTION (Vorher / Nachher)
   ==================================================================== */
.transformation-section {
  background: var(--color-bg);
  padding: 4rem 0;
}
.transformation-grid {
  display: grid;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.transformation-col {
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.transformation-col h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.transformation-col--before h3 { color: #e05555; }
.transformation-col--after h3 { color: #4ade80; }
.transformation-col ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.transformation-col li {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .9375rem;
  color: var(--color-off);
}
.t-x {
  color: #e05555;
  font-size: .75rem;
  flex-shrink: 0;
}
.t-check {
  color: #4ade80;
  font-size: .75rem;
  flex-shrink: 0;
}
.transformation-footer {
  text-align: center;
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.6;
}
.transformation-footer strong {
  color: var(--color-white);
}

/* ====================================================================
   3 PILLARS
   ==================================================================== */
.pillars-section {
  background: linear-gradient(180deg, var(--color-why-top) 0%, var(--color-why-bot) 100%);
  padding: 4rem 0;
}
.pillars-grid {
  display: grid;
  gap: 1rem;
}
.pillar-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.pillar-icon {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: .75rem;
}
.pillar-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.pillar-card p {
  font-size: .875rem;
  color: var(--color-muted);
  line-height: 1.5;
}

/* ====================================================================
   PROOF + ALEX
   ==================================================================== */
.proof-section {
  background: var(--color-bg-alt);
  padding: 4rem 0;
}
.proof-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.proof-card {
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.proof-card--darwinex {
  padding: 0;
  overflow: hidden;
}
.darwinex-layout {
  display: flex;
  flex-direction: column;
}
.darwinex-text {
  padding: 1.5rem;
}
.darwinex-image {
  border-top: 1px solid var(--color-card-border);
}
.darwinex-img {
  width: 100%;
  display: block;
  border-radius: 0 0 var(--radius) var(--radius);
}
.proof-intro {
  font-size: .9375rem;
  color: var(--color-off);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.proof-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1rem;
}
.proof-list li {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .9375rem;
  color: var(--color-off);
}
.proof-note {
  font-size: .875rem;
  color: var(--color-muted);
  line-height: 1.6;
}
.proof-note strong { color: var(--color-white); }
.btn-darwinex {
  margin-top: 1rem;
  background: rgba(74,144,217,0.12);
  color: var(--color-accent);
  border: 1px solid rgba(74,144,217,0.25);
  font-size: .875rem;
  padding: .625rem 1.25rem;
}
.btn-darwinex:hover {
  background: rgba(74,144,217,0.2);
  border-color: var(--color-accent);
}
.btn-darwinex .fa-arrow-up-right-from-square {
  margin-right: .375rem;
  font-size: .7rem;
}
.proof-card--alex {
  padding: 0;
  overflow: hidden;
}
.alex-layout {
  display: flex;
  flex-direction: column;
}
.alex-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.alex-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse at center bottom, rgba(74,144,217,0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.proof-alex-img {
  width: 100%;
  max-width: 280px;
  position: relative;
  z-index: 2;
  mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
}
.alex-text {
  padding: 0 1.5rem 1.5rem;
}
.proof-card--alex h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: .75rem;
}
.proof-card--alex p,
.alex-text p {
  font-size: .9375rem;
  color: var(--color-off);
  line-height: 1.6;
  margin-bottom: .5rem;
}
.proof-tagline {
  margin-top: .75rem;
  color: var(--color-muted);
}
.proof-tagline strong { color: var(--color-accent); }

/* ====================================================================
   FAQ (accordion boxes, like reference)
   ==================================================================== */
.faq-section {
  background: var(--color-bg);
  padding: 4rem 0;
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  background: var(--color-card);
  overflow: hidden;
}
.faq-item summary {
  display: flex; align-items: center; gap: .75rem;
  padding: 1rem 1.25rem;
  font-size: .9375rem; font-weight: 600;
  color: var(--color-white);
  cursor: pointer;
  min-height: var(--tap);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }
.faq-icon {
  flex-shrink: 0;
  font-size: .75rem;
  color: var(--color-accent);
  transition: transform .2s;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.25rem 1.25rem;
}
.faq-answer p {
  font-size: .875rem; color: var(--color-muted); line-height: 1.6;
}

/* ====================================================================
   CTA CARD (dark blue gradient with abstract pattern)
   ==================================================================== */
.cta-section {
  background: var(--color-bg);
  padding: 2rem 0 4rem;
}
.cta-card {
  background: linear-gradient(165deg, #0d0d2b 0%, #151545 50%, #1a1a60 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}
.cta-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(74,144,217,0.2) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 200'%3E%3Cpath fill='none' stroke='rgba(74,144,217,0.12)' stroke-width='0.8' d='M0 100 Q150 40 300 100 T600 100'/%3E%3Cpath fill='none' stroke='rgba(74,144,217,0.08)' stroke-width='0.8' d='M0 130 Q150 70 300 130 T600 130'/%3E%3Cpath fill='none' stroke='rgba(74,144,217,0.06)' stroke-width='0.8' d='M0 70 Q150 130 300 70 T600 70'/%3E%3C/svg%3E");
  background-size: 100% 100%, 300px 100px;
  pointer-events: none;
}
.cta-title {
  font-size: 1.375rem; font-weight: 700;
  margin-bottom: .75rem; position: relative;
}
.cta-desc {
  font-size: .9375rem; color: var(--color-off);
  max-width: 40ch; margin: 0 auto 1.5rem;
  position: relative;
}
.cta-list {
  text-align: left;
  display: inline-flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.cta-list li {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .9375rem;
  color: var(--color-off);
}
.cta-list .check-icon { color: #4ade80; }
.cta-section .btn {
  position: relative;
}
.cta-section .btn .fa-arrow-right {
  margin-right: .375rem;
  font-size: .75rem;
}

/* ====================================================================
   FOOTER
   ==================================================================== */
.site-footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-card-border);
  padding: 2rem 0;
}
.footer-inner { text-align: center; }
.footer-logo {
  display: flex; align-items: center; justify-content: center;
  gap: .4rem; font-weight: 700; font-size: .9375rem;
  color: var(--color-white);
  margin-bottom: .5rem;
}
.footer-logo-img {
  height: 18px;
  width: auto;
}
.footer-disclaimer {
  font-size: .6875rem;
  color: var(--color-dim);
  line-height: 1.55;
  max-width: 720px;
  margin: 0 auto 1.25rem;
  text-align: left;
}
.footer-disclaimer p { margin: 0 0 .75rem; }
.footer-disclaimer p:last-child { margin-bottom: 0; }
.footer-disclaimer a { color: var(--color-muted); }
.footer-disclaimer a:hover { color: var(--color-white); }
.footer-legal {
  font-size: .75rem; color: var(--color-dim);
}
.footer-legal a { color: var(--color-muted); }
.footer-legal a:hover { color: var(--color-white); }

/* ====================================================================
   BREAKPOINTS
   ==================================================================== */

/* 480px */
@media (min-width: 480px) {
  :root { --px: 1.5rem; }
  .hero-title { font-size: 2rem; }
  .trust-bar { grid-template-columns: repeat(4, 1fr); }
  .transformation-grid { grid-template-columns: 1fr 1fr; }
}

/* 768px */
@media (min-width: 768px) {
  :root { --px: 2rem; }

  .label::before, .label::after { width: 3.5rem; }
  .section-heading { font-size: 2rem; }

  .hero { padding: 4rem 0 2.5rem; }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .hero-title { font-size: 2.75rem; }
  .hero-title-sub { font-size: 1.5rem; }

  .avatar-img { width: 28px; height: 28px; }
  .participant-count { font-size: .8125rem; }
  .badge-img { height: 50px; }
  .badge-img--small { height: 30px; }
  .trustpilot-stars { height: 22px; }
  .trustpilot-logo { height: 18px; }

  .vt-row {
    grid-template-columns: 1fr 1fr;
  }
  .vt-row--reverse .vt-text { order: 1; }
  .vt-row--reverse .vt-video { order: 2; }
  .framework-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .framework-text {
    align-items: flex-start;
    text-align: left;
  }
  .framework-nopes {
    justify-content: flex-start;
  }
  .framework-checklist-title {
    text-align: left;
  }

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

  .proof-grid { grid-template-columns: 1fr; }
  .proof-card--darwinex { grid-column: 1 / -1; }
  .darwinex-layout {
    flex-direction: row;
    align-items: center;
  }
  .darwinex-text {
    flex: 1;
    padding: 2rem;
  }
  .darwinex-image {
    flex: 0 0 45%;
    border-top: none;
    border-left: 1px solid var(--color-card-border);
  }
  .darwinex-img {
    border-radius: 0 var(--radius) var(--radius) 0;
  }
  .alex-layout {
    flex-direction: row;
    align-items: center;
  }
  .alex-image-wrap {
    flex: 0 0 40%;
    min-width: 0;
  }
  .proof-alex-img {
    max-width: 100%;
  }
  .alex-text {
    flex: 1;
    padding: 1.5rem;
  }
  .proof-card--alex {
    grid-column: 1 / -1;
  }

  .cta-card { padding: 3rem 2.5rem; }
}

/* 1024px */
@media (min-width: 1024px) {
  .hero-title { font-size: 3.25rem; }
  .hero-title-sub { font-size: 1.75rem; }
  .section-heading { font-size: 2.25rem; }
  .pillar-card { padding: 2rem; }
}

/* 1280px */
@media (min-width: 1280px) {
  :root { --px: 2.5rem; }
  .hero-title { font-size: 3.5rem; }
}

/* ===== index2.html – Abbreviated page helpers ===== */
.i2-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .375rem .75rem;
  font-size: .8125rem;
  color: var(--color-muted);
  margin-top: .75rem;
}
.i2-proof .fa-users { color: var(--color-accent); margin-right: .25rem; }
.i2-sep {
  color: var(--color-dim);
  margin: 0 .25rem;
}
.i2-nopes {
  margin-top: 1.5rem;
  text-align: center;
}
.i2-nopes p {
  margin: 0 0 .5rem;
  font-size: .9375rem;
  color: var(--color-off);
}
.i2-nopes p.i2-yes {
  font-weight: 700;
  color: var(--color-white);
  margin-top: 1rem;
  margin-bottom: 0;
}
.i2-nopes .fw-x {
  margin-right: .375rem;
  color: #e05555;
}
