/* =========================================================
   BECKER CONSULTING GMBH
   Single page · 3 color themes (Orange / Navy / Emerald)
   ========================================================= */

:root{
  /* ========== ACCENT — ROLEX GREEN (single theme) ========== */
  --accent:           #1f5f49;       /* Submariner / Wimbledon green */
  --accent-2:         #3d8c6f;       /* mid green */
  --accent-3:         #6db89c;       /* highlight green */
  --accent-deep:      #0d3a2a;       /* darkest forest */
  --accent-electric:  #277354;       /* saturated mid */
  --accent-secondary: #155a3f;
  --accent-soft:      rgba(31,95,73,0.22);
  --accent-soft-light:rgba(13,58,42,0.14);
  --particle-rgb:     109, 184, 156;
  --on-accent:        #f5f6f3;

  /* Glow channel — premium subtle */
  --shadow-rgb:      70, 142, 110;
  --shadow-rgb-soft: 21, 90, 63;
  --btn-shadow:       0 12px 40px -10px rgba(var(--shadow-rgb), 0.55);
  --btn-shadow-hover: 0 16px 48px -10px rgba(var(--shadow-rgb), 0.75);
  --aura:             0 30px 60px -20px rgba(var(--shadow-rgb-soft), 0.6);

  /* Dark palette — cool warm forest */
  --bg:           #0a0f0d;
  --bg-2:         #0f1613;
  --bg-3:         #15201b;
  --surface:      #1d2b24;
  --line:         rgba(255,255,255,0.07);
  --line-strong:  rgba(255,255,255,0.16);
  --text:         #e6e9e5;
  --text-dim:     #94a097;
  --text-mute:    #5f6b62;

  /* Light palette — warm neutral */
  --light:        #f5f6f3;
  --light-2:      #e8e9e5;
  --light-3:      #ffffff;
  --line-light:   rgba(20,30,24,0.08);
  --line-light-strong: rgba(20,30,24,0.18);
  --ink:          #1c2620;
  --ink-dim:      #43504a;
  --ink-mute:     #7b8580;

  /* Aliases — legacy names route through neutral accent */
  --gold:         var(--accent);
  --gold-2:       var(--accent-2);
  --gold-3:       var(--accent-3);
  --gold-deep:    var(--accent-deep);
  --gold-electric:var(--accent-electric);
  --gold-soft:    var(--accent-soft);
  --gold-soft-light: var(--accent-soft-light);
  --copper:       var(--accent-secondary);
  --blue:         var(--accent);
  --blue-2:       var(--accent-2);
  --blue-3:       var(--accent-3);
  --blue-deep:    var(--accent-deep);
  --blue-electric:var(--accent-electric);
  --blue-soft:    var(--accent-soft);
  --blue-soft-light: var(--accent-soft-light);
  --steel:        var(--accent-secondary);

  --display: 'Inter', system-ui, -apple-system, sans-serif;
  --sans:    'Inter', system-ui, -apple-system, sans-serif;

  --radius: 8px;
  --container: 1280px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* All other [data-theme] palettes removed — single Rolex-green identity */

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

html{ scroll-behavior: smooth; }

body{
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

@media (max-width: 1024px){ body{ cursor: auto; } }

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

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

/* =========================================================
   CURSOR
   ========================================================= */
.cursor-dot, .cursor-ring{
  position: fixed; top:0; left:0;
  pointer-events: none;
  z-index: 999999;
  border-radius: 50%;
  transition: transform 0.12s var(--ease), background-color 0.3s, border-color 0.3s;
}
.cursor-dot{
  width:6px; height:6px;
  background: var(--light);
  transform: translate(-50%,-50%);
}
.cursor-ring{
  width:34px; height:34px;
  border:1px solid rgba(245, 246, 243, 0.7);
  transform: translate(-50%,-50%);
  transition: transform 0.25s var(--ease-out), width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s;
}
.cursor-ring.hover{
  width:56px; height:56px;
  border-color: var(--light);
}
body.cursor-on-light .cursor-dot{
  background: var(--bg);
}
body.cursor-on-light .cursor-ring{
  border-color: rgba(10, 15, 13, 0.7);
}
body.cursor-on-light .cursor-ring.hover{
  border-color: var(--bg);
}
@media (max-width:1024px){ .cursor-dot,.cursor-ring{ display:none; } }

/* =========================================================
   SCROLL PROGRESS
   ========================================================= */
.scroll-progress{
  position: fixed; top:0; left:0;
  width: 0%; height: 2px;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue-2));
  z-index: 9998;
  transition: width 0.08s linear;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav{
  position: fixed; top:0; left:0; right:0;
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.4s var(--ease);
}
.nav.scrolled{
  background: rgba(10, 15, 13, 0.45);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.nav.on-light.scrolled{
  background: rgba(238, 243, 250, 0.6);
  border-bottom: 1px solid var(--line-light);
}
.nav.on-light.scrolled .nav-links a,
.nav.on-light.scrolled .nav-dropdown-toggle { color: var(--ink); }
.nav.on-light.scrolled .nav-links a:hover,
.nav.on-light.scrolled .nav-dropdown-toggle:hover { color: var(--blue-deep); }
.nav.on-light.scrolled .burger span{ background: var(--ink); }

.nav-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}

.brand{ display: flex; align-items: center; position: relative; z-index: 1001; }
.brand-logo{
  height: 44px;
  width: auto;
  transition: filter 0.3s var(--ease);
}
.nav.on-light .brand-logo{
  filter: brightness(0);
}

.nav-links{ display: flex; gap: 36px; }
.nav-links a{
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
  text-transform: uppercase;
}
.nav-links a::after{
  content:''; position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--blue-2);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover{ color: var(--blue-2); }
.nav-links a:hover::after{ width: 100%; }

/* MEGA MENU */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: none;
  transition: color 0.3s;
}
.nav-dropdown-toggle:hover { color: var(--blue-2); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s var(--ease);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  z-index: 1000;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 260px;
  text-decoration: none !important;
  color: var(--text);
  padding: 16px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}
.dropdown-card::after { display: none !important; }
.dropdown-card:hover {
  border-color: var(--line-strong);
  background: var(--bg-3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -10px rgba(0,0,0,0.6);
}
.dropdown-card-img {
  width: 100%;
  height: 140px;
  border-radius: calc(var(--radius) - 2px);
  background-size: cover;
  background-position: center;
}
.dropdown-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--light);
  text-transform: none;
  letter-spacing: 0;
}
.dropdown-card-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-top: -6px;
}

.cta-btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--accent);
  color: var(--on-accent);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.40) 0%, rgba(255,255,255,0.10) 35%, transparent 55%, rgba(0,0,0,0.18) 100%),
    linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 45%, var(--accent-deep) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.25), var(--btn-shadow);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  white-space: nowrap;
  text-align: center;
}
.cta-btn::before{
  content:''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}
.cta-btn:hover{ transform: translateY(-2px); box-shadow: var(--btn-shadow-hover), inset 0 1px 0 rgba(255,255,255,0.5), inset 0 -1px 0 rgba(0,0,0,0.25); }
.cta-btn:hover::before{ opacity: 1; }
.cta-btn > *{ position: relative; z-index: 1; }
.cta-btn svg{ width:14px; height:14px; transition: transform 0.4s var(--ease); }
.cta-btn:hover svg{ transform: translateX(6px); }

.burger{
  display: none;
  background: none; border: none;
  width: 32px; height: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}
.burger span{ display: block; width: 100%; height: 1px; background: var(--text); transition: all 0.3s var(--ease); }
.burger.open span:nth-child(1){ transform: translateY(11px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity: 0; }
.burger.open span:nth-child(3){ transform: translateY(-11px) rotate(-45deg); }

.mobile-menu{
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100%); height: 100vh;
  background: var(--bg-2);
  padding: 120px 40px 40px;
  display: flex; flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  z-index: 999;
  border-left: 1px solid var(--line);
}
.mobile-menu.open{ transform: translateX(0); }
.mobile-menu a{
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 0;
  transition: color 0.3s, padding 0.3s;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.mobile-menu a:hover{ color: var(--blue-2); padding-left: 8px; }
.mobile-menu .mobile-cta{
  margin-top: 24px;
  border: 1px solid var(--blue);
  text-align: center;
  font-size: 14px;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-2);
  padding: 18px;
}
@media (max-width:980px){
  .nav-links, .cta-btn{ display: none; }
  .burger{ display: flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero-bg{ position: absolute; inset: 0; z-index: 0; }
.hero-image{
  position: absolute; inset: 0;
  background-image: url('./images/openart-021779100285366c4d1375e87394ab549407fb4b34ce52ee76147_0_1779100316247_b75af514.png');
  background-size: cover;
  background-position: center;
  filter: contrast(1.05) brightness(0.45) saturate(0.9) hue-rotate(-10deg);
  transform: scale(1.05);
  animation: heroZoom 22s var(--ease) infinite alternate;
}
@keyframes heroZoom{ from{ transform: scale(1.05); } to  { transform: scale(1.15); } }
.hero-overlay{
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(var(--shadow-rgb), 0.22), transparent 50%),
    radial-gradient(ellipse at 20% 70%, rgba(var(--shadow-rgb-soft), 0.28), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.85) 60%, var(--bg) 100%);
}
#particles, .particles-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; }

