/* ═══════════════════════════════════════════════════════════════
   RUN4YOU — Premium Landing Page CSS
   Apple-Style · High Conversion · Carsten Hinz
═══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --clr-bg: #ffffff;
  --clr-bg-light: #f5f5f7;
  --clr-bg-dark: #0a0a0a;
  --clr-bg-accent: #0d1b2a;

  /* ── CI Brand Colors – Run4You Orange Gradient ── */
  --clr-brand: #ea571d;
  --clr-brand-end: #f78316;
  --clr-brand-dark: #c94317;
  --clr-brand-grad: linear-gradient(135deg, #ea571d 0%, #f78316 100%);
  --clr-brand-glow: rgba(234, 87, 29, 0.30);
  --clr-brand-glow2: rgba(247, 131, 22, 0.20);

  --clr-text: #1d1d1f;
  --clr-text-muted: #6e6e73;
  --clr-text-light: rgba(255, 255, 255, 0.85);
  --clr-text-light-muted: rgba(255, 255, 255, 0.55);
  --clr-border: rgba(0, 0, 0, 0.08);
  --clr-border-dark: rgba(255, 255, 255, 0.12);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12), 0 6px 16px rgba(0, 0, 0, 0.06);
  --shadow-brand: 0 8px 32px rgba(234, 87, 29, 0.40);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s ease;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ─── RESET & BASE ───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

/* ─── CUSTOM SELECTION ───────────────────────────────────────── */
::selection {
  background-color: var(--clr-brand);
  color: #fff;
}

::-moz-selection {
  background-color: var(--clr-brand);
  color: #fff;
}

/* ─── CUSTOM SCROLLBAR ───────────────────────────────────────── */
/* Standard */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--clr-brand) var(--clr-bg-light);
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--clr-bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--clr-brand-grad);
  border-radius: 10px;
  border: 2px solid var(--clr-bg-light);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--clr-brand-dark);
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1 {
  font-size: clamp(2.2rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--clr-text);
}

h2 {
  font-size: clamp(1.8rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--clr-text);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.3;
}

/* Inline em highlights → gradient clipped text */
em {
  font-style: normal;
}

h1 em,
h2 em {
  color: inherit;
  background: none;
  -webkit-text-fill-color: initial;
}

/* On dark sections: ensure titles are white */
section--dark h2,
.section--dark h2,
.section--accent h2,
.section--form h2,
.section--final-cta h2 {
  color: #fff;
}

.section--dark h2 em,
.section--accent h2 em,
.section--form h2 em,
.section--final-cta h2 em {
  color: #fff;
}

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

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

.section {
  padding: clamp(64px, 10vw, 120px) 0;
  position: relative;
}

.section--light {
  background: var(--clr-bg);
}

.section--light+.section--light {
  background: var(--clr-bg-light);
}

.section--dark {
  background: var(--clr-bg-dark);
  color: #fff;
}

.section--accent {
  background: var(--clr-bg-accent);
  color: #fff;
}

.section--form {
  background: var(--clr-bg-dark);
  color: #fff;
}

/* ─── EYEBROW ────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--clr-brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.eyebrow--light {
  /* On dark backgrounds: same gradient, still legible */
  background: var(--clr-brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── SECTION INTRO ──────────────────────────────────────────── */
.section__intro {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.section__intro--left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.section__sub {
  max-width: 640px;
  margin: 16px auto 0;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.section__sub--left {
  margin-left: 0;
  margin-right: 0;
}

.section__sub--light {
  color: var(--clr-text-light-muted);
}

.form__group--captcha {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: var(--radius-md);
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form__group--captcha label {
  font-size: 0.85rem;
  color: var(--clr-text-light-muted);
}

.captcha-q {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Spinner */
.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--clr-brand-grad);
  color: #fff;
  padding: 14px 28px;
  box-shadow: var(--shadow-brand);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

/* Shine sweep on hover */
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f78316 0%, #ea571d 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(234, 87, 29, 0.55);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--large {
  font-size: 1.1rem;
  padding: 18px 36px;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn--ghost:hover {
  background: rgba(234, 87, 29, 0.2);
  border-color: rgba(247, 131, 22, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(234, 87, 29, 0.3);
}

.btn--nav {
  background: transparent;
  color: var(--clr-brand);
  padding: 10px 22px;
  font-size: 0.9rem;
  border: 1.5px solid var(--clr-brand);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.btn--nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--clr-brand-grad);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.btn--nav:hover::before {
  opacity: 1;
}

.btn--nav:hover {
  color: #fff;
  border-color: transparent;
}

/* ─── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

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

.nav__logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo-box {
  display: grid;
  grid-template-areas: "stack";
  align-items: center;
}

.nav__logo-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.4s ease;
  flex-shrink: 0;
}

.nav.scrolled .nav__logo-divider {
  background: rgba(0, 0, 0, 0.1);
}

.nav__logo {
  grid-area: stack;
  height: 32px;
  width: auto;
  transition: opacity 0.4s ease;
  object-fit: contain;
}

.nav__logo.logo--scrolled {
  opacity: 0;
}

.nav.scrolled .nav__logo.logo--initial {
  opacity: 0;
}

.nav.scrolled .nav__logo.logo--scrolled {
  opacity: 1;
}

.nav.scrolled .nav__logo.logo--scrolled {
  opacity: 1;
}

.nav__menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

/* ─── SCROLL PROGRESS BAR ────────────────────────────────────── */
.nav__progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.nav.scrolled .nav__progress-container {
  background: rgba(0, 0, 0, 0.03);
}

.nav__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--clr-brand-grad);
  box-shadow: 0 0 10px rgba(234, 87, 29, 0.4);
  transition: width 0.1s ease-out;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}

.nav.scrolled .nav__link {
  color: var(--clr-text);
}

.nav__link:hover {
  color: #fff !important;
}

.nav.scrolled .nav__link:hover {
  color: var(--clr-brand) !important;
}

/* Minimalist Global Burger Nav */
.nav__menu {
  display: none !important;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn--desktop-only {
  display: none;
}

@media (min-width: 768px) {
  .btn--desktop-only {
    display: inline-flex;
  }
}

.nav__burger {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.nav__burger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
  border-radius: 2px;
}

.nav.scrolled .nav__burger span {
  background: var(--clr-text);
}

.nav.menu-open .nav__burger span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav.menu-open .nav__burger span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-menu__panel {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 48px;
}

.mobile-menu__link {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1), transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-menu.open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-menu__link:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu.open .mobile-menu__link:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-menu.open .mobile-menu__link:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-menu.open .mobile-menu__link:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-menu.open .mobile-menu__link:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-menu__footer {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.4s;
}

.mobile-menu.open .mobile-menu__footer {
  opacity: 1;
  transform: translateY(0);
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: kenburns-fade 24s infinite linear;
}

.hero__slide:nth-child(1) {
  animation-delay: 0s;
}

.hero__slide:nth-child(2) {
  animation-delay: 6s;
}

.hero__slide:nth-child(3) {
  animation-delay: 12s;
}

.hero__slide:nth-child(4) {
  animation-delay: 18s;
}

@keyframes kenburns-fade {
  0% {
    opacity: 0;
    transform: scale(1.05) translate(0, 0);
  }

  4% {
    opacity: 1;
  }

  25% {
    opacity: 1;
  }

  29% {
    opacity: 0;
    transform: scale(1.2) translate(-2%, -1%);
  }

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 10, 30, 0.65) 50%,
      rgba(0, 0, 0, 0.4) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 100px clamp(24px, 5vw, 80px) 60px;
  /* Added horizontal padding to match container fallback */
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  /* Center it */
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: clamp(0.72rem, 2vw, 0.82rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: clamp(16px, 4vw, 28px);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 32px);
  margin-top: clamp(40px, 8vw, 80px);
  flex-wrap: wrap;
}

.hero__trust-glass {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 100px;
}

.hero__trust-glass .trust__logo {
  height: 28px;
  width: auto;
  opacity: 1;
}

.trust__divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
}

.trust__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust__text strong {
  display: block;
  font-size: 1rem;
  color: #fff;
}

.trust__text span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.badge__dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  background: var(--clr-brand-grad);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

.badge__dot--red {
  background: #ff453a;
}

@keyframes pulse-dot {

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

  50% {
    opacity: 0.6;
    transform: scale(0.8);
  }
}

.hero h1 {
  color: #fff;
  margin-bottom: 24px;
  max-width: 1200px;
  font-size: clamp(2rem, 7vw, 4.2rem);
  /* Slightly smaller to accommodate longer text */
  line-height: 1.1;
}

.hero__subheadline {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  opacity: 0.9;
  letter-spacing: -0.01em;
}


/* ─── REVIEW MODAL SPECIFICS ─── */
.modal__panel--review {
  max-width: 700px;
  text-align: left;
  background: #1a1a1a;
}

.modal__panel--review .modal__close {
  right: 24px;
  left: auto;
  color: #fff;
}

.review-modal__text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #fff;
  margin: 30px 0;
  font-style: italic;
}

.review-modal__author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.review-modal__author .review__avatar {
  width: 64px;
  height: 64px;
}

.review-modal__author strong {
  display: block;
  font-size: 1.1rem;
  color: #fff;
}

.review-modal__author span {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}


.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.hero__cta-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 2px;
}

