/* =========================================================
   H24 Parkhotel Thale - Karriere-Landingpage
   CI: H24 Hotels Consulting (Teal / Lime / Deep Forest)
   Aus: /opt/h24hotels-consultin_website/tailwind.config.js
   ========================================================= */

:root {
  /* H24 Brand Colors */
  --primary: #1FA6B8;
  --primary-dark: #086572;
  --primary-mid: #1D707D;
  --accent: #C5D786;
  --dark-bg: #0F2F33;
  --surface: #FBFCFC;
  --surface-alt: #E7ECED;
  --neutral-border: #BCCED0;
  --neutral-light: #F0F4F5;

  /* Semantic */
  --text: var(--dark-bg);
  --text-muted: #4E6166;
  --text-on-dark: #FFFFFF;
  --text-on-dark-muted: #B7C9CC;
  --error: #C44545;
  --error-soft: #F8E4E4;

  /* Typo */
  --font-display: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 760px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-soft: 0 2px 12px rgba(15, 47, 51, 0.06);
  --shadow-card: 0 6px 24px rgba(15, 47, 51, 0.08);
  --shadow-lift: 0 10px 32px rgba(15, 47, 51, 0.12);
}

/* =========================================================
   Motion + Reveal Foundation
   ========================================================= */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
  }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }

  .reveal-fade {
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
  }
  .reveal-fade.is-visible { opacity: 1; }

  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
  .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
  .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
  .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
  .reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }

  @keyframes kenBurns {
    0%   { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.18) translate(-1.5%, -1.5%); }
  }

  @keyframes shimmerIn {
    0% { opacity: 0; transform: translateY(14px); letter-spacing: 0.05em; }
    100% { opacity: 1; transform: translateY(0); letter-spacing: -0.025em; }
  }

  @keyframes fadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  @keyframes pulseRing {
    0% { box-shadow: 0 0 0 0 rgba(31, 166, 184, 0.45); }
    70% { box-shadow: 0 0 0 14px rgba(31, 166, 184, 0); }
    100% { box-shadow: 0 0 0 0 rgba(31, 166, 184, 0); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-fade, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}

/* =========================================================
   Reset + Base
   ========================================================= */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--dark-bg);
  margin: 0 0 0.5em 0;
  line-height: 1.15;
}

p { margin: 0 0 1em 0; }

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

.container-narrow { max-width: var(--container-narrow); }

.center { text-align: center; }

/* =========================================================
   Header (sticky, schlank)
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 252, 252, 0.95);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--neutral-border);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.brand:hover { text-decoration: none; }

.brand-logo {
  height: 42px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--neutral-border);
  padding-left: 14px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-bg);
  letter-spacing: -0.01em;
}

.brand-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .brand-logo { height: 34px; }
  .brand-text { padding-left: 10px; }
  .brand { gap: 10px; }
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary);
  color: var(--text-on-dark);
  box-shadow: 0 4px 14px rgba(31, 166, 184, 0.25);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--text-on-dark);
  box-shadow: 0 10px 24px rgba(31, 166, 184, 0.4);
}
.btn-primary:hover::before { transform: translateX(100%); }

.btn-accent {
  background: var(--accent);
  color: var(--dark-bg);
}
.btn-accent:hover {
  background: #b8cd75;
  color: var(--dark-bg);
}

.btn-outline {
  background: transparent;
  color: var(--dark-bg);
  border: 1.5px solid var(--neutral-border);
}
.btn-outline:hover {
  background: var(--dark-bg);
  color: var(--text-on-dark);
  border-color: var(--dark-bg);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-on-dark);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-outline-light:hover {
  background: var(--text-on-dark);
  color: var(--dark-bg);
}

.btn-large { padding: 18px 36px; font-size: 17px; }
.btn-compact { padding: 10px 22px; font-size: 14px; }
.btn-full { display: block; width: 100%; text-align: center; }

/* =========================================================
   Hero (h24 magazine cover style)
   ========================================================= */

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--text-on-dark);
}