.hero-content{
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.hero-eyebrow{
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease) 0.4s forwards;
  font-weight: 500;
}
.hero-eyebrow .dot{
  width: 6px; height: 6px;
  background: var(--blue-2);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--blue-2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse{ 0%,100%{ opacity: 1; } 50%{ opacity: 0.4; } }

.hero-title{
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 90px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 40px;
  text-transform: uppercase;
}
.hero-title .line{ display: block; overflow: hidden; padding: 2px 0; }
.hero-title .line span{
  display: block;
  transform: translateY(110%);
  animation: revealUp 1.1s var(--ease) forwards;
}
.hero-title .line:nth-child(1) span{ animation-delay: 0.5s; }
.hero-title .line:nth-child(2) span{ animation-delay: 0.65s; }
.hero-title .line:nth-child(3) span{ animation-delay: 0.8s; }
.hero-title em{
  font-style: normal;
  color: var(--blue-2);
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue-2), var(--blue-electric));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes revealUp{ from{ transform: translateY(110%); } to  { transform: translateY(0); } }
@keyframes fadeUp{ to{ opacity: 1; transform: translateY(0); } }

.hero-sub{
  font-size: clamp(14px, 1.1vw, 17px);
  max-width: 640px;
  color: var(--text-dim);
  margin-bottom: 50px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease) 1.1s forwards;
  font-weight: 400;
}

.hero-cta{
  display: flex; gap: 18px; flex-wrap: wrap;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease) 1.3s forwards;
}

/* Buttons */
.btn{
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  border: none;
  font-family: var(--sans);
  white-space: nowrap;
  text-align: center;
}
.btn svg{ width: 16px; height: 16px; transition: transform 0.4s var(--ease); }
.btn:hover svg{ transform: translateX(6px); }
.btn-primary{
  background: linear-gradient(135deg, var(--blue-electric), var(--blue-deep));
  color: #fff;
  border: 1px solid var(--blue);
  box-shadow: var(--btn-shadow);
}
.btn-primary::before{
  content:''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-electric));
  opacity: 0;
  transition: opacity 0.4s;
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: var(--btn-shadow-hover); }
.btn-primary:hover::before{ opacity: 1; }
.btn-primary span, .btn-primary svg{ position: relative; z-index: 1; }
.btn-ghost{
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}
.btn-ghost:hover{ border-color: var(--blue-2); color: var(--blue-2); background: var(--blue-soft); }
.btn-ghost .play{ color: var(--blue-2); margin-right: 4px; font-size: 10px; }
.btn-full{ width: 100%; justify-content: center; }

.hero-bullets{
  list-style: none;
  margin-bottom: 44px;
  max-width: 620px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease) 1.1s forwards;
}
.hero-bullets li{
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 11px 0;
  font-size: 16px;
  color: var(--text);
  line-height: 1.55;
}
.hero-bullets li .check{
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-electric), var(--blue-deep));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
  box-shadow: 0 4px 14px -4px rgba(var(--shadow-rgb), 0.6);
}
.hero-bullets li strong{
  color: var(--text);
  font-weight: 700;
}

.hero-stats{
  display: flex; gap: 60px; flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  max-width: 720px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease) 1.5s forwards;
}
.hero-stats .stat{ display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong{
  font-family: var(--display);
  font-size: 44px;
  font-weight: 700;
  color: var(--blue-2);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stats span{
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
}

.hero-scroll{
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-mute);
  z-index: 2;
  font-weight: 500;
}
.hero-scroll .scroll-line{
  width: 1px; height: 60px;
  background: linear-gradient(180deg, var(--blue-2), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll .scroll-line::after{
  content:''; position: absolute;
  top: 0; left: 0;
  width: 100%; height: 30%;
  background: var(--blue-2);
  animation: scrollMove 2.4s ease-in-out infinite;
}
@keyframes scrollMove{ 0%{ transform: translateY(-100%); } 100%{ transform: translateY(400%); } }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee{
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 26px 0;
}
.marquee-track{
  display: flex; gap: 40px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.marquee-track span{ display: inline-block; }
.marquee-track span:nth-child(even){ color: var(--blue-2); }
@keyframes marquee{ to{ transform: translateX(-50%); } }

/* =========================================================
   SECTIONS GENERIC
   ========================================================= */
.section{ padding: 140px 0; position: relative; }
.section-dark{ background: var(--bg); color: var(--text); }
.section-light{
  background: var(--light);
  color: var(--ink);
  position: relative;
}
.section-light::before{
  content:'';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 50%, rgba(var(--shadow-rgb), 0.08), transparent 100%),
    radial-gradient(ellipse 60% 50% at 90% 50%, rgba(var(--shadow-rgb-soft), 0.06), transparent 100%);
  pointer-events: none;
}
.section-light > *{ position: relative; z-index: 1; }

.section-head{ margin-bottom: 90px; max-width: 900px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow{
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.4em;
  margin-right: -0.4em;
  text-transform: uppercase;
  color: var(--blue-2);
  padding-bottom: 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--blue-soft);
  position: relative;
  font-weight: 600;
}
.eyebrow::after{
  content:''; position: absolute;
  left: 0; bottom: -1px;
  width: 24px; height: 1px;
  background: var(--blue);
}
.eyebrow-dark{ color: var(--blue-deep); border-bottom-color: var(--blue-soft-light); }
.eyebrow-dark::after{ background: var(--blue-deep); }

.display{
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text);
  text-transform: uppercase;
}
.display em{
  font-style: normal;
  color: var(--blue-2);
  background: linear-gradient(135deg, var(--blue-2), var(--blue-electric));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.display-dark{ color: var(--ink); }
.display-dark em{
  color: var(--blue-deep);
  background: linear-gradient(135deg, var(--blue-electric), var(--blue-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead{
  font-size: 18px;
  color: var(--text-dim);
  max-width: 620px;
  margin: 28px 0 36px;
  line-height: 1.7;
  font-weight: 400;
}
.lead-dark{ color: var(--ink-dim); }

.reveal{ opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.visible{ opacity: 1; transform: translateY(0); }

/* =========================================================
   PAIN — light
   ========================================================= */
.pain-grid{
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}
.pain-image{ position: relative; }
.pain-img-frame{
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: top center;
  filter: saturate(0.95) contrast(1.05);
  border: 1px solid var(--line-light);
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.pain-img-frame::after{
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,20,36,0.28));
}
.pain-tag{
  position: absolute;
  top: 24px; left: 24px;
  padding: 10px 18px;
  background: rgba(238,243,250,0.95);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid var(--line-light);
  font-weight: 600;
  border-radius: 6px;
}

.pain-intro{
  font-size: 16px;
  color: var(--ink-dim);
  line-height: 1.75;
  margin-top: 24px;
}
.pain-intro strong{ color: var(--ink); font-weight: 700; }
.pain-outro{
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.75;
  margin-top: 22px;
}
.pain-outro strong{
  color: var(--blue-deep);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pain-list{
  list-style: none;
  margin-top: 28px;
  margin-bottom: 16px;
}
.pain-list li{
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: start;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
}
.pain-list .cross{
  display: grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--blue-deep);
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 700;
}
.pain-list strong{
  display: block;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 600;
}
.pain-list div > *:not(strong){
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.65;
}
.pain-list div{
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.65;
}

@media (max-width:880px){
  .pain-grid{ grid-template-columns: 1fr; gap: 50px; }
}

/* =========================================================
   SOLUTION — dark (Lösung)
   ========================================================= */
.solution-grid{
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 80px;
  align-items: center;
}
.solution-list{
  list-style: none;
  margin: 36px 0 40px;
  display: flex; flex-direction: column;
  gap: 6px;
}
.solution-list li{
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 14px 0;
  font-size: 17px;
  color: var(--text);
  line-height: 1.55;
  border-bottom: 1px solid var(--line);
}
.solution-list li:last-child{ border-bottom: none; }
.check-circle{
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue-electric), var(--blue-deep));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 6px 18px -6px rgba(var(--shadow-rgb), 0.6);
  margin-top: 1px;
}
.solution-list strong{ color: var(--text); font-weight: 700; }

.solution-image{ position: relative; }
.solution-img-frame{
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  filter: saturate(0.95) contrast(1.05);
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.solution-img-frame::after{
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,11,22,0.5));
}
.solution-badge{
  position: absolute;
  bottom: -30px; right: -30px;
  width: 170px; height: 170px;
  background: linear-gradient(135deg, var(--blue-electric), var(--blue-deep));
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  color: #fff;
  box-shadow: var(--aura);
  transform: rotate(-8deg);
  transition: transform 0.6s var(--ease);
}
.solution-badge:hover{ transform: rotate(0); }
.solution-badge strong{
  display: block;
  font-family: var(--display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 2px;
}
.solution-badge span{
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.solution-seal{
  position: absolute;
  bottom: -30px; right: -30px;
  width: 170px; z-index: 10;
  display: block;
  transform: rotate(-8deg);
  transition: transform 0.6s var(--ease);
}
.solution-seal img{
  width: 100%; height: auto; display: block;
  border-radius: var(--radius);
}
.solution-seal:hover{
  transform: rotate(0) scale(1.05);
}

@media (max-width:880px){
  .solution-grid{ grid-template-columns: 1fr; gap: 60px; }
  .solution-badge{ right: 20px; bottom: -20px; width: 130px; height: 130px; }
  .solution-badge strong{ font-size: 40px; }
  .solution-seal{ right: 20px; bottom: -20px; width: 130px; }
}

/* =========================================================
   6 SCHRITTE — light timeline
   ========================================================= */
.section-process{ overflow: hidden; }
.process-bg{
  position: absolute;
  top: 0; right: -8%;
  width: 50%; height: 100%;
  background-image: url('https://images.unsplash.com/photo-1605980776566-0486c3ac7617?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
  filter: hue-rotate(190deg) saturate(0.6);
}
.process-timeline{
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 20px 0;
}
.timeline-line{
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--blue-deep) 10%, var(--blue-deep) 90%, transparent);
  transform: translateX(-50%);
}
.timeline-item{
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
  position: relative;
}
.timeline-item.alt .timeline-content{
  grid-column: 3;
  text-align: left;
  padding-left: 50px;
  border-left: 1px solid var(--line-light);
  border-right: none;
  padding-right: 0;
}
.timeline-item:not(.alt) .timeline-content{
  grid-column: 1;
  text-align: right;
  padding-right: 50px;
  border-right: 1px solid var(--line-light);
}
.timeline-marker{
  grid-column: 2;
  justify-self: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--light);
  border: 1px solid var(--blue-deep);
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-deep);
  position: relative;
  z-index: 2;
  transition: all 0.4s var(--ease);
  letter-spacing: -0.02em;
}
.timeline-marker::after{
  content:''; position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed var(--blue-soft-light);
  opacity: 0;
  transition: opacity 0.4s;
}
.timeline-item:hover .timeline-marker{
  background: linear-gradient(135deg, var(--blue-electric), var(--blue-deep));
  color: #fff;
  border-color: var(--blue);
  transform: scale(1.08);
  box-shadow: 0 10px 30px -10px rgba(var(--shadow-rgb), 0.5);
}
.timeline-item:hover .timeline-marker::after{ opacity: 1; }
.timeline-content{
  padding: 30px 0;
}
.timeline-content h3{
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--ink);
  text-transform: uppercase;
}
.timeline-content p{
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.7;
  max-width: 420px;
  display: inline-block;
}
.timeline-item.alt .timeline-content p{ text-align: left; }
.timeline-item:not(.alt) .timeline-content p{ text-align: right; }

@media (max-width:780px){
  .timeline-line{ left: 32px; }
  .timeline-item, .timeline-item.alt{ grid-template-columns: 64px minmax(0, 1fr); gap: 20px; }
  .timeline-marker{ grid-column: 1; }
  .timeline-content, .timeline-item.alt .timeline-content, .timeline-item:not(.alt) .timeline-content{
    grid-column: 2;
    text-align: left !important;
    padding: 16px 0 !important;
    border: none !important;
  }
  .timeline-content h3 {
    font-size: 24px;
    word-break: break-word;
    hyphens: auto;
  }
  .timeline-item:not(.alt) .timeline-content p,
  .timeline-item.alt .timeline-content p{ text-align: left; display: block; }
}

.process-cta{
  text-align: center;
  margin-top: 70px;
  padding-top: 40px;
  position: relative;
}
.process-cta::before{
  content:'';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-deep), transparent);
}

