@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/playfair-display-v40-latin-regular.woff2') format('woff2'),
       url('/fonts/playfair-display-v40-latin-regular.woff') format('woff');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/playfair-display-v40-latin-500.woff2') format('woff2'),
       url('/fonts/playfair-display-v40-latin-500.woff') format('woff');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/playfair-display-v40-latin-600.woff2') format('woff2'),
       url('/fonts/playfair-display-v40-latin-600.woff') format('woff');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/playfair-display-v40-latin-700.woff2') format('woff2'),
       url('/fonts/playfair-display-v40-latin-700.woff') format('woff');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/dm-sans-v17-latin-regular.woff2') format('woff2'),
       url('/fonts/dm-sans-v17-latin-regular.woff') format('woff');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/dm-sans-v17-latin-500.woff2') format('woff2'),
       url('/fonts/dm-sans-v17-latin-500.woff') format('woff');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/dm-sans-v17-latin-600.woff2') format('woff2'),
       url('/fonts/dm-sans-v17-latin-600.woff') format('woff');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/dm-sans-v17-latin-700.woff2') format('woff2'),
       url('/fonts/dm-sans-v17-latin-700.woff') format('woff');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/jetbrains-mono-v24-latin-regular.woff2') format('woff2'),
       url('/fonts/jetbrains-mono-v24-latin-regular.woff') format('woff');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/jetbrains-mono-v24-latin-700.woff2') format('woff2'),
       url('/fonts/jetbrains-mono-v24-latin-700.woff') format('woff');
}

/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
  --col-night:    #0D1B2A;
  --col-ocean:    #1A3A5C;
  --col-wave:     #2E7DD1;
  --col-foam:     #A8CFEE;
  --col-chalk:    #F4F6F8;
  --col-stone:    #8A9BAD;
  --col-pebble:   #3D5166;
  --col-gold:     #E8A020;
  --col-success:  #1A7A40;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --nav-height:   80px;
  --section-pad:  120px;
  --max-width:    1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--col-pebble);
  background: var(--col-chalk);
  overflow-x: hidden;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--col-night); }
::-webkit-scrollbar-thumb { background: var(--col-ocean); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--col-wave); }

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

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

/* ═══════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════ */
h1, h2, h3, h4 { line-height: 1.15; }

h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
}

.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--col-gold);
}

.price-num {
  font-family: var(--font-mono);
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--col-wave);
  color: #fff;
  box-shadow: 0 4px 20px rgba(46, 125, 209, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(46, 125, 209, 0.45);
  background: #3a8be0;
}

.btn-outline {
  border: 2px solid var(--col-wave);
  color: var(--col-wave);
  background: transparent;
}
.btn-outline:hover {
  background: var(--col-wave);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--col-foam);
  padding: 16px 8px;
  font-weight: 500;
}
.btn-ghost:hover {
  color: #fff;
}

.btn:focus-visible {
  outline: 2px solid var(--col-gold);
  outline-offset: 4px;
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1010;
}

.logo-icon {
  width: 36px;
  height: 36px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.02em;
}

.logo-text .sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  color: var(--col-wave);
  letter-spacing: 0.08em;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: var(--col-stone);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--col-wave);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px !important;
  font-size: 13px !important;
  border: 1.5px solid var(--col-wave);
  border-radius: 6px;
  color: var(--col-wave) !important;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--col-wave) !important;
  color: #fff !important;
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 1010;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 27, 42, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1005;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.mobile-menu a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--col-wave); }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--col-night) 0%, #0f2136 40%, var(--col-ocean) 100%);
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Grain overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* Floating shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  z-index: 0;
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  background: var(--col-wave);
  top: -150px;
  right: -100px;
  animation: float1 18s ease-in-out infinite;
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--col-foam);
  bottom: 10%;
  left: -80px;
  animation: float2 22s ease-in-out infinite;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  background: var(--col-gold);
  top: 40%;
  right: 15%;
  border-radius: 30%;
  animation: float3 16s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.05); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.08); }
}
@keyframes float3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-20px, 20px) rotate(15deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero h1 {
  color: #fff;
  margin-bottom: 24px;
}

.hero h1 span {
  display: block;
  background: linear-gradient(135deg, #fff 0%, var(--col-foam) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--col-stone);
  font-size: clamp(17px, 2vw, 20px);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--col-stone);
  font-size: 14px;
  font-weight: 500;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-proof .check {
  color: var(--col-success);
  font-weight: 700;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--col-stone);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--col-stone), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollLine {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}

/* Wave separator */
.wave-separator {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.wave-separator svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════════
   SECTION STYLES
   ═══════════════════════════════════════════ */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-dark {
  background: var(--col-night);
  color: #fff;
}

.section-dark .label { color: var(--col-wave); }
.section-dark h2 { color: #fff; }
.section-dark p { color: var(--col-stone); }

.section-light {
  background: var(--col-chalk);
}

.section-light .label { color: var(--col-wave); }
.section-light h2 { color: var(--col-night); }

.section-header {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-header p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════
   PROBLEM SECTION
   ═══════════════════════════════════════════ */
.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.problem-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.06);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.problem-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(46, 125, 209, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--col-wave);
}

.problem-card h3 {
  color: var(--col-night);
  margin-bottom: 12px;
  font-size: 20px;
}

.problem-card p {
  color: var(--col-pebble);
  font-size: 15px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-item {
  display: flex;
  gap: 28px;
  padding: 40px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(46, 125, 209, 0.2);
  transform: translateY(-2px);
}

.service-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: rgba(46, 125, 209, 0.1);
  line-height: 1;
  flex-shrink: 0;
  position: absolute;
  top: 16px;
  left: 24px;
}

.service-content {
  position: relative;
  z-index: 1;
  padding-top: 48px;
}

.service-content h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 22px;
}

.service-content p {
  color: var(--col-stone);
  font-size: 15px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════════ */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  font-size: 14px;
  font-weight: 500;
  color: var(--col-pebble);
}

.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--col-ocean);
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active {
  background: var(--col-wave);
}