.hero-bg {
  position: absolute;
  inset: -3% -3% -3% -3%;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-bg img {
    animation: kenBurns 22s ease-out forwards;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(15, 47, 51, 0.75) 0%, rgba(15, 47, 51, 0.4) 45%, rgba(8, 101, 114, 0.45) 100%),
    linear-gradient(to top, rgba(15, 47, 51, 0.85) 0%, rgba(15, 47, 51, 0.0) 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 110px 24px 100px 24px;
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 28px;
  padding: 7px 16px;
  border: 1px solid rgba(197, 215, 134, 0.4);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(197, 215, 134, 0.05);
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

@media (prefers-reduced-motion: no-preference) {
  .eyebrow::before { animation: pulseRing 2.2s ease-out infinite; }
  .eyebrow { animation: fadeUp 0.7s 0.1s both; }
  .hero-headline { animation: fadeUp 0.9s 0.25s both; }
  .hero-sub { animation: fadeUp 0.8s 0.5s both; }
  .hero-content > .btn { animation: fadeUp 0.7s 0.7s both; }
  .hero-trust { animation: fadeUp 0.7s 0.9s both; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--text-on-dark);
  margin: 0 0 28px 0;
  max-width: 1040px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}

.hero-headline em {
  color: var(--accent);
  font-style: normal;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-on-dark);
  opacity: 0.95;
  max-width: 660px;
  margin: 0 0 40px 0;
  font-weight: 400;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}

.hero-headline em {
  color: var(--accent);
  font-style: normal;
  position: relative;
  display: inline-block;
}

.hero-headline em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  height: 4px;
  width: 100%;
  background: var(--accent);
  opacity: 0.25;
  border-radius: 2px;
  z-index: -1;
}

.hero-trust {
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-on-dark);
  opacity: 0.92;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-item strong { color: var(--accent); font-weight: 600; }

.hero-trust-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-on-dark);
  opacity: 0.4;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  opacity: 0.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

.hero-scroll-hint::after {
  content: "";
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), rgba(255,255,255,0));
}

@media (prefers-reduced-motion: no-preference) {
  .hero-scroll-hint { animation: fadeUp 0.8s 1.4s both; }
  .hero-scroll-hint::after { animation: kenBurns 2s ease-in-out infinite alternate; transform-origin: top; }
}

/* =========================================================
   Sections
   ========================================================= */

.section { padding: 96px 0; }
.section-narrow { padding: 56px 0; }

.section-light { background: var(--surface); }
.section-alt { background: var(--surface-alt); }
.section-neutral { background: var(--neutral-light); }
.section-dark {
  background: var(--dark-bg);
  color: var(--text-on-dark);
}
.section-dark h2,
.section-dark .urgency-headline { color: var(--text-on-dark); }

.section-headline {
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-headline.center { text-align: center; }

.section-lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 0 48px 0;
  line-height: 1.55;
}

.section-cta { text-align: center; margin-top: 48px; }

/* =========================================================
   Eyecatcher
   ========================================================= */

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

.eyecatcher-item {
  background: var(--surface);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.eyecatcher-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,166,184,0.0) 0%, rgba(31,166,184,0.06) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.eyecatcher-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--primary);
}

.eyecatcher-item:hover::before { opacity: 1; }
.eyecatcher-item > * { position: relative; }

.eyecatcher-value {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.eyecatcher-label {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

.eyecatcher-footnote {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 24px;
}

/* =========================================================
   Positionen
   ========================================================= */

.positions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.position-card {
  background: var(--surface);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.position-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.position-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--primary);
}

.position-card:hover::after { width: 100%; }
.position-card:hover .position-title { color: var(--primary-dark); }
.position-title { transition: color 0.25s ease; }

.position-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-on-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.position-icon svg { width: 26px; height: 26px; }

.position-card:hover .position-icon {
  transform: scale(1.05) rotate(-3deg);
}

.position-detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, margin 0.4s ease;
  margin: 0 0 0 0;
  border-top: 1px solid var(--neutral-border);
  padding-top: 0;
}

.position-card.is-open {
  border-color: var(--primary);
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}

.position-card.is-open .position-detail {
  max-height: 1000px;
  opacity: 1;
  margin: 20px 0 24px 0;
  padding-top: 20px;
}

.position-card.is-open .position-toggle-hint svg {
  transform: rotate(180deg);
}

.position-card.is-open .position-toggle-hint span::after {
  content: "schließen";
}

.position-card.is-open .position-toggle-hint span {
  font-size: 0;
}

