/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

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

:root {
  --bg: #ffffff;
  --bg-subtle: #f8fafc;
  --accent: #2B6FFF;
  --accent-hover: #1a5ce8;
  --white: #ffffff;
  --navy: #0f1f44;
  --teal: #29C4D4;
  --radius: 10px;
  --font-sans: 'Archivo', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --nav-h: 68px;
}

html {
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; cursor: pointer; }
ul { list-style: none; }

::selection { background: rgba(15,31,68,0.1); color: var(--navy); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: rgba(15,31,68,0.15); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(15,31,68,0.25); }

em, i { font-style: italic; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--nav-h);
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15,31,68,0.1);
  box-shadow: 0 1px 20px rgba(15,31,68,0.06);
}

.navbar-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 28px; height: 28px;
  background: var(--navy);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 10px;
  color: white;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(15,31,68,0.45);
  transition: color 0.2s;
  position: relative;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--navy);
}

.navbar-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--navy);
  border-radius: 2px;
}

.navbar-cta {
  background: var(--navy);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.15s;
}

.navbar-cta:hover { background: rgba(15,31,68,0.85); }
.navbar-cta:active { transform: scale(0.97); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(15,31,68,0.6);
  border-radius: 2px;
  transition: all 0.25s;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  border-top: 1px solid rgba(15,31,68,0.08);
  padding: 1rem 2rem 1.5rem;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 49;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 0.9rem;
  color: rgba(15,31,68,0.5);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(15,31,68,0.06);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--navy); }

.mobile-menu .navbar-cta {
  margin-top: 1rem;
  display: inline-block;
  text-align: center;
}

/* ── Section utility ── */
.section-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(15,31,68,0.08), transparent);
}

/* ── Hero (kept for inner pages that may use it) ── */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 5rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(15,31,68,0.4);
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: rgba(15,31,68,0.15);
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.hero-heading em {
  font-style: italic;
  color: rgba(15,31,68,0.45);
}

.hero-sub {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(15,31,68,0.55);
  max-width: 340px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-primary:hover { background: rgba(15,31,68,0.88); }
.btn-primary:active { transform: scale(0.97); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(15,31,68,0.6);
  border: 1px solid rgba(15,31,68,0.15);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
}

.btn-ghost:hover { color: var(--navy); border-color: rgba(15,31,68,0.3); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 3rem;
}

.hero-stat {
  padding: 0 1.75rem;
  border-right: 1px solid rgba(15,31,68,0.1);
}

.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.hero-stat-label {
  font-size: 10px;
  color: rgba(15,31,68,0.4);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 2px;
}

/* Browser Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.browser-mockup {
  width: 100%;
  max-width: 520px;
  border-radius: 14px;
  overflow: hidden;
  background: #f5f7fa;
  border: 1px solid rgba(15,31,68,0.1);
  box-shadow: 0 40px 100px rgba(15,31,68,0.12), 0 0 0 0.5px rgba(15,31,68,0.05);
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.browser-chrome {
  background: rgba(15,31,68,0.04);
  border-bottom: 1px solid rgba(15,31,68,0.08);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}

.browser-dot.red { background: #FF5F57; }
.browser-dot.yellow { background: #FEBC2E; }
.browser-dot.green { background: #28C840; }

.browser-url {
  flex: 1;
  background: rgba(15,31,68,0.06);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 11px;
  color: rgba(15,31,68,0.4);
  letter-spacing: 0.01em;
}

.browser-content {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.browser-content img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.browser-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6));
}

.browser-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(15,31,68,0.1);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34,197,94,0.6);
}

.badge-text { font-size: 11px; font-weight: 600; color: rgba(15,31,68,0.85); }
.badge-sub { font-size: 9px; color: rgba(15,31,68,0.45); }

.browser-live {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(15,31,68,0.1);
  border-radius: 6px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: rgba(15,31,68,0.7);
}

.live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ── Marquee ── */
.marquee-section {
  background: var(--bg);
  overflow: hidden;
  padding: 1.5rem 0;
  position: relative;
  border-top: 1px solid rgba(15,31,68,0.06);
  border-bottom: 1px solid rgba(15,31,68,0.06);
}

.marquee-fade-l,
.marquee-fade-r {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-fade-l { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.marquee-fade-r { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
  width: max-content;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(15,31,68,0.35);
  white-space: nowrap;
}

.marquee-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(15,31,68,0.2);
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ── Services Section ── */
.services {
  background: var(--bg);
  padding: 7rem 0;
  position: relative;
}

.section-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(15,31,68,0.4);
  font-weight: 500;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: rgba(15,31,68,0.2);
}

.services-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 5rem;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.028em;
  color: var(--navy);
}

.section-heading .dim { color: rgba(15,31,68,0.25); }
.section-heading.small { font-size: clamp(1.6rem, 3vw, 2.4rem); }

.services-list { border-top: 1px solid rgba(15,31,68,0.07); }

.service-row {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(15,31,68,0.07);
  cursor: pointer;
  transition: padding-left 0.25s;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.service-row::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0; bottom: 0;
  width: 3px;
  background: rgba(43,111,255,0.6);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.25s;
}

.service-row:hover::before { opacity: 1; }
.service-row:hover { padding-left: 0.75rem; background: rgba(15,31,68,0.02); }

.service-num {
  font-size: 10px;
  color: rgba(15,31,68,0.2);
  font-weight: 600;
  letter-spacing: 0.08em;
  width: 2.5rem;
  flex-shrink: 0;
}

.service-name {
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 700;
  color: rgba(15,31,68,0.75);
  letter-spacing: -0.02em;
  flex: 1;
  transition: color 0.2s;
}

.service-row:hover .service-name { color: var(--navy); }

.service-tag {
  font-size: 10px;
  color: rgba(15,31,68,0.35);
  background: rgba(15,31,68,0.04);
  border: 1px solid rgba(15,31,68,0.08);
  border-radius: 100px;
  padding: 3px 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-left: auto;
  margin-right: 1.5rem;
  display: none;
}

@media (min-width: 640px) { .service-tag { display: block; } }

.service-arrow {
  color: rgba(15,31,68,0.25);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.service-row:hover .service-arrow { opacity: 1; transform: translateX(0); color: rgba(15,31,68,0.7); }

/* ── Examples Section ── */
.examples {
  background: var(--bg-subtle);
  padding: 7rem 0;
  position: relative;
}

.examples-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
}

.examples-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.example-featured {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 8;
  background: #e8edf5;
  border: 1px solid rgba(15,31,68,0.08);
  cursor: pointer;
}

.example-featured img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
  transition: transform 0.5s, filter 0.5s;
}

.example-featured:hover img { transform: scale(1.03); filter: brightness(0.75); }

.example-featured-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}

.example-chip {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 0.6rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.example-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}

.examples-small-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .examples-small-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.example-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e8edf5;
  border: 1px solid rgba(15,31,68,0.08);
  cursor: pointer;
}

.example-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
  transition: transform 0.4s, filter 0.4s;
}

.example-card:hover img { transform: scale(1.05); filter: brightness(0.7); }

.example-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.example-card-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.01em;
}

/* ── Pricing Section ── */
.pricing {
  background: var(--bg);
  padding: 7rem 0;
  position: relative;
}

.pricing-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.toggle-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(15,31,68,0.4);
  transition: color 0.2s;
}

.toggle-label.active { color: rgba(15,31,68,0.8); }

.toggle-switch {
  position: relative;
  width: 48px; height: 26px;
  background: rgba(15,31,68,0.08);
  border: 1px solid rgba(15,31,68,0.12);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s;
}

