/* ═══════════════════════════════════════════════════════════════════════════
   SANNIS GROWTH AGENCY — Landing CSS (Clean Rebuild)
   v28 · 2026-05-14
   
   Mobile-first. Single source of truth. No override layers.
   ═══════════════════════════════════════════════════════════════════════════ */


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   1. DESIGN TOKENS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root{
  /* Colors — Stripe-inspired palette */
  --ink:        #0A2540;
  --ink-2:      #425466;
  --ink-3:      #697386;
  --ink-soft:   #8898AA;
  --ink-mute:   #AAB7C4;

  --bg:         #FFFFFF;
  --bg-2:       #F6F8FA;
  --bg-3:       #F0F2F5;
  --bg-dark:    #0A1633;

  --border:     #E3E8EE;
  --border-2:   #CFD7DF;

  --brand:      #635BFF;
  --brand-h:    #574EEA;
  --brand-soft: rgba(99,91,255,0.08);
  --brand-2:    #0073E6;

  --success:    #0F9D58;
  --success-soft: rgba(15,157,88,0.10);
  --danger:     #DC2626;
  --danger-soft: rgba(220,38,38,0.06);
  --warn:       #F59E0B;

  /* Typography */
  --font:       "Geist","Inter",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Arial,sans-serif;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Radii */
  --r-sm: 6px;
  --r:    8px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 18px;
  --r-2xl: 22px;
  --r-full: 999px;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(10,37,64,0.04);
  --sh-sm: 0 2px 4px rgba(10,37,64,0.05), 0 1px 2px rgba(10,37,64,0.04);
  --sh-md: 0 4px 6px -1px rgba(10,37,64,0.07), 0 2px 4px -1px rgba(10,37,64,0.04);
  --sh-lg: 0 10px 25px -5px rgba(10,37,64,0.10), 0 4px 6px -2px rgba(10,37,64,0.05);
  --sh-xl: 0 20px 40px -10px rgba(10,37,64,0.15), 0 8px 16px -8px rgba(10,37,64,0.10);
  --sh-brand: 0 8px 24px rgba(99,91,255,0.25);

  /* Layout */
  --header-h: 64px;
  --max-w: 1200px;
  --max-w-narrow: 900px;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   2. RESET
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
*, *::before, *::after{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html{
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  overflow-x: hidden;
  width: 100%;
}

body{
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "cv02","cv03","cv04","cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}

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

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

ul, ol{
  list-style: none;
}

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

input, select, textarea{
  font: inherit;
  color: inherit;
}

::selection{
  background: var(--brand-soft);
  color: var(--ink);
}

/* Anchor offset for fixed header */
section[id]{
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* Skip link (accessibility) */
.skip-link{
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--ink);
  color: #FFFFFF;
  padding: 10px 16px;
  border-radius: var(--r);
  z-index: 10000;
}
.skip-link:focus{
  left: 8px;
}

/* Page loader */
.page-loader{
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity .4s ease, visibility .4s;
}
.page-loader.hidden,
.page-loader.done{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.spinner{
  width: 36px;
  height: 36px;
  border: 3px solid var(--bg-3);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin{
  to{ transform: rotate(360deg); }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   3. TYPOGRAPHY
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
h1, h2, h3, h4{
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: balance;
}

h1{ font-size: clamp(32px, 5vw, 56px); letter-spacing: -0.028em; line-height: 1.1; }
h2{ font-size: clamp(26px, 3.8vw, 42px); }
h3{ font-size: clamp(18px, 2vw, 22px); }
h4{ font-size: 14px; font-weight: 600; }

p{
  color: var(--ink-2);
  line-height: 1.65;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   4. LAYOUT PRIMITIVES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.container{
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px){
  .container{ padding: 0 32px; }
}

/* Generic section padding */
section{
  padding: 60px 0;
}
@media (min-width: 768px){
  section{ padding: 80px 0; }
}
@media (min-width: 1024px){
  section{ padding: 100px 0; }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   5. UTILITIES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.accent-text,
.accent{
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.accent-text-light{
  background: linear-gradient(135deg, #A78BFA 0%, #93C5FD 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Hide Greek by default until backend enables */
[data-lang="el"]{
  display: none !important;
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   6. BUTTONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.btn-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--brand);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r);
  box-shadow: var(--sh-sm);
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-cta:hover{
  background: var(--brand-h);
  transform: translateY(-1px);
  box-shadow: var(--sh-brand);
  color: #FFFFFF;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   7. HEADER (Mobile-first, then desktop)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Mobile header: logo center, hamburger right */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  height: var(--header-h);
}
.site-header.scrolled{
  background: rgba(255,255,255,0.95);
  box-shadow: var(--sh-sm);
}

.site-header-inner{
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  grid-column: 2;
  justify-self: center;
}
.brand img{
  height: 32px;
  width: auto;
  object-fit: contain;
}

/* Hide desktop nav on mobile */
.nav{
  display: none;
}

.header-actions{
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hide lang-pills and main CTA on mobile (moved to drawer) */
.header-actions .lang-pills,
.header-actions > .btn-cta{
  display: none;
}

/* Hamburger button — only visible on mobile */
.hamburger{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--brand);
  color: #FFFFFF;
  border-radius: var(--r-md);
  box-shadow: 0 4px 14px rgba(99,91,255,0.22);
}
.hamburger svg{
  width: 20px;
  height: 20px;
  stroke: #FFFFFF;
  stroke-width: 2.4;
}

/* Desktop header: 3-column grid (logo left, nav center, actions right) */
@media (min-width: 901px){
  .site-header-inner{
    padding: 0 32px;
  }
  .brand{
    grid-column: 1;
    justify-self: start;
  }
  .brand img{
    height: 36px;
  }
  .nav{
    display: flex;
    grid-column: 2;
    justify-self: center;
    align-items: center;
    gap: 32px;
  }
  .nav a{
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    padding: 4px 0;
    transition: color .15s ease;
  }
  .nav a:hover{
    color: var(--brand);
  }
  .header-actions{
    grid-column: 3;
    justify-self: end;
    gap: 12px;
  }
  .header-actions .lang-pills{
    display: inline-flex;
  }
  .header-actions > .btn-cta{
    display: inline-flex;
  }
  .hamburger{
    display: none;
  }
}

/* Lang pills (Stripe-style segmented control) */
.lang-pills{
  display: inline-flex;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2px;
}
.lang-pills a{
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ink-3);
  border-radius: 5px;
  transition: all .15s ease;
}
.lang-pills a:hover{
  color: var(--ink);
}
.lang-pills a.active{
  background: #FFFFFF;
  color: var(--ink);
  box-shadow: var(--sh-xs);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   8. MOBILE DRAWER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.mobile-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(10,37,64,0.45);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 140;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.mobile-backdrop.open{
  opacity: 1;
  visibility: visible;
}

.mobile-drawer{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: #FFFFFF;
  box-shadow: -4px 0 24px rgba(10,37,64,0.10);
  transform: translateX(100%);
  transition: transform .25s ease;
  z-index: 150;
  padding: calc(var(--header-h) + 24px) 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-drawer.open{
  transform: translateX(0);
}

/* DE/EN toggle at top of drawer */
.drawer-lang-pills{
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin: 0 auto 24px;
  align-self: center;
  width: fit-content;
}
.drawer-lang-pills a{
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  border-radius: var(--r-sm);
}
.drawer-lang-pills a.active{
  background: #FFFFFF;
  color: var(--ink);
  box-shadow: var(--sh-xs);
}

/* Drawer nav links */
.mobile-drawer > a:not(.btn-cta):not(.drawer-lang-pills a){
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--r);
}
.mobile-drawer > a:not(.btn-cta):not(.drawer-lang-pills a):hover{
  background: var(--bg-2);
  color: var(--brand);
}

/* Drawer CTA button */
.mobile-drawer .btn-cta{
  margin-top: 20px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 600;
  background: var(--brand);
  color: #FFFFFF;
  border-radius: var(--r-md);
  justify-content: center;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   9. HERO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero{
  position: relative;
  padding: calc(var(--header-h) + 60px) 20px 60px;
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(99,91,255,0.06), transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 100%, rgba(0,115,230,0.04), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #F6F8FA 100%);
  text-align: center;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px){
  .hero{
    padding: calc(var(--header-h) + 80px) 24px 100px;
    min-height: 80vh;
  }
}

.hero-bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb{
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 18s ease-in-out infinite;
}
.orb-1{ top: 10%; left: 15%; width: 280px; height: 280px; background: rgba(99,91,255,0.5); }
.orb-2{ top: 60%; right: 10%; width: 220px; height: 220px; background: rgba(0,115,230,0.4); animation-delay: -4s; }
.orb-3{ bottom: 5%; left: 25%; width: 240px; height: 240px; background: rgba(167,139,250,0.4); animation-delay: -8s; }
.orb-4{ top: 30%; right: 30%; width: 180px; height: 180px; background: rgba(147,197,253,0.35); animation-delay: -12s; }
@keyframes orbFloat{
  0%, 100%{ transform: translate(0, 0) scale(1); }
  33%{ transform: translate(20px, -30px) scale(1.05); }
  66%{ transform: translate(-15px, 20px) scale(0.95); }
}

.hero-grid{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,91,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,91,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
}

.hero-shimmer,
.hero-dot{
  display: none;  /* Decorative — hidden on smaller screens for perf */
}
@media (min-width: 1024px){
  .hero-dot{
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--brand);
    border-radius: 50%;
    opacity: 0.6;
    animation: dotFloat 7s ease-in-out infinite;
  }
  .hero-dot-1{ top: 25%; left: 12%; }
  .hero-dot-2{ top: 45%; left: 88%; animation-delay: -2s; }
  .hero-dot-3{ top: 70%; left: 18%; animation-delay: -4s; }
  .hero-dot-4{ top: 30%; left: 78%; animation-delay: -1s; }
  .hero-dot-5{ top: 65%; left: 65%; animation-delay: -3s; }
  @keyframes dotFloat{
    0%, 100%{ transform: translateY(0); opacity: 0.4; }
    50%{ transform: translateY(-15px); opacity: 0.8; }
  }
}

.hero-content{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}

.hero-spots{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 7px 14px;
  border-radius: var(--r-full);
  border: 1px solid rgba(99,91,255,0.18);
  margin: 0 auto 24px;
  box-shadow: 0 4px 14px rgba(99,91,255,0.10);
}
.hero-spots .pulse{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 2s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(99,91,255,0.55); }
  70%{ box-shadow: 0 0 0 12px rgba(99,91,255,0); }
  100%{ box-shadow: 0 0 0 0 rgba(99,91,255,0); }
}

@media (min-width: 768px){
  .hero-spots{ font-size: 11px; }
}

.hero h1{
  text-align: center;
  margin: 0 auto 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: none;
}
.hero h1 .accent{
  position: relative;
  display: inline-block;
}
.accent-underline{
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  width: 100%;
  height: auto;
  color: var(--brand);
  opacity: 0.5;
}

.hero-sub{
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.6;
  text-align: center;
}

.hero-features{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 20px;
  margin: 0 auto 28px;
  max-width: 640px;
}
.hero-feat{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
}
.hero-feat svg{
  color: var(--success);
  flex-shrink: 0;
}

.hero-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-h) 100%);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-md);
  box-shadow: 0 10px 24px rgba(99,91,255,0.30);
  transition: all .2s ease;
  margin: 0 auto;
}
.hero-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(99,91,255,0.40);
  color: #FFFFFF;
}

.hero-trust{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  margin: 28px auto 0;
  font-size: 13px;
  color: var(--ink-3);
  text-align: center;
}
.hero-trust .stars{
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.hero-trust .stars svg{
  width: 14px;
  height: 14px;
  fill: var(--warn);
  color: var(--warn);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   10. SECTION HEAD (shared by all sections)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section-head{
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}
@media (min-width: 768px){
  .section-head{ margin-bottom: 60px; }
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid rgba(99,91,255,0.18);
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin: 0 auto 18px;
}
.eyebrow.success{
  color: var(--success);
  background: var(--success-soft);
  border-color: rgba(15,157,88,0.18);
}
.eyebrow.danger{
  color: var(--danger);
  background: var(--danger-soft);
  border-color: rgba(220,38,38,0.18);
}
.eyebrow.neutral{
  color: var(--ink-2);
  background: var(--bg-2);
  border-color: var(--border);
}

.section-head h2{
  text-align: center;
  margin: 0 auto 14px;
}
.section-head p{
  text-align: center;
  font-size: 15px;
  color: var(--ink-2);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (min-width: 768px){
  .section-head p{ font-size: 16px; }
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   11. LOGO BAR (Industries)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.logo-bar{
  background: var(--bg-2);
  padding: 40px 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px){
  .logo-bar{ padding: 56px 32px; }
}

.logo-bar-inner{
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.logo-bar-label{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.logo-bar-label .lb-line{
  display: inline-block;
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border));
  flex-shrink: 0;
}
.logo-bar-label .lb-line:last-child{
  background: linear-gradient(90deg, var(--border), transparent);
}
@media (min-width: 768px){
  .logo-bar-label{ font-size: 11px; letter-spacing: 1.8px; }
  .logo-bar-label .lb-line{ width: 48px; }
}

.logo-bar-items{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.logo-bar-items span{
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  background: rgba(99,91,255,0.05);
  border-radius: var(--r-full);
  opacity: 0.85;
  transition: all .2s ease;
}
.logo-bar-items span:hover{
  opacity: 1;
  color: var(--brand);
  background: var(--brand-soft);
  transform: translateY(-1px);
}
@media (min-width: 768px){
  .logo-bar-items{ gap: 12px 18px; }
  .logo-bar-items span{ font-size: 13px; padding: 6px 12px; background: transparent; }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   12. FEATURES SECTION (Was uns unterscheidet)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.features-section{
  background: #FFFFFF;
}

.feature-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px){
  .feature-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.feature-card{
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  text-align: center;
  transition: all .25s ease;
  position: relative;
}
.feature-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
  border-color: rgba(99,91,255,0.20);
}
@media (min-width: 768px){
  .feature-card{
    padding: 32px 28px;
    text-align: left;
  }
}

.feature-card .num{
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--brand);
  margin-bottom: 14px;
  text-align: center;
}
@media (min-width: 768px){
  .feature-card .num{ text-align: left; }
}

.feature-icon{
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(99,91,255,0.25);
}
@media (min-width: 768px){
  .feature-icon{ margin: 0 0 18px; }
}

.feature-card h3{
  margin: 0 0 10px;
  font-size: 18px;
  text-align: center;
}
.feature-card p{
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
  text-align: center;
}
@media (min-width: 768px){
  .feature-card h3,
  .feature-card p{ text-align: left; }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   13. RESULTS SECTION (Aus Besuchern werden zahlende Kunden - Redesigned)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.results-section{
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.results-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px){
  .results-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.result-card{
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.result-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99,91,255,0), rgba(99,91,255,0.05));
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  border-radius: var(--r-2xl);
}
.result-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(10,37,64,0.10);
  border-color: rgba(99,91,255,0.20);
}
.result-card:hover::before{
  opacity: 1;
}

.result-visual{
  height: 160px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
  text-align: center;
}
.result-visual::after{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.6;
}
.result-icon-wrap{
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.95);
}
.result-visual .label{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.25);
  position: relative;
  z-index: 2;
  display: block;
  text-align: center;
  margin-top: auto;
}

.result-content{
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
  align-items: center;
}
@media (min-width: 768px){
  .result-content{
    padding: 28px;
  }
}

.result-content h3{
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: -0.015em;
  line-height: 1.35;
  text-align: center;
  width: 100%;
}

.result-metric-wrap{
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
  margin-bottom: 14px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  width: 100%;
}
.result-metric{
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
}
.result-metric-label{
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.2px;
}

.result-desc{
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0 0 16px;
  flex: 1;
  text-align: center;
  width: 100%;
}

.result-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  justify-content: center;
  width: 100%;
}
.result-tag{
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 4px 10px;
  border-radius: var(--r-full);
  border: 1px solid rgba(99,91,255,0.18);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   14. PROBLEM/SOLUTION SECTION (Jeden Tag verlieren Sie Kunden)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.problem-solution-section{
  background: #FFFFFF;
}

.prob-sol-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px){
  .prob-sol-grid{
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

.prob-card,
.sol-card{
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
}
@media (min-width: 768px){
  .prob-card,
  .sol-card{ padding: 36px 32px; }
}

.prob-card{
  background: linear-gradient(180deg, var(--danger-soft) 0%, #FFFFFF 100%);
  border-color: rgba(220,38,38,0.18);
}
.sol-card{
  background: linear-gradient(180deg, var(--brand-soft) 0%, #FFFFFF 100%);
  border-color: rgba(99,91,255,0.20);
}

.prob-card h3,
.sol-card h3{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 17px;
  margin: 0 0 20px;
  text-align: center;
}
@media (min-width: 768px){
  .prob-card h3,
  .sol-card h3{
    justify-content: flex-start;
    text-align: left;
    font-size: 19px;
  }
}

.prob-card h3 .badge,
.sol-card h3 .badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--r);
  flex-shrink: 0;
}
.prob-card h3 .badge{
  background: rgba(220,38,38,0.12);
  color: var(--danger);
}
.sol-card h3 .badge{
  background: rgba(99,91,255,0.12);
  color: var(--brand);
}

.prob-list,
.sol-list{
  display: flex;
  flex-direction: column;
  gap: 0;
}
.prob-list li,
.sol-list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(10,37,64,0.06);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  text-align: left;
}
.prob-list li:last-child,
.sol-list li:last-child{
  border-bottom: none;
}
.prob-list li svg{
  color: var(--danger);
  flex-shrink: 0;
  margin-top: 3px;
}
.sol-list li svg{
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 3px;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   15. SERVICES SECTION (Eine Agentur. Alles aus einer Hand.)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.services-section{
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 768px){
  .service-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.service-card{
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all .25s ease;
}
.service-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
  border-color: rgba(99,91,255,0.20);
}
@media (min-width: 768px){
  .service-card{ padding: 36px 32px; }
}

.service-icon{
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 16px rgba(99,91,255,0.30);
}

.service-card h3{
  margin: 0 0 10px;
  font-size: 19px;
}
.service-card p{
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 320px;
}

.service-card .learn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand);
}

/* Section CTA (Welche Lösung passt zu mir?) */
.section-cta{
  text-align: center;
  margin-top: 40px;
}
.section-cta-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  background: rgba(99,91,255,0.06);
  border: 1px solid rgba(99,91,255,0.20);
  border-radius: var(--r-full);
  transition: all .2s ease;
}
.section-cta-link:hover{
  background: var(--brand-soft);
  transform: translateY(-1px);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   16. SEO SECTION (Bei Google. Bei ChatGPT. Bei Ihren Kunden.)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.seo-section{
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(99,91,255,0.03) 30%, rgba(0,115,230,0.03) 70%, #FFFFFF 100%);
}

.seo-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 600px){
  .seo-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (min-width: 1024px){
  .seo-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.seo-card{
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  transition: all .25s ease;
}
.seo-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
  border-color: rgba(99,91,255,0.20);
}
@media (min-width: 768px){
  .seo-card{ padding: 28px 24px; }
}

.seo-card .ico-wrap{
  width: 42px;
  height: 42px;
  border-radius: var(--r);
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.seo-tag{
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid rgba(99,91,255,0.18);
  padding: 3px 8px;
  border-radius: var(--r-sm);
  margin-bottom: 10px;
  align-self: flex-start;
}
.seo-tag.success{
  color: var(--success);
  background: var(--success-soft);
  border-color: rgba(15,157,88,0.18);
}
.seo-tag.warn{
  color: var(--warn);
  background: rgba(245,158,11,0.10);
  border-color: rgba(245,158,11,0.20);
}
.seo-tag.info{
  color: var(--brand-2);
  background: rgba(0,115,230,0.08);
  border-color: rgba(0,115,230,0.18);
}

.seo-card h3{
  margin: 0 0 8px;
  font-size: 16px;
}
.seo-card p,
.seo-card p.sub{
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 14px;
}
.seo-card ul{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.seo-card ul li{
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.seo-card ul li svg{
  color: var(--success);
  flex-shrink: 0;
  margin-top: 3px;
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   17. PROCESS SECTION (Interactive Timeline)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.process-section{
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-2) 100%);
  position: relative;
  overflow: hidden;
}
.process-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,91,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,91,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  pointer-events: none;
}

.process-timeline{
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* Timeline connecting track (desktop only) */
.timeline-track{
  display: none;
}
@media (min-width: 1024px){
  .timeline-track{
    display: block;
    position: absolute;
    top: 32px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    z-index: 0;
    overflow: hidden;
  }
  .timeline-progress{
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 100%);
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .process-timeline.visible .timeline-progress{
    transform: scaleX(1);
  }
}

.process-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px){
  .process-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (min-width: 1024px){
  .process-grid{
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.process-step{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: default;
}

.process-num-wrap{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid var(--brand);
  color: var(--brand);
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(99,91,255,0.20), 0 0 0 6px rgba(99,91,255,0.06);
  transition: all .35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}
.process-step:hover .process-num{
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #FFFFFF;
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(99,91,255,0.40), 0 0 0 8px rgba(99,91,255,0.10);
}

.process-step-content{
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px 22px;
  text-align: center;
  width: 100%;
  transition: all .25s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.process-step:hover .process-step-content{
  border-color: rgba(99,91,255,0.30);
  box-shadow: 0 12px 32px rgba(10,37,64,0.08);
  transform: translateY(-3px);
}
@media (min-width: 768px){
  .process-step-content{
    padding: 28px 24px;
  }
}

.process-week{
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 4px 10px;
  border-radius: var(--r-full);
  margin: 0 auto 12px;
  border: 1px solid rgba(99,91,255,0.18);
}

.process-step h3{
  margin: 0 0 10px;
  font-size: 17px;
  text-align: center;
  color: var(--ink);
}

.process-step p{
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.6;
  text-align: center;
  margin: 0 0 16px;
}

.process-deliverables{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  text-align: left;
}
.process-deliverables li{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.4;
}
.process-deliverables li svg{
  color: var(--success);
  flex-shrink: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   18. COMPARISON SECTION (Redesigned with SGA logo + visual hierarchy)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.comparison-section{
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.comparison-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px){
  .comparison-grid{
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

.compare-card{
  background: #FFFFFF;
  border-radius: var(--r-2xl);
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
}
/* Inner wrapper to clip content but allow badge overflow */
.compare-card > .compare-card-head,
.compare-card > .compare-list,
.compare-card > .compare-foot{
  position: relative;
  z-index: 1;
}
.compare-card.bad{
  border: 1px solid rgba(220,38,38,0.20);
  background: linear-gradient(180deg, rgba(220,38,38,0.03) 0%, #FFFFFF 100%);
}
.compare-card.good{
  border: 2px solid var(--brand);
  background: linear-gradient(180deg, rgba(99,91,255,0.04) 0%, #FFFFFF 100%);
  box-shadow: 0 12px 32px rgba(99,91,255,0.12);
}
.compare-card.good:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(99,91,255,0.18);
}

.compare-card .badge-top{
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--r-full);
  box-shadow: 0 8px 24px rgba(99,91,255,0.40), 0 0 0 4px #FFFFFF;
  white-space: nowrap;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}

.compare-card-head{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--border);
  border-top-left-radius: var(--r-2xl);
  border-top-right-radius: var(--r-2xl);
}
.compare-card.bad .compare-card-head{
  background: rgba(220,38,38,0.04);
  border-bottom-color: rgba(220,38,38,0.12);
}
.compare-card.good .compare-card-head{
  background: rgba(99,91,255,0.04);
  border-bottom-color: rgba(99,91,255,0.15);
}

.compare-card-icon-wrap{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  flex-shrink: 0;
}
.compare-card-icon-wrap.bad-wrap{
  background: rgba(220,38,38,0.10);
  color: var(--danger);
}
.compare-card-icon-wrap.good-wrap{
  background: #FFFFFF;
  border: 1px solid var(--border);
  padding: 8px;
  box-shadow: 0 2px 8px rgba(99,91,255,0.15);
}
.compare-card-icon-wrap.good-wrap img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.compare-card-head h3{
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}
.compare-card.bad h3{
  color: var(--ink);
}
.compare-card.good h3{
  color: var(--ink);
}
.compare-tagline{
  display: block;
  font-size: 12.5px;
  font-weight: 500;
}
.compare-card.bad .compare-tagline{
  color: var(--danger);
}
.compare-card.good .compare-tagline{
  color: var(--brand);
}

.compare-card .compare-list{
  padding: 18px 24px;
  margin: 0;
  list-style: none;
  flex: 1;
}
.compare-card .compare-list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  border-bottom: 1px solid var(--border);
}
.compare-card .compare-list li:last-child{
  border-bottom: none;
}
.compare-card .compare-list li strong{
  color: var(--ink);
  font-weight: 600;
}

.compare-li-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}
.compare-card.bad .compare-li-icon{
  background: rgba(220,38,38,0.10);
  color: var(--danger);
}
.compare-card.good .compare-li-icon{
  background: var(--success-soft);
  color: var(--success);
}

.compare-foot{
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom-left-radius: var(--r-2xl);
  border-bottom-right-radius: var(--r-2xl);
}
/* When followed by a CTA, no bottom rounding on foot */
.compare-card .compare-foot:not(:last-child){
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.bad-foot{
  background: rgba(220,38,38,0.05);
  color: var(--danger);
  border-top-color: rgba(220,38,38,0.12);
}
.good-foot{
  background: rgba(99,91,255,0.06);
  color: var(--brand);
  border-top-color: rgba(99,91,255,0.15);
}

.compare-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 24px 24px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: all .2s ease;
  box-shadow: 0 6px 16px rgba(99,91,255,0.30);
}
.compare-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(99,91,255,0.40);
  color: #FFFFFF;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   19. PRICING SECTION (Redesigned - skalierbare Loesungen)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pricing-section{
  background:
    radial-gradient(ellipse 60% 50% at 30% 0%, rgba(99,91,255,0.04), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, var(--bg-2) 100%);
  position: relative;
  overflow: hidden;
}
.pricing-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,91,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,91,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  pointer-events: none;
}

.pricing-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
  padding-top: 12px;
}
@media (min-width: 768px){
  .pricing-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.pricing-card{
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 28px 24px 24px;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}
.pricing-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10,37,64,0.08);
  border-color: rgba(99,91,255,0.20);
}
@media (min-width: 768px){
  .pricing-card{
    padding: 32px 28px 28px;
  }
}

/* Featured card - special highlight */
.pricing-card.featured{
  background: linear-gradient(180deg, #0A2540 0%, #0A1633 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 20px 48px rgba(99,91,255,0.20);
  transform: translateY(-8px);
}
.pricing-card.featured:hover{
  transform: translateY(-12px);
  box-shadow: 0 28px 60px rgba(99,91,255,0.30);
}
.pricing-card.featured::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-2xl);
  background: linear-gradient(135deg, rgba(99,91,255,0.20), rgba(0,115,230,0.10));
  pointer-events: none;
  z-index: 0;
}

/* Top section */
.pricing-card-top{
  position: relative;
  z-index: 1;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.pricing-card.featured .pricing-card-top{
  border-bottom-color: rgba(255,255,255,0.12);
}

.pricing-tier-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  margin-bottom: 14px;
}

.pricing-card h3{
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--ink);
}
.pricing-card.featured h3{
  color: #FFFFFF;
}

.pricing-card .sub{
  font-size: 13.5px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.55;
}
.pricing-card.featured .sub{
  color: rgba(255,255,255,0.75);
}

/* Badge (positioned top, sticking out) */
.pricing-badge-new{
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #F59E0B 0%, #DC2626 100%);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--r-full);
  box-shadow: 0 8px 24px rgba(245,158,11,0.40);
  white-space: nowrap;
  z-index: 5;
  border: 2px solid #FFFFFF;
}
.pricing-badge-new svg{
  color: #FFFFFF;
}

/* Price block */
.pricing-price-block{
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.price{
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.price-from{
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  margin-right: 4px;
}
.pricing-card.featured .price-from{
  color: rgba(255,255,255,0.65);
}
.price .currency{
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.pricing-card.featured .price .currency{
  color: #FFFFFF;
}
.price-amount{
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1;
}
.pricing-card.featured .price-amount{
  background: linear-gradient(135deg, #FFFFFF 0%, #C7D2FE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.price-note{
  font-size: 12.5px;
  color: var(--ink-3);
  margin: 0;
}
.pricing-card.featured .price-note{
  color: rgba(255,255,255,0.65);
}

/* Features list */
.pricing-features{
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-features li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.pricing-card.featured .pricing-features li{
  color: rgba(255,255,255,0.88);
}
.check-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--success-soft);
  color: var(--success);
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card.featured .check-icon{
  background: rgba(255,255,255,0.15);
  color: #4ADE80;
}

/* CTA */
.pricing-cta{
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-h) 100%);
  color: #FFFFFF !important;
  border: none;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: var(--r-md);
  transition: all .2s ease;
  margin-top: auto;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(99,91,255,0.28);
  letter-spacing: 0.1px;
}
.pricing-cta span{
  color: #FFFFFF !important;
}
.pricing-cta svg{
  color: #FFFFFF !important;
  stroke: #FFFFFF !important;
}
.pricing-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(99,91,255,0.42);
  color: #FFFFFF !important;
}

.pricing-cta.featured-cta{
  background: #FFFFFF;
  color: var(--brand) !important;
  border: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.pricing-cta.featured-cta span{
  color: var(--brand) !important;
}
.pricing-cta.featured-cta svg{
  color: var(--brand) !important;
  stroke: var(--brand) !important;
}
.pricing-cta.featured-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  color: var(--brand-h) !important;
}

/* Trust bar below pricing */
.pricing-trust-bar{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  max-width: 980px;
  margin: 32px auto 0;
  padding: 20px 24px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  position: relative;
  z-index: 1;
}
.pricing-trust-item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
}
.pricing-trust-item svg{
  color: var(--success);
  flex-shrink: 0;
}

/* Backwards compat - old .price-num if used elsewhere */
.price .num{
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.035em;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Old featured-badge backwards compat */
.pricing-card .featured-badge,
.pricing-card .pricing-badge{
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
  box-shadow: 0 4px 12px rgba(99,91,255,0.35);
  white-space: nowrap;
  z-index: 5;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   20. FOUNDER SECTION (Premium redesign)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.founder-section{
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(99,91,255,0.04), transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(0,115,230,0.03), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, var(--bg-2) 100%);
  position: relative;
  overflow: hidden;
}

.founder-head{
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

/* ── Hero Card (Photo + Info side-by-side) ─────────────────────────────────── */
.founder-hero-card{
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  max-width: 980px;
  margin: 0 auto 40px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(10,37,64,0.06);
}

.founder-hero-bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(99,91,255,0.08), transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(0,115,230,0.06), transparent 60%);
  pointer-events: none;
}

.founder-hero-inner{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 24px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px){
  .founder-hero-inner{
    flex-direction: row;
    gap: 40px;
    padding: 48px;
    text-align: left;
    align-items: center;
  }
}

/* Photo section */
.founder-photo-section{
  position: relative;
  flex-shrink: 0;
}

.founder-photo-big{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(99,91,255,0.10), rgba(0,115,230,0.08));
  border: 4px solid #FFFFFF;
  box-shadow: 0 12px 32px rgba(99,91,255,0.20), 0 0 0 4px rgba(99,91,255,0.10);
  position: relative;
}
@media (min-width: 768px){
  .founder-photo-big{
    width: 180px;
    height: 180px;
  }
}
.founder-photo-big img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-photo-big > span{
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.founder-badge{
  position: absolute;
  bottom: 4px;
  right: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--success);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 5px 9px;
  border-radius: var(--r-full);
  box-shadow: 0 4px 12px rgba(15,157,88,0.30);
  border: 2px solid #FFFFFF;
}

/* Info section */
.founder-info{
  flex: 1;
  min-width: 0;
  width: 100%;
}

.founder-name-row{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
@media (min-width: 768px){
  .founder-name-row{
    justify-content: flex-start;
  }
}

.founder-name{
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
@media (min-width: 768px){
  .founder-name{
    font-size: 30px;
  }
}

.founder-status{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--success);
  background: var(--success-soft);
  padding: 4px 10px;
  border-radius: var(--r-full);
  border: 1px solid rgba(15,157,88,0.20);
}
.status-dot{
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: statusPulse 2s infinite;
}
@keyframes statusPulse{
  0%, 100%{ box-shadow: 0 0 0 0 rgba(15,157,88,0.55); }
  50%{ box-shadow: 0 0 0 6px rgba(15,157,88,0); }
}

.founder-title{
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 18px;
}

.founder-stats{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.founder-stat{
  text-align: center;
}
.founder-stat .stat-value{
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -0.02em;
}
.founder-stat .stat-label{
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 2px;
}
@media (min-width: 768px){
  .founder-stat .stat-value{
    font-size: 22px;
  }
  .founder-stat .stat-label{
    font-size: 11px;
  }
}

.founder-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  justify-content: center;
}
@media (min-width: 768px){
  .founder-tags{
    justify-content: flex-start;
  }
}
.founder-tag{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: var(--r-full);
}
.founder-tag svg{
  color: var(--brand);
  flex-shrink: 0;
}

.founder-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
@media (min-width: 768px){
  .founder-actions{
    justify-content: flex-start;
  }
}

.founder-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--r-md);
  transition: all .2s ease;
  text-decoration: none;
}
.founder-btn.primary{
  background: var(--brand);
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(99,91,255,0.25);
}
.founder-btn.primary:hover{
  background: var(--brand-h);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(99,91,255,0.40);
  color: #FFFFFF;
}
.founder-btn.secondary{
  background: #FFFFFF;
  color: var(--ink);
  border: 1px solid var(--border);
}
.founder-btn.secondary:hover{
  background: var(--bg-2);
  border-color: var(--brand);
  color: var(--brand);
}

/* ── Quote Card ────────────────────────────────────────────────────────────── */
.founder-quote-card{
  position: relative;
  max-width: 880px;
  margin: 0 auto 40px;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(99,91,255,0.06), rgba(0,115,230,0.04));
  border: 1px solid rgba(99,91,255,0.15);
  border-radius: var(--r-2xl);
  text-align: center;
}
@media (min-width: 768px){
  .founder-quote-card{
    padding: 48px 56px;
  }
}

