/* Smooth cross-page fade in browsers that support it (Safari/Chrome 126+);
   silently ignored everywhere else — no fallback code needed. */
@view-transition {
  navigation: auto;
}

/* ==========================================================================
   Weberoni — Design Tokens
   ========================================================================== */
:root {
  --red: #E8362B;
  --red-light: #FF5A3C;
  --red-dark: #A81F2B;
  --orange: #FF8A3D;
  --orange-soft: rgba(255, 138, 61, 0.16);
  --red-glow: rgba(232, 54, 43, 0.35);

  --ink: #0F0F11;
  --ink-soft: #191A1D;
  --ink-softer: #232327;
  --ink-border: rgba(255, 255, 255, 0.09);

  --bg: #FBFAF8;
  --bg-alt: #F1EFEB;
  --white: #FFFFFF;

  --text: #17171A;
  --text-muted: #59575C;
  --border: rgba(18, 18, 20, 0.10);

  --text-on-dark: #F5F3F0;
  --text-on-dark-muted: #A7A4A9;

  --shadow-sm: 0 2px 10px rgba(15, 15, 17, 0.06);
  --shadow-md: 0 14px 34px rgba(15, 15, 17, 0.10);
  --shadow-lg: 0 26px 64px rgba(15, 15, 17, 0.16);
  --shadow-red: 0 16px 36px rgba(232, 54, 43, 0.35);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --font-display: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --container: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text-on-dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 650;
}
p { margin: 0; }

/* ==========================================================================
   Section transition dividers
   ========================================================================== */
.section-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: clamp(40px, 6vw, 64px);
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}
.section-wave svg { width: 100%; height: 100%; display: block; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

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

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--red);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 1rem; }

.cursor-glow {
  position: fixed;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,54,43,0.14), transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: opacity .4s ease;
}
.cursor-glow.is-active { opacity: 1; }

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
  position: relative;
  z-index: 2;
}
.section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }

.section--dark { background: var(--ink); color: var(--text-on-dark); }
.section--dark p { color: var(--text-on-dark-muted); }
.section--dark h2, .section--dark h3 { color: #fff; }

.section--light { background: var(--bg); color: var(--text); }
.section--light p { color: var(--text-muted); }
.section--light h2, .section--light h3 { color: var(--text); }
.section--light .eyebrow { color: var(--red-dark); }

.section-head { max-width: 680px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--red);
  display: inline-block;
  border-radius: 2px;
  transform: rotate(45deg);
}

.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 1rem; }
.section-head p { font-size: 1.08rem; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  position: relative;
  background: linear-gradient(115deg, var(--red-light) 0%, var(--red-dark) 35%, var(--orange) 50%, var(--red-dark) 65%, var(--red-light) 100%);
  background-size: 250% 100%;
  background-position: 0% 0%;
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: -10px;
  background-image:
    radial-gradient(circle, var(--orange) 0 3px, transparent 4px),
    radial-gradient(circle, var(--red-light) 0 2px, transparent 3px),
    radial-gradient(circle, var(--orange) 0 2px, transparent 3px);
  background-position: 15% 30%, 50% -10%, 85% 40%;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(232,54,43,0.45);
  background-position: 100% 0%;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-position .6s ease;
}
.btn--primary:hover::before { opacity: 1; transform: translateY(-4px); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: var(--ink-border);
}
.btn--ghost:hover { border-color: #fff; transform: translateY(-3px); }

.section--light .btn--ghost { color: var(--text); border-color: var(--border); }
.section--light .btn--ghost:hover { border-color: var(--text); }

.btn--block { width: 100%; }
.btn--sm { padding: 0.7rem 1.3rem; font-size: 0.9rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: 1.35rem;
  transition: padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding-block: 0.8rem;
  background: rgba(15, 15, 17, 0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: var(--shadow-sm);
  border-color: var(--ink-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  z-index: 110;
}
.brand-mark { width: 34px; height: 34px; }
.brand-mark svg, .brand-mark img { width: 100%; height: 100%; object-fit: contain; transform-origin: 70% 20%; }
.brand:hover .brand-mark img { animation: wiggle .5s ease; }
@keyframes wiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-14deg); }
  60% { transform: rotate(10deg); }
  85% { transform: rotate(-4deg); }
}