/* =========================================================
   TESTIMONIALS — dark
   ========================================================= */
.section-klienten{
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}

/* =========================================================
   INTERVIEWS LIST
   ========================================================= */
.interviews-list {
  display: flex;
  flex-direction: column;
  gap: 140px;
  margin-top: 60px;
}
.interview-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Featured Erfolgsinterview — transparent (no card / box) */
.interview{
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 70px;
  align-items: center;
  padding: 0;
  background: transparent;
  border: none;
  position: relative;
  overflow: visible;
  width: 100%;
  max-width: 1100px;
}
.interview::before{ content: none; display: none; }
.interview-video{ position: relative; }
.interview-thumb{
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform 0.5s var(--ease);
}
.interview-thumb::after{
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,11,22,0.2), rgba(5,11,22,0.55));
  transition: background 0.4s;
}
.interview-thumb:hover{ transform: scale(1.02); }
.interview-thumb:hover::after{ background: linear-gradient(180deg, rgba(5,11,22,0.1), rgba(5,11,22,0.35)); }
.play-circle{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 2;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.5);
  transition: transform 0.4s var(--ease);
}
.play-circle span{
  color: var(--blue-deep);
  font-size: 26px;
  margin-left: 5px;
}
.interview-thumb:hover .play-circle{ transform: translate(-50%, -50%) scale(1.08); }
.interview-stars{
  position: absolute;
  bottom: 16px; left: 16px;
  z-index: 2;
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.interview-body{ display: flex; flex-direction: column; gap: 22px; }
.interview-video-wrap{ display: flex; flex-direction: column; gap: 20px; }
.interview.alt .interview-video-wrap{ order: 2; }
.interview.alt .interview-body{ order: 1; }

.interview-tag{
  display: inline-block;
  width: max-content;
  background: var(--blue-soft);
  border: 1px solid var(--blue);
  color: var(--blue-2);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.interview-block h4{
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--blue-2);
  margin-bottom: 10px;
}
.interview-block p{
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
}
.interview-block p strong{ color: var(--text); font-weight: 600; }

@media (max-width:980px){
  .interview{ grid-template-columns: 1fr; gap: 40px; padding: 0; }
  .interview.alt .interview-video-wrap{ order: 1; }
  .interview.alt .interview-body{ order: 2; }
}

.klienten-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}
.klienten-grid-3{
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
}
.klient{
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 40px 36px;
  display: flex; flex-direction: column;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.klient.feature{
  grid-row: span 2;
  background-size: cover;
  background-position: center;
  min-height: 540px;
  border: 1px solid var(--blue-soft);
}
.klient-overlay{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,11,22,0.35) 0%, rgba(5,11,22,0.96) 70%),
    linear-gradient(135deg, rgba(var(--shadow-rgb-soft), 0.25), transparent);
}
.klient-content{ position: relative; z-index: 1; margin-top: auto; }
.klient-tag{
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--blue-2);
  padding: 6px 14px;
  border: 1px solid var(--blue);
  margin-bottom: 32px;
  font-weight: 600;
}
.klient.feature h3{
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  color: var(--blue-2);
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--blue-2), var(--blue-electric));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.klient.feature p{
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 320px;
}

.klient:not(.feature):hover{
  border-color: var(--blue-soft);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}
.klient-quote-mark{
  font-family: var(--display);
  font-size: 80px;
  font-weight: 700;
  color: var(--blue-2);
  line-height: 0.7;
  margin-bottom: 6px;
  opacity: 0.5;
}
.klient:not(.feature) h3{
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--blue-2);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.klient:not(.feature) p{
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 28px;
  flex: 1;
}
.klient footer{
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.klient footer strong{
  display: block;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 4px;
  font-weight: 600;
}
.klient footer span{
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute);
}

@media (max-width:980px){
  .klienten-grid{ grid-template-columns: 1fr 1fr; }
  .klient.feature{ grid-row: auto; grid-column: span 2; }
}
@media (max-width:680px){
  .klienten-grid{ grid-template-columns: 1fr; }
  .klient.feature{ grid-column: auto; min-height: 380px; }
}

/* =========================================================
   INTERRUPT CTA
   ========================================================= */