.position-card.is-open .position-toggle-hint span::after {
  font-size: 13px;
}

.position-toggle-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 4px;
  cursor: pointer;
  user-select: none;
  letter-spacing: 0.02em;
}

.position-toggle-hint svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.position-detail-headline {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 14px 0;
}

.position-task-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.position-task-list li {
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
}

.position-task-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 2px;
  background: var(--accent);
}

.position-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--neutral-border);
  font-size: 13px;
}

.position-detail-meta span {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  color: var(--text);
}

.position-detail-meta strong {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
}

.position-apply {
  align-self: flex-start;
}

/* Toggle-Behavior: hover wird ueberschrieben fuer Mobile durch click */
.position-card:hover .position-detail,
.position-card:focus-within .position-detail {
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding-top: 0;
}

.position-card.is-open:hover .position-detail,
.position-card.is-open:focus-within .position-detail {
  max-height: 1000px;
  opacity: 1;
  margin: 20px 0 24px 0;
  padding-top: 20px;
}

/* Section Intro Tag */
.section-intro-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
  padding: 6px 14px;
  border: 1px solid rgba(31, 166, 184, 0.3);
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-lead-small {
  font-size: 14px;
  color: var(--text-muted);
  margin: -32px 0 28px 0;
  font-style: italic;
}

/* Tech-Block (Modernste Technik) */
.tech-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.tech-content h2 { margin-bottom: 20px; }
.tech-body { font-size: 16.5px; line-height: 1.65; color: var(--text); margin: 0 0 16px 0; }
.tech-body strong { color: var(--dark-bg); font-weight: 700; }

.tech-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tech-pill {
  background: var(--surface);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.tech-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--primary);
}

.tech-pill-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(31, 166, 184, 0.1);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-pill-icon svg { width: 22px; height: 22px; }

.tech-pill-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.tech-pill-body {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .tech-block { grid-template-columns: 1fr; gap: 40px; }
  .tech-pills { grid-template-columns: 1fr; }
}

.position-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  gap: 12px;
  font-size: 14px;
}

.position-detail-label {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.position-detail-value {
  color: var(--dark-bg);
  font-weight: 500;
  text-align: right;
}

.position-title {
  font-size: 24px;
  margin-bottom: 14px;
}

.position-body {
  flex: 1;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.55;
}

/* =========================================================
   Painpoints
   ========================================================= */

.painpoints { margin-top: 32px; }

.painpoint-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid var(--neutral-border);
  align-items: center;
}

.painpoint-row:last-child { border-bottom: none; }

.painpoint-left {
  font-size: 16px;
  color: var(--text-muted);
  position: relative;
  padding-left: 24px;
}

.painpoint-left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--neutral-border);
  border-radius: 50%;
}

.painpoint-left .strike {
  display: inline;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1.5px;
  background-position: 0 60%;
  background-repeat: no-repeat;
  transition: background-size 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  transition-delay: 0.2s;
  color: var(--text-muted);
}

.reveal-stagger.is-visible .painpoint-left .strike {
  background-size: 100% 1.5px;
}

.painpoint-right {
  font-size: 17px;
  color: var(--dark-bg);
  font-weight: 600;
  position: relative;
  padding-left: 32px;
}

.painpoint-right::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: var(--primary);
}

/* =========================================================
   Benefits
   ========================================================= */

.benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
  max-width: 960px;
}

.benefits li {
  padding: 6px 0 6px 36px;
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}

.benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 22px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231FA6B8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'></polyline></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}

/* =========================================================
   Split (Wohnen-Block)
   ========================================================= */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-media img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.split-text h2 { margin-bottom: 20px; }
.split-text p { font-size: 16.5px; line-height: 1.65; color: var(--text); }

/* =========================================================
   Duo (Haus + Region)
   ========================================================= */

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.duo-item img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}

.duo-item p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}

.flexi-note {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--neutral-border);
  border-left: 3px solid var(--primary);
  font-size: 15.5px;
  line-height: 1.65;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--text);
}

.flexi-note strong { color: var(--dark-bg); font-weight: 700; }

/* =========================================================
   Testimonials
   ========================================================= */

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

.testimonial {
  background: var(--surface);
  border: 1px solid var(--neutral-border);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
  position: relative;
}