.nav-desktop { display: flex; align-items: center; gap: 2.1rem; }
.nav-desktop a {
  font-family: var(--font-display);
  font-weight: 550;
  font-size: 0.95rem;
  color: var(--text-on-dark);
  position: relative;
  padding-block: 0.3rem;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .3s var(--ease);
}
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 0.9rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--ink-border);
  background: var(--ink-soft);
  align-items: center;
  justify-content: center;
  z-index: 110;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle span::before { position: absolute; transform: translateY(-6px); }
.nav-toggle span::after { position: absolute; transform: translateY(6px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 105;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2rem;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
}
.nav-mobile.is-open { transform: translateY(0); }
.nav-mobile ul { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2.5rem; }
.nav-mobile a { font-family: var(--font-display); font-size: 2rem; font-weight: 650; color: #fff; }
.nav-mobile .btn { align-self: stretch; white-space: normal; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding-top: clamp(6.5rem, 13vw, 9.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 0%, rgba(232,54,43,0.22), transparent 45%),
    radial-gradient(circle at 5% 100%, rgba(255,138,61,0.12), transparent 40%),
    var(--ink);
}
.hero-dotgrid {
  position: absolute;
  inset: -10% -5%;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 72% 20%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 70% 60% at 72% 20%, #000 0%, transparent 72%);
}

/* Subtle repeating chili motif — used sparingly as background texture */
.chili-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cpath d='M28 16c-11 2-18 13-15 25 2 7 8 13 15 15 10 3 21-4 23-14' fill='none' stroke='%23E8362B' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M27 14c-2-4 1-8 5-7' fill='none' stroke='%23E8362B' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 72px 72px;
  background-repeat: repeat;
}

/* Large blurred ambient chili — pure depth/mood, hidden from a11y tree */
.hero-ambient {
  position: absolute;
  top: 50%; left: 50%;
  width: 900px;
  max-width: 140vw;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  filter: blur(60px);
  background: conic-gradient(from 120deg, rgba(232,54,43,0.5), transparent 30%, transparent 70%, rgba(255,138,61,0.4));
  border-radius: 50%;
  animation: ambientSpin 50s linear infinite;
}
@keyframes ambientSpin { from { transform: translate(-50%, -50%) rotate(0); } to { transform: translate(-50%, -50%) rotate(360deg); } }

.scroll-cue {
  position: relative;
  z-index: 2;
  width: max-content;
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-on-dark-muted);
  font-size: 0.72rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity .3s ease, color .3s ease;
}
.scroll-cue:hover { opacity: 1; color: #fff; }
.scroll-cue svg { width: 16px; height: 16px; animation: scrollCueBounce 2s ease-in-out infinite; }
@keyframes scrollCueBounce { 0%, 100% { transform: translateY(0); opacity: .6; } 50% { transform: translateY(6px); opacity: 1; } }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  perspective: 1200px;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.3rem; }
.hero-badge {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-on-dark-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--ink-border);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
}
.hero-badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(232,54,43,0.25);
  flex-shrink: 0;
}
.hero-copy .eyebrow { display: inline-flex; }
.hero h1 { font-size: clamp(2.4rem, 5.4vw, 3.9rem); margin-bottom: 0.9rem; color: #fff; }
.hero-slogan {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  margin-bottom: 1.3rem;
}
.hero-slogan em {
  font-style: normal;
  background: linear-gradient(100deg, var(--orange), var(--red-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy > p.hero-text { font-size: 1.08rem; color: var(--text-on-dark-muted); max-width: 540px; margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }
.hero-proof { display: flex; gap: clamp(1.4rem, 4vw, 2.6rem); flex-wrap: wrap; }
.hero-proof div { display: flex; flex-direction: column; }
.hero-proof strong { font-family: var(--font-display); font-size: 1.5rem; color: #fff; }
.hero-proof span { font-size: 0.85rem; color: var(--text-on-dark-muted); }

.hero-price {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 1.6rem;
  border-radius: var(--radius-md);
  background: rgba(255,138,61,0.1);
  border: 1px solid rgba(255,138,61,0.4);
  box-shadow: 0 12px 30px rgba(255,138,61,0.14);
  margin-bottom: 1.6rem;
  transition: border-color .3s ease, background .3s ease, transform .3s var(--ease), box-shadow .3s ease;
}
.hero-price:hover { border-color: rgba(255,138,61,0.65); background: rgba(255,138,61,0.15); transform: translateY(-2px); box-shadow: 0 16px 38px rgba(255,138,61,0.2); }
.hero-price-text { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-price-main {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: #fff;
}
.hero-price-value {
  font-size: 1.35rem;
  font-weight: 700;
  background: linear-gradient(100deg, var(--orange), var(--red-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-price-sub { font-size: 0.82rem; color: var(--text-on-dark-muted); }
.hero-price-dot {
  width: 9px; height: 9px;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,138,61,0.22);
  flex-shrink: 0;
  animation: pulse 3s ease-in-out infinite;
}

/* Chili hero visual */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; transition: transform .25s ease-out; transform-style: preserve-3d; }
.chili-stage {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chili-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed var(--ink-border);
  animation: spin 40s linear infinite;
}
.chili-ring.r2 { inset: 15%; animation-duration: 55s; animation-direction: reverse; }
.chili-glow {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--red-glow), transparent 70%);
  filter: blur(6px);
  animation: pulse 4.5s ease-in-out infinite;
}
.chili-hero-icon {
  position: relative;
  width: 66%;
  height: auto;
  animation: float 6.5s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(232,54,43,0.4));
}
.chili-spark {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--orange);
}
.chili-spark.s1 { top: 10%; right: 20%; animation: floatSmall 5s ease-in-out infinite; }
.chili-spark.s2 { bottom: 16%; left: 14%; background: var(--red); animation: floatSmall 6s ease-in-out infinite 1s; }
.chili-spark.s3 { top: 44%; right: 6%; width: 6px; height: 6px; animation: floatSmall 4.5s ease-in-out infinite .5s; }

.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(25,26,29,0.72);
  border: 1px solid var(--ink-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  animation: float 7s ease-in-out infinite;
}
.hero-float-card svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; }
.hero-float-card.fc-a { top: 6%; left: -8%; animation-delay: .3s; }
.hero-float-card.fc-b { bottom: 8%; right: -10%; animation-delay: 1.6s; animation-duration: 8s; }

@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-16px) rotate(2deg); } }
@keyframes floatSmall { 0%, 100% { transform: translateY(0); opacity: .7; } 50% { transform: translateY(-10px); opacity: 1; } }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: .8; } 50% { transform: scale(1.08); opacity: 1; } }