.hero__cta-trust .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero__cta-trust .trust-item i {
  width: 14px;
  height: 14px;
  color: var(--clr-brand);
  stroke-width: 3px;
}

@media (max-width: 480px) {
  .hero__cta-trust {
    gap: 6px 12px;
  }
}


.hero__micro {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
}


.trust__logo--color {
  filter: none;
}



.trust__logo:hover {
  transform: scale(1.05);
}

.trust__divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
}

.trust__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
}

.trust__text strong {
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--clr-brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
  }
}

/* ─── PROBLEM SECTION ────────────────────────────────────────── */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.problem__lead {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--clr-text);
}

.problem__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.problem__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.05rem;
  color: var(--clr-text-muted);
}

.list__icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.list__icon--stop {
  color: #ff453a;
}

.list__icon--stop i,
.list__icon--arrow i {
  width: 18px;
  height: 18px;
}

.list__icon--arrow {
  color: var(--clr-text-muted);
}

.pain__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.pain__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff0f0;
  color: #c0392b;
  border: 1px solid #ffc2c2;
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.pain__chip i {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.pain__chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.problem__tried-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.tried__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}

.tried__item {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tried__item i {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.tried__item--cross {
  background: var(--clr-bg-light);
  color: var(--clr-text-muted);
  border: 1px solid var(--clr-border);
}

.problem__punchline {
  border-left: 3px solid var(--clr-brand);
  padding-left: 20px;
  border-image: var(--clr-brand-grad) 1;
}

.problem__punchline p {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  margin-bottom: 6px;
}

.problem__reason {
  color: var(--clr-text) !important;
}

.problem__image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.problem__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  transition: transform 0.6s ease;
}

.problem__image-wrap:hover .problem__img {
  transform: scale(1.02);
}

/* ─── BELIEF / BREAK ─────────────────────────────────────────── */
.belief__layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 56px;
}

.belief__arrow {
  color: rgba(255, 255, 255, 0.3);
  width: 60px;
  flex-shrink: 0;
}

.belief__card {
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid;
  transition: var(--transition);
}

.belief__card--old {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.belief__card--new {
  background: rgba(234, 87, 29, 0.10);
  border-color: rgba(247, 131, 22, 0.35);
  box-shadow: 0 0 48px rgba(234, 87, 29, 0.15);
}

.belief__icon {
  margin-bottom: 16px;
}

.belief__icon i {
  width: 36px;
  height: 36px;
}

.belief__icon--bad i,
.belief__icon--bad svg {
  color: #ff3b30 !important;
}

.belief__icon--good i,
.belief__icon--good svg {
  color: #34c759 !important;
}

.belief__card h3,
.belief__card p,
.belief__card ul {
  color: rgba(255, 255, 255, 0.85);
}

.belief__quote {
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.belief__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.belief__list li {
  font-size: 0.95rem;
  padding-left: 18px;
  position: relative;
}

.belief__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  opacity: 0.4;
}

.belief__result {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.belief__result--bad {
  background: rgba(255, 69, 58, 0.15);
  color: #ff6961;
  border: 1px solid rgba(255, 69, 58, 0.2);
}

.belief__result--good {
  background: rgba(76, 222, 128, 0.15);
  color: #4cde80;
  border: 1px solid rgba(76, 222, 128, 0.2);
}

.belief__punchline {
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.belief__punchline strong {
  color: #fff;
}

.belief__punchline em {
  font-style: normal;
  background: var(--clr-brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── METHODE ────────────────────────────────────────────────── */
.method__layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.method__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.method__step {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--clr-bg-light);
  border: 1px solid var(--clr-border);
  transition: var(--transition);
  position: relative;
}

.method__step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--clr-brand-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.method__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.method__step:hover::before {
  transform: scaleX(1);
}

.method__num {
  font-size: 3rem;
  font-weight: 900;
  background: var(--clr-brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.method__step h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.method__step p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.method__video {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  max-height: 800px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.method__visual {
  position: sticky;
  top: 100px;
}

.method__video-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-top: 16px;
}

/* ─── ANTI-GRAVITY SECTION ────────────────────────────────────── */
.section--gravity {
  background: #f7f7f7;
  overflow: hidden;
}

.gravity__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.gravity__content h2 {
  margin-bottom: 24px;
}

.gravity__body {
  margin: 32px 0;
}

.gravity__problem p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: var(--clr-text);
}

.gravity__features {
  list-style: none;
  margin: 24px 0;
}

.gravity__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--clr-text);
}

.feature__dot {
  width: 6px;
  height: 6px;
  background: var(--clr-brand);
  border-radius: 50%;
}

.gravity__benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  background-color: var(--clr-brand);
  background-image: linear-gradient(135deg, rgba(234, 87, 29, 0.96) 0%, rgba(247, 131, 22, 0.96) 100%), url('assets/bilder/pattern-1.webp');
  background-repeat: repeat;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(234, 87, 29, 0.15);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 650;
  color: #fff;
}

.benefit-item i {
  color: #fff;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.gravity__quote-box {
  border-left: 3px solid var(--clr-brand);
  padding-left: 24px;
  margin-bottom: 48px;
}

.gravity__quote-box blockquote {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  font-style: italic;
}

.gravity__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta__micro-top {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-brand);
  margin-bottom: 12px;
}

.cta__micro-bottom {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  margin-top: 12px;
}

.gravity__visual {
  position: relative;
}

.gravity__video-stack {
  position: relative;
  padding-bottom: 60px;
  padding-right: 20px;
}

.gravity__video-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  z-index: 1;
}