.toggle-switch.monthly { background: rgba(43,111,255,0.2); border-color: rgba(43,111,255,0.3); }

.toggle-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: rgba(15,31,68,0.4);
  border-radius: 50%;
  transition: transform 0.25s, background 0.2s;
}

.toggle-switch.monthly .toggle-knob {
  transform: translateX(22px);
  background: var(--accent);
}

.badge-save {
  font-size: 10px;
  font-weight: 600;
  color: rgba(43,111,255,0.9);
  background: rgba(43,111,255,0.1);
  border: 1px solid rgba(43,111,255,0.2);
  border-radius: 100px;
  padding: 2px 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(15,31,68,0.08);
  border-radius: 18px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: white;
  padding: 2.25rem 2rem;
  position: relative;
  transition: background 0.2s;
}

.pricing-card:hover { background: rgba(15,31,68,0.02); }

.pricing-card.featured {
  background: var(--navy);
  color: white;
}

.pricing-card.featured:hover { background: var(--navy); }

.pricing-recommended {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: rgba(15,31,68,0.85);
  color: rgba(255,255,255,0.75);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
  padding: 5px 0;
  font-weight: 600;
}

.pricing-plan {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: rgba(15,31,68,0.4);
  margin-bottom: 1rem;
}

.pricing-card.featured .pricing-plan { color: rgba(255,255,255,0.5); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 0.3rem;
}

.price-currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(15,31,68,0.5);
}

.price-value {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.04em;
  transition: opacity 0.15s;
}

.pricing-card.featured .price-currency { color: rgba(255,255,255,0.5); }
.pricing-card.featured .price-value { color: white; }

.price-period {
  font-size: 0.75rem;
  color: rgba(15,31,68,0.35);
  margin-bottom: 1.5rem;
}

.pricing-card.featured .price-period { color: rgba(255,255,255,0.45); }

.pricing-desc {
  font-size: 0.8rem;
  color: rgba(15,31,68,0.45);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  border-top: 1px solid rgba(15,31,68,0.08);
  padding-top: 1.25rem;
}

.pricing-card.featured .pricing-desc {
  color: rgba(255,255,255,0.55);
  border-top-color: rgba(255,255,255,0.1);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(15,31,68,0.6);
}

.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.75); }