.marquee-wrap {
  border-top: 1px solid var(--ink-border);
  border-bottom: 1px solid var(--ink-border);
  padding-block: 1.4rem;
  overflow: hidden;
  background: var(--ink-soft);
}
.marquee-track { display: flex; gap: 3.2rem; width: max-content; animation: marquee 26s linear infinite; }
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1rem;
  color: var(--text-on-dark-muted);
  opacity: 0.7;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.marquee-track span::before { content: "•"; color: var(--red); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(.98);
  filter: blur(6px);
  transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
[data-reveal-group] > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* Fine film-grain texture — adds tactile depth without being noisy */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Über Weberoni
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--ink);
  border: 1px solid var(--border);
  padding: 2.4rem;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-chili-wrap { width: 50%; display: inline-flex; transition: transform .45s var(--ease); }
.about-visual .chili-hero-icon { width: 100%; filter: drop-shadow(0 16px 30px rgba(232,54,43,0.28)); transition: filter .45s var(--ease); }
@media (hover: hover) and (pointer: fine) {
  .about-visual:hover .about-chili-wrap { transform: scale(1.07) rotate(-3deg); }
  .about-visual:hover .chili-hero-icon { filter: drop-shadow(0 24px 46px rgba(232,54,43,0.55)) brightness(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .about-chili-wrap, .about-visual .chili-hero-icon { transition: none; }
}
.about-copy p { font-size: 1.1rem; margin-bottom: 1.1rem; }
.about-copy p:last-child { margin-bottom: 0; }
.about-copy strong { color: var(--text); font-weight: 650; }
.about-copy .lead { font-size: 1.3rem; font-weight: 600; color: var(--text); font-family: var(--font-display); margin-bottom: 1.4rem; }
.about-copy .founders { font-size: 0.9rem !important; color: var(--text-muted) !important; margin-top: 1.4rem !important; padding-top: 1.4rem; border-top: 1px solid var(--border); }

.founders-row {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}
.founder { display: flex; align-items: center; gap: 0.8rem; }
.founder-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.founder-info { display: flex; flex-direction: column; }
.founder-info strong { font-family: var(--font-display); font-size: 0.92rem; color: var(--text); }
.founder-info span { font-size: 0.82rem; color: var(--text-muted); }

/* ==========================================================================
   Prozess — timeline
   ========================================================================== */
.process-list { --progress: 0; display: flex; flex-direction: column; position: relative; }
.process-list::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--border);
}
.process-list::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 8px;
  width: 2px;
  height: calc(var(--progress, 0) * 1%);
  max-height: calc(100% - 16px);
  background: linear-gradient(var(--red), var(--orange));
  box-shadow: 0 0 10px rgba(232,54,43,0.5);
  transition: height .1s linear;
}
.process-chili {
  position: absolute;
  left: 18px;
  top: calc(8px + var(--progress, 0) * 1%);
  max-height: calc(100% - 16px);
  width: 24px;
  height: 24px;
  object-fit: contain;
  transform: translate(-50%, -50%) rotate(-8deg);
  transition: top .1s linear;
  filter: drop-shadow(0 4px 10px rgba(232,54,43,0.55));
  z-index: 2;
  pointer-events: none;
}
.process-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.6rem;
  padding-block: 2rem;
  border-top: 1px solid var(--ink-border);
  position: relative;
}
.process-item:last-child { border-bottom: 1px solid var(--ink-border); }
.process-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--red);
  line-height: 1;
  transition: color .4s ease;
}
.process-item:hover .process-num { color: var(--red); }
.process-body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.process-body p { font-size: 1rem; max-width: 620px; }
.process-note,
.info-note {
  margin-top: 0.9rem;
  padding: 0.9rem 1.1rem;
  max-width: 620px;
  background: var(--orange-soft);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.92rem !important;
  color: var(--text) !important;
}
.process-note strong { color: var(--red-dark); }
.info-note { margin-bottom: 1.3rem; max-width: none; }