.gravity__video-wrap--secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  aspect-ratio: 1 / 1;
  z-index: 2;
  border: 4px solid #fff;
  box-shadow: var(--shadow-xl);
}

.gravity__video-file {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gravity__visual:hover .gravity__video-file {
  transform: scale(1.05);
}

.gravity__overlay {
  position: absolute;
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(234, 87, 29, 0.65) 0%, rgba(247, 131, 22, 0.45) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  animation: float 4s ease-in-out infinite;
}

.gravity__overlay--top {
  top: 40px;
  right: -20px;
  z-index: 2;
  padding-right: 40px;
}

.gravity__overlay--bottom {
  bottom: 60px;
  left: -20px;
  animation-delay: 2s;
  z-index: 2;
  padding-left: 40px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.overlay__val {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.overlay__label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 4px;
}

.gravity__thumbs {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.gravity__thumb {
  width: calc(50% - 8px);
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.gravity__insert {
  margin-top: 80px;
  text-align: center;
  padding: 32px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  font-weight: 600;
  color: var(--clr-text);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 1024px) {
  .gravity__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .gravity__benefits {
    grid-template-columns: 1fr;
  }

  .gravity__overlay {
    right: -15px;
    left: auto;
  }

  .gravity__overlay--bottom {
    left: -15px;
    right: auto;
  }
}

/* ─── USP GRID ───────────────────────────────────────────────── */
.usp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.usp__card {
  padding: clamp(24px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.usp__card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(247, 131, 22, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 0 32px rgba(234, 87, 29, 0.12);
}

.usp__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: #f78316;
  display: flex;
  align-items: center;
}

.usp__icon i {
  width: 36px;
  height: 36px;
}

.usp__card h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1rem;
}

.usp__card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ─── GALLERY ────────────────────────────────────────────────── */
.section--gallery {
  padding: 0;
  overflow: hidden;
  background: var(--clr-bg-dark);
}

.gallery__track {
  overflow: hidden;
  padding: 0;
}

.gallery__inner {
  display: flex;
  gap: 16px;
  animation: gallery-scroll 40s linear infinite;
  width: max-content;
  padding: 40px 0;
}

.gallery__inner img {
  height: 280px;
  width: auto;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.gallery__inner img:hover {
  transform: scale(1.04);
  z-index: 1;
  box-shadow: var(--shadow-lg);
}


@keyframes gallery-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─── REVIEWS ────────────────────────────────────────────────── */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.review__card {
  padding: clamp(24px, 3vw, 36px);
  background: var(--clr-bg-light);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.review__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.review__card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(234, 87, 29, 0.05) 0%, rgba(247, 131, 22, 0.03) 100%);
  border-color: rgba(234, 87, 29, 0.2);
}

.review__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.review__stars i,
.review__stars svg,
.star-filled {
  width: 20px;
  height: 20px;
  color: #fcc419 !important;
  stroke: #fcc419 !important;
  fill: #fcc419 !important;
}

/* ─── REVIEWS CAROUSEL ────────────────────────────────────────── */
.reviews__carousel-container {
  width: 100%;
  max-width: 100%;
  margin: -12px auto 52px;
  padding: 12px 0;
  position: relative;
}

.reviews__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.reviews__track::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.reviews__track .review__card {
  flex: 0 0 calc(50% - 10px);
  min-width: calc(50% - 10px);
  scroll-snap-align: center;
}

.carousel__nav {
  display: none;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

@media (max-width: 992px) {
  .reviews__track .review__card {
    flex: 0 0 100%;
    min-width: 100%;
  }
  
  .carousel__nav {
    display: flex;
  }
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-border);
  background: transparent;
  color: var(--clr-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.carousel__btn:hover {
  border-color: var(--clr-brand);
  color: var(--clr-brand);
  transform: scale(1.1);
}

.carousel__btn i {
  width: 20px;
  height: 20px;
}

.review__text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--clr-text);
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
}

.review__read-more {
  display: block;
  background: none;
  border: none;
  color: var(--clr-brand);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0;
  margin-top: 8px;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.review__read-more:hover {
  opacity: 0.7;
}

.review__card--featured .review__text {
  font-size: 1.1rem;
}

.review__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review__avatar {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: var(--clr-brand-grad);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.review__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}

.review__author strong {
  display: block;
  font-size: 0.95rem;
}

.review__author span {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

/* ─── STATS ROW ──────────────────────────────────────────────── */
.stats__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  padding: 20px 0;
}

.stat__item {
  background: #fff;
  padding: clamp(32px, 5vw, 56px) 24px;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  border: 1px solid var(--clr-border);
}

.stat__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.stat__icon {
  margin-bottom: 24px;
  color: var(--clr-brand);
}

.stat__icon i {
  width: 56px;
  height: 56px;
  stroke-width: 1.2;
}

.stat__number {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #1d1d1f;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat__suffix {
  font-size: 1.1em;
  font-weight: 700;
  color: var(--clr-brand);
}

.stat__label {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: var(--clr-text-muted);
  margin-top: 12px;
  font-weight: 500;
  line-height: 1.4;
}

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about__badge-box {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.4);
  /* Increased opacity */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.badge__divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.3);
}

.about__badge-box img {
  height: 36px;
  width: auto;
}

.about__text h2 {
  margin-bottom: 16px;
}

.about__text>p {
  font-size: 1.05rem;
  color: #ffffff;
  /* Set to 100% white */
  line-height: 1.7;
  margin-bottom: 12px;
}

.about__credentials {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0;
}

.about__credentials li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cred__icon {
  width: 44px;
  height: 44px;
  background: var(--clr-brand-grad);
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(234, 87, 29, 0.2);
}

.cred__icon i {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

.about__credentials strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 2px;
}

.about__credentials span {
  font-size: 0.85rem;
  color: var(--clr-text-light-muted);
}

.about__subtitle {
  margin-top: 48px;
  margin-bottom: 24px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
}

.about__highlight-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 131, 22, 0.45);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.highlight-card__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.highlight-card__header strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 2px;
}

.highlight-card__header>div>span {
  font-size: 0.85rem;
  color: var(--clr-text-light-muted);
  display: block;
  line-height: 1.4;
}

.highlight-card__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 640px) {
  .about__highlight-cards {
    grid-template-columns: 1fr;
  }
}