.toggle-switch.active::after {
  transform: translateX(24px);
}

.pricing-save {
  background: rgba(232, 160, 32, 0.12);
  color: var(--col-gold);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 32px;
  max-width: 820px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px 40px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border: 2px solid var(--col-wave);
  box-shadow: 0 8px 40px rgba(46, 125, 209, 0.15);
}

.pricing-card.featured:hover {
  box-shadow: 0 16px 60px rgba(46, 125, 209, 0.25);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--col-wave);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 20px;
}

.pricing-card h3 {
  color: var(--col-night);
  margin-bottom: 8px;
  font-size: 22px;
}

.pricing-card .price {
  margin-bottom: 32px;
}

.pricing-card .price-setup {
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 700;
  color: var(--col-night);
  line-height: 1.2;
}

.pricing-card .price-monthly {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--col-wave);
}

.pricing-card .price-label {
  font-size: 13px;
  color: var(--col-stone);
  margin-top: 4px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--col-pebble);
}

.pricing-features li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--col-success);
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--col-stone);
}

/* ═══════════════════════════════════════════
   PROCESS/TIMELINE SECTION
   ═══════════════════════════════════════════ */
.section-process {
  background: linear-gradient(160deg, var(--col-ocean) 0%, var(--col-night) 100%);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--col-wave), var(--col-foam), var(--col-wave));
  opacity: 0.3;
}

.timeline-step {
  text-align: center;
  position: relative;
}

.timeline-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(46, 125, 209, 0.12);
  border: 2px solid var(--col-wave);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--col-wave);
  position: relative;
  z-index: 1;
}

.timeline-step h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 20px;
}

.timeline-step p {
  color: var(--col-stone);
  font-size: 14px;
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--col-pebble);
}

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

.fact-item {
  background: #fff;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.fact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.fact-num {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  color: var(--col-wave);
  line-height: 1;
  margin-bottom: 4px;
}

.fact-unit {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--col-wave);
  font-weight: 700;
}

.fact-label {
  font-size: 13px;
  color: var(--col-stone);
  margin-top: 8px;
}

/* ═══════════════════════════════════════════
   AUDIENCE SECTION
   ═══════════════════════════════════════════ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audience-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.audience-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(46, 125, 209, 0.3);
  transform: translateY(-4px);
}

.audience-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.audience-card h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}

.audience-card p {
  color: var(--col-stone);
  font-size: 14px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   CTA BANNER SECTION
   ═══════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(160deg, var(--col-wave) 0%, var(--col-ocean) 100%);
  text-align: center;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 19px;
  margin-bottom: 40px;
  position: relative;
}

.cta-banner .btn {
  background: #fff;
  color: var(--col-ocean);
  font-weight: 700;
  font-size: 16px;
  padding: 18px 44px;
  position: relative;
}

.cta-banner .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.cta-contact {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  flex-wrap: wrap;
}

.cta-contact a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s;
}
.cta-contact a:hover { color: #fff; }

/* ═══════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════ */
.contact-section {
  background: var(--col-chalk);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  color: var(--col-night);
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--col-pebble);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--col-pebble);
  font-size: 15px;
}

.contact-detail svg {
  color: var(--col-wave);
  flex-shrink: 0;
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--col-pebble);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group label .required {
  color: var(--col-wave);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--col-night);
  background: var(--col-chalk);
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--col-wave);
  box-shadow: 0 0 0 4px rgba(46, 125, 209, 0.1);
  background: #fff;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.form-error {
  font-size: 12px;
  color: #dc3545;
  margin-top: 4px;
  display: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit-btn {
  width: 100%;
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.success-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(26, 122, 64, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--col-success);
}

.success-check svg {
  animation: successPop 0.4s ease;
}

@keyframes successPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.form-success h3 {
  color: var(--col-night);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--col-stone);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--col-night);
  color: var(--col-stone);
  position: relative;
}

.footer-gradient {
  height: 3px;
  background: linear-gradient(to right, var(--col-ocean), var(--col-wave), var(--col-gold), var(--col-wave), var(--col-ocean));
  background-size: 200% 100%;
  animation: gradientSlide 6s ease infinite;
}