.quote-icon-big{
  display: block;
  color: var(--brand);
  opacity: 0.30;
  margin: 0 auto 16px;
}
@media (min-width: 768px){
  .quote-icon-big{
    margin: 0 auto 20px;
  }
}

.founder-quote-card blockquote{
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 16px;
  font-style: italic;
}
.founder-quote-card blockquote strong{
  font-weight: 600;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: normal;
}
@media (min-width: 768px){
  .founder-quote-card blockquote{
    font-size: 21px;
  }
}

.founder-quote-card cite{
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.3px;
  font-style: normal;
}

/* ── Story + Values Grid ──────────────────────────────────────────────────── */
.founder-detail-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto 40px;
}
@media (min-width: 900px){
  .founder-detail-grid{
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

.founder-story-card,
.founder-values-card{
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
}
@media (min-width: 768px){
  .founder-story-card,
  .founder-values-card{
    padding: 32px;
  }
}

.founder-story-head{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.story-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--brand-soft);
  color: var(--brand);
  flex-shrink: 0;
}
.founder-story-head h3{
  font-size: 18px;
  margin: 0;
  color: var(--ink);
}

.founder-story-content p{
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0 0 12px;
}
.founder-story-content p:last-child{
  margin-bottom: 0;
}
.founder-story-content strong{
  color: var(--ink);
  font-weight: 600;
}

.founder-values{
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.val-item{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: var(--bg-2);
  border-radius: var(--r);
  text-align: left;
}
.val-icon{
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.val-item strong{
  font-size: 14px;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}
.val-item p{
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
}

/* ── Final CTA Strip ──────────────────────────────────────────────────────── */
.founder-cta-strip{
  max-width: 880px;
  margin: 0 auto;
  padding: 28px 24px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  border-radius: var(--r-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(99,91,255,0.25);
}
@media (min-width: 768px){
  .founder-cta-strip{
    flex-direction: row;
    text-align: left;
    padding: 32px 40px;
  }
}
.founder-cta-text{
  flex: 1;
}
.founder-cta-text strong{
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 4px;
}
.founder-cta-text p{
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  margin: 0;
}
.founder-cta-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: #FFFFFF;
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--r-md);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transition: all .2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.founder-cta-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
  color: var(--brand);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   21. TESTIMONIALS SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.testimonials-section{
  background: #FFFFFF;
}

.testimonial-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px){
  .testimonial-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.testimonial-card{
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all .25s ease;
}
.testimonial-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
}

.t-head-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.t-stars{
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--warn);
  font-size: 16px;
  letter-spacing: 1px;
}
.t-date{
  font-size: 12px;
  color: var(--ink-3);
}

.t-quote{
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0 0 18px;
  flex: 1;
}

.t-author{
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.t-avatar{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
  color: var(--ink-3);
  flex-shrink: 0;
}
.t-avatar-security{ background: #475569; color: #FFFFFF; }
.t-avatar-gastro{ background: #7c2d12; color: #FFFFFF; }
.t-avatar-law{ background: #1e3a8a; color: #FFFFFF; }

.t-meta{
  flex: 1;
}
.t-meta strong{
  display: block;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 2px;
}
.t-meta small{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-3);
  flex-wrap: wrap;
}
.t-verified{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--success);
  font-weight: 600;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   22. FAQ SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.faq-section{
  background: var(--bg-2);
}

.faq-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item{
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open]{
  border-color: rgba(99,91,255,0.30);
  box-shadow: var(--sh-sm);
}

.faq-item summary{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker{
  display: none;
}
.faq-item summary span{
  flex: 1;
}
.faq-arrow{
  flex-shrink: 0;
  color: var(--brand);
  transition: transform .25s ease;
}
.faq-item[open] .faq-arrow{
  transform: rotate(180deg);
}

.faq-item p{
  padding: 0 20px 20px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
}
@media (min-width: 768px){
  .faq-item summary{ font-size: 16px; padding: 20px 24px; }
  .faq-item p{ padding: 0 24px 22px; }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   23. CTA SECTION (Bereit für mehr Anfragen?)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta-section{
  padding: 64px 20px;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(99,91,255,0.30), transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(0,115,230,0.20), transparent 60%),
    linear-gradient(135deg, #0A1633 0%, #0A2540 100%);
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px){
  .cta-section{ padding: 96px 32px; }
}

.cta-section h2{
  color: #FFFFFF;
  margin: 0 auto 16px;
  max-width: 760px;
}
.cta-section p{
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 28px;
  font-size: 15px;
  line-height: 1.65;
}
@media (min-width: 768px){
  .cta-section p{ font-size: 17px; }
}

.cta-section .features{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 auto 32px;
  max-width: 600px;
}
@media (min-width: 768px){
  .cta-section .features{
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 24px;
  }
}
.cta-section .features span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.cta-section .features svg{
  color: #93C5FD;
  flex-shrink: 0;
}

.final-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: #FFFFFF;
  color: var(--brand);
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.20);
  transition: all .2s ease;
  width: auto;
  max-width: 340px;
}
.final-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.30);
  color: var(--brand);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   24. FOOTER (Light - matching header style)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-footer{
  background: #FFFFFF;
  color: var(--ink-2);
  padding: 56px 20px 28px;
  position: relative;
  border-top: 1px solid var(--border);
}
.site-footer::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(99,91,255,0.04), transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 100%, rgba(0,115,230,0.03), transparent 60%);
  pointer-events: none;
}
@media (min-width: 768px){
  .site-footer{ padding: 72px 32px 28px; }
}

.footer-inner{
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  z-index: 1;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 44px;
  text-align: center;
}
@media (min-width: 600px){
  .footer-grid{
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
    text-align: left;
  }
}
@media (min-width: 900px){
  .footer-grid{
    grid-template-columns: 1.7fr 1fr 1.1fr 1.4fr;
    gap: 40px 32px;
    margin-bottom: 48px;
  }
}

/* Legal column - emphasis */
.footer-col-legal h4{
  color: var(--ink);
}
.footer-col-legal ul li a{
  color: var(--ink-2);
  font-weight: 500;
}
.footer-col-legal ul li a:hover{
  color: var(--brand);
  text-decoration: underline;
}

/* Brand column */
.footer-brand{
  max-width: 100%;
}
@media (min-width: 600px){
  .footer-brand{
    grid-column: 1 / -1;
  }
}
@media (min-width: 900px){
  .footer-brand{
    grid-column: 1;
    max-width: 380px;
  }
}

.footer-logo{
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo img{
  height: 40px;
  width: auto;
}

.footer-brand .tagline{
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.65;
  margin: 0 auto 20px;
  max-width: 380px;
}
@media (min-width: 600px){
  .footer-brand .tagline{ margin: 0 0 20px; }
}

.footer-socials{
  display: flex;
  justify-content: center;
  gap: 8px;
}
@media (min-width: 600px){
  .footer-socials{ justify-content: flex-start; }
}
.footer-socials a{
  width: 38px;
  height: 38px;
  border-radius: var(--r);
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  transition: all .2s ease;
}
.footer-socials a:hover{
  background: var(--brand);
  border-color: var(--brand);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99,91,255,0.30);
}

/* Column headers */
.footer-col h4{
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin: 0 0 16px;
}

/* Column links */
.footer-col ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li a{
  font-size: 13.5px;
  color: var(--ink-2);
  transition: color .15s ease;
  text-decoration: none;
}
.footer-col ul li a:hover{
  color: var(--brand);
}

/* Contact column - special items */
.footer-contact .contact-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-2);
  transition: color .15s ease;
  text-decoration: none;
}
.footer-contact .contact-item:not(.static):hover{
  color: var(--brand);
}
.footer-contact .contact-item:not(.static):hover .contact-icon{
  background: var(--brand);
  border-color: var(--brand);
  color: #FFFFFF;
}
.contact-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--brand);
  flex-shrink: 0;
  transition: all .2s ease;
}