/* ─── QUALIFY ────────────────────────────────────────────────── */
.qualify__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 50px;
}

.qualify__card {
  width: 100%;
  max-width: 640px;
}

/* Re-enable 2-column grid if BOTH cards are present */
@media (min-width: 1024px) {
  .qualify__grid:has(.qualify__card--no) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    max-width: none;
  }
}

.qualify__card {
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-xl);
  border: 1px solid;
}

.qualify__card--yes {
  background: linear-gradient(135deg, #f0faf4 0%, #fff 100%);
  border-color: rgba(52, 199, 89, 0.3);
}

.qualify__card--no {
  background: var(--clr-bg-light);
  border-color: var(--clr-border);
}

.qualify__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.qualify__icon {
  display: flex;
  align-items: center;
}

.qualify__icon i {
  width: 36px;
  height: 36px;
  stroke-width: 2.5;
}

.icon-success {
  color: #2ecc71;
}

.icon-error {
  color: #e74c3c;
}

.qualify__card h3 {
  font-size: 1.1rem;
}

.qualify__card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.qualify__card--yes ul li {
  padding-left: 24px;
  position: relative;
  color: var(--clr-text);
}

.qualify__card--yes ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #34c759;
  font-weight: 700;
}

.qualify__card--no ul li {
  padding-left: 24px;
  position: relative;
  color: var(--clr-text-muted);
}

.qualify__card--no ul li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #ff453a;
}

.qualify__target {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a7f3c;
  background: rgba(52, 199, 89, 0.1);
  border: 1px solid rgba(52, 199, 89, 0.2);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}

.qualify__note {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--clr-text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--clr-border);
}

/* ─── STEPS ──────────────────────────────────────────────────── */
.section--steps {
  background: var(--clr-bg-light);
}

.steps__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.step {
  padding: 28px 20px;
  text-align: center;
  position: relative;
}

.step__num {
  width: 52px;
  height: 52px;
  background: var(--clr-brand-grad);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-brand);
}

.step__line {
  position: absolute;
  top: 52px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-brand), rgba(234, 87, 29, 0.15));
  z-index: 0;
}

.step:last-child .step__line {
  display: none;
}

.step h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ─── MID CTA ────────────────────────────────────────────────── */
.section--cta-mid {
  background: linear-gradient(135deg, #0a0a0a 0%, #0d1b2a 100%);
  color: #fff;
}

.cta-mid__inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}


.section--cta-mid h2 {
  color: #fff;
  margin-bottom: 16px;
}

/* em on dark bg inherits global gradient rule automatically */
.section--cta-mid p {
  color: #ffffff;
  /* Set to 100% white */
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta__micro {
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4) !important;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq__list {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
}

.faq__item:first-child {
  border-top: 1px solid var(--clr-border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-text);
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}

.faq__question:hover {
  color: var(--clr-brand);
}

.faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-border);
  color: var(--clr-text-muted);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s, border-color 0.3s, color 0.3s;
}

.faq__icon i {
  width: 16px;
  height: 16px;
}

.faq__question[aria-expanded="true"] .faq__icon {
  background: var(--clr-brand-grad);
  border-color: var(--clr-brand);
  color: #fff;
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__answer.open {
  max-height: 500px;
}

.faq__answer p {
  padding-bottom: 24px;
  color: var(--clr-text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ─── APPLE STYLE FAQ OVERRIDES (LIGHT) ─── */
.faq__list--apple-style .faq__item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  margin-bottom: 0;
}

.faq__list--apple-style .faq__item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq__list--apple-style .faq__question {
  padding: 30px 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-text);
  border: none;
  background: none;
}

.faq__list--apple-style .faq__question:hover {
  color: var(--clr-brand);
  opacity: 0.8;
}

.faq__list--apple-style .faq__icon {
  width: auto;
  height: auto;
  border: none;
  background: none;
  border-radius: 0;
  color: var(--clr-brand);
  transform: none;
}

.faq__list--apple-style .faq__icon i {
  width: 24px;
  height: 24px;
}

.faq__list--apple-style .faq__question[aria-expanded="true"] .faq__icon {
  background: none;
  border: none;
  color: var(--clr-brand);
  transform: rotate(45deg);
}

.faq__list--apple-style .faq__answer p {
  padding: 0 0 32px 0;
  font-size: 1.1rem;
  color: var(--clr-text-muted);
}

/* ─── FORM ───────────────────────────────────────────────────── */
.form__header {
  text-align: center;
  margin-bottom: 48px;
}

.form__header h2 {
  margin-bottom: 12px;
}

.form__header p {
  color: #ffffff;
  /* Set to 100% white */
  font-size: 1rem;
  line-height: 1.7;
}

.contact__form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 64px);
  /* Increased padding */
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.container--narrow {
  max-width: 960px;
  /* Widened for better form presence */
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form__group--full {
  grid-column: 1 / -1;
}

.form__group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
}

.form__group label span {
  color: var(--clr-brand);
}

.form__group input,
.form__group select,
.form__group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: #fff;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form__group select {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.85);
}

.form__group select option {
  background: #1a1a2e;
  color: #fff;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--clr-brand);
  background: rgba(234, 87, 29, 0.07);
  box-shadow: 0 0 0 3px var(--clr-brand-glow);
}

.form__group textarea {
  resize: vertical;
  min-height: 100px;
}

.form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form__privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--clr-brand);
  margin-top: 2px;
}