.interrupt-cta{
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.interrupt-bg{
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1611365892117-00ac5db6a7e8?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: saturate(0.7) brightness(0.7);
}
.interrupt-cta::before{
  content:''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(var(--shadow-rgb), 0.22), transparent 60%),
    linear-gradient(90deg, rgba(5,11,22,0.88), rgba(5,11,22,0.55));
}
.interrupt-inner{ position: relative; max-width: 1000px; }

/* =========================================================
   KONZEPT — light, with laptop
   ========================================================= */
.konzept-grid{
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 80px;
  align-items: start;
}
.konzept-pillars{ margin-top: 50px; }
.pillar{
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 26px;
  padding: 26px 0;
  border-top: 1px solid var(--line-light);
}
.pillar:last-child{ border-bottom: 1px solid var(--line-light); }
.pillar-num{
  font-family: var(--display);
  font-size: 30px;
  font-weight: 700;
  color: var(--blue-deep);
  line-height: 1;
  letter-spacing: -0.02em;
}
.pillar h4{
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.pillar p{
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.65;
}

/* Devices visual */
.konzept-visual {
  perspective: 1500px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 150px;
  height: 500px;
  width: 100%;
}
.device-macbook, .device-iphone {
  position: absolute;
  transform-style: preserve-3d;
  will-change: transform;
}
.device-macbook {
  width: 100%;
  max-width: 480px;
  z-index: 1;
  transform: translateX(0) translateZ(-50px) rotateY(-8deg) rotateX(5deg);
}
.device-iphone {
  width: 180px;
  z-index: 2;
  transform: translateX(0) translateZ(50px) rotateY(-15deg) rotateX(5deg);
}

.macbook-screen {
  background: linear-gradient(135deg, #0f1d33, #050b16);
  border: 2px solid #5a6069;
  border-bottom: none;
  border-radius: 10px 10px 3px 3px;
  padding: 8px 8px 10px 8px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.4),
              inset 0 0 0 1px rgba(255,255,255,0.15);
}
.macbook-base {
  height: 16px;
  background: linear-gradient(180deg, #7b8084, #484d54);
  border-radius: 0 0 14px 14px;
  margin: 0 -14px;
  position: relative;
  box-shadow: inset 0 2px 2px rgba(255,255,255,0.3),
              0 20px 40px -10px rgba(0,0,0,0.3);
}
.macbook-base::before {
  content:''; position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 6px;
  background: #3a3f45;
  border-radius: 0 0 8px 8px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}
.macbook-content {
  background: var(--bg-2);
  border-radius: var(--radius);
  aspect-ratio: 1446 / 948;
  overflow: hidden;
}
.macbook-content .device-screenshot{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.iphone-screen {
  background: linear-gradient(135deg, #0f1d33, #050b16);
  border: 3px solid #5a6069;
  border-radius: 28px;
  padding: 5px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6),
              inset 0 0 0 2px rgba(255,255,255,0.15),
              0 0 0 1px #3a3f45;
  position: relative;
}
.iphone-screen::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 14px;
  background: #050b16;
  border-radius: 0 0 10px 10px;
  z-index: 2;
}
.iphone-content {
  background: var(--bg-2);
  border-radius: 22px;
  aspect-ratio: 399 / 756;
  overflow: hidden;
}
.iphone-content .device-screenshot{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.dashboard-header{
  display: flex; align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.dashboard-header span{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--line-strong);
}
.dashboard-header span:nth-child(1){ background: #ff5f56; }
.dashboard-header span:nth-child(2){ background: #ffbd2e; }
.dashboard-header span:nth-child(3){ background: #27c93f; }
.dashboard-header strong{
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
  font-family: var(--display);
}
.dashboard-body{ display: flex; flex-direction: column; gap: 14px; }
.dash-stat{ display: flex; flex-direction: column; gap: 2px; }
.dash-stat strong{
  font-family: var(--display);
  font-size: 44px;
  font-weight: 700;
  color: var(--blue-2);
  line-height: 1;
  letter-spacing: -0.02em;
}
.dash-stat span{
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.dash-bars{
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  margin: 14px 0;
}
.bar{
  flex: 1;
  height: var(--h, 50%);
  background: linear-gradient(180deg, var(--blue-2), var(--blue-deep));
  border-radius: 2px 2px 0 0;
  opacity: 0.85;
  animation: barRise 1.2s var(--ease) forwards;
  transform-origin: bottom;
  transform: scaleY(0);
}
.bar:nth-child(1){ animation-delay: 0.1s; }
.bar:nth-child(2){ animation-delay: 0.18s; }
.bar:nth-child(3){ animation-delay: 0.26s; }
.bar:nth-child(4){ animation-delay: 0.34s; }
.bar:nth-child(5){ animation-delay: 0.42s; }
.bar:nth-child(6){ animation-delay: 0.5s; }
.bar:nth-child(7){ animation-delay: 0.58s; }
@keyframes barRise{ to { transform: scaleY(1); } }
.dash-row{
  display: flex; justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.dash-row span{ color: var(--text-dim); }
.dash-row strong{ color: var(--text); font-weight: 600; }

@media (max-width:880px){
  .konzept-grid{ grid-template-columns: 1fr; }
  .konzept-visual{ position: relative; top: 0; height: 360px; margin-top: 20px; transform: none; }
  .device-macbook{ transform: translateX(-45px) translateZ(-50px) rotateY(-8deg) rotateX(5deg); max-width: 320px; }
  .device-macbook .macbook-screen{ padding: 6px 6px 8px 6px; border-radius: 8px 8px 3px 3px; }
  .device-iphone{ transform: translateX(95px) translateZ(50px) rotateY(-15deg) rotateX(5deg); width: 110px; }
  .device-iphone .iphone-screen{ border-width: 2px; border-radius: 20px; padding: 4px; }
  .device-iphone .iphone-screen::before{ width: 34px; height: 10px; border-radius: 0 0 8px 8px; }
  .device-iphone .iphone-content{ border-radius: 14px; }
}

/* =========================================================
   STRATEGIE CTA
   ========================================================= */
.cta-strategie{ padding: 100px 0 140px; }
.strategie-card{
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--blue-soft);
  padding: 80px;
  display: grid;
  grid-template-columns: 7fr 4fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.strategie-card::before{
  content:''; position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--blue-soft), transparent 70%);
  pointer-events: none;
}
.strategie-perks{
  display: grid;
  gap: 14px;
  margin: 30px 0 40px;
  position: relative;
}
.strategie-perks > div{
  display: flex; gap: 14px;
  font-size: 15px;
  color: var(--text);
  align-items: center;
}
.strategie-perks .check{
  display: grid; place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-2);
  font-size: 12px;
  flex-shrink: 0;
  font-weight: 700;
}
.strategie-stats{
  display: flex; flex-direction: column;
  gap: 20px;
  position: relative;
}
.stat-card{
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 24px 28px;
  display: flex; flex-direction: column; gap: 4px;
  transition: all 0.4s var(--ease);
  border-radius: var(--radius);
}
.stat-card:hover{ border-color: var(--blue-soft); transform: translateX(-4px); }
.stat-card strong{
  font-family: var(--display);
  font-size: 44px;
  font-weight: 700;
  color: var(--blue-2);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-card strong small{
  font-size: 18px;
  color: var(--text-mute);
  font-weight: 500;
}
.stat-card span{
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 4px;
  font-weight: 500;
}

@media (max-width:980px){
  .strategie-card{ grid-template-columns: 1fr; padding: 50px 36px; gap: 40px; }
}

/* =========================================================
   TEAM — light
   ========================================================= */
.section-team{ background: var(--light-2); }
.team-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.team-card{
  background: transparent;
  border: 1px solid var(--line-light);
  display: flex; flex-direction: column;
  transition: all 0.5s var(--ease);
  overflow: hidden;
  border-radius: var(--radius);
}
.team-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -30px rgba(10,20,36,0.20);
  border-color: var(--blue-soft-light);
}
.team-img{
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: top;
  filter: saturate(0.95);
  transition: filter 0.5s, transform 0.5s var(--ease);
}
.team-card:hover .team-img{ filter: saturate(1.05); transform: scale(1.03); }
.team-body{ padding: 40px 36px; }
.team-role{
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--blue-soft-light);
  font-weight: 600;
}
.team-card h3{
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 18px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.team-card p{
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.7;
  margin-bottom: 24px;
}
.team-credentials{
  list-style: none;
  border-top: 1px solid var(--line-light);
}
.team-credentials li{
  padding: 12px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 14px;
  color: var(--ink);
  position: relative;
  padding-left: 22px;
}
.team-credentials li::before{
  content:'✓';
  position: absolute;
  left: 0;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 700;
}

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

/* =========================================================
   LIMITED PLATES CTA
   ========================================================= */
.section-limited{
  position: relative;
  overflow: hidden;
}
.limited-bg{
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1605980776566-0486c3ac7617?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.14;
  filter: saturate(0.7) brightness(0.6);
}
.section-limited::before{
  content:''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(var(--shadow-rgb), 0.16), transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, rgba(5,11,22,0.88) 100%);
}
.limited-inner{ position: relative; max-width: 900px; text-align: center; margin: 0 auto; }
.limited-text .eyebrow{ display: inline-block; }
.limited-text .lead{ margin-left: auto; margin-right: auto; }
.limited-counter{
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin: 50px 0 50px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.limited-counter > div{ display: flex; flex-direction: column; gap: 4px; }
.limited-counter strong{
  font-family: var(--display);
  font-size: 72px;
  font-weight: 700;
  color: var(--blue-2);
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 0 24px rgba(var(--shadow-rgb), 0.65), 0 0 40px rgba(var(--shadow-rgb), 0.3);
}
.limited-counter span{
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
}

/* =========================================================
   FAQ — light
   ========================================================= */
.section-faq .faq{
  max-width: 920px;
  margin: 0 auto;
}
.faq-item{
  border-top: 1px solid var(--line-light);
  padding: 0;
}
.faq-item:last-child{ border-bottom: 1px solid var(--line-light); }
.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 32px 0;
  display: flex; justify-content: space-between;
  align-items: center;
  gap: 32px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.35;
  color: var(--ink);
  transition: color 0.3s;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary:hover{ color: var(--blue-deep); }
.faq-toggle{
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.faq-toggle::before, .faq-toggle::after{
  content:''; position: absolute;
  background: var(--blue-deep);
  transition: transform 0.4s var(--ease);
}
.faq-toggle::before{
  top: 50%; left: 0;
  width: 100%; height: 1px;
  transform: translateY(-50%);
}
.faq-toggle::after{
  top: 0; left: 50%;
  width: 1px; height: 100%;
  transform: translateX(-50%);
}
.faq-item[open] .faq-toggle::after{ transform: translateX(-50%) rotate(90deg); }
.faq-item p{
  padding: 0 60px 36px 0;
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.8;
  max-width: 780px;
}

/* =========================================================
   CONTACT — dark
   ========================================================= */
.section-contact{ position: relative; overflow: hidden; }
.contact-bg{
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1605980776566-0486c3ac7617?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  filter: saturate(0.7) brightness(0.7);
}
.contact-grid{
  position: relative;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: start;
}
.contact-list{
  list-style: none;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.contact-list li{
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.contact-list li strong{
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-2);
  font-weight: 600;
  align-self: center;
}
.contact-list li span{ color: var(--text); }

.contact-form{
  background: var(--bg);
  border: 1px solid var(--line-strong);
  padding: 50px 44px;
  position: relative;
}
.contact-form::after{
  content:''; position: absolute;
  top: -1px; right: -1px;
  width: 60px; height: 60px;
  border-top: 1px solid var(--blue-2);
  border-right: 1px solid var(--blue-2);
}
.contact-form h3{
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 36px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.field{ position: relative; margin-bottom: 28px; }
.field input,
.field select,
.field textarea{
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 18px 0 10px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.4s;
  appearance: none;
  font-weight: 400;
}
.field textarea{ resize: vertical; min-height: 80px; }
.field select{ cursor: pointer; }
.field select option{ background: var(--bg); color: var(--text); }
.field label{
  position: absolute;
  top: 18px;
  left: 0;
  font-size: 14px;
  color: var(--text-mute);
  pointer-events: none;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.05em;
}
.field input:focus, .field input:not(:placeholder-shown), .field input:valid,
.field textarea:focus, .field textarea:not(:placeholder-shown),
.field select:focus, .field select:valid{ border-color: var(--blue-2); }
.field input:focus + label, .field input:not(:placeholder-shown) + label, .field input:valid + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field select:focus + label, .field select:valid + label{
  top: 0;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-2);
  font-weight: 600;
}

.form-note{
  margin-top: 18px;
  font-size: 11px;
  color: var(--text-mute);
  line-height: 1.6;
}
.form-success{
  display: none;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--blue-2);
  background: var(--blue-soft);
}
.form-success.show{ display: block; animation: fadeUp 0.6s var(--ease) forwards; }
.form-success strong{
  display: block;
  font-family: var(--display);
  font-size: 18px;
  color: var(--blue-2);
  margin-bottom: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.form-success span{ font-size: 13px; color: var(--text-dim); }

@media (max-width:980px){
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-form{ padding: 36px 28px; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer{
  background: var(--bg);
  padding: 100px 0 30px;
  border-top: 1px solid var(--line);
}
.footer-grid{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-grid h5{
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-2);
  margin-bottom: 24px;
  font-weight: 600;
}
.footer-grid a, .footer-grid span{
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  padding: 6px 0;
  transition: color 0.3s;
}
.footer-grid a:hover{ color: var(--blue-2); }
.footer-claim{
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 360px;
}
.footer-bottom{
  display: flex; justify-content: space-between;
  padding-top: 30px;
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  flex-wrap: wrap; gap: 12px;
}
.footer-made{ color: var(--text-mute); }

@media (max-width:880px){
  .footer {
    padding: 60px 0 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
  .footer-claim {
    margin-top: 16px;
  }
  .footer-bottom {
    padding-top: 20px;
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

/* =========================================================
   STATUS NOTIFICATIONS
   ========================================================= */
.status-notifications{
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.status-notification{
  background: rgba(15, 20, 26, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  padding: 14px 18px;
  color: var(--text);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.status-notification.show{
  transform: translateX(0);
  opacity: 1;
}
.status-notification.hide{
  transform: translateX(-120%);
  opacity: 0;
}
.sn-icon{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sn-icon svg{ width: 16px; height: 16px; }
.sn-text{
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sn-text strong{
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  font-family: var(--sans);
}
.sn-text span{
  font-size: 11px;
  color: var(--text-dim);
  font-family: var(--sans);
}

@media (max-width: 680px){
  .status-notifications{
    bottom: 16px;
    left: 16px;
    right: 16px;
  }
  .status-notification{
    transform: translateY(120%);
  }
  .status-notification.show{
    transform: translateY(0);
  }
  .status-notification.hide{
    transform: translateY(120%);
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:680px){
  .container{ padding: 0 22px; }
  .section{ padding: 100px 0; }
  .section-head{ margin-bottom: 60px; }
  .hero{ padding: 130px 0 60px; }
  .hero-stats{ gap: 34px; }
  .hero-stats strong{ font-size: 36px; }
  .nav-inner{ padding: 0 22px; }
  .hero-content{ padding: 0 22px; }
  .nav.scrolled{ padding: 12px 0; }
  .brand-mark{ font-size: 22px; }
  .brand-text strong{ font-size: 12px; }
  .brand-text em{ font-size: 9px; }
  .limited-counter strong{ font-size: 48px; }
  .limited-counter{ gap: 30px; }
}

::selection{ background: var(--blue); color: #fff; }

/* =========================================================
   SHARED COMPONENTS (apply, karriere, team-vertical, pill)
   ========================================================= */

/* APPLY STEPS — light section, 3 columns */
.section-apply{ padding: 140px 0; }
.section-apply .section-head{ margin-bottom: 70px; }
.section-apply .lead{ margin-left: auto; margin-right: auto; }
.section-apply .lead strong{ color: var(--ink); font-weight: 700; }
.apply-steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  position: relative;
}
.apply-step{
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.apply-step:not(:last-child)::after{
  content:'';
  position: absolute;
  top: 44px; right: -25px;
  width: 50px; height: 1px;
  background: linear-gradient(90deg, var(--blue-soft-light), transparent);
}
.apply-icon{
  width: 90px; height: 90px;
  margin: 0 auto 32px;
  border-radius: 50%;
  background: var(--light-3);
  border: 1px solid var(--blue-soft-light);
  display: grid; place-items: center;
  color: var(--blue-deep);
  transition: all 0.5s var(--ease);
  position: relative;
}
.apply-icon::before{
  content:'';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed var(--blue-soft-light);
  opacity: 0;
  transition: opacity 0.4s;
}
.apply-icon svg{ width: 38px; height: 38px; }
.apply-step:hover .apply-icon{
  background: linear-gradient(135deg, var(--blue-electric), var(--blue-deep));
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -10px rgba(var(--shadow-rgb), 0.5);
}
.apply-step:hover .apply-icon::before{ opacity: 1; inset: -16px; }
.apply-step h3{
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
  color: var(--ink);
  text-transform: uppercase;
  min-height: 70px;
}
.apply-step p{
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.75;
}
.apply-step p strong{ color: var(--ink); font-weight: 700; }
.apply-cta{
  text-align: center;
  margin-top: 70px;
}

@media (max-width:880px){
  .apply-steps{ grid-template-columns: 1fr; gap: 50px; }
  .apply-step:not(:last-child)::after{ display: none; }
  .apply-step h3{ min-height: auto; }
}

/* KARRIERE / JOBS */
.section-karriere{ padding: 110px 0; }
.karriere-grid{
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
  align-items: stretch;
}
.karriere-card{
  background: transparent;
  border: 1px solid var(--line-light);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 0.4s var(--ease);
  border-radius: var(--radius);
}
.karriere-card:hover{ box-shadow: 0 30px 60px -30px rgba(10,20,36,0.18); transform: translateY(-4px); }
.karriere-img-tag {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.95);
}
.karriere-body{ padding: 36px 32px; }
.karriere-body h3{
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  margin: 14px 0;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.karriere-body p{
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.7;
  margin-bottom: 26px;
}
.karriere-map{
  position: relative;
  border: 1px solid var(--line-light);
  overflow: hidden;
  min-height: 380px;
  border-radius: var(--radius);
}
.karriere-map iframe{
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(30%);
  position: absolute; inset: 0;
}
.karriere-pin{
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 14px 20px;
  box-shadow: 0 10px 30px -10px rgba(10,20,36,0.25);
  z-index: 2;
  border-radius: var(--radius);
}
.karriere-pin strong{
  display: block;
  font-family: var(--display);
  font-size: 16px;
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.karriere-pin span{
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

@media (max-width:880px){
  .karriere-grid{ grid-template-columns: 1fr; }
  .karriere-map{ min-height: 320px; }
}

/* TEAM CARD — vertical structure */
.team-card{ padding: 0; }
.team-card .team-body{ padding: 32px 36px 8px; }
.team-card .team-body:first-child{ padding-bottom: 18px; }
.team-card .team-body h3{
  font-family: var(--display);
  font-size: 24px;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-weight: 700;
}
.team-card .team-body .team-role{
  display: inline-block;
  border-bottom: none;
  padding-bottom: 0;
  margin: 4px 0 0;
}
.team-card .team-img{
  aspect-ratio: 4/5;
}
.team-card .team-body--bottom{
  padding: 28px 36px 38px;
  display: flex; flex-direction: column;
  gap: 14px;
}
.team-card .team-body--bottom p{
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.75;
  margin: 0;
}

/* VARIANT PILL */
.variant-pill{
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 1500;
  display: inline-flex;
  align-items: center;
  background: rgba(10,20,36,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 6px 6px 6px 18px;
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.6);
  gap: 4px;
  transition: all 0.4s var(--ease);
}
.variant-pill:hover{ transform: translateY(-2px); box-shadow: 0 28px 70px -16px rgba(0,0,0,0.7); }
.vp-label{
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-right: 8px;
  font-family: var(--sans);
}
.vp-tab{
  padding: 9px 18px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.3s;
  font-family: var(--sans);
}
.vp-tab:hover:not(.active){ color: #fff; }
.vp-tab.active{
  background: linear-gradient(135deg, var(--blue-electric), var(--blue-deep));
  color: #fff;
}

@media (max-width:560px){
  .variant-pill{ bottom: 14px; right: 14px; padding: 4px 4px 4px 14px; }
  .vp-label{ display: none; }
  .vp-tab{ padding: 8px 14px; font-size: 10px; }
}

/* =========================================================
   TYPOGRAPHY — Inter, mixed case, premium-neutral
   ========================================================= */

.hero-title,
.display,
.outcome h3,
.timeline-content h3,
.klient h3,
.klient.feature h3,
.team-card h3,
.interview-block h4,
.pillar h4,
.contact-form h3,
.faq-item summary,
.brand-text strong,
.brand-mark,
.form-success strong,
.dashboard-header strong,
.dash-stat strong,
.stat-card strong,
.hero-stats strong,
.solution-badge strong,
.pillar-num,
.timeline-marker,
.limited-counter strong,
.nav-links a,
.mobile-menu a,
.apply-step h3,
.karriere-body h3,
.karriere-pin strong,
.outcome-icon{
  text-transform: none;
  font-family: var(--display);
}

.hero-title{ font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; }
.display{ font-weight: 600; letter-spacing: -0.025em; line-height: 1.08; }
.outcome h3, .timeline-content h3, .klient h3, .team-card h3,
.interview-block h4, .pillar h4, .contact-form h3, .apply-step h3,
.karriere-body h3{
  font-weight: 600; letter-spacing: -0.015em;
}
.faq-item summary{ font-weight: 500; letter-spacing: -0.01em; }
.team-card .team-body h3{ font-weight: 700; letter-spacing: -0.02em; font-size: 24px; }

.brand-mark{ font-weight: 700; letter-spacing: -0.01em; }
.brand-text strong{ font-weight: 600; letter-spacing: 0.02em; font-size: 14px; }
.nav-links a{ font-weight: 500; letter-spacing: 0.02em; font-size: 13px; color: var(--text-dim); }
.mobile-menu a{ font-weight: 600; letter-spacing: -0.01em; font-size: 30px; }

/* Em accents — solid accent color, no gradient/clip */
.display em,
.hero-title em{
  font-style: normal;
  color: var(--accent-2);
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: currentColor;
  font-weight: inherit;
}
.display-dark em{ color: var(--accent-deep); }

/* Marquee — clean uppercase */
.marquee-track{
  font-family: var(--display);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.marquee-track span:nth-child(even){ color: var(--accent-2); }

/* Hero section background image — visible through overlay */
.hero-image{
  background-image: url('./images/openart-021779100285366c4d1375e87394ab549407fb4b34ce52ee76147_0_1779100316247_b75af514.png');
  background-position: center 30%;
  filter: contrast(1.05) brightness(0.25) saturate(0.75);
  opacity: 0.85;
}
/* Overlay: keep left side legible for the text, let image breathe on the right */
.hero-overlay{
  background:
    radial-gradient(ellipse at 0% 100%, rgba(var(--shadow-rgb),0.20), transparent 55%),
    radial-gradient(ellipse at 100% 0%, rgba(var(--shadow-rgb-soft),0.18), transparent 60%),
    linear-gradient(95deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 38%, rgba(0,0,0,0.30) 60%, rgba(0,0,0,0.15) 100%),
    linear-gradient(180deg, transparent 0%, transparent 60%, rgba(0,0,0,0.55) 85%, var(--bg) 100%);
}

.process-bg, .interrupt-bg, .limited-bg, .contact-bg{ filter: saturate(0.7) brightness(0.7); }

/* Buttons — accent gradient (cascaded glow via --btn-shadow*) */
.btn-primary{
  background: linear-gradient(135deg, var(--accent-electric), var(--accent-deep));
  border-color: var(--accent);
  color: var(--on-accent);
  box-shadow: var(--btn-shadow);
}
.btn-primary:hover{ box-shadow: var(--btn-shadow-hover); }
.btn-primary::before{ background: linear-gradient(135deg, var(--accent), var(--accent-electric)); }

/* =========================================================
   HERO — split layout + image placeholder
   ========================================================= */
.hero{ min-height: 100vh; padding: 130px 0 90px; }
.hero-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.hero-left{ min-width: 0; }
.hero-title{
  font-size: clamp(26px, 3.5vw, 48px);
  margin-bottom: 28px;
  max-width: 720px;
}
.hero-bullets{ margin-bottom: 36px; }
.hero-bullets li{ font-size: 15px; }

/* Image placeholder on right */
.hero-visual{
  position: relative;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.hero-img-wrap{
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.hero-img-placeholder{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(255,255,255,0.025) 14px, rgba(255,255,255,0.025) 28px),
    linear-gradient(160deg, var(--bg-2), var(--bg-3));
  border: 1px dashed var(--accent-soft);
  border-radius: 4px;
  color: var(--accent-2);
  overflow: hidden;
}
.hero-img-placeholder::after{
  content:'';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--accent-soft), transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}
.ph-icon{ width: 56px; height: 56px; opacity: 0.7; position: relative; z-index: 1; }
.ph-text{
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  position: relative; z-index: 1;
}
.ph-hint{
  font-size: 12px;
  color: var(--text-mute);
  font-style: italic;
  position: relative; z-index: 1;
}
.hero-img-tag{
  position: absolute;
  top: 18px; left: 18px;
  padding: 8px 14px;
  background: rgba(10,10,12,0.85);
  backdrop-filter: blur(10px);
  color: var(--text);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--line-strong);
  z-index: 2;
}
.hero-rating-images{
  position: absolute;
  bottom: -80px; right: -20px;
  display: flex;
  gap: 14px;
  z-index: 3;
}
.hero-rating-images img{
  height: 125px;
  width: auto;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.6);
  transition: transform 0.4s var(--ease);
}
.hero-rating-images img:hover{
  transform: translateY(-4px) scale(1.03);
}

@media (max-width:880px){
  .hero{ padding: 100px 0 60px; min-height: auto; }
  .hero-scroll{ display: none; }
  .hero-split{ display: flex; flex-direction: column; gap: 30px; }
  .hero-left, .hero-visual{ display: contents; }
  .hero-title{ order: 1; font-size: clamp(28px, 8vw, 40px); margin-bottom: 0; text-align: center; }
  .hero-img-wrap{ order: 2; aspect-ratio: 16/9; width: 100%; }
  .hero-cta{ order: 3; flex-direction: column; width: 100%; gap: 14px; margin: 10px 0 20px 0; }
  .hero-cta .btn{ width: 100%; justify-content: center; }
  .hero-rating-images{ order: 4; position: relative; bottom: auto; right: auto; margin: 0 0 20px 0; gap: 16px; justify-content: center; width: 100%; display: flex; align-items: center; }
  .hero-rating-images img{ height: 75px; border-radius: var(--radius); box-shadow: none; }
  .hero-bullets{ order: 5; margin-top: 0; margin-bottom: 20px; }
  
  .marquee-track{ animation-duration: 12s; }
}

/* ---- METALLIC BUTTONS ---- */
.btn-primary{
  background:
    /* top sheen */
    linear-gradient(180deg,
      rgba(255,255,255,0.40) 0%,
      rgba(255,255,255,0.10) 35%,
      transparent 55%,
      rgba(0,0,0,0.18) 100%),
    /* base metal gradient */
    linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 45%, var(--accent-deep) 100%);
  border: 1px solid var(--accent);
  box-shadow:
    var(--btn-shadow),
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 -1px 0 rgba(0,0,0,0.25);
  color: var(--on-accent);
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::before{
  content:'';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.25) 0%,
    transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}
.btn-primary::after{
  content:'';
  position: absolute;
  top: 0; bottom: 0;
  left: -55%;
  width: 36%;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(255,255,255,0.55) 50%,
    transparent 100%);
  transform: skewX(-22deg);
  transition: left 0.85s var(--ease);
  pointer-events: none;
  z-index: 0;
  filter: blur(1px);
}
.btn-primary > *{ position: relative; z-index: 1; }
.btn-primary:hover{ transform: translateY(-2px); box-shadow: var(--btn-shadow-hover), inset 0 1px 0 rgba(255,255,255,0.5), inset 0 -1px 0 rgba(0,0,0,0.25); }
.btn-primary:hover::after{ left: 130%; }
.btn-primary:hover::before{ opacity: 1; }

.btn-ghost{
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0.04) 100%),
    rgba(255,255,255,0.02);
  border: 1px solid var(--line-strong);
  position: relative;
  overflow: hidden;
}
.btn-ghost::after{
  content:'';
  position: absolute;
  top: 0; bottom: 0;
  left: -55%;
  width: 36%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.16) 50%, transparent);
  transform: skewX(-22deg);
  transition: left 0.85s var(--ease);
  pointer-events: none;
}
.btn-ghost:hover::after{ left: 130%; }

.cta-btn::after{
  content:'';
  position: absolute;
  top: 0; bottom: 0;
  left: -55%;
  width: 36%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  transform: skewX(-22deg);
  transition: left 0.85s var(--ease);
  pointer-events: none;
  z-index: 0;
  filter: blur(1px);
}
.cta-btn:hover::after{ left: 130%; }

/* ---- HERO SUN — soft glow leaking in from off-screen LEFT (origin hidden) ---- */
.hero-sun{
  position: absolute;
  /* The actual sun sits OUTSIDE the viewport up-and-left so you
     only see the light leaking in, not the source. */
  top: -440px; left: -360px;
  width: 1100px; height: 1100px;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle at center,
    rgba(255,238,200,0.55) 0%,
    rgba(255,222,168,0.30) 14%,
    rgba(255,200,140,0.16) 28%,
    rgba(255,180,115,0.07) 42%,
    transparent 65%);
  mix-blend-mode: screen;
  filter: blur(8px);
  animation: sunDrift 18s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes sunDrift{
  0%   { opacity: 0.85; transform: translate(0, 0) scale(1); }
  35%  { opacity: 1;    transform: translate(28px, -14px) scale(1.04); }
  65%  { opacity: 0.92; transform: translate(-18px, 22px) scale(0.98); }
  100% { opacity: 0.85; transform: translate(0, 0) scale(1); }
}

/* ---- HERO RAYS — soft asymmetric god rays from off-screen top-left ---- */
.hero-rays{
  position: absolute;
  /* Wider than viewport and offset, so the convergence point is
     beyond the top-left corner — origin is never visible. */
  top: -260px; left: -360px;
  width: 160%; height: 150%;
  pointer-events: none;
  z-index: 2;
  transform-origin: 0% 0%;
  /* Asymmetric beam widths and gaps → no two rays identical.
     `from 92deg at 0% 0%` puts the 0-stop just past east, so
     gradient stops at 0–90deg sweep south (down-into-section)
     from the off-screen top-left corner. */
  background: conic-gradient(from 92deg at 0% 0%,
    transparent 0deg 4deg,
    rgba(255,240,205,0.16) 6deg,
    rgba(255,240,205,0.10) 11deg,
    transparent 14deg 23deg,
    rgba(255,240,205,0.22) 27deg,
    rgba(255,240,205,0.13) 33deg,
    transparent 36deg 45deg,
    rgba(255,240,205,0.14) 48deg,
    rgba(255,240,205,0.08) 53deg,
    transparent 56deg 67deg,
    rgba(255,240,205,0.19) 71deg,
    rgba(255,240,205,0.11) 76deg,
    transparent 79deg 90deg,
    transparent 90deg 360deg);
  mix-blend-mode: screen;
  /* Heavier blur makes the beams feel like atmospheric haze
     rather than hard CG rays. */
  filter: blur(8px) saturate(0.95);
  /* Edge mask so beams fade out before the page bg cut-off — kills
     the visible "edge" of the conic gradient. */
  -webkit-mask-image: radial-gradient(ellipse 120% 100% at 0% 0%, #000 0%, #000 55%, transparent 90%);
          mask-image: radial-gradient(ellipse 120% 100% at 0% 0%, #000 0%, #000 55%, transparent 90%);
  animation: raysBreathe 22s ease-in-out infinite;
  will-change: transform, opacity, filter;
}
/* Second, slower-moving ray layer at a different angle so the
   two layers crossfade and produce a constantly-shifting field. */
.hero-rays::after{
  content:'';
  position: absolute; inset: 0;
  background: conic-gradient(from 95deg at 0% 0%,
    transparent 0deg 9deg,
    rgba(255,235,195,0.12) 13deg,
    rgba(255,235,195,0.06) 18deg,
    transparent 22deg 38deg,
    rgba(255,235,195,0.15) 42deg,
    rgba(255,235,195,0.08) 47deg,
    transparent 51deg 62deg,
    rgba(255,235,195,0.10) 66deg,
    transparent 70deg 90deg,
    transparent 90deg 360deg);
  filter: blur(14px);
  mix-blend-mode: screen;
  animation: raysCrossfade 31s ease-in-out infinite;
}

@keyframes raysBreathe{
  0%   { transform: rotate(-2deg) translate(0, 0); opacity: 0.85; filter: blur(8px) saturate(0.95); }
  25%  { transform: rotate(1deg)  translate(14px, 6px); opacity: 1; filter: blur(7px) saturate(1); }
  55%  { transform: rotate(-1deg) translate(-10px, -8px); opacity: 0.78; filter: blur(10px) saturate(0.9); }
  80%  { transform: rotate(2deg)  translate(6px, 10px); opacity: 0.95; filter: blur(8px) saturate(1); }
  100% { transform: rotate(-2deg) translate(0, 0); opacity: 0.85; filter: blur(8px) saturate(0.95); }
}
@keyframes raysCrossfade{
  0%   { opacity: 0.4; transform: rotate(3deg) translate(-12px, -6px); }
  50%  { opacity: 0.95; transform: rotate(-2deg) translate(18px, 10px); }
  100% { opacity: 0.4;  transform: rotate(3deg) translate(-12px, -6px); }
}

/* ---- HERO IMAGE (right column) ---- */
.hero-img{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05) brightness(0.95);
  border: 1px solid var(--line-strong);
}
.hero-img-glow{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255,220,170,0.28), transparent 55%),
    linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.4));
  pointer-events: none;
  z-index: 2;
}
.hero-img-wrap{
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.04);
}

/* ---- PAIN PLACEHOLDER ---- */
.pain-img-placeholder{
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(26,24,20,0.03) 14px, rgba(26,24,20,0.03) 28px),
    linear-gradient(160deg, var(--light-3), var(--light-2));
  border: 1px dashed var(--accent-soft);
  color: var(--accent-deep);
  position: relative;
  overflow: hidden;
}
.pain-img-placeholder::after{
  content:'';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 20%, var(--accent-soft), transparent 60%);
  pointer-events: none;
}
.pain-img-placeholder .ph-icon{ width: 56px; height: 56px; opacity: 0.55; position: relative; z-index: 1; }
.pain-img-placeholder .ph-text{ color: var(--ink); font-weight: 600; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; position: relative; z-index: 1; }
.pain-img-placeholder .ph-hint{ color: var(--ink-mute); font-size: 12px; font-style: italic; position: relative; z-index: 1; }

/* ---- ILLUMINATED CTA (shared background + rays) ---- */
.illuminated{ position: relative; overflow: hidden; }
.illuminated > .container{ position: relative; z-index: 4; }
.illum-bg{
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.85) brightness(0.45) contrast(1.05);
  z-index: 0;
}
.illum-overlay{
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(var(--shadow-rgb), 0.26), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(var(--shadow-rgb-soft), 0.20), transparent 60%),
    linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.78) 55%, rgba(0,0,0,0.90) 100%);
  z-index: 1;
}
.illum-rays{
  position: absolute;
  top: -260px; left: -360px;
  width: 160%; height: 150%;
  z-index: 3;
  pointer-events: none;
  transform-origin: 0% 0%;
  background: conic-gradient(from 92deg at 0% 0%,
    transparent 0deg 5deg,
    rgba(255,240,205,0.14) 8deg,
    rgba(255,240,205,0.08) 13deg,
    transparent 16deg 26deg,
    rgba(255,240,205,0.19) 30deg,
    rgba(255,240,205,0.11) 35deg,
    transparent 38deg 49deg,
    rgba(255,240,205,0.12) 52deg,
    rgba(255,240,205,0.07) 57deg,
    transparent 60deg 71deg,
    rgba(255,240,205,0.16) 74deg,
    rgba(255,240,205,0.09) 79deg,
    transparent 82deg 90deg,
    transparent 90deg 360deg);
  mix-blend-mode: screen;
  filter: blur(8px) saturate(0.95);
  -webkit-mask-image: radial-gradient(ellipse 120% 100% at 0% 0%, #000 0%, #000 55%, transparent 90%);
          mask-image: radial-gradient(ellipse 120% 100% at 0% 0%, #000 0%, #000 55%, transparent 90%);
  animation: raysBreathe 24s ease-in-out infinite;
}
.illum-rays::after{
  content:'';
  position: absolute; inset: 0;
  background: conic-gradient(from 95deg at 0% 0%,
    transparent 0deg 11deg,
    rgba(255,235,195,0.10) 16deg,
    transparent 20deg 36deg,
    rgba(255,235,195,0.13) 41deg,
    rgba(255,235,195,0.06) 46deg,
    transparent 50deg 64deg,
    rgba(255,235,195,0.09) 68deg,
    transparent 72deg 90deg,
    transparent 90deg 360deg);
  filter: blur(14px);
  mix-blend-mode: screen;
  animation: raysCrossfade 34s ease-in-out infinite;
}

/* Hide legacy bg layers that were replaced by .illum-bg */
.interrupt-bg, .limited-bg{ display: none; }
.interrupt-cta::before, .section-limited::before{ display: none; }

/* Apply-section overrides (now dark) */
.section-apply .section-head{ margin-left: auto; margin-right: auto; }
.section-apply .display{ color: var(--text); }
.section-apply .lead{ color: var(--text-dim); }
.section-apply .lead strong{ color: var(--text); font-weight: 700; }
.section-apply .apply-icon{
  background: var(--accent-deep);
  border-color: var(--accent);
  color: var(--on-accent);
}
.section-apply .apply-step h3{ color: var(--text); }
.section-apply .apply-step p{ color: var(--text-dim); }
.section-apply .apply-step p strong{ color: var(--text); }
.section-apply .apply-step:not(:last-child)::after{
  background: linear-gradient(90deg, var(--accent-soft), transparent);
}
.section-apply .apply-step:hover .apply-icon{
  background: linear-gradient(135deg, var(--accent-electric), var(--accent-deep));
  color: var(--on-accent);
}

/* ---- REVIEWS SLIDER ---- */
.reviews-slider{
  position: relative;
  margin-top: 0;
}
.reviews-viewport{
  overflow: hidden;
  padding: 30px 0 60px;
  margin: 0 60px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.reviews-track{
  display: flex;
  gap: 28px;
  transition: transform 0.75s var(--ease);
  will-change: transform;
}
.review-card{
  flex: 0 0 calc((100% - 56px) / 3);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%),
    linear-gradient(180deg, #1d2a23 0%, #182520 100%);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 42px 36px 32px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 340px;
  transition: all 0.5s var(--ease), transform 0.5s var(--ease);
  color: var(--text);
}
.review-card::before{
  content:'';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent), var(--accent-2), var(--accent), var(--accent-deep));
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.5s;
  animation: shineLine 3s linear infinite;
}
@keyframes shineLine{ to { background-position: 200% 0; } }
.review-card.active{
  transform: translateY(-6px);
  border-color: var(--accent-soft);
  box-shadow:
    var(--aura),
    0 0 0 1px var(--accent-soft);
}
.review-card.active::before{ opacity: 1; }
.review-stars{
  color: var(--accent-2);
  font-size: 18px;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  text-shadow: 0 0 18px rgba(var(--shadow-rgb), 0.55);
}
.review-quote{
  font-family: var(--display);
  font-size: 64px;
  line-height: 0.5;
  color: var(--accent-2);
  opacity: 0.35;
  margin-bottom: -4px;
}
.review-card h3{
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  color: var(--accent-2);
}
.review-card p{
  font-size: 14.5px;
  color: rgba(230,233,229,0.78);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}
.review-card footer{
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.review-card footer strong{
  display: block;
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 4px;
}
.review-card footer span{
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.reviews-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(0,0,0,0.04));
  border: 1px solid var(--line-strong);
  color: var(--text);
  cursor: pointer;
  display: grid; place-items: center;
  z-index: 5;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(8px);
}
.reviews-arrow svg{ width: 22px; height: 22px; }
.reviews-arrow:hover{
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  border-color: var(--accent);
  color: var(--on-accent);
  transform: translateY(-50%) scale(1.05);
  box-shadow: var(--btn-shadow);
}
.reviews-arrow--prev{ left: 0; }
.reviews-arrow--next{ right: 0; }

.reviews-dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}
.reviews-dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  padding: 0;
}
.reviews-dot.active{
  background: var(--accent);
  width: 32px;
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(var(--shadow-rgb), 0.6);
}
.reviews-dot:hover:not(.active){ background: var(--text-mute); }

@media (max-width:980px){
  .review-card{ flex-basis: calc((100% - 28px) / 2); }
}
@media (max-width:680px){
  .reviews-viewport{ margin: 0 50px; }
  .review-card{ flex-basis: 100%; min-height: 310px; }
  .reviews-arrow{ width: 44px; height: 44px; }
}


@media (max-width: 880px) {
  /* Make sun rays and particles more visible on mobile in interrupt CTA, hero, apply, and limited sections */
  .interrupt-cta .hero-sun, .hero-bg .hero-sun, .section-apply .hero-sun, .section-limited .hero-sun {
    top: -200px;
    left: -150px;
    width: 600px;
    height: 600px;
    filter: blur(8px) brightness(1.8) saturate(1.5);
  }
  .interrupt-cta .hero-rays, .hero-bg .hero-rays, .section-apply .hero-rays, .section-limited .hero-rays {
    top: -100px;
    left: -100px;
    width: 200%;
    height: 200%;
    filter: blur(12px) saturate(1.5) brightness(1.8);
    -webkit-mask-image: radial-gradient(ellipse 150% 150% at 0% 0%, #000 0%, #000 40%, transparent 75%);
    mask-image: radial-gradient(ellipse 150% 150% at 0% 0%, #000 0%, #000 40%, transparent 75%);
  }
  .interrupt-cta .particles-canvas, .hero-bg .particles-canvas, .section-apply .particles-canvas, .section-limited .particles-canvas {
    filter: brightness(2) contrast(1.5);
    opacity: 1 !important;
  }
}