.footer-cta-row{
  margin-top: 8px;
}
.footer-cta-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--r);
  transition: all .2s ease;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(99,91,255,0.25);
}
.footer-cta-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(99,91,255,0.40);
  color: #FFFFFF;
}

.footer-login-row{
  margin-top: 4px;
}
.footer-login-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #FFFFFF;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--r);
  border: 1px solid var(--border);
  transition: all .2s ease;
  text-decoration: none;
}
.footer-login-btn:hover{
  background: var(--bg-2);
  border-color: var(--brand);
  color: var(--brand);
}
.footer-login-btn svg{
  color: var(--brand);
}

/* Divider */
.footer-divider{
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin-bottom: 20px;
}

/* Bottom row */
.footer-bottom{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 12.5px;
  color: var(--ink-3);
  text-align: center;
}
@media (min-width: 768px){
  .footer-bottom{
    flex-direction: row;
    text-align: left;
  }
}

.footer-bottom-meta{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
}

.footer-badge{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--ink-2);
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--r-full);
}
.footer-badge svg{
  color: var(--success);
  flex-shrink: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   25. COOKIE BANNER & MODAL
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Banner (slide-up from bottom) */
.cookie-banner{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  padding: 20px 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
  transform: translateY(120%);
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.show{
  transform: translateY(0);
}
.cookie-banner.hidden{
  display: none;
}

.cookie-banner-inner{
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 600px){
  .cookie-banner-inner{
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}

.cookie-text h3{
  font-size: 15px;
  margin: 0 0 4px;
  color: var(--ink);
}
.cookie-text p{
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
}

.cookie-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
@media (min-width: 600px){
  .cookie-actions{
    flex-shrink: 0;
    justify-content: flex-end;
  }
}

.cookie-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--r);
  transition: all .15s ease;
  cursor: pointer;
}
.cookie-btn-primary{
  background: var(--brand);
  color: #FFFFFF;
  border: 1px solid var(--brand);
}
.cookie-btn-primary:hover{
  background: var(--brand-h);
  border-color: var(--brand-h);
}
.cookie-btn-secondary{
  background: #FFFFFF;
  color: var(--ink);
  border: 1px solid var(--border);
}
.cookie-btn-secondary:hover{
  background: var(--bg-2);
}
.cookie-btn-tertiary{
  background: transparent;
  color: var(--ink-3);
  border: 1px solid transparent;
}
.cookie-btn-tertiary:hover{
  color: var(--ink);
  background: var(--bg-2);
}

/* Modal */
.cookie-modal{
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s, visibility .25s;
}
.cookie-modal.show{
  visibility: visible;
  opacity: 1;
}
.cookie-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(10,37,64,0.50);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.cookie-modal-dialog{
  position: relative;
  background: #FFFFFF;
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh-xl);
  overflow: hidden;
}