.form__privacy label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  cursor: pointer;
}

.form__privacy a {
  color: #f78316;
  text-decoration: underline;
}

.form__note {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
}

.form__note--white {
  color: #ffffff;
  opacity: 1;
}

.form__success {
  display: none;
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(52, 199, 89, 0.15) 0%, rgba(52, 199, 89, 0.05) 100%);
  border: 1px solid rgba(52, 199, 89, 0.4);
  border-radius: var(--radius-xl);
  animation: fadeUpIn 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.form__success.visible {
  display: block;
}

.field-error {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: #ff3b30;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.form__group.error .field-error,
.form__privacy.error .field-error {
  max-height: 40px;
  opacity: 1;
  margin-top: 6px;
}

.form__group.error input {
  border-color: #ff3b30 !important;
  background: rgba(255, 59, 48, 0.05) !important;
}

.form__error {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(255, 59, 48, 0.1);
  border: 1px solid rgba(255, 59, 48, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  color: #ff3b30;
}

.error__icon {
  flex-shrink: 0;
  display: flex;
  color: #ff3b30;
}

.error__icon i {
  width: 24px;
  height: 24px;
}

.error__message {
  margin: 0 !important;
  font-size: 1rem;
  font-weight: 700;
  color: #ff3b30 !important;
  line-height: 1.4;
}

.success__icon {
  width: 72px;
  height: 72px;
  background: #34c759;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success__icon i {
  width: 36px;
  height: 36px;
}

.form__success h3 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 12px;
}

.form__success p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .about__image-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .about__badge-box {
    position: static;
    margin: 0 auto;
    width: fit-content;
    transform: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
  }
}

/* ─── FINAL CTA ──────────────────────────────────────────────── */
.section--final-cta {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.final-cta__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.final-cta__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 20, 60, 0.75) 100%);
}

.final-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.final-cta__logo {
  height: 48px;
  width: auto;
  margin: 0 auto 32px;
}

.final-cta__content h2 {
  color: #fff;
  margin-bottom: 16px;
}

/* final-cta h2 em inherits global gradient clip rule */
.final-cta__content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

/* ─── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: #000;
  padding: 48px 0;
  color: rgba(255, 255, 255, 1);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer__logo {
  height: 32px;
  width: auto;
}

.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer__links {
  display: flex;
  gap: 28px;
}

.footer__links a {
  font-size: 0.85rem;
  color: #ea571d;
  transition: var(--transition);
}

.footer__links a:hover {
  color: #f78316;
}

.footer__copy {
  font-size: 0.8rem;
}

/* ─── MODAL ──────────────────────────────────────────────────── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: backdropIn 0.25s ease;
}

@keyframes backdropIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal__panel {
  position: relative;
  z-index: 1;
  background: var(--clr-bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 920px;
  /* Widened for a more spacious layout */
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: clamp(24px, 4vw, 52px);
  animation: panelIn 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: none;
  /* Firefox */
  box-sizing: border-box;
}

.modal__panel::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal__header h2 {
  color: #fff;
}

.modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
  z-index: 10;
}

.modal__close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.modal__close i {
  width: 20px;
  height: 20px;
}

/* Prevent body scroll when modal open */
body.modal-open {
  overflow: hidden;
}


/* ─── ANIMATIONS ─────────────────────────────────────────────── */
.js-ready [data-anim] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-ready [data-anim].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-anim-delay="100"] {
  transition-delay: 0.1s;
}

[data-anim-delay="200"] {
  transition-delay: 0.2s;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
.loading-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .method__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .method__visual {
    position: static;
  }

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

  .steps__track {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .step__line {
    display: none;
  }
}

@media (max-width: 768px) {
  .method__steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .problem__grid {
    grid-template-columns: 1fr;
  }

  .problem__image-wrap {
    display: none;
  }

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

  .belief__arrow {
    display: none;
  }

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

  .about__img {
    height: 300px;
    border-radius: var(--radius-md);
  }

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

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

  .review__card--featured {
    grid-column: 1;
  }

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

  .stats__row {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0;
    background: transparent;
    border: none;
    margin: 0;
  }

  .stat__item {
    padding: 24px 12px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  }

  .stat__icon i {
    width: 32px;
    height: 32px;
    margin-bottom: 0;
  }

  .stat__icon {
    margin-bottom: 12px;
  }

  .stat__number {
    font-size: 1.3rem;
  }

  .stat__label {
    font-size: 0.6rem;
    padding: 0;
  }

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

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

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

@media (max-width: 480px) {
  .hero__cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__cta-group .btn--large,
  .btn--large {
    font-size: 0.95rem;
    padding: 16px 20px;
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .nav__logo {
    height: 26px;
  }

  .hero__badge {
    font-size: 0.68rem;
    padding: 6px 14px;
    letter-spacing: -0.01em;
    width: 100%;
    justify-content: center;
  }

  .hero__trust .trust__text,
  .hero__trust>.trust__divider {
    display: none !important;
  }

  .hero__trust {
    justify-content: center;
  }

  .trust__item {
    padding: 10px 12px;
  }

  .trust__logo {
    height: 22px;
  }
}

/* ─── SPECIFIC PATTERNS ────────────────────────────────────────── */
#warum {
  background-image: linear-gradient(to bottom, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.92)), url('assets/bilder/pattern-1.webp');
  background-repeat: repeat;
}

#stimmen {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)), url('assets/bilder/pattern-1.webp');
  background-repeat: repeat;
}

/* ─── BTL MODAL SPECIFIC STYLES ───────────────────────────────── */
.modal__panel--large {
  max-width: 1600px;
  width: 95%;
}

.btl-modal__content {
  padding: 20px 10px;
}

.btl-modal__header {
  margin-bottom: 32px;
  text-align: center;
}

.btl-modal__video-section {
  margin-bottom: 100px;
}

.btl-video__container {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.btl-modal__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .btl-modal__grid {
    grid-template-columns: 1fr;
  }

  .btl-intro__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    width: 100%;
    margin-top: 24px;
  }

  .btl-stat {
    min-width: 0;
    padding: 16px 10px;
  }

  .btl-stat__val {
    font-size: 2rem !important;
  }

  .btl-stat__label {
    font-size: 0.65rem !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
}

.btl-modal__text h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--clr-text);
}

.btl-modal__text p {
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.btl-modal__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.btl-modal__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--clr-text);
}

.icon-brand {
  color: var(--clr-brand);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.btl-modal__benefits-box {
  background: var(--clr-bg-light);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
}

.btl-modal__benefits-box h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--clr-text);
}