/* ==========================================================================
   Warum Weberoni — cards
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 1.4rem;
  perspective: 1000px;
}
.card {
  --mx: 50%;
  --my: 0%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.1rem 1.9rem;
  transition: transform .15s ease-out, box-shadow .4s var(--ease);
  will-change: transform;
  position: relative;
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(240px circle at var(--mx) var(--my), rgba(232,54,43,0.1), transparent 70%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.card:hover::after { opacity: 1; }
.card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(232,54,43,0.07), transparent 55%);
  opacity: 0;
  transition: opacity .4s ease;
}
.card:hover { box-shadow: var(--shadow-lg); }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem;
  transition: background .4s ease, transform .4s var(--ease);
}
.card-icon svg { width: 24px; height: 24px; }
.card:hover .card-icon { background: linear-gradient(135deg, var(--orange), var(--red-dark)); transform: rotate(-6deg) scale(1.05); }
.card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; color: var(--text); }
.card p { font-size: 0.96rem; color: var(--text-muted); }

/* Featured bento cards — bookend the grid, dark chili-gradient panels */
.card--featured {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  background: linear-gradient(135deg, var(--red-dark), var(--ink) 78%);
  border-color: rgba(255,255,255,0.1);
}
.card--featured::before { background: linear-gradient(160deg, rgba(255,255,255,0.1), transparent 60%); }
.card--featured .card-icon {
  width: 64px; height: 64px;
  margin-bottom: 0;
  flex-shrink: 0;
  background: rgba(255,255,255,0.12);
}
.card--featured .card-icon svg { width: 28px; height: 28px; }
.card--featured:hover .card-icon { background: rgba(255,255,255,0.2); }
.card--featured h3 { color: #fff; font-size: 1.3rem; }
.card--featured p { color: rgba(255,255,255,0.75); }

/* ==========================================================================
   Leistungen — list
   ========================================================================== */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 2rem;
}
.service-row {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.2rem 0.9rem;
  margin-inline: -0.9rem;
  border-bottom: 1px solid var(--ink-border);
  border-radius: var(--radius-sm);
  transition: background .3s ease, transform .3s var(--ease);
}
.service-row:hover {
  background: rgba(255,255,255,0.03);
  transform: translateX(4px);
}
.service-row .row-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--ink-soft);
  border: 1px solid var(--ink-border);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .3s ease, transform .3s var(--ease), color .3s ease;
}
.service-row:hover .row-icon {
  background: linear-gradient(135deg, var(--orange), var(--red-dark));
  color: #fff;
  transform: scale(1.06);
}
.service-row .row-icon svg { width: 20px; height: 20px; }
.service-row h3 { font-size: 1.02rem; color: #fff; margin-bottom: 0.2rem; }
.service-row p { font-size: 0.9rem; margin: 0; }

/* ==========================================================================
   Preise & Pakete
   ========================================================================== */
.section--pricing { position: relative; overflow: hidden; }
.pricing-dotgrid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(232,54,43,0.1) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 0%, transparent 75%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  align-items: stretch;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.price-card {
  --mx: 50%;
  --my: 0%;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  will-change: transform;
  transition: transform .15s ease-out, box-shadow .4s var(--ease);
}
.price-card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(280px circle at var(--mx) var(--my), rgba(232,54,43,0.1), transparent 70%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.price-card:hover::after { opacity: 1; }
.price-card:hover { box-shadow: var(--shadow-md); }
.price-card--featured::after { background: radial-gradient(280px circle at var(--mx) var(--my), rgba(255,138,61,0.18), transparent 70%); }
.price-card--featured {
  background: linear-gradient(165deg, var(--ink) 0%, var(--ink) 55%, var(--red-dark) 130%);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.price-card--featured:hover { box-shadow: 0 30px 70px rgba(232,54,43,0.3); }
.price-badge {
  display: inline-flex;
  align-self: flex-start;
  background: linear-gradient(115deg, var(--orange), var(--red-light));
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-red);
  margin-bottom: 1.4rem;
}
.price-audience { display: block; font-size: 0.82rem; font-weight: 600; color: var(--red-dark); margin-bottom: 0.6rem; }
.price-card--featured .price-audience { color: var(--orange); }
.price-card-head h3 { font-size: 1.5rem; color: var(--text); margin-bottom: 0.7rem; }
.price-card--featured .price-card-head h3 { color: #fff; }
.price-tag { display: flex; align-items: baseline; gap: 0.55rem; margin-bottom: 1rem; }
.price-amount { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--text); }
.price-card--featured .price-amount { color: #fff; }
.price-suffix { font-size: 0.85rem; color: var(--text-muted); }
.price-card--featured .price-suffix { color: rgba(255,255,255,0.6); }
.price-desc { font-size: 0.98rem; color: var(--text-muted); margin-bottom: 1.6rem; }
.price-card--featured .price-desc { color: rgba(255,255,255,0.75); }

.price-card-body { flex: 1; margin-bottom: 1.8rem; }
.price-plus-note { font-family: var(--font-display); font-weight: 650; font-size: 0.92rem; color: #fff; margin-bottom: 0.9rem; }

.price-included {
  columns: 2;
  column-gap: 1.4rem;
  margin-bottom: 1.6rem;
}
.price-included li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  break-inside: avoid;
  margin-bottom: 0.6rem;
}
.price-card--featured .price-included li { color: rgba(255,255,255,0.82); }
.price-included li::before {
  content: "✓";
  flex-shrink: 0;
  color: var(--red);
  font-weight: 700;
  line-height: 1.3;
}
.price-card--featured .price-included li::before { color: var(--orange); }

.price-preview-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.3rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--red-dark);
  transition: gap .25s var(--ease), color .25s ease;
}
.price-preview-link:hover { gap: 0.85rem; color: var(--red); }
.price-preview-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.price-preview-link .ext-icon { width: 14px; height: 14px; margin-left: auto; opacity: 0.6; }
.price-card--featured .price-preview-link { color: var(--orange); border-top-color: rgba(255,255,255,0.14); }
.price-card--featured .price-preview-link:hover { color: #fff; }

.pricing-note {
  max-width: 720px;
  margin: 0 auto clamp(3rem, 6vw, 4rem);
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.not-included-panel {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.nip-header { max-width: 640px; margin: 0 auto clamp(1.6rem, 3vw, 2.2rem); text-align: center; }
.nip-heading { font-family: var(--font-display); font-weight: 650; font-size: 1.3rem; color: var(--text); margin-bottom: 0.7rem; }
.nip-intro { font-size: 0.92rem; color: var(--text-muted); }

.nip-grid { display: grid; gap: 1.1rem; }
.nip-grid-top { grid-template-columns: repeat(3, 1fr); }
.nip-grid-bottom { grid-template-columns: repeat(2, 1fr); margin-top: 1.1rem; }
.nip-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.4rem;
}
.nip-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 650; color: var(--text); margin-bottom: 0.6rem; }
.nip-card p { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 0.7rem; }
.nip-card p:last-child { margin-bottom: 0; }
.nip-card-support { font-weight: 600; color: var(--text) !important; }
.nip-card ul { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 0.7rem; }
.nip-card li { font-size: 0.82rem; color: var(--text-muted); padding-left: 0.95rem; position: relative; }
.nip-card li::before { content: "•"; position: absolute; left: 0; color: var(--orange); }
.nip-card-note { font-size: 0.8rem !important; font-style: italic; }

.info-link-card {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  flex-wrap: wrap;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.info-link-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-link-icon svg { width: 22px; height: 22px; }
.info-link-copy { flex: 1; min-width: 220px; }
.info-link-copy h3 { font-size: 1.05rem; color: var(--text); margin-bottom: 0.3rem; }
.info-link-copy p { font-size: 0.88rem; color: var(--text-muted); }

.addon-card {
  display: flex;
  gap: 1.3rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-md);
  padding: clamp(1.4rem, 2.8vw, 2rem);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.addon-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--red-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.addon-icon svg { width: 22px; height: 22px; }
.addon-eyebrow { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.5rem; }
.addon-copy h3 { font-size: 1.25rem; color: var(--text); display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 0.6rem; }
.addon-price { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--red-dark); background: var(--orange-soft); padding: 0.25rem 0.7rem; border-radius: var(--radius-pill); }
.addon-copy > p { font-size: 0.98rem; color: var(--text-muted); margin-bottom: 1rem; }
.addon-bridge { font-weight: 600; color: var(--text) !important; }
.addon-included { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem 1.4rem; margin-bottom: 1.2rem; }
.addon-included li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.88rem; color: var(--text-muted); }
.addon-included li::before { content: "✓"; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.addon-note { font-size: 0.85rem; color: var(--text-muted); opacity: 0.85; border-top: 1px solid var(--border); padding-top: 1rem; }

.pricing-cta { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ==========================================================================
   Kundenformular CTA
   ========================================================================== */
.form-cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: linear-gradient(135deg, var(--red-dark), var(--ink) 70%);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.form-cta::after {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,138,61,0.28), transparent 70%);
  right: -80px; top: -80px;
}
.form-cta-copy { position: relative; z-index: 1; }
.form-cta-copy h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); color: #fff; margin-bottom: 1rem; }
.form-cta-copy p { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 1.8rem; max-width: 480px; }
.form-cta-note { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 1rem; }
.form-cta-steps {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.form-cta-step {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: #fff;
}
.form-cta-step .fc-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ==========================================================================
   Kontakt
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.contact-info h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 1.1rem; color: #fff; }
.contact-info > p { color: var(--text-on-dark-muted); font-size: 1.05rem; margin-bottom: 2.2rem; max-width: 460px; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; padding-block: 1.1rem; border-top: 1px solid var(--ink-border); }
.contact-detail:first-of-type { border-top: none; }
.contact-detail .ci-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--ink-soft);
  border: 1px solid var(--ink-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--red-light);
}
.contact-detail .ci-icon svg { width: 20px; height: 20px; }
.contact-detail strong { display: block; color: #fff; font-size: 0.95rem; margin-bottom: 0.15rem; }
.contact-detail span { color: var(--text-on-dark-muted); font-size: 0.9rem; }
.contact-detail span a { transition: color .25s ease; }
.contact-detail span a:hover { color: var(--red-light); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--text);
  box-shadow: var(--shadow-lg);
}
.contact-steps { list-style: none; margin: 0 0 1.6rem; padding: 0; counter-reset: step; }
.contact-steps li { display: flex; gap: 0.9rem; align-items: flex-start; padding-block: 0.9rem; border-top: 1px solid var(--border); }
.contact-steps li:first-child { border-top: none; padding-top: 0; }
.contact-steps li::before {
  counter-increment: step;
  content: counter(step);
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}
.contact-steps strong { display: block; font-size: 0.98rem; margin-bottom: 0.2rem; }
.contact-steps span { font-size: 0.88rem; color: var(--text-muted); }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 1rem; text-align: center; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: var(--text-on-dark-muted); padding-top: clamp(3.5rem, 7vw, 5.5rem); border-top: 1px solid var(--ink-border); }
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr 0.85fr;
  gap: 2.4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--ink-border);
}
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.92rem; max-width: 300px; margin-bottom: 0.6rem; }
.footer-founders { font-size: 0.82rem; color: var(--text-on-dark-muted); opacity: 0.75; margin-bottom: 1.4rem; }
.footer-social { display: flex; gap: 0.7rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--ink-border);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s ease, transform .3s var(--ease), border-color .3s ease;
}
.footer-social a:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.footer-social svg { width: 16px; height: 16px; }
.footer-social a.is-disabled { opacity: 0.35; cursor: default; pointer-events: none; }
.footer-col h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 650; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.92rem; transition: color .3s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1.6rem;
  font-size: 0.85rem;
}
.footer-bottom-links { display: flex; gap: 1.4rem; }