.cookie-modal-head{
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-modal-head h3{
  font-size: 18px;
  margin: 0;
}
.cookie-modal-close{
  width: 32px;
  height: 32px;
  border-radius: var(--r);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  background: transparent;
  transition: background .15s ease;
}
.cookie-modal-close:hover{
  background: var(--bg-2);
  color: var(--ink);
}

.cookie-modal-body{
  padding: 20px 28px;
  overflow-y: auto;
  flex: 1;
}
.cookie-modal-intro{
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0 0 18px;
}

.cookie-cat{
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 16px;
  margin-bottom: 12px;
}
.cookie-cat-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.cookie-cat-head strong{
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.cookie-cat p{
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.55;
  margin: 0;
}

/* Toggle switch */
.cookie-switch{
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
  flex-shrink: 0;
}
.cookie-switch input{
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider{
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 22px;
  cursor: pointer;
  transition: background .2s;
}
.cookie-slider::before{
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.20);
  transition: transform .2s;
}
.cookie-switch input:checked + .cookie-slider{
  background: var(--brand);
}
.cookie-switch input:checked + .cookie-slider::before{
  transform: translateX(16px);
}
.cookie-switch input:disabled + .cookie-slider{
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-foot{
  padding: 16px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  background: var(--bg-2);
}

.cookie-modal-legal{
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 16px;
  text-align: center;
}
.cookie-modal-legal a{
  color: var(--brand);
  text-decoration: underline;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   26. ANIMATIONS (Hero fade-up)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@keyframes heroFadeUp{
  from{ opacity: 0; transform: translateY(20px); }
  to{ opacity: 1; transform: translateY(0); }
}

.hero-spots,
.hero h1,
.hero-sub,
.hero-features,
.hero-cta,
.hero-trust{
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-spots{ animation-delay: 0.05s; }
.hero h1{ animation-delay: 0.15s; }
.hero-sub{ animation-delay: 0.3s; }
.hero-features{ animation-delay: 0.45s; }
.hero-cta{ animation-delay: 0.55s; }
.hero-trust{ animation-delay: 0.7s; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   27. REDUCED MOTION SUPPORT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .orb{ animation: none; }
  .hero-dot{ animation: none; }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   28. PRINT (clean printout)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media print{
  .site-header,
  .mobile-drawer,
  .mobile-backdrop,
  .hamburger,
  .cookie-banner,
  .cookie-modal,
  .page-loader,
  .hero-bg,
  .cta-section{
    display: none !important;
  }
  body{
    background: #FFFFFF;
    color: #000000;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   29. SEO CARD VARIANTS (color-coded per service)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.seo-card.seo .ico-wrap{
  background: var(--brand-soft);
  color: var(--brand);
}
.seo-card.aeo .ico-wrap{
  background: rgba(0,115,230,0.10);
  color: var(--brand-2);
}
.seo-card.geo .ico-wrap{
  background: rgba(167,139,250,0.12);
  color: #8B5CF6;
}
.seo-card.llm .ico-wrap{
  background: rgba(245,158,11,0.12);
  color: var(--warn);
}
.seo-card.local .ico-wrap{
  background: var(--success-soft);
  color: var(--success);
}
.seo-card.full{
  background: linear-gradient(135deg, rgba(99,91,255,0.04), rgba(0,115,230,0.04));
  border-color: rgba(99,91,255,0.20);
}
.seo-card.full .ico-wrap{
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #FFFFFF;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   30. PRICING OUTLINE VARIANT (deprecated - keeping for backward compat)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pricing-card.outline .pricing-cta{
  /* Same as default - solid purple, no longer using outline */
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-h) 100%);
  color: #FFFFFF !important;
  border: none;
}
.pricing-card.outline .pricing-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(99,91,255,0.42);
  color: #FFFFFF !important;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   31. SOCIAL LINK WHATSAPP VARIANT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.soc-link.wa:hover{
  background: #25D366;
  border-color: #25D366;
  color: #FFFFFF;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   32. TESTIMONIAL TRUST BAR (Google Reviews verification strip)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.testimonial-trust{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 32px auto 0;
  padding: 18px 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  max-width: 720px;
}
@media (min-width: 768px){
  .testimonial-trust{
    flex-direction: row;
    gap: 20px;
    padding: 16px 28px;
  }
}

.t-trust-item{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-2);
}
.t-trust-item strong{
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.t-trust-item .stars{
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--warn);
}

.t-trust-divider{
  width: 1px;
  height: 24px;
  background: var(--border);
  display: none;
}
@media (min-width: 768px){
  .t-trust-divider{ display: block; }
}

.t-loc{
  font-size: 12px;
  color: var(--ink-3);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   33. DISABLED STATE FOR COOKIE TOGGLE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cookie-switch.disabled .cookie-slider{
  background: var(--brand-soft);
  cursor: not-allowed;
  opacity: 0.6;
}
.cookie-switch.disabled .cookie-slider::before{
  transform: translateX(16px);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   34. FOUNDER PHOTO FALLBACK (initials when no image)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.founder-photo-big{
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-photo-big > span{
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   35. SCROLL REVEAL (IntersectionObserver-driven)
   JS adds .reveal/.reveal-stagger to elements, then .visible when in viewport
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reveal{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(0.16, 1, 0.3, 1),
              transform .8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible{
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > *{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s cubic-bezier(0.16, 1, 0.3, 1),
              transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.visible > *{
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.visible > *:nth-child(1){ transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2){ transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(3){ transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(4){ transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(5){ transition-delay: 0.45s; }
.reveal-stagger.visible > *:nth-child(6){ transition-delay: 0.55s; }

/* Reduced motion: skip reveal animations */
@media (prefers-reduced-motion: reduce){
  .reveal,
  .reveal-stagger > *{
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Fallback: if JS doesn't run for any reason, show everything after 2 seconds */
@media (scripting: none){
  .reveal,
  .reveal-stagger > *{
    opacity: 1;
    transform: none;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   36. MOBILE OPTIMIZATIONS V30 — fixes for new redesigned sections
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Process timeline mobile */
@media (max-width: 767px){
  .process-timeline{
    padding: 0 4px;
  }
  .process-step{
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 14px;
    padding: 0;
  }
  .process-num-wrap{
    flex-shrink: 0;
    padding-top: 4px;
  }
  .process-num{
    width: 44px;
    height: 44px;
    font-size: 18px;
    border-width: 2.5px;
  }
  .process-step-content{
    padding: 18px 16px;
    text-align: left;
    width: auto;
    flex: 1;
  }
  .process-step h3{
    text-align: left;
    font-size: 16px;
    margin-bottom: 6px;
  }
  .process-step p{
    text-align: left;
    font-size: 13px;
    margin-bottom: 12px;
  }
  .process-week{
    margin: 0 0 8px;
  }
}

/* Comparison cards mobile */
@media (max-width: 767px){
  .comparison-grid{
    gap: 20px;
  }
  .compare-card-head{
    padding: 18px 18px 14px;
    gap: 12px;
  }
  .compare-card-icon-wrap{
    width: 44px;
    height: 44px;
  }
  .compare-card-head h3{
    font-size: 16px;
  }
  .compare-tagline{
    font-size: 11.5px;
  }
  .compare-card .compare-list{
    padding: 14px 18px;
  }
  .compare-card .compare-list li{
    font-size: 13px;
    padding: 10px 0;
    gap: 10px;
  }
  .compare-foot{
    padding: 12px 18px;
    font-size: 12.5px;
  }
  .compare-cta{
    margin: 14px 18px 18px;
    padding: 11px 16px;
    font-size: 13.5px;
  }
}

/* Founder section mobile */
@media (max-width: 767px){
  .founder-hero-card{
    margin: 0 -4px 32px;
  }
  .founder-hero-inner{
    padding: 28px 20px;
    gap: 20px;
  }
  .founder-photo-big{
    width: 120px;
    height: 120px;
    border-width: 3px;
  }
  .founder-photo-big > span{
    font-size: 44px;
  }
  .founder-name{
    font-size: 22px;
  }
  .founder-status{
    font-size: 10px;
  }
  .founder-stats{
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 12px 0;
  }
  .founder-stat .stat-value{
    font-size: 18px;
  }
  .founder-tags{
    gap: 6px;
  }
  .founder-tag{
    font-size: 11px;
    padding: 4px 8px;
  }
  .founder-btn{
    padding: 10px 14px;
    font-size: 13px;
  }
  .founder-actions{
    width: 100%;
  }
  .founder-actions .founder-btn{
    flex: 1;
    justify-content: center;
  }

  .founder-quote-card{
    padding: 28px 20px;
    margin-bottom: 32px;
  }
  .founder-quote-card blockquote{
    font-size: 15px;
  }

  .founder-detail-grid{
    gap: 18px;
    margin-bottom: 32px;
  }
  .founder-story-card,
  .founder-values-card{
    padding: 22px 18px;
  }
  .founder-story-head h3{
    font-size: 16px;
  }
  .founder-story-content p{
    font-size: 13.5px;
  }
  .val-item{
    padding: 12px;
    gap: 12px;
  }
  .val-icon{
    width: 32px;
    height: 32px;
  }
  .val-item strong{
    font-size: 13.5px;
  }
  .val-item p{
    font-size: 12.5px;
  }

  .founder-cta-strip{
    padding: 24px 20px;
    gap: 16px;
  }
  .founder-cta-text strong{
    font-size: 16px;
  }
  .founder-cta-text p{
    font-size: 13px;
  }
  .founder-cta-btn{
    padding: 12px 20px;
    font-size: 13.5px;
    width: 100%;
    justify-content: center;
  }
}

/* Footer mobile */
@media (max-width: 599px){
  .footer-grid{
    gap: 32px;
  }
  .footer-logo img{
    height: 40px;
  }
  .footer-brand .tagline{
    font-size: 13.5px;
  }
  .footer-col h4{
    font-size: 12px;
    margin-bottom: 14px;
  }
  .footer-col ul{
    gap: 9px;
  }
  .footer-col ul li a{
    font-size: 13.5px;
  }
  .footer-contact .contact-item{
    font-size: 13.5px;
    justify-content: center;
  }
  .contact-icon{
    width: 26px;
    height: 26px;
  }
  .footer-cta-btn{
    padding: 11px 16px;
    font-size: 13px;
  }
  .footer-bottom{
    font-size: 12px;
  }
  .footer-badge{
    font-size: 10.5px;
  }
}

/* General mobile touch optimizations */
@media (max-width: 767px){
  /* Larger tap targets */
  .nav-item,
  .section-cta-link,
  .btn,
  .pricing-cta,
  .compare-cta,
  .founder-btn,
  .footer-cta-btn,
  .footer-socials a{
    min-height: 44px;
  }

  /* Prevent horizontal scroll */
  body, html{
    overflow-x: hidden;
    width: 100%;
  }

  /* Tighter line heights on small text */
  .section-head p,
  .compare-list li,
  .process-step p{
    line-height: 1.55;
  }

  /* Faster animations on mobile (battery + perceived speed) */
  *{
    animation-duration: 0.3s !important;
  }
  .pulse, .status-dot, .q-spinner{
    animation-duration: 2s !important;
  }
}

/* Tablet refinements */
@media (min-width: 768px) and (max-width: 1023px){
  .process-grid{
    gap: 32px 24px;
  }
  .comparison-grid{
    gap: 24px;
  }
  .founder-detail-grid{
    grid-template-columns: 1fr;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MOBILE CENTERING — Results / SEO / Pricing cards (per user request)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 767px){
  /* Result cards — center ALL content on mobile */
  .result-card{
    text-align: center;
  }
  .result-visual{
    justify-content: center !important;
    align-items: flex-end !important;
    width: 100% !important;
  }
  .result-visual .label{
    margin: 0 auto !important;
    display: block !important;
  }
  .result-content{
    text-align: center !important;
    align-items: center !important;
    width: 100% !important;
  }
  .result-content h3{
    text-align: center !important;
  }
  .result-metric-wrap{
    justify-content: center !important;
    width: 100% !important;
  }
  .result-metric-label{
    text-align: center !important;
  }
  .result-desc{
    text-align: center !important;
  }
  .result-tags{
    justify-content: center !important;
    width: 100% !important;
  }
  .result-icon-wrap{
    top: 12px !important;
    right: 50% !important;
    transform: translateX(50%) !important;
  }

  /* SEO grid cards — center content */
  .seo-card{
    text-align: center;
  }
  .seo-card .seo-icon-wrap{
    margin-left: auto;
    margin-right: auto;
  }
  .seo-card .seo-pill{
    margin-left: auto;
    margin-right: auto;
  }
  .seo-card ul{
    text-align: left;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }
  .seo-card h3{
    text-align: center;
  }
  .seo-card > p{
    text-align: center;
  }

  /* Pricing cards — center content */
  .pricing-card{
    text-align: center;
  }
  .pricing-card-top{
    text-align: center;
  }
  .pricing-tier-icon{
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card h3{
    text-align: center;
  }
  .pricing-card .sub{
    text-align: center;
  }
  .pricing-price-block{
    text-align: center;
  }
  .price{
    justify-content: center;
  }
  .pricing-features{
    align-items: flex-start;
    text-align: left;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-features li{
    text-align: left;
  }

  /* Problem/solution cards — center */
  .prob-sol-card{
    text-align: center;
  }
  .prob-sol-card h3{
    text-align: center;
  }
  .prob-sol-card .icon-circle{
    margin-left: auto;
    margin-right: auto;
  }
  .prob-sol-card ul{
    text-align: left;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }

  /* Features section cards */
  .feature-card{
    text-align: center;
  }
  .feature-card .feature-icon{
    margin-left: auto;
    margin-right: auto;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MOBILE CARD CENTERING — all cards centered on mobile, left-aligned on desktop
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 767px) {

  /* Feature cards */
  .feature-card { text-align: center; align-items: center; }
  .feature-card .num { text-align: center; }
  .feature-card h3, .feature-card p { text-align: center; }
  .feature-icon { margin: 0 auto 16px !important; display: flex !important; }

  /* Service cards */
  .service-card { text-align: center; align-items: center; }
  .service-card h3, .service-card p { text-align: center; }
  .service-icon { margin: 0 auto 20px; }
  .service-card .learn { justify-content: center; }

  /* SEO cards */
  .seo-card { align-items: center !important; text-align: center; }
  .seo-card h3, .seo-card p, .seo-card p.sub { text-align: center; }
  .seo-card .ico-wrap { margin: 0 auto 14px !important; display: flex !important; align-self: center !important; }
  .seo-card .seo-tag,
  .seo-tag { align-self: center !important; margin-left: auto !important; margin-right: auto !important; display: block !important; width: fit-content !important; }
  .seo-card ul { align-items: flex-start; width: 100%; }

  /* Pricing cards */
  .pricing-card { text-align: center; align-items: center; }
  .pricing-card-top { text-align: center; width: 100%; }
  .pricing-tier-icon { margin: 0 auto 14px; }
  .pricing-card h3, .pricing-card .sub { text-align: center; }
  .price { justify-content: center; }
  .price-note { text-align: center; }
  .pricing-card .features-list li { text-align: left; }

  /* Process steps */
  .process-step { align-items: center; }
  .process-step-content { text-align: center; }
  .process-week { display: block; margin: 0 auto 12px; }
  .process-step h3, .process-step p { text-align: center; }
  .process-deliverables { text-align: left; align-items: flex-start; }

  /* Testimonial cards */
  .testimonial-card { text-align: center; align-items: center; }
  .t-head-row { justify-content: center; gap: 12px; flex-wrap: wrap; }
  .t-quote { text-align: center; }
  .t-author { text-align: center; justify-content: center; }

  /* Result cards */
  .result-card { text-align: center !important; }

  /* Problem/Solution cards */
  .prob-card, .sol-card { text-align: center; }
  .prob-card h3, .sol-card h3 { justify-content: center; text-align: center; }
  .prob-list li, .sol-list li { text-align: left; }
}