.btl-modal__target-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.btl-modal__target-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.btl-modal__target-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--clr-brand);
  border-radius: 50%;
}

.btl-modal__cta p {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--clr-text);
}

/* ─── NEW BUTTON STYLE ─── */
.btn--secondary {
  background: rgba(234, 87, 29, 0.08);
  color: var(--clr-brand);
  border: 1.5px solid rgba(234, 87, 29, 0.2);
  padding: 14px 28px;
}

.btn--secondary:hover {
  background: rgba(234, 87, 29, 0.12);
  border-color: var(--clr-brand);
  transform: translateY(-2px);
}

.gravity__cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}

@media (max-width: 480px) {
  .gravity__cta-group {
    flex-direction: column;
  }
}

/* ─── PLYR CUSTOM THEME ─── */
:root {
  --plyr-color-main: var(--clr-brand);
}

.plyr--full-ui input[type=range] {
  color: var(--clr-brand);
}

.plyr__control--overlaid {
  background: rgba(234, 87, 29, 0.85);
}

.plyr__control:hover {
  background: var(--clr-brand) !important;
}

/* ─── DARK MODAL EXTENSIONS ──────────────────────────────────── */
.modal__backdrop--black {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
}



.modal__close--white {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.modal__close--white:hover {
  background: rgba(255, 255, 255, 0.2);
}

.text-white {
  color: #ffffff !important;
}

.text-light {
  color: rgba(255, 255, 255, 0.7) !important;
}

.text-gradient {
  background: var(--clr-brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btl-modal__image-feature {
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btl-modal__image-feature-small {
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 180px;
}

.btl-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.btl-modal__image-feature:hover .btl-feature-img,
.btl-modal__image-feature-small:hover .btl-feature-img {
  transform: scale(1.05);
}

.btl-modal__benefits-box--black {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

.btl-modal__target-list--light li {
  color: rgba(255, 255, 255, 0.6) !important;
}

.problem__reality-check {
  margin-top: 20px;
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btl-modal__faq {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq__mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}

@media (max-width: 640px) {
  .faq__mini-grid {
    grid-template-columns: 1fr;
  }
}

.faq__mini-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.faq__mini-item p {
  font-size: 0.9rem;
}

.center {
  text-align: center;
}

/* ─── NEW BUTTON STYLE: BRAND GLOW ─── */
.btn--brand-glow {
  background: var(--clr-brand-grad);
  color: #fff;
  border: none;
  box-shadow: 0 0 20px rgba(234, 87, 29, 0.4);
  position: relative;
  overflow: hidden;
}

.btn--brand-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn--brand-glow:hover::after {
  opacity: 1;
}

.btn--brand-glow:hover {
  box-shadow: 0 0 35px rgba(234, 87, 29, 0.6);
  transform: translateY(-3px);
}

.btn--glow {
  box-shadow: 0 0 20px rgba(234, 87, 29, 0.5);
}

/* ─── BTL MODAL HERO STYLES ──────────────────────────────────── */
.modal__panel--black {
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0 !important;
  overflow-y: auto;
  /* Enable inner scrolling */
  max-height: 95vh;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.btl-modal__content {
  padding: 0 !important;
  /* Remove padding to allow full-width hero */
}

.btl-modal__hero {
  position: relative;
  height: 350px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 40px;
}

.btl-modal__hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  object-fit: cover;
}

.btl-modal__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 15, 15, 1) 0%, rgba(15, 15, 15, 0.4) 50%, rgba(15, 15, 15, 0.8) 100%);
  z-index: 1;
}

.btl-modal__header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 0;
  border-bottom: none !important;
}

.btl-modal__inner-padding {
  padding: 0 clamp(20px, 5vw, 100px) 100px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Ensure all text in dark modal is light */
.modal--dark .btl-modal__text h3,
.modal--dark .btl-modal__benefits-box h4,
.modal--dark .btl-modal__cta p {
  color: #fff !important;
}

.modal--dark .btl-modal__text p,
.modal--dark .btl-modal__list li,
.modal--dark .btl-modal__target-list li {
  color: rgba(255, 255, 255, 0.75) !important;
}

.mb-20 {
  margin-bottom: 20px;
}

/* Parallax adjustment */
.btl-modal__hero-video {
  will-change: transform;
}

/* ─── BTL MODAL REFINEMENTS ──────────────────────────────────── */
.modal__panel--btl {
  border-radius: 15px !important;
  scrollbar-width: none;
  /* Firefox */
}

.modal__panel--btl::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.modal__close--btl {
  position: sticky;
  top: 24px;
  right: 24px;
  float: right;
  margin-right: 24px;
  margin-bottom: -48px;
  border-radius: 50% !important;
  background: var(--clr-brand-grad);
  color: #fff;
  border: none;
  z-index: 1000;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.modal__close--btl:hover {
  transform: scale(1.1) rotate(90deg);
  background: var(--clr-brand-grad);
}

.btl-modal__hero {
  height: 500px;
  /* Increased height */
  align-items: flex-end;
  /* Push content down */
  padding-bottom: 60px;
}

.btl-title {
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.title-highlight {
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.btl-modal__intro-flex {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.btl-intro__content {
  flex: 1;
}

.btl-intro__stats {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.btl-stat {
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 140px;
}

.btl-stat__val {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--clr-brand);
}

.btl-stat__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.btl-modal__visual-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  margin-bottom: 80px;
}

.btl-visual__main {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 500px;
}

.btl-visual__side {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.btl-visual__thumb {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  flex: 1;
}

.btl-visual__label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btl-modal__features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 100px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 15px;
}

.btl-f-item {
  display: flex;
  gap: 20px;
}

.btl-f-item strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.btl-f-item p {
  font-size: 0.9rem;
}

.btl-video__container {
  margin-top: 40px;
}

.plyr--video {
  border-radius: 20px;
  overflow: hidden;
}

.mb-40 {
  margin-bottom: 40px;
}

/* Modal FAQ Accordion Adjustments */
.faq__list--btl .faq__item {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.faq__list--btl .faq__question {
  color: #fff !important;
}

@media (max-width: 1024px) {

  .btl-modal__visual-grid,
  .btl-modal__features-row {
    grid-template-columns: 1fr;
  }

  .btl-modal__intro-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .btl-visual__main {
    height: 350px;
  }
}

.eyebrow--glow {
  text-shadow: 0 0 10px rgba(234, 87, 29, 0.5);
  border: 1px solid rgba(234, 87, 29, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}

.modal__close--btl i {
  width: 24px;
  height: 24px;
  stroke-width: 2.5px;
}

/* ─── BTL MODAL GALLERY ROW ─── */
.btl-modal__visual-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.btl-visual__item {
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btl-visual__item--white {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.btl-visual__item--white img {
  object-fit: contain !important;
}

/* ─── OPTIMAL SECTION ─── */
.btl-modal__optimal-section {
  margin-bottom: 100px;
}

.optimal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.optimal__card {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.optimal__card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(234, 87, 29, 0.3);
  transform: translateY(-5px);
}

.optimal__icon-wrap {
  width: 54px;
  height: 54px;
  background: var(--clr-brand-grad);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.optimal__icon-wrap i {
  width: 28px;
  height: 28px;
}

.optimal__text h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.optimal__text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ─── VIDEO TITLE ─── */
.video-title {
  font-size: clamp(2rem, 6vw, 4rem) !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 50px;
  line-height: 1.05;
}

/* ─── APPLE STYLE FAQ ─── */
.faq__list--apple {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item--apple {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 0 !important;
}

.faq__question--apple {
  padding: 24px 0 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.3rem !important;
  font-weight: 500 !important;
  color: #fff !important;
  transition: opacity 0.3s ease;
}

.faq__question--apple:hover {
  opacity: 0.7;
}

.faq__icon--apple {
  color: var(--clr-brand);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__question--apple[aria-expanded="true"] .faq__icon--apple {
  transform: rotate(45deg);
}

.faq__answer--apple {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer-inner {
  padding: 0 0 32px 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .btl-modal__visual-row {
    grid-template-columns: 1fr;
  }

  .btl-visual__item {
    height: 350px;
  }

  .faq__question--apple {
    font-size: 1.1rem !important;
  }
}

/* ─── HIGHLIGHT LABELS & GLOW ─── */
.btl-visual__label {
  background: var(--clr-brand-grad) !important;
  border: none !important;
  box-shadow: 0 0 20px rgba(234, 87, 29, 0.4);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 20px !important;
}

/* ─── FAQ PLUS/MINUS TOGGLE ─── */
.faq__plus,
.faq__minus {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq__minus {
  display: none;
  position: absolute;
}

.faq__question--apple[aria-expanded="true"] .faq__plus {
  display: none;
}

.faq__question--apple[aria-expanded="true"] .faq__minus {
  display: block;
  position: relative;
  transform: rotate(180deg);
}

.faq__icon--apple {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── APPLE STYLE BENTO GRID ──────────────────────────────────── */
.container--narrow {
  max-width: 1200px;
}

.title--xl {
  font-size: clamp(2.5rem, 8vw, 4.5rem) !important;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.1;
}

.bento__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 350px);
  gap: 24px;
  margin: 60px 0;
}

.bento__card {
  background: #fff;
  border-radius: 32px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── CORE CYCLE STYLES (GLOBAL) ────────────────────────────── */
.cycle__visual-container {
  display: block;
  position: relative;
  margin: 40px auto;
}

.cycle__indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: var(--clr-brand-grad);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 0 20px var(--clr-brand-glow);
  animation: travel-circle 12s infinite linear;
  border: 2px solid #fff;
}

.cycle__indicator i {
  width: 18px;
  height: 18px;
  stroke-width: 3.5px;
}

.cycle__step {
  position: absolute;
  min-width: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  opacity: 1 !important;
  padding: 20px;
  animation: sync-card-highlight 12s infinite ease-in-out;
}

@keyframes travel-circle {
  0% {
    offset-distance: 0%;
  }

  100% {
    offset-distance: 100%;
  }
}

@keyframes sync-card-highlight {

  0%,
  15%,
  100% {
    transform: var(--card-translate) scale(1.08);
    border-color: var(--clr-brand);
    box-shadow: 0 15px 30px rgba(234, 87, 29, 0.1);
  }

  25%,
  90% {
    transform: var(--card-translate) scale(1);
    border-color: rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  }
}

/* ─── DESKTOP & TABLET (CIRCLE) ────────────────────────────── */
@media (min-width: 512px) {
  .cycle__visual-container {
    height: 500px;
    width: 500px;
    flex: none;
  }

  .cycle__visual-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='500' height='500' viewBox='0 0 500 500' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='250' cy='250' r='180' stroke='%23ea571d' stroke-width='2' stroke-dasharray='6 6' opacity='0.2'/%3E%3C/svg%3E");
    background-size: contain;
    z-index: 0;
  }

  .cycle__indicator {
    offset-path: circle(180px at 50% 50%);
    animation-delay: -9s;
  }

  .cycle__step {
    width: 170px;
    height: 140px;
  }

  /* Shared Positions */
  .cycle__step:nth-child(2) {
    top: 0;
    left: 50%;
    --card-translate: translateX(-50%);
    animation-delay: 0s;
  }

  .cycle__step:nth-child(3) {
    top: 50%;
    right: -15px;
    --card-translate: translateY(-50%);
    animation-delay: -9s;
  }

  .cycle__step:nth-child(4) {
    bottom: 0;
    left: 50%;
    --card-translate: translateX(-50%);
    animation-delay: -6s;
  }

  .cycle__step:nth-child(5) {
    top: 50%;
    left: -15px;
    --card-translate: translateY(-50%);
    animation-delay: -3s;
  }
}

/* Reality Check Text Styling */
.reality__text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--clr-text-muted);
  margin-top: 20px;
}

.reality__text strong {
  color: var(--clr-text);
}

/* ─── APP-STYLE CARD FOR CYCLE ──────────────────────────────── */
.editorial__text--app-card {
  background: #fff;
  padding: 50px;
  border-radius: 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.02);
  margin-right: -40px;
  /* Slight overlap for editorial feel */
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .editorial__text--app-card {
    margin-right: 0;
    padding: 30px;
  }
}

/* ─── APPLE STYLE GRAVITY SECTION ────────────────────────────── */
.gravity__feature-grid {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.g-feature {
  flex: 1;
  background: #fbfbfd;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.g-feature:hover {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.g-feature__icon {
  margin-bottom: 10px;
  color: var(--clr-brand);
}

.g-feature__icon i {
  width: 24px;
  height: 24px;
}

.g-feature strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1d1d1f;
}

.gravity__benefits-clean {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 50px;
  padding: 30px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-item--clean {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #444;
}

.benefit-item--clean i {
  color: var(--clr-brand);
  width: 18px;
  height: 18px;
}

.gravity__cta-wrap {
  margin-top: 20px;
}

@media (max-width: 640px) {
  .gravity__feature-grid {
    flex-direction: column;
  }

  .gravity__benefits-clean {
    grid-template-columns: 1fr;
  }
}

/* Editorial Visuals */
.visual__card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  background: #f5f5f7;
  height: 100%;
}

.visual__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(20px, 4vw, 40px);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  color: #fff;
  z-index: 2;
}

.visual__pills {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.visual__pills span {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
}

.problem__visual-col {
  display: flex;
  flex-direction: column;
}

.visual__card--tall {
  flex: 1;
}

/* Cycle Icon Refinements (Global & Reinforced) */
.cycle__step .step__icon-wrapper {
  width: 60px !important;
  height: 60px !important;
  flex: 0 0 60px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--clr-bg-light) !important;
  border-radius: 16px !important;
  margin-bottom: 12px !important;
  transition: all 0.3s ease;
}

.cycle__step .step__icon-wrapper i {
  width: 28px !important;
  height: 28px !important;
  stroke-width: 2.2px !important;
}

.step__text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-text);
  letter-spacing: -0.01em;
  text-align: center;
}

/* Specific Step Overrides */
.cycle__step--highlight {
  background: #fff9f6 !important;
  /* Subtle reddish background */
  border-color: rgba(234, 87, 29, 0.15) !important;
}

.cycle__step--highlight .step__icon-wrapper {
  color: var(--clr-brand) !important;
  background: #fff !important;
}

.cycle__step--danger {
  background: #1d1d1f !important;
  border-color: #000 !important;
}

.cycle__step--danger .step__text {
  color: #fff !important;
}

.cycle__step--danger .step__icon-wrapper {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.problem__reality-check {
  margin-top: 20px;
  padding: 32px 40px;
  background: var(--clr-bg-light);
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* ─── COMPACT EDITORIAL LAYOUT ───────────────────────────────── */
.problem__new-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
  margin: 60px 0;
}

@media (max-width: 1024px) {
  .problem__new-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .problem__visual-col {
    order: 2;
  }

  /* Keywords Move Below on Mobile/Tablet */
  .visual__card {
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .visual__img {
    height: 400px !important;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .visual__caption {
    position: relative !important;
    background: transparent !important;
    color: var(--clr-text) !important;
    padding: 0 !important;
  }

  .visual__pills span {
    background: var(--clr-bg-light) !important;
    color: var(--clr-text) !important;
    border-color: rgba(0, 0, 0, 0.05) !important;
  }
}

/* ─── MOBILE STACK (UNDER 512PX) ────────────────────────────── */
@media (max-width: 512px) {
  .cycle__visual-container {
    height: auto !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    margin: 40px 0 !important;
  }

  .cycle__visual-container::before,
  .cycle__indicator {
    display: none !important;
  }

  .cycle__step {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    min-height: 100px !important;
    padding: 24px !important;
    animation: none !important;
    /* Stop animation on small mobile */
  }

  .problem__reality-check {
    padding: 32px 24px;
  }

  .reality__title {
    font-size: 1.5rem;
  }
}

.problem__content-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.editorial__text--app-card {
  margin-right: 0 !important;
}

.visual__card--tall {
  height: 100%;
}


/* ─── APPLE STYLE BELIEF COMPARISON ──────────────────────────── */
.section--belief {
  background: #000;
  padding: 120px 0;
}

.belief__comparison {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 60px 0;
  position: relative;
}

.belief__side {
  flex: 1;
}

.belief__glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  padding: 50px;
  height: 100%;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.belief__glass--brand {
  background: rgba(82, 183, 136, 0.08);
  border-color: rgba(82, 183, 136, 0.3);
  box-shadow: 0 0 40px rgba(82, 183, 136, 0.15);
}

.belief__side--new:hover .belief__glass--brand {
  border-color: rgba(82, 183, 136, 0.5);
  transform: translateY(-5px);
}

.belief__status {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666;
  margin-bottom: 20px;
}

.belief__status--brand {
  color: #52b788;
}

.belief__h {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.belief__sub {
  color: #888;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.belief__checklist {
  list-style: none;
  margin: 0 0 40px 0;
  padding: 0;
}

.belief__checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.belief__checklist i {
  width: 18px;
  height: 18px;
  color: #666;
}

.belief__side--new i {
  color: #52b788;
}

.belief__outcome {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 600;
  color: #666;
}

.belief__outcome--brand {
  color: #fff;
  border-top-color: rgba(82, 183, 136, 0.4) !important;
}

/* VS Circle */
.belief__vs {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.vs__circle {
  width: 60px;
  height: 60px;
  background: #1d1d1f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.belief__final p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #fff;
  opacity: 1;
  margin-bottom: 8px;
}

.belief__final h3 {
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  font-weight: 700;
  margin-top: 0;
  letter-spacing: -0.02em;
}

@media (max-width: 1024px) {
  .belief__comparison {
    flex-direction: column;
    gap: 40px;
  }

  .belief__vs {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    margin: -10px 0;
  }

  .vs__circle {
    margin: 0 auto;
  }
}

/* ─── APPLE STYLE METHOD SECTION ────────────────────────────── */
.method__editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.method__timeline {
  position: relative;
  margin-top: 50px;
  padding-left: 40px;
}

.m-step {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.m-step__num {
  position: absolute;
  left: -40px;
  top: 0;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--clr-brand);
  background: #fff;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.m-step__content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1d1d1f;
}

.m-step__content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

.m-step__line {
  position: absolute;
  left: 12px;
  top: 10px;
  bottom: 40px;
  width: 1px;
  background: #eee;
  z-index: 0;
}

/* Floating video */
.method__floating-video {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
  background: #000;
}

.method__video-file {
  width: 100%;
  display: block;
  opacity: 0.9;
}

.video__label {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
  .method__editorial {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* ─── METHOD UPDATE: 4:5 VIDEO & 1600PX CONTAINER ─────────── */
.container--narrow {
  max-width: 1600px !important;
}

.method__floating-video {
  aspect-ratio: 4/5;
}

.method__video-file {
  height: 100%;
  object-fit: cover;
}
/* ─── LEGAL MODALS (Impressum & Datenschutz) ─── */
.modal__panel--legal {
  max-width: 900px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 60px;
  background: #fff;
  color: var(--clr-text);
  border-radius: 24px;
}

.legal-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--clr-brand);
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clr-brand);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 10px;
}

.legal-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.legal-content p {
  margin-bottom: 18px;
  line-height: 1.7;
  font-size: 1.05rem;
  color: rgba(0,0,0,0.8);
}

.legal-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.legal-content strong {
  color: #000;
}

.legal-content a {
  color: var(--clr-brand);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .modal__panel--legal {
    padding: 40px 20px;
  }
  .legal-content h1 {
    font-size: 1.8rem;
  }
}

/* Dark close button for legal modals on white background */
.modal__panel--legal .modal__close {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #000;
}

.modal__panel--legal .modal__close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--clr-brand);
}