/* ==========================================================================
   Back to top
   ========================================================================== */
.back-to-top {
  position: fixed;
  right: 1.6rem; bottom: 1.6rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-red);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  z-index: 90;
  border: none;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top:hover { background: var(--orange); }

/* ==========================================================================
   Legal pages
   ========================================================================== */
.legal-hero { padding-top: clamp(8rem, 14vw, 10rem); padding-bottom: 3rem; }
.legal-content { max-width: 780px; }
.legal-content h2 { font-size: 1.4rem; margin-top: 2.2rem; margin-bottom: 0.8rem; color: #fff; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-size: 0.98rem; margin-bottom: 0.9rem; }
.legal-content ul { list-style: disc; padding-left: 1.3rem; }
.legal-content a { color: var(--red-light); text-decoration: underline; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .nip-grid-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-desktop, .header-actions .btn--ghost { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid, .about-grid, .contact-grid, .form-cta { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .about-visual { order: -1; min-height: 260px; }
  .form-row { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .nip-grid-top, .nip-grid-bottom { grid-template-columns: 1fr; }
  .addon-card { flex-direction: column; }
  .info-link-card { flex-direction: column; align-items: flex-start; }
  .info-link-card .btn { align-self: stretch; justify-content: center; }
  .addon-included { grid-template-columns: 1fr; }
  .process-item { grid-template-columns: 60px 1fr; }
  .process-list::before, .process-list::after, .process-chili { left: 12px; }
  .hero-float-card { font-size: 0.72rem; padding: 0.5rem 0.8rem; }
  .hero-float-card.fc-a { left: 0; }
  .hero-float-card.fc-b { right: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top .footer-brand { grid-column: span 2; }
  .footer-top .footer-col:last-child { grid-column: span 2; }
}

@media (max-width: 680px) {
  .why-grid { grid-template-columns: 1fr; }
  .card--featured { grid-column: span 1; flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top .footer-brand,
  .footer-top .footer-col:last-child { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .back-to-top { right: 1rem; bottom: 1rem; width: 42px; height: 42px; }
  .price-included { columns: 1; }
}