.testimonial::before {
  content: """;
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.55;
  pointer-events: none;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.testimonial picture,
.testimonial img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin: 0 0 20px 0;
}

.testimonial blockquote {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 24px 0;
  font-weight: 400;
  flex: 1;
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dark-bg);
  font-size: 16px;
}

.testimonial-role {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* =========================================================
   Versprechen + Reminder
   ========================================================= */

/* =========================================================
   Share-Block (Empfehlung an Freunde)
   ========================================================= */

.share-block {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(31, 166, 184, 0.04) 0%, rgba(197, 215, 134, 0.08) 100%);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-md);
}

.share-block-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: var(--text-on-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(31, 166, 184, 0.25);
}

.share-block-icon svg { width: 26px; height: 26px; }

.share-block-content { flex: 1; min-width: 0; }

.share-block-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark-bg);
  margin: 0 0 8px 0;
}

.share-block-body {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 20px 0;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--neutral-border);
  background: var(--surface);
  color: var(--dark-bg);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.share-btn:hover {
  transform: translateY(-1px);
  border-color: var(--primary);
}

.share-btn svg { width: 18px; height: 18px; }

.share-btn-whatsapp:hover { background: #25D366; border-color: #25D366; color: #fff; }
.share-btn-mail:hover     { background: var(--primary); border-color: var(--primary); color: var(--text-on-dark); }
.share-btn-copy:hover     { background: var(--primary); border-color: var(--primary); color: var(--text-on-dark); }
.share-btn-native:hover   { background: var(--dark-bg); border-color: var(--dark-bg); color: var(--text-on-dark); }

.share-btn.is-success {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark-bg);
}

@media (max-width: 700px) {
  .share-block {
    flex-direction: column;
    padding: 26px 22px;
    gap: 18px;
  }
  .share-block-title { font-size: 19px; }
  .share-btn { flex: 1; min-width: calc(50% - 5px); justify-content: center; }
}

.promise {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.5;
  color: var(--dark-bg);
  text-align: center;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
}

.reminder-headline {
  font-size: 26px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

/* =========================================================
   Formular
   ========================================================= */

.application-form {
  margin-top: 32px;
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-border);
  box-shadow: var(--shadow-card);
}

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

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-bg);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text);
  background: var(--surface);
  border: 1.5px solid var(--neutral-border);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(31, 166, 184, 0.1);
}

.form-group input:invalid:not(:placeholder-shown):not(:focus),
.form-group select:invalid:not(:focus) {
  border-color: var(--error);
}

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

.char-counter {
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
  margin-top: 6px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  background: var(--neutral-light);
  border-radius: var(--radius-sm);
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0 0;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--primary);
}

.form-checkbox label {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  margin: 0;
  line-height: 1.55;
  cursor: pointer;
}

.form-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 18px;
}

.form-error {
  margin-top: 20px;
  padding: 14px 18px;
  background: var(--error-soft);
  border: 1px solid var(--error);
  border-radius: var(--radius-sm);
  color: var(--error);
  font-size: 14px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* =========================================================
   Verknappung
   ========================================================= */

.urgency-headline {
  font-size: 38px;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.urgency-body {
  font-size: 17px;
  color: var(--text-on-dark);
  opacity: 0.85;
  max-width: 640px;
  margin: 0 auto 36px auto;
  line-height: 1.55;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  background: var(--dark-bg);
  color: var(--text-on-dark);
  padding: 56px 0 40px 0;
  text-align: center;
}

.footer-logo {
  height: 64px;
  width: auto;
  display: block;
  margin: 0 auto 22px auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}

.footer-meta {
  font-size: 14px;
  opacity: 0.65;
  margin-bottom: 28px;
}

.footer-links {
  font-size: 14px;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--text-on-dark);
  text-decoration: none;
  margin: 0 6px;
  opacity: 0.85;
}

.footer-links a:hover { opacity: 1; text-decoration: underline; }

.footer-links span { opacity: 0.4; margin: 0 4px; }

.footer-contact {
  font-size: 14px;
  opacity: 0.75;
}

.footer-contact a { color: var(--accent); }
.footer-contact a:hover { text-decoration: underline; }

/* =========================================================
   Danke-Seite
   ========================================================= */

.danke-body { min-height: 100vh; display: flex; flex-direction: column; }
.danke-body .danke-hero { flex: 1; display: flex; align-items: center; }

.checkmark-large {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-on-dark);
  font-size: 44px;
  line-height: 88px;
  text-align: center;
  font-weight: bold;
  margin: 0 auto 32px auto;
  box-shadow: 0 8px 24px rgba(31, 166, 184, 0.3);
}

.danke-body-text {
  font-size: 17px;
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 22px auto;
  color: var(--text);
}

.danke-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* =========================================================
   Atmosphere-Section (Bar + Atrium-Sitzecke)
   ========================================================= */

.atmosphere-section {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--text-on-dark);
}

.atmosphere-section-tall { min-height: 560px; }

.atmosphere-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.atmosphere-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.atmosphere-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(15, 47, 51, 0.45) 0%, rgba(15, 47, 51, 0.75) 100%);
}

.atmosphere-overlay-left {
  background:
    linear-gradient(to right, rgba(15, 47, 51, 0.85) 0%, rgba(15, 47, 51, 0.55) 50%, rgba(15, 47, 51, 0.2) 100%);
}

.atmosphere-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 72px 24px;
  width: 100%;
}

.atmosphere-content-left { text-align: left; max-width: 720px; margin-right: auto; margin-left: 0; padding-left: max(24px, calc((100vw - var(--container-max)) / 2 + 24px)); }

.atmosphere-quote {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--text-on-dark);
  margin: 0 0 12px 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.atmosphere-source {
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.atmosphere-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  padding: 6px 14px;
  border: 1px solid rgba(197, 215, 134, 0.4);
  border-radius: 999px;
  margin-bottom: 22px;
}

.atmosphere-headline {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.1;
  color: var(--text-on-dark);
  margin: 0 0 18px 0;
  max-width: 640px;
}

.atmosphere-body {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-on-dark);
  opacity: 0.92;
  max-width: 580px;
  margin: 0;
}

/* =========================================================
   Benefits Tier Cards
   ========================================================= */

.benefits-tier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 16px 0 56px 0;
}

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-md);
  padding: 32px 28px 28px 28px;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--primary);
}

.benefit-card:hover::before { transform: scaleY(1); }

.benefit-card-num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.benefit-card-title {
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.benefit-card-body {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.benefits-secondary-headline {
  font-size: 22px;
  margin: 48px 0 24px 0;
  color: var(--text-muted);
  font-weight: 500;
}

.team-breakfast {
  display: flex;
  gap: 28px;
  align-items: center;
  margin: 48px 0 32px 0;
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(31, 166, 184, 0.06) 0%, rgba(197, 215, 134, 0.1) 100%);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.team-breakfast::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(197, 215, 134, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.team-breakfast-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: var(--text-on-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(31, 166, 184, 0.3);
}

.team-breakfast-icon svg { width: 32px; height: 32px; }

.team-breakfast-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark-bg);
  margin: 0 0 8px 0;
}

.team-breakfast-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

@media (max-width: 900px) {
  .team-breakfast { flex-direction: column; align-items: flex-start; padding: 28px; gap: 18px; }
  .team-breakfast-title { font-size: 19px; }
}

/* =========================================================
   Video-Wrapper (Marmoratrium-Video)
   ========================================================= */

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
  background: var(--dark-bg);
}

.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.video-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Auf Mobile: kein Video laden, Fallback-Bild zeigen */
@media (max-width: 768px) {
  .video-wrapper video { display: none; }
  .video-fallback { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  .video-wrapper video { display: none; }
  .video-fallback { display: block; }
}

/* =========================================================
   Asymmetric Testimonials
   ========================================================= */

.testimonials-asymmetric {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}

.testimonials-small {
  display: grid;
  gap: 24px;
}

.testimonial-large {
  padding: 44px 40px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--neutral-light) 100%);
  border: 1px solid var(--neutral-border);
}

.testimonial-large picture,
.testimonial-large img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
}

.testimonial-large blockquote {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--dark-bg);
}

.testimonial-large::before {
  font-size: 100px;
  top: 12px;
  right: 32px;
  opacity: 0.7;
}

/* =========================================================
   Multi-Step Form
   ========================================================= */

.form-progress { margin-bottom: 32px; }

.form-progress-bar {
  height: 4px;
  background: var(--neutral-border);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 18px;
}

.form-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 999px;
}

.form-progress-steps {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.form-progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.form-progress-step span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--neutral-border);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.form-progress-step.is-active {
  color: var(--dark-bg);
}

.form-progress-step.is-active span {
  background: var(--primary);
  color: var(--text-on-dark);
  transform: scale(1.1);
}

.form-progress-step.is-completed span {
  background: var(--primary-dark);
  color: var(--text-on-dark);
}

.form-step {
  display: none;
  animation: fadeUp 0.4s ease both;
}

.form-step.is-active { display: block; }

.form-step-intro {
  font-size: 16.5px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.55;
}

.form-step-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.form-step-actions .btn-large { flex: 1; min-width: 200px; }

/* =========================================================
   Countdown
   ========================================================= */

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 32px auto;
  max-width: 520px;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(197, 215, 134, 0.2);
  border-radius: var(--radius-sm);
  padding: 18px 8px;
  text-align: center;
}

.countdown-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  opacity: 0.7;
  margin-top: 8px;
  font-weight: 500;
}

.urgency-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(197, 215, 134, 0.3);
  border-radius: 999px;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 900px) {
  .hero { min-height: 620px; }
  .hero-headline { font-size: 40px; }
  .hero-sub { font-size: 17px; }

  .section { padding: 72px 0; }
  .section-headline { font-size: 30px; }
  .section-lead { font-size: 16px; }

  .eyecatcher { grid-template-columns: 1fr; gap: 16px; }
  .eyecatcher-value { font-size: 32px; }

  .positions { grid-template-columns: 1fr; }
  .position-detail { max-height: 280px; opacity: 1; margin: 16px 0 20px 0; padding-top: 16px; }

  .painpoint-row { grid-template-columns: 1fr; gap: 12px; padding: 20px 0; }
  .painpoint-right { padding-left: 32px; }

  .benefits { grid-template-columns: 1fr; }
  .benefits-tier-grid { grid-template-columns: 1fr; }

  .split { grid-template-columns: 1fr; gap: 36px; }
  .duo { grid-template-columns: 1fr; gap: 40px; }

  .testimonials { grid-template-columns: 1fr; }
  .testimonials-asymmetric { grid-template-columns: 1fr; }
  .testimonial-large blockquote { font-size: 18px; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .application-form { padding: 28px 20px; }

  .urgency-headline { font-size: 30px; }

  .atmosphere-quote { font-size: 28px; }
  .atmosphere-headline { font-size: 32px; }
  .atmosphere-content-left { padding-left: 24px; }

  .countdown { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .countdown-value { font-size: 28px; }
  .countdown-item { padding: 14px 4px; }
}

@media (max-width: 600px) {
  .hero { min-height: 580px; }
  .hero-content { padding: 80px 20px 70px 20px; }
  .hero-headline { font-size: 32px; line-height: 1.1; }
  .eyebrow { font-size: 11px; margin-bottom: 20px; }
  .hero-trust { font-size: 13px; gap: 10px; }

  .section { padding: 56px 0; }
  .section-headline { font-size: 24px; }
  .urgency-headline { font-size: 26px; }

  .btn-large { padding: 16px 28px; font-size: 16px; }
  .btn { padding: 12px 22px; font-size: 15px; }

  .header-inner { padding: 12px 16px; }
  .brand-name { font-size: 15px; }
  .brand-sub { font-size: 11px; }

  .container { padding: 0 16px; }

  .testimonial { padding: 24px 22px; }
  .testimonial blockquote { font-size: 15px; }
  .testimonial-large { padding: 32px 26px; }

  .flexi-note { padding: 22px 24px; }

  .atmosphere-quote { font-size: 22px; }
  .atmosphere-headline { font-size: 26px; }
  .atmosphere-body { font-size: 16px; }
  .atmosphere-section { min-height: 380px; }
  .atmosphere-section-tall { min-height: 460px; }

  .benefit-card-title { font-size: 17px; }

  .form-progress-steps { font-size: 11px; }
  .form-progress-step { gap: 6px; }
  .form-progress-step span { width: 22px; height: 22px; font-size: 11px; }

  .countdown-value { font-size: 22px; }
  .countdown-label { font-size: 9px; }
  .countdown-item { padding: 12px 4px; }
}