.feature-check {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(15,31,68,0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 8px;
  color: rgba(15,31,68,0.5);
}

.pricing-card.featured .feature-check {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

.pricing-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  display: block;
}

.pricing-btn.outline {
  background: transparent;
  border: 1px solid rgba(15,31,68,0.15);
  color: rgba(15,31,68,0.55);
}

.pricing-btn.outline:hover {
  background: rgba(15,31,68,0.04);
  border-color: rgba(15,31,68,0.3);
  color: var(--navy);
}

.pricing-btn.solid {
  background: var(--navy);
  border: none;
  color: white;
}

.pricing-btn.solid:hover { background: rgba(15,31,68,0.85); }

.pricing-cta {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(15,31,68,0.3);
}

.pricing-cta a {
  color: rgba(15,31,68,0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Contact Section ── */
.contact {
  background: var(--bg);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.contact-ghost {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(15,31,68,0.03);
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.contact-inner {
  position: relative;
  z-index: 1;
}

.contact-header {
  margin-bottom: 5rem;
}

.contact-headline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .contact-headline {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.contact-sub {
  font-size: 0.83rem;
  color: rgba(15,31,68,0.4);
  max-width: 240px;
  line-height: 1.65;
}

@media (min-width: 768px) { .contact-sub { text-align: right; } }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
  }
}

/* Contact info */
.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }

.contact-links { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(15,31,68,0.05);
  border: 1px solid rgba(15,31,68,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 13px;
  transition: background 0.2s;
}

a.contact-item:hover .contact-icon { background: rgba(15,31,68,0.1); }

.contact-item-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(15,31,68,0.4);
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-item-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(15,31,68,0.75);
  line-height: 1.5;
  transition: color 0.2s;
}

a.contact-item:hover .contact-item-value { color: var(--navy); }

.contact-hours {
  background: rgba(15,31,68,0.025);
  border: 1px solid rgba(15,31,68,0.06);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.contact-hours-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(15,31,68,0.3);
  font-weight: 500;
  margin-bottom: 1rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  margin-bottom: 0.5rem;
}

.hours-row:last-child { margin-bottom: 0; }

.hours-day { color: rgba(15,31,68,0.5); }
.hours-time { color: var(--navy); font-weight: 500; }
.hours-dim { color: rgba(15,31,68,0.3); }

.contact-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.trust-badge {
  background: white;
  border: 1px solid rgba(15,31,68,0.08);
  border-radius: var(--radius);
  padding: 1rem 0.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(15,31,68,0.04);
}

.trust-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.trust-label {
  font-size: 9px;
  color: rgba(15,31,68,0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 2px;
}

/* Contact Form */
.contact-form-wrap {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid rgba(15,31,68,0.06);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(15,31,68,0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.form-field { margin-bottom: 1.75rem; }
.form-field:last-of-type { margin-bottom: 0; }

.form-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(15,31,68,0.5);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  background: #f8fafc;
  border: none;
  border-bottom: 1px solid rgba(15,31,68,0.12);
  padding: 0.75rem 0;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
  caret-color: var(--navy);
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(15,31,68,0.3); }

.form-input:focus,
.form-textarea:focus { border-bottom-color: var(--accent); background: white; }

.form-textarea { resize: none; }

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
}

.form-disclaimer {
  font-size: 10px;
  color: rgba(15,31,68,0.35);
  line-height: 1.5;
  max-width: 180px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.form-submit:hover { background: rgba(15,31,68,0.85); }
.form-submit:active { transform: scale(0.97); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.form-submit .spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
  text-align: center;
}

.form-success.visible { display: flex; }

.success-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(15,31,68,0.06);
  border: 1px solid rgba(15,31,68,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.success-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.success-text {
  font-size: 0.85rem;
  color: rgba(15,31,68,0.5);
  max-width: 280px;
  line-height: 1.6;
}

/* ── Footer ── */
footer {
  background: var(--bg-subtle);
  position: relative;
}

.footer-brand-bar {
  background: #0f1f44;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.footer-brand-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .footer-brand-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.footer-wordmark {
  font-family: var(--font-heading);
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  letter-spacing: -0.04em;
  font-size: clamp(3rem, 8vw, 7rem);
  user-select: none;
}

.footer-cta-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  white-space: nowrap;
}

.footer-cta-link:hover { color: rgba(255,255,255,0.85); }

.footer-main {
  max-width: 1152px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand-col { grid-column: span 2; }
@media (min-width: 768px) { .footer-brand-col { grid-column: span 1; } }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
}

.footer-logo-icon {
  width: 24px; height: 24px;
  background: var(--navy);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: white;
}

.footer-logo-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(15,31,68,0.7);
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 0.78rem;
  color: rgba(15,31,68,0.45);
  line-height: 1.6;
  max-width: 240px;
}

.footer-col-title {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(15,31,68,0.35);
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer-nav-list { display: flex; flex-direction: column; gap: 0.65rem; }

.footer-nav-list a {
  font-size: 0.82rem;
  color: rgba(15,31,68,0.5);
  transition: color 0.2s;
}

.footer-nav-list a:hover { color: var(--navy); }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.65rem; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}

.footer-contact-item a {
  color: rgba(15,31,68,0.65);
  transition: color 0.2s;
}

.footer-contact-item a:hover { color: var(--navy); }

.footer-contact-icon {
  color: rgba(15,31,68,0.25);
  font-size: 11px;
  flex-shrink: 0;
}

.footer-contact-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact-address span {
  font-size: 0.82rem;
  color: rgba(15,31,68,0.5);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(15,31,68,0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copy {
  font-size: 11px;
  color: rgba(15,31,68,0.35);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 11px;
  color: rgba(15,31,68,0.4);
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--navy); }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── Responsive ── */
@media (max-width: 767px) {
  .navbar-links,
  .navbar-cta { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-label { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-stat:first-child { padding-left: 1.75rem; }
  .hero-visual { display: none; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 479px) {
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .hero-stat { border-right: none; padding: 0.5rem 1rem; }
  .contact-trust { grid-template-columns: repeat(3, 1fr); }
}

/* ── Logo Image ── */
.navbar-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 0.75rem;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 0 3rem;
}

/* ── Legal Pages ── */
.legal-page {
  padding: calc(var(--nav-h) + 4rem) 0 6rem;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.legal-page .legal-updated {
  font-size: 0.8rem;
  color: rgba(15,31,68,0.35);
  margin-bottom: 3rem;
}

.legal-page h2 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2.5rem 0 0.75rem;
}

.legal-page p, .legal-page li {
  font-size: 0.9rem;
  color: rgba(15,31,68,0.6);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.legal-page ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-page a {
  color: rgba(15,31,68,0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page a:hover {
  color: var(--navy);
}

/* ── About Us page ── */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.about-value-card {
  background: white;
  border: 1px solid rgba(15,31,68,0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(15,31,68,0.05);
}

.about-value-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.about-value-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.about-value-desc {
  font-size: 0.82rem;
  color: rgba(15,31,68,0.5);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   Pricing V2
   ══════════════════════════════════════════ */

.pricing-v2-section {
  padding: 2rem 0 7rem;
}

/* ── Toggle ── */
.pricing-toggle-v2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.ptv2-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(15,31,68,0.35);
  transition: color 0.2s;
  user-select: none;
}

.ptv2-label.active {
  color: rgba(15,31,68,0.85);
  font-weight: 600;
}

.ptv2-switch {
  position: relative;
  width: 44px;
  height: 24px;
  border-radius: 100px;
  background: rgba(15,31,68,0.1);
  border: 1.5px solid rgba(15,31,68,0.12);
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  padding: 0;
  flex-shrink: 0;
}

.ptv2-switch[aria-checked="true"] {
  background: var(--accent);
  border-color: var(--accent);
}

.ptv2-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.ptv2-switch[aria-checked="true"] .ptv2-thumb {
  transform: translateX(20px);
}

.ptv2-save {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(43,111,255,0.1);
  border: 1px solid rgba(43,111,255,0.25);
  border-radius: 100px;
  padding: 0.2rem 0.65rem;
  white-space: nowrap;
}

/* ── Cards Grid ── */
.pricing-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: end;
  max-width: 980px;
  margin: 0 auto;
}

/* Staggered heights – equal 80 px step per tier, bottom-aligned */
.pricing-grid-v2 .pricing-card-v2:nth-child(1) { min-height: 340px; }
.pricing-grid-v2 .pricing-card-v2:nth-child(2) { min-height: 420px; }
.pricing-grid-v2 .pricing-card-v2:nth-child(3) { min-height: 500px; }

.pricing-card-v2 {
  border-radius: 1.25rem;
  border: 1px solid rgba(15,31,68,0.1);
  background: #ffffff;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.5s ease;
  box-shadow: 0 2px 16px rgba(15,31,68,0.06);
}

.pricing-card-v2.is-featured {
  border: 2px solid var(--accent);
  background: rgba(43,111,255,0.03);
  box-shadow: 0 8px 40px rgba(43,111,255,0.15);
}

/* Scroll-in final positions */
.pricing-card-v2.reveal-done {
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  .pricing-grid-v2 {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .pricing-grid-v2 .pricing-card-v2:nth-child(1),
  .pricing-grid-v2 .pricing-card-v2:nth-child(2),
  .pricing-grid-v2 .pricing-card-v2:nth-child(3) {
    min-height: 0;
  }
}

/* ── Popular badge ── */
.pc-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.7rem;
  border-radius: 0 1.25rem 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  letter-spacing: 0.02em;
}

.pc-badge svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}

/* ── Card content ── */
.pc-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(15,31,68,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pc-price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
  margin-top: 1.25rem;
}

.pc-currency {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.pc-amount {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.04em;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pc-amount.price-exit {
  opacity: 0;
  transform: translateY(-8px);
}

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

.pc-amount.price-enter {
  animation: priceSlideIn 0.25s ease forwards;
}

.pc-period {
  font-size: 0.78rem;
  color: rgba(15,31,68,0.35);
  text-align: center;
  margin-top: 0.3rem;
}

.pc-features {
  list-style: none;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.pc-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.84rem;
  color: rgba(15,31,68,0.6);
  line-height: 1.45;
}

.pc-minlaufzeit {
  font-size: 0.72rem;
  color: rgba(15,31,68,0.38);
  text-align: center;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.pc-check {
  width: 15px;
  height: 15px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.pc-divider {
  border: none;
  border-top: 1px solid rgba(15,31,68,0.08);
  margin: 1.5rem 0 1rem;
}

.pc-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.7rem 1.25rem;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  border: 1.5px solid rgba(15,31,68,0.15);
  color: rgba(15,31,68,0.6);
  background: transparent;
  cursor: pointer;
}

.pc-btn:hover {
  border-color: var(--accent);
  color: white;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(43,111,255,0.2);
}

.pc-btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.pc-btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 0 0 3px rgba(43,111,255,0.3);
}

.pc-desc {
  font-size: 0.75rem;
  color: rgba(15,31,68,0.35);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.55;
}

/* ── Scroll Morph Hero ── */
.smh-section {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  user-select: none;
}

.smh-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Intro text */
.smh-intro-text {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  transition: opacity 0.4s ease;
  width: min(600px, 90vw);
}

.smh-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(15,31,68,0.4);
  font-weight: 500;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.smh-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: rgba(15,31,68,0.2);
}

.smh-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 2rem;
}

.smh-h1 em {
  font-style: italic;
  color: var(--accent);
}

.smh-scroll-hint {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(15,31,68,0.3);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.smh-scroll-arrow {
  display: inline-block;
  animation: smhBounce 1.4s ease-in-out infinite;
}

@keyframes smhBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* Arc content */
.smh-arc-content {
  position: absolute;
  z-index: 10;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  width: min(640px, 90vw);
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 0 1rem;
}

.smh-arc-content.active {
  pointer-events: auto;
}

.smh-arc-h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.smh-arc-accent {
  color: var(--accent);
}

.smh-arc-sub {
  font-size: 1rem;
  color: rgba(15,31,68,0.5);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.smh-arc-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Cards container */
.smh-cards {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Individual card */
.smh-card-wrap {
  position: absolute;
  width: 60px;
  height: 85px;
  top: 50%;
  left: 50%;
  margin-left: -30px;
  margin-top: -42px;
  perspective: 1000px;
  cursor: pointer;
}

.smh-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.smh-card-wrap:hover .smh-card-inner {
  transform: rotateY(180deg);
}

.smh-card-front,
.smh-card-back {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  overflow: hidden;
  backface-visibility: hidden;
  box-shadow: 0 4px 16px rgba(15,31,68,0.12);
}

.smh-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.smh-card-back {
  background: var(--navy);
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 8px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
}

.smh-card-back-label {
  font-size: 7px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 3px;
  display: block;
}

.smh-card-back-text {
  font-size: 10px;
  font-weight: 500;
  color: white;
  display: block;
}

/* Stats band */
.stats-band {
  background: #f8fafc;
  border-top: 1px solid rgba(15,31,68,0.07);
  border-bottom: 1px solid rgba(15,31,68,0.07);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(15,31,68,0.4);
  font-weight: 500;
}

/* ══════════════════════════════════════════
   Service Cards (Homepage)
   ══════════════════════════════════════════ */

.services-cards {
  padding: 6rem 0;
  background: var(--bg);
  position: relative;
}

.sc-header {
  margin-bottom: 3.5rem;
}

.sc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .sc-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.sc-card {
  background: #ffffff;
  border: 1px solid rgba(15,31,68,0.08);
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  cursor: default;
}

.sc-card:hover {
  border-color: rgba(43,111,255,0.28);
  box-shadow: 0 6px 30px rgba(43,111,255,0.08);
  transform: translateY(-3px);
}

.sc-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.sc-icon {
  width: 44px;
  height: 44px;
  background: rgba(43,111,255,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sc-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sc-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(15,31,68,0.18);
  letter-spacing: 0.06em;
  font-family: var(--font-heading);
}

.sc-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.sc-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(43,111,255,0.08);
  border-radius: 100px;
  padding: 0.2rem 0.6rem;
  align-self: flex-start;
}

.sc-cta {
  text-align: center;
}

/* ══════════════════════════════════════════
   Referenzen (Homepage)
   ══════════════════════════════════════════ */

.referenzen {
  padding: 6rem 0;
  background: #f8fafc;
  position: relative;
}

.ref-header {
  margin-bottom: 3.5rem;
}

.ref-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .ref-showcase {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Browser card */
.ref-card {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(15,31,68,0.1);
  box-shadow: 0 8px 40px rgba(15,31,68,0.09);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.ref-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(15,31,68,0.14);
}

.ref-chrome {
  background: #f1f5f9;
  border-bottom: 1px solid rgba(15,31,68,0.08);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ref-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.ref-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.ref-dot.r { background: #ff5f57; }
.ref-dot.y { background: #febc2e; }
.ref-dot.g { background: #28c840; }

.ref-url {
  flex: 1;
  background: white;
  border-radius: 5px;
  padding: 0.22rem 0.65rem;
  font-size: 0.72rem;
  color: rgba(15,31,68,0.45);
  border: 1px solid rgba(15,31,68,0.08);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ref-visit {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.ref-preview {
  background: linear-gradient(135deg, #0f1f44 0%, #1a3a8a 55%, #0c1a38 100%);
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ref-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 35%, rgba(41,196,212,0.18) 0%, transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(43,111,255,0.18) 0%, transparent 50%);
}

.ref-preview::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 60px 20px rgba(41,196,212,0.08);
}

.ref-preview-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.ref-preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(40,200,64,0.12);
  border: 1px solid rgba(40,200,64,0.25);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  color: #28c840;
  font-weight: 600;
  margin-bottom: 1rem;
}

.ref-live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #28c840;
  border-radius: 50%;
  animation: refPulse 1.5s ease-in-out infinite;
}

@keyframes refPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.ref-preview-domain {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.025em;
}

.ref-preview-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.4rem;
}

/* Info side */
.ref-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin-bottom: 0.6rem;
}

.ref-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.ref-desc {
  font-size: 0.88rem;
  color: rgba(15,31,68,0.55);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.ref-details {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}

.ref-detail {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.84rem;
  color: rgba(15,31,68,0.65);
  font-weight: 500;
}

.ref-detail svg {
  width: 15px;
  height: 15px;
  color: var(--teal);
  flex-shrink: 0;
}

.ref-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  transition: gap 0.2s ease;
}

.ref-link:hover {
  gap: 0.8rem;
}

.ref-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.ref-link:hover svg {
  transform: translateX(3px);
}

/* ══════════════════════════════════════════
   Landing Page – neue Sections (index.html)
   ══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Scroll Progress Bar ── */
.scroll-progress-bar { position: fixed; top: 0; left: 0; width: 0%; height: 3px; background: linear-gradient(90deg, #2B6FFF, #29C4D4); z-index: 1000; transition: width 0.1s; }

/* ── Hero LP ── */
.hero-lp { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: #ffffff; padding: calc(var(--nav-h) + 4rem) 2rem 6rem; }

/* Blob animations */
.hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35; animation: blobMove 10s ease-in-out infinite alternate; }
.hero-blob-1 { width: 500px; height: 500px; background: #2B6FFF; top: -100px; left: -150px; animation-delay: 0s; }
.hero-blob-2 { width: 400px; height: 400px; background: #29C4D4; top: 50%; right: -100px; animation-delay: -3s; }
.hero-blob-3 { width: 350px; height: 350px; background: #667eea; bottom: -100px; left: 40%; animation-delay: -6s; }
@keyframes blobMove { 0% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-50px) scale(1.05); } 66% { transform: translate(-20px,20px) scale(0.95); } 100% { transform: translate(10px,-30px) scale(1.03); } }

/* Floating cards */
.hero-floating-card { position: absolute; background: white; border-radius: 12px; padding: 12px 16px; box-shadow: 0 8px 30px rgba(15,31,68,0.12); font-size: 13px; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 8px; z-index: 2; }
.hero-card-1 { top: 25%; left: 5%; animation: float1 6s ease-in-out infinite; }
.hero-card-2 { top: 15%; right: 8%; animation: float2 7s ease-in-out infinite; }
.hero-card-3 { bottom: 25%; right: 6%; animation: float1 8s ease-in-out infinite reverse; }
@keyframes float1 { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-18px) rotate(1deg)} }
@keyframes float2 { 0%,100%{transform:translateY(0) rotate(1deg)} 50%{transform:translateY(-22px) rotate(-1deg)} }

/* ── Hero Content ── */
.hero-lp-inner { position: relative; z-index: 2; max-width: 1152px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-lp-text .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(43,111,255,0.08); border: 1px solid rgba(43,111,255,0.2); color: #2B6FFF; font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 100px; margin-bottom: 1.5rem; }
.hero-lp-h1 { font-family: var(--font-heading); font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 800; color: var(--navy); line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1.25rem; }
.hero-lp-h1 em { font-style: normal; background: linear-gradient(135deg, #2B6FFF, #29C4D4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-lp-sub { font-size: 1.1rem; color: rgba(15,31,68,0.6); line-height: 1.7; margin-bottom: 2rem; max-width: 480px; }
.hero-lp-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-lp-visual { position: relative; }

/* Hero browser mockup */
.hero-browser { background: white; border-radius: 14px; overflow: hidden; border: 1px solid rgba(15,31,68,0.1); box-shadow: 0 30px 80px rgba(15,31,68,0.12), 0 0 0 0.5px rgba(15,31,68,0.05); }
.hero-browser-chrome { background: #f3f4f6; border-bottom: 1px solid rgba(15,31,68,0.08); padding: 10px 14px; display: flex; align-items: center; gap: 10px; }
.hero-browser-dots { display: flex; gap: 5px; }
.hero-browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.hero-browser-dot.r { background: #FF5F57; }
.hero-browser-dot.y { background: #FEBC2E; }
.hero-browser-dot.g { background: #28C840; }
.hero-browser-url { flex: 1; background: white; border-radius: 5px; padding: 4px 10px; font-size: 11px; color: rgba(15,31,68,0.4); border: 1px solid rgba(15,31,68,0.08); }
.hero-browser-body { padding: 0; }
.hero-browser-nav { height: 36px; background: #0f1f44; display: flex; align-items: center; padding: 0 16px; gap: 12px; }
.hero-browser-nav-logo { width: 60px; height: 8px; background: white; border-radius: 4px; opacity: 0.9; }
.hero-browser-nav-links { display: flex; gap: 8px; margin-left: auto; }
.hero-browser-nav-link { width: 28px; height: 6px; background: rgba(255,255,255,0.3); border-radius: 3px; }
.hero-browser-hero-area { background: linear-gradient(135deg, #f0f4ff 0%, #e8f4ff 100%); padding: 24px 20px; }
.hero-browser-hero-tag { width: 60px; height: 7px; background: rgba(43,111,255,0.3); border-radius: 4px; margin-bottom: 10px; }
.hero-browser-hero-h { width: 75%; height: 14px; background: var(--navy); border-radius: 4px; margin-bottom: 6px; opacity: 0.85; }
.hero-browser-hero-h2 { width: 55%; height: 14px; background: var(--navy); border-radius: 4px; margin-bottom: 14px; opacity: 0.85; }
.hero-browser-hero-sub { width: 85%; height: 7px; background: rgba(15,31,68,0.2); border-radius: 4px; margin-bottom: 4px; }
.hero-browser-hero-sub2 { width: 65%; height: 7px; background: rgba(15,31,68,0.2); border-radius: 4px; margin-bottom: 18px; }
.hero-browser-hero-btns { display: flex; gap: 8px; }
.hero-browser-hero-btn { height: 22px; border-radius: 100px; }
.hero-browser-hero-btn.primary { width: 90px; background: #2B6FFF; }
.hero-browser-hero-btn.ghost { width: 70px; background: transparent; border: 1.5px solid rgba(15,31,68,0.25); }
.hero-browser-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 16px 20px; background: white; }
.hero-browser-card { background: #f8fafc; border: 1px solid rgba(15,31,68,0.07); border-radius: 8px; padding: 10px; }
.hero-browser-card-icon { width: 24px; height: 24px; border-radius: 6px; background: rgba(43,111,255,0.1); margin-bottom: 8px; }
.hero-browser-card-line { height: 6px; background: rgba(15,31,68,0.12); border-radius: 3px; margin-bottom: 4px; }
.hero-browser-card-line.short { width: 60%; }

/* ── Leistungen Section ── */
.leistungen-section { padding: 6rem 2rem; background: white; }
.leistungen-inner { max-width: 1152px; margin: 0 auto; }

/* ── Problem Section ── */
.problem-section { padding: 6rem 2rem; background: #f8fafc; }
.problem-inner { max-width: 1152px; margin: 0 auto; }
.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin: 3rem 0; }
@media (max-width: 640px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card { background: white; border: 1px solid rgba(15,31,68,0.08); border-radius: 16px; padding: 1.75rem; display: flex; align-items: flex-start; gap: 1rem; transition: transform 0.3s, box-shadow 0.3s; }
.problem-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(15,31,68,0.1); }
.problem-icon { width: 44px; height: 44px; background: rgba(239,68,68,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.problem-card-text h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.problem-card-text p { font-size: 0.88rem; color: rgba(15,31,68,0.55); line-height: 1.5; }

/* Before/After Slider */
.ba-wrap { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(15,31,68,0.15); max-width: 720px; margin: 3rem auto 0; aspect-ratio: 16/9; user-select: none; }
.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-before { z-index: 1; }
.ba-after { z-index: 2; clip-path: inset(0 50% 0 0); transition: none; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: white; z-index: 10; cursor: ew-resize; transform: translateX(-50%); }
.ba-handle::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 40px; height: 40px; background: white; border-radius: 50%; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.ba-handle::after { content: '◀ ▶'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 10px; color: var(--navy); width: 40px; text-align: center; }

/* Mockup styles */
.ba-mockup { width: 100%; height: 100%; display: flex; flex-direction: column; }
.ba-mockup-bar { height: 28px; display: flex; align-items: center; padding: 0 10px; gap: 5px; }
.ba-mockup-bar span { width: 8px; height: 8px; border-radius: 50%; }
.ba-mockup-content { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 8px; }

/* Old/bad site */
.ba-before .ba-mockup { background: #e8e6e0; }
.ba-before .ba-mockup-bar { background: #c9c7c0; }
.ba-before .ba-mockup-bar span:nth-child(1) { background: #ff6b6b; }
.ba-before .ba-mockup-bar span:nth-child(2) { background: #ffd93d; }
.ba-before .ba-mockup-bar span:nth-child(3) { background: #6bcb77; }
.ba-before .ba-block-header { height: 40px; background: #a0998c; border-radius: 2px; }
.ba-before .ba-block-text { height: 10px; background: #c4bdb5; border-radius: 2px; }
.ba-before .ba-block-text.w60 { width: 60%; }
.ba-before .ba-block-text.w80 { width: 80%; }
.ba-before .ba-block-text.w45 { width: 45%; }
.ba-before-label { position: absolute; top: 40px; left: 10px; background: rgba(0,0,0,0.5); color: white; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 6px; z-index: 5; }

/* New/good site */
.ba-after .ba-mockup { background: #ffffff; }
.ba-after .ba-mockup-bar { background: #f3f4f6; }
.ba-after .ba-mockup-bar span:nth-child(1) { background: #ff6b6b; }
.ba-after .ba-mockup-bar span:nth-child(2) { background: #ffd93d; }
.ba-after .ba-mockup-bar span:nth-child(3) { background: #6bcb77; }
.ba-after .ba-block-nav { height: 24px; background: #f9fafb; border-radius: 4px; display: flex; align-items: center; gap: 6px; padding: 0 8px; }
.ba-after .ba-block-nav-dot { width: 30px; height: 6px; background: #2B6FFF; border-radius: 3px; }
.ba-after .ba-block-nav-dot.sm { width: 20px; background: rgba(15,31,68,0.2); }
.ba-after .ba-block-hero { height: 50px; background: linear-gradient(135deg, #2B6FFF22, #29C4D422); border-radius: 8px; display: flex; align-items: center; padding: 0 10px; }
.ba-after .ba-block-hero-text { height: 10px; width: 50%; background: linear-gradient(90deg, #2B6FFF, #29C4D4); border-radius: 5px; }
.ba-after .ba-block-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 5px; }
.ba-after .ba-block-card { height: 30px; background: #f3f4f6; border-radius: 6px; border: 1px solid #e5e7eb; }
.ba-after .ba-block-cta { height: 18px; width: 40%; background: #2B6FFF; border-radius: 6px; }
.ba-after-label { position: absolute; top: 40px; right: 10px; background: #22c55e; color: white; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 6px; z-index: 15; }

/* ── Process Section ── */
.process-section { padding: 6rem 2rem; background: white; }
.process-inner { max-width: 1152px; margin: 0 auto; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-top: 4rem; position: relative; }
.process-steps::before { content:''; position:absolute; top: 48px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, #2B6FFF, #29C4D4); opacity: 0.2; }
@media (max-width: 768px) { .process-steps { grid-template-columns: 1fr; } .process-steps::before { display: none; } }
.process-step { text-align: center; opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.process-step.step-visible { opacity: 1; transform: translateY(0); }
.process-step:nth-child(2) { transition-delay: 0.15s; }
.process-step:nth-child(3) { transition-delay: 0.3s; }
.process-step:nth-child(4) { transition-delay: 0.45s; }
.step-icon-wrap { width: 80px; height: 80px; margin: 0 auto 1.25rem; border-radius: 50%; background: linear-gradient(135deg, rgba(43,111,255,0.1), rgba(41,196,212,0.1)); border: 2px solid rgba(43,111,255,0.15); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.process-step.step-visible .step-icon-wrap { background: linear-gradient(135deg, rgba(43,111,255,0.15), rgba(41,196,212,0.15)); border-color: rgba(43,111,255,0.3); }
.step-icon-wrap svg { width: 28px; height: 28px; stroke: #2B6FFF; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.step-num { font-size: 11px; font-weight: 700; color: #29C4D4; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.step-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.step-desc { font-size: 0.88rem; color: rgba(15,31,68,0.55); line-height: 1.6; }
/* Highlight step 3 (Vorschau) */
.process-step.is-highlight .step-icon-wrap { background: linear-gradient(135deg, #2B6FFF, #29C4D4); border-color: transparent; }
.process-step.is-highlight .step-icon-wrap svg { stroke: white; }

/* ── Referenzen Section (new) ── */
.ref-section { padding: 6rem 2rem; background: #f8fafc; position: relative; }
.ref-section-inner { max-width: 1152px; margin: 0 auto; }
.ref-section-cta { text-align: center; margin-top: 3rem; }
.ref-section-cta p { font-size: 1rem; color: rgba(15,31,68,0.55); margin-bottom: 1rem; }

/* ── Pricing LP ── */
.pricing-lp { padding: 6rem 2rem; background: #f8fafc; }
.pricing-lp-inner { max-width: 1152px; margin: 0 auto; }
.plp-more { text-align: center; margin-top: 1rem; font-size: 0.9rem; color: rgba(15,31,68,0.5); }
.plp-more a { color: var(--accent); font-weight: 600; }
.plp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
@media (max-width: 768px) { .plp-grid { grid-template-columns: 1fr; } }
.plp-card { background: white; border: 1.5px solid rgba(15,31,68,0.08); border-radius: 20px; padding: 2rem; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; }
.plp-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(15,31,68,0.12); }
.plp-card.is-featured { border-color: #2B6FFF; border-width: 2px; }
.plp-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #2B6FFF, #29C4D4); color: white; font-size: 12px; font-weight: 700; padding: 5px 16px; border-radius: 100px; white-space: nowrap; }
.plp-name { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; color: rgba(15,31,68,0.45); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.plp-price { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 0.25rem; }
.plp-price span { font-size: 1.1rem; font-weight: 600; }
.plp-period { font-size: 0.82rem; color: rgba(15,31,68,0.45); margin-bottom: 1.5rem; }
.plp-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; margin-bottom: 1.5rem; }
.plp-feature { font-size: 0.9rem; color: rgba(15,31,68,0.75); display: flex; align-items: center; gap: 8px; }
.plp-feature svg { width: 16px; height: 16px; stroke: #22c55e; flex-shrink: 0; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.plp-btn { display: block; text-align: center; padding: 0.8rem 1rem; border-radius: 10px; font-weight: 700; font-size: 0.95rem; transition: all 0.2s; border: 1.5px solid rgba(15,31,68,0.15); color: var(--navy); }
.plp-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }
.plp-card.is-featured .plp-btn { background: linear-gradient(135deg, #2B6FFF, #29C4D4); color: white; border-color: transparent; }
.plp-card.is-featured .plp-btn:hover { opacity: 0.9; }

/* ── Trust Section (dark) ── */
.trust-section { padding: 6rem 2rem; background: var(--navy); color: white; }
.trust-inner { max-width: 1152px; margin: 0 auto; text-align: center; }
.trust-h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: white; letter-spacing: -0.03em; margin-bottom: 1rem; }
.trust-sub { color: rgba(255,255,255,0.55); font-size: 1rem; margin-bottom: 3rem; }
.trust-stats { display: flex; justify-content: center; gap: 4rem; margin-bottom: 4rem; flex-wrap: wrap; }
.trust-stat-value { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; background: linear-gradient(135deg, #2B6FFF, #29C4D4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.trust-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-top: 0.25rem; }

/* Trust Marquee (dark bg version) */
.trust-marquee { position: relative; overflow: hidden; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.08); }
.trust-marquee-fade-l { position: absolute; top: 0; bottom: 0; left: 0; width: 100px; background: linear-gradient(to right, var(--navy), transparent); z-index: 2; pointer-events: none; }
.trust-marquee-fade-r { position: absolute; top: 0; bottom: 0; right: 0; width: 100px; background: linear-gradient(to left, var(--navy), transparent); z-index: 2; pointer-events: none; }
.trust-marquee-track { display: flex; white-space: nowrap; animation: marquee-scroll 30s linear infinite; width: max-content; }
.trust-marquee-item { display: inline-flex; align-items: center; gap: 1rem; padding: 0 1.5rem; font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(255,255,255,0.3); white-space: nowrap; }
.trust-marquee-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* ── Final CTA ── */
.final-cta { padding: 8rem 2rem; background: linear-gradient(135deg, #0f1f44 0%, #1a3a7a 40%, #0f1f44 100%); position: relative; overflow: hidden; text-align: center; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(43,111,255,0.3), transparent 60%), radial-gradient(ellipse at 80% 100%, rgba(41,196,212,0.2), transparent 50%); }
.final-cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.final-cta h2 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: white; letter-spacing: -0.03em; margin-bottom: 1rem; }
.final-cta p { color: rgba(255,255,255,0.6); font-size: 1.1rem; margin-bottom: 2.5rem; }
.btn-pulse { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, #2B6FFF, #29C4D4); color: white; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; padding: 1rem 2.5rem; border-radius: 12px; transition: all 0.3s; animation: btnpulse 2.5s ease-in-out infinite; box-shadow: 0 0 0 0 rgba(43,111,255,0.5); }
.btn-pulse:hover { transform: scale(1.05); animation: none; box-shadow: 0 12px 40px rgba(43,111,255,0.4); }
@keyframes btnpulse { 0%,100% { box-shadow: 0 0 0 0 rgba(43,111,255,0.5); } 50% { box-shadow: 0 0 0 16px rgba(43,111,255,0); } }
.final-cta-phone { margin-top: 1.5rem; color: rgba(255,255,255,0.45); font-size: 0.9rem; }
.final-cta-phone a { color: rgba(255,255,255,0.7); font-weight: 600; }

/* ── LP Section Labels & Headings ── */
.lp-section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 600; color: rgba(15,31,68,0.4); margin-bottom: 1rem; }
.lp-section-label::before { content: ''; display: inline-block; width: 20px; height: 1px; background: rgba(15,31,68,0.2); }
.lp-h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--navy); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 0.75rem; }

/* ── Responsive LP ── */
@media (max-width: 768px) {
  .hero-lp-inner { grid-template-columns: 1fr; }
  .hero-lp-visual { display: none; }
  .hero-floating-card { display: none; }
}

/* ══════════════════════════════════════════
   TUBELIGHT NAVBAR
   ══════════════════════════════════════════ */

/* ── Hide old navbar (no longer used in HTML) ── */
.navbar, .mobile-menu { display: none !important; }

/* ── Logo (top-left fixed) ── */
.tl-logo {
  position: fixed;
  top: 16px;
  left: 2rem;
  z-index: 200;
  display: flex;
  align-items: center;
  height: 36px;
  transition: opacity 0.2s;
}
.tl-logo:hover { opacity: 0.8; }

/* ── CTA button (top-right fixed, desktop only) ── */
.tl-cta {
  position: fixed;
  top: 16px;
  right: 2rem;
  z-index: 200;
  background: var(--navy);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 100px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(15,31,68,0.15);
}
.tl-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(43,111,255,0.3);
}

/* ── Nav pill container ── */
.tl-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
}

.tl-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(15,31,68,0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 100px;
  padding: 4px;
  box-shadow:
    0 4px 24px rgba(15,31,68,0.08),
    0 1px 0 rgba(255,255,255,0.9) inset;
  overflow: visible; /* lamp must escape bounds */
}

/* ── Tubelight lamp (the glowing bar above active item) ── */
.tl-lamp {
  position: absolute;
  top: -5px;        /* just above the pill surface */
  height: 3px;
  width: 36px;      /* overridden by JS per item width */
  background: linear-gradient(90deg, rgba(43,111,255,0), #2B6FFF 40%, #29C4D4 60%, rgba(41,196,212,0));
  border-radius: 0 0 4px 4px;
  pointer-events: none;
  transition:
    left 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    width 0.3s ease,
    opacity 0.25s ease;
  opacity: 0;
}
/* Glow cone downward */
.tl-lamp::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 30px;
  background: radial-gradient(ellipse at 50% 0%, rgba(43,111,255,0.3) 0%, rgba(41,196,212,0.15) 35%, transparent 70%);
  pointer-events: none;
}
/* Bright core dot */
.tl-lamp::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 10px;
  background: rgba(43,111,255,0.55);
  border-radius: 50%;
  filter: blur(5px);
  pointer-events: none;
}

/* ── Individual nav items ── */
.tl-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(15,31,68,0.45);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.tl-item:hover {
  color: var(--navy);
  background: rgba(15,31,68,0.04);
}
.tl-item.tl-active {
  color: var(--accent);
  background: rgba(43,111,255,0.07);
}

/* Icon (hidden on desktop, shown on mobile) */
.tl-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: none;
  stroke-width: 2;
}

/* ── Mobile: pill moves to bottom, show only icons ── */
@media (max-width: 767px) {
  .tl-nav {
    top: auto;
    bottom: 18px;
  }
  .tl-lamp { display: none; }  /* skip lamp on mobile */
  .tl-logo { top: 14px; left: 1.25rem; }
  .tl-cta  { display: none; } /* hide CTA on mobile (too cramped) */

  .tl-item {
    padding: 10px 12px;
    gap: 0;
  }
  .tl-icon  { display: block; }
  .tl-label { display: none; }

  body { padding-bottom: 90px; }
}

@media (max-width: 480px) {
  .tl-item { padding: 10px 10px; }
  .tl-logo img { height: 28px; }
}

/* ════════════════════════════════════════════════════════════
   SITE HEADER — Professional transparent → frosted glass
   Replaces the tubelight navbar
   ════════════════════════════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow: 0 1px 24px rgba(10, 10, 10, 0.05);
  transition:
    background 0.38s ease,
    border-color 0.38s ease,
    box-shadow 0.38s ease;
}

/* ── Frosted glass: scrolled or inner pages (no data-hero) ── */
.site-header.is-scrolled,
.site-header:not([data-hero]) {
  background: rgba(250, 250, 248, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(10, 10, 10, 0.08);
  box-shadow: 0 1px 24px rgba(10, 10, 10, 0.05);
}

/* ── Inner layout ── */
.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}


/* ── Logo ── */
.site-header-logo {
  display: flex;
  align-items: center;
  flex: 1;
  transition: opacity 0.2s;
}

.site-header-logo:hover { opacity: 0.75; }

.site-header-logo img {
  height: 30px;
  transition: filter 0.38s ease;
}

/* Logo on hero — no filter (logo has opaque background) */
.site-header[data-hero]:not(.is-scrolled) .site-header-logo img {
  filter: none;
}

/* ── Desktop nav links ── */
.site-header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.site-header-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.22s;
  white-space: nowrap;
}

/* Solid state (scrolled or inner pages) */
.site-header.is-scrolled .site-header-nav a,
.site-header:not([data-hero]) .site-header-nav a {
  color: rgba(10, 10, 10, 0.48);
}

.site-header.is-scrolled .site-header-nav a:hover,
.site-header:not([data-hero]) .site-header-nav a:hover {
  color: var(--navy);
  background: none;
}

.site-header.is-scrolled .site-header-nav a.is-active,
.site-header:not([data-hero]) .site-header-nav a.is-active {
  color: var(--navy);
  background: none;
  font-weight: 700;
  font-size: 15px;
}

/* ── Right side: CTA + burger ── */
.site-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: flex-end;
}

/* ── CTA Button ── */
.site-header-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 100px;
  border: 1px solid transparent;
  white-space: nowrap;
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 2px 12px rgba(43, 111, 255, 0.25);
  transition: background 0.18s;
}

.site-header-cta:hover {
  background: var(--navy);
}

/* ── Animated hamburger button ── */
.site-header-burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
  padding: 0;
  cursor: pointer;
}

.site-header.is-scrolled .site-header-burger,
.site-header:not([data-hero]) .site-header-burger {
  border-color: rgba(10, 10, 10, 0.1);
  color: var(--navy);
}

.site-header-burger:hover {
  background: rgba(10, 10, 10, 0.04);
}

.site-header[data-hero]:not(.is-scrolled) .site-header-burger:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ── Animated SVG burger icon ── */
.burger-icon {
  overflow: visible;
  display: block;
}

.burger-path-1 {
  transition: opacity 0.2s ease;
}

.site-header-burger.is-open .burger-path-1 {
  opacity: 0;
}

/* ── Mobile menu ── */
.site-mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 199;
  background: rgba(250, 250, 248, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10, 10, 10, 0.07);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease;
  display: none;
}

.site-mobile-menu.is-open {
  display: block;
  pointer-events: auto;
  opacity: 1;
}

.site-mobile-menu-inner {
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-mobile-nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.site-mobile-nav a {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: rgba(10, 10, 10, 0.5);
  padding: 14px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}

.site-mobile-nav a:hover,
.site-mobile-nav a.is-active {
  color: var(--navy);
}

.site-mobile-cta {
  display: block;
  text-align: center;
  background: var(--navy);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 100px;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
}

.site-mobile-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .site-header-inner { padding: 0 20px; }
  .site-header-nav { display: none; }
  .site-header-cta { display: none; }
  .site-header-burger { display: flex; }
  /* Override the old tubelight bottom padding */
  body { padding-bottom: 0 !important; }
}

@media (max-width: 480px) {
  .site-header-inner { padding: 0 16px; }
}

/* ══════════════════════════════════════
   SUBPAGE STYLES
   ══════════════════════════════════════ */

/* ── Subpage general section ── */
.subpage-section {
  padding: 80px 0;
}

.subpage-section--gray {
  background: var(--bg);
}

.subpage-footer-spacer {
  height: 160px;
}

/* ── Back-to-Leistungen Button ── */
.subpage-back-wrap {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 2rem 48px;
}

.subpage-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  background: #eeeeee;
  border: none;
  border-radius: 100px;
  padding: 13px 26px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.18s;
}

.subpage-back-btn:hover {
  background: #e0e0e0;
}

/* ── Intro layout ── */
.subpage-intro {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}

.subpage-lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.subpage-intro-text p:not(.subpage-lead) {
  color: rgba(15,31,68,0.6);
  line-height: 1.75;
  font-size: 1rem;
}

/* ── Meta sidebar ── */
.subpage-intro-meta {
  border-left: 2px solid var(--accent);
  padding-left: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.subpage-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.subpage-meta-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(15,31,68,0.35);
}

.subpage-meta-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

/* ── Feature grid ── */
.subpage-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
  margin-top: 3rem;
}

.subpage-feature {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15,31,68,0.08);
}

.subpage-feature-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
}

.subpage-feature h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.subpage-feature p {
  font-size: 0.9rem;
  color: rgba(15,31,68,0.58);
  line-height: 1.65;
}

/* ── Target tags ── */
.subpage-targets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.subpage-target {
  background: rgba(15,31,68,0.05);
  border: 1px solid rgba(15,31,68,0.1);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}

/* ── CTA section ── */
.subpage-cta-section {
  background: var(--navy);
  padding: 100px 0;
  text-align: center;
}

.subpage-cta-section .section-label {
  color: rgba(255,255,255,0.45);
}

.subpage-cta-section .section-heading {
  color: #ffffff;
}

.subpage-cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 1.2rem auto 2.4rem;
  line-height: 1.6;
}

.subpage-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: -0.01em;
}

.subpage-cta-btn:hover {
  background: #1a5ce8;
  transform: translateY(-2px);
}

.subpage-cta-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .subpage-intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .subpage-intro-meta {
    border-left: none;
    border-top: 2px solid var(--accent);
    padding-left: 0;
    padding-top: 1.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
  }

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

@media (max-width: 600px) {
  .subpage-section { padding: 60px 0; }
  .subpage-cta-section { padding: 70px 0; }

  .subpage-features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}


/* ════════════════════════════════════════════════════════════
   FLOATING GLOW HEADER
   free-floating pill · backdrop blur · glow + 3D flip nav
   ════════════════════════════════════════════════════════════ */

:root {
  --fh-top:    14px;   /* distance from top of viewport */
  --fh-height: 58px;   /* pill height                   */
}

/* 1 ── Floating pill ─────────────────────────────────────── */
.site-header {
  top:       var(--fh-top)  !important;
  left:      50%            !important;
  right:     auto           !important;
  transform: translateX(-50%) !important;
  width:     calc(100% - 40px) !important;
  max-width: 1060px         !important;
  height:    var(--fh-height) !important;
  border-radius: 18px       !important;
  border:    1px solid rgba(10,10,10,0.09) !important;
  background: rgba(255,255,255,0.78) !important;
  backdrop-filter:         blur(28px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(160%) !important;
  box-shadow:
    0 2px 4px  rgba(0,0,0,0.04),
    0 8px 28px rgba(0,0,0,0.07),
    inset 0 1px 0 rgba(255,255,255,0.85) !important;
  transition:
    background   0.35s ease,
    box-shadow   0.35s ease !important;
  overflow: visible !important;
}

.site-header.is-scrolled,
.site-header:not([data-hero]) {
  background: rgba(255,255,255,0.92) !important;
  box-shadow:
    0 2px 4px  rgba(0,0,0,0.05),
    0 12px 36px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.95) !important;
}

/* Nav/burger always dark in the pill (overrides hero-white state) */
.site-header[data-hero]:not(.is-scrolled) .site-header-nav a {
  color: rgba(10,10,10,0.52) !important;
}
.site-header[data-hero]:not(.is-scrolled) .site-header-nav a:hover {
  color: var(--navy) !important;
  background: none !important;
}
.site-header[data-hero]:not(.is-scrolled) .site-header-burger {
  color: var(--navy) !important;
  border-color: rgba(10,10,10,0.12) !important;
}
.site-header[data-hero]:not(.is-scrolled) .site-header-burger:hover {
  background: rgba(10,10,10,0.05) !important;
}

/* 2 ── Nav link: position context for glow ─────────────────  */
.site-header-nav a {
  position: relative !important;
  overflow: visible  !important;
  z-index: 1;
}

/* Nav-Link: Hover/Aktiv ohne Hintergrund */
.site-header.is-scrolled .site-header-nav a:hover,
.site-header:not([data-hero]) .site-header-nav a:hover {
  background: none !important;
  color: var(--navy) !important;
}
.site-header.is-scrolled .site-header-nav a.is-active,
.site-header:not([data-hero]) .site-header-nav a.is-active {
  background: none !important;
  font-weight: 700 !important;
  font-size: 15px !important;
}

/* 3 ── Glow blob (deaktiviert) ── */
.sh-glow { display: none; }

/* 4 ── 3D Flip (deaktiviert) ── */
.sh-flip { display: block; }

.sh-front { display: block; }

.sh-back { display: none; }

.site-header-nav a:hover .sh-front { transform: none; opacity: 1; }
.site-header-nav a:hover .sh-back  { display: none; }

/* 5 ── Mobile menu: floating panel below pill ───────────── */
.site-mobile-menu {
  top:    calc(var(--fh-top) + var(--fh-height) + 10px) !important;
  left:   50%   !important;
  right:  auto  !important;
  transform: translateX(-50%) translateY(-8px)  !important;
  width:  calc(100% - 40px) !important;
  max-width: 420px  !important;
  border-radius:   18px !important;
  border:          1px solid rgba(10,10,10,0.09) !important;
  border-bottom:   1px solid rgba(10,10,10,0.09) !important;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.10),
    0 2px 8px  rgba(0,0,0,0.05) !important;
  background: rgba(255,255,255,0.96) !important;
}

.site-mobile-menu.is-open {
  transform: translateX(-50%) translateY(0) !important;
}

/* 6 ── Page-content clearance for floating header ───────── */
/* Hero pages already use calc(var(--nav-h) + ...) — just bump
   the variable locally so floating header never overlaps text. */
:root {
  --nav-h: 86px; /* fh-top(14) + fh-height(58) + gap(14) */
}

/* 7 ── Responsive tweaks ─────────────────────────────────── */
@media (max-width: 768px) {
  .site-header {
    width: calc(100% - 24px) !important;
    border-radius: 14px !important;
  }
  .site-mobile-menu {
    width: calc(100% - 24px) !important;
    max-width: none !important;
    border-radius: 14px !important;
  }
}

@media (max-width: 480px) {
  :root { --fh-top: 10px; }
  .site-header { height: 54px !important; border-radius: 12px !important; }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE REFINEMENTS — Alle Seiten & Unterseiten
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 640px) {
  /* Page-Hero (Unterseiten): kompakterer oberer Abstand */
  .page-hero {
    padding-top: calc(var(--nav-h) + 2.5rem);
    padding-bottom: 2rem;
  }

  /* Section-Inner: etwas weniger Seitenabstand */
  .section-inner {
    padding: 0 1.25rem;
  }

  /* Überschriften auf Unterseiten */
  .section-heading {
    font-size: clamp(1.65rem, 7.5vw, 2.5rem);
    letter-spacing: -0.022em;
  }

  /* Subpage allgemein */
  .subpage-section { padding: 52px 0; }
  .subpage-back-wrap { padding: 0 1.25rem 28px; }
  .subpage-cta-section { padding: 60px 0; }
  .subpage-footer-spacer { height: 80px; }

  /* Subpage Lead-Text */
  .subpage-lead {
    font-size: 1.05rem;
  }

  /* Footer */
  .footer-main { padding: 2rem 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-col { grid-column: auto; }
  .footer-tagline { max-width: 100%; }

  /* Hero-Stats (z.B. Über-uns) */
  .hero-stats { flex-wrap: wrap; gap: 0.75rem 1.5rem; }
  .hero-stat { border-right: none; padding: 0.4rem 0; }
  .hero-stat:first-child { padding-left: 0; }

  /* Stats-Grid (Preise / Über-uns) */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Services-List (Leistungen) */
  .services-header { margin-bottom: 2.5rem; }

  /* Pricing V2 */
  .pricing-grid-v2 { max-width: 100%; }

  /* CTA-Abschnitt auf Unterseiten */
  .subpage-cta-btn { font-size: 0.95rem; padding: 14px 28px; }
  .subpage-cta-sub { font-size: 1rem; }
}

@media (max-width: 400px) {
  .section-inner { padding: 0 1rem; }
  .footer-main { padding: 1.75rem 1rem; }
  .subpage-back-wrap { padding: 0 1rem 24px; }
  .page-hero { padding-top: calc(var(--nav-h) + 2rem); }
}