@keyframes gradientSlide {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.footer-main {
  padding: 60px 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 14px;
  margin-top: 16px;
  color: var(--col-stone);
  max-width: 260px;
  line-height: 1.7;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.footer-col a {
  display: block;
  color: var(--col-stone);
  font-size: 14px;
  padding: 5px 0;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--col-wave); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-bottom .made {
  color: var(--col-pebble);
  font-size: 12px;
}

.footer-bottom .made span { color: #dc3545; }

/* ═══════════════════════════════════════════
   WAVE SEPARATORS
   ═══════════════════════════════════════════ */
.wave-top, .wave-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}
.wave-top { top: -1px; }
.wave-bottom { bottom: -1px; }

/* ═══════════════════════════════════════════
   MODALS (Impressum / Datenschutz)
   ═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.modal-overlay.open {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: #fff;
  border-radius: 20px;
  max-width: 640px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--col-chalk);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-size: 18px;
  color: var(--col-pebble);
}

.modal-close:hover {
  background: var(--col-night);
  color: #fff;
}

.modal-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--col-night);
}

.modal-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--col-pebble);
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1200px) {
  :root { --section-pad: 100px; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 72px;
    --nav-height: 64px;
  }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 0 4px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .problem-cards { grid-template-columns: 1fr; }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .timeline {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .timeline::before { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero-proof {
    flex-direction: column;
    gap: 8px;
  }

  .cta-contact {
    flex-direction: column;
    gap: 12px;
  }

  .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
  .audience-grid { grid-template-columns: 1fr; }
  .fact-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--col-wave);
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

/* Reduced motion */
@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;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero-shape { animation: none; }
  .scroll-indicator { animation: none; }
  .scroll-indicator-line { animation: none; }
  .footer-gradient { animation: none; }
}

/* High contrast adjustments */
@media (forced-colors: active) {
  .btn { border: 2px solid ButtonText; }
  .toggle-switch { border: 2px solid ButtonText; }
  .pricing-card.featured { border: 3px solid Highlight; }
}

/* ═══════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 1px solid rgba(46, 125, 209, 0.2);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner p {
  color: var(--col-stone);
  font-size: 14px;
  line-height: 1.5;
  max-width: 680px;
  margin: 0;
}
.cookie-banner p a {
  color: var(--col-foam);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner p a:hover {
  color: #fff;
}
.cookie-btn {
  padding: 10px 24px;
  background: var(--col-wave);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.cookie-btn:hover {
  background: #3a8be0;
  transform: translateY(-1px);
}
.cookie-btn:focus-visible {
  outline: 2px solid var(--col-gold);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════
   PAGE HERO (Subpages)
   ═══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(160deg, var(--col-night) 0%, #0f2136 40%, var(--col-ocean) 100%);
  padding: calc(var(--nav-height) + 60px) 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
}

.page-hero .label {
  color: var(--col-wave);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--col-stone);
  font-size: clamp(16px, 1.8vw, 19px);
  max-width: 560px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   LEGAL / TEXT PAGES
   ═══════════════════════════════════════════ */
.legal-content {
  max-width: 720px;
  padding: 60px 0 80px;
}

.legal-content h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0;
  color: var(--col-night);
  margin: 48px 0 12px;
  padding-top: 32px;
  border-top: 1px solid rgba(13, 27, 42, 0.08);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content p {
  color: var(--col-pebble);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-content p strong {
  color: var(--col-night);
  font-weight: 600;
}

.legal-content a {
  color: var(--col-wave);
  text-decoration: underline;
  text-decoration-color: rgba(46, 125, 209, 0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s;
}

.legal-content a:hover {
  text-decoration-color: var(--col-wave);
}

.legal-content ul {
  margin: 8px 0 20px 0;
  padding-left: 20px;
  list-style: none;
}

.legal-content ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--col-pebble);
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--col-wave);
  opacity: 0.5;
}

.legal-content ul li strong {
  color: var(--col-night);
  font-weight: 600;
}

.legal-content .legal-date {
  font-size: 13px;
  color: var(--col-stone);
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(13, 27, 42, 0.08);
}

.legal-content code {
  font-family: var(--font-mono);
  font-size: 13px;
  background: rgba(46, 125, 209, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--col-ocean);
}

/* Active nav link */
.nav-links a.active {
  color: #fff;
}

.nav-links a.active::after {
  width: 100%;
}

/* ═══════════════════════════════════════════
   LANGUAGE SWITCHER
   ═══════════════════════════════════════════ */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.lang-switch a {
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em;
  padding: 4px 6px !important;
  border-radius: 4px;
  color: var(--col-stone) !important;
  transition: all 0.3s ease !important;
}

.lang-switch a::after { display: none !important; }

.lang-switch a.active-lang {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
}

.lang-switch a:hover {
  color: #fff !important;
}

.lang-switch-mobile {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-switch-mobile a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--col-stone);
  transition: color 0.3s ease;
}

.lang-switch-mobile a.active-lang {
  color: #fff;
}

.lang-switch-mobile a:hover {
  color: var(--col-wave);
}

@media (max-width: 768px) {
  .lang-switch { display: none; }
}
