/* =====================================================================
   VitalisPremium · funnel.css
   Funnel-only styles (loaded on top of site.css)
   ===================================================================== */

.funnel { padding-bottom: 0; }

/* Funnel does NOT show the mobile sticky bar — the page has its own CTA flow */
.funnel .mobile-sticky { display: none !important; }

/* ============================================================== HEADER */
.funnel-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,247,241,.95);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: var(--line);
}
.funnel-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  min-height: 76px;
}
.funnel-header__right {
  display: flex;
  align-items: center;
  gap: 18px;
}
@media (max-width: 720px) {
  .funnel-header__right .phone-block { display: none; }
  .funnel-header__row {
    gap: 12px;
    min-height: 72px;
    padding: 12px 0;
  }
  .funnel-header__row .logo { flex-shrink: 0; min-width: 0; }
  .funnel-header__row .logo img { height: 48px; width: auto; }
  .funnel-header__row .logo .loc { display: none; }
  .funnel-header__right .btn {
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
  }
}
@media (max-width: 380px) {
  .funnel-header__row .logo img { height: 42px; }
  .funnel-header__right .btn { padding: 9px 12px; font-size: 12.5px; }
}

/* ================================================================ HERO */
.funnel-hero {
  position: relative;
  background: linear-gradient(160deg, var(--green-900) 0%, var(--ink-900) 60%, #08110d 100%);
  color: var(--paper-50);
  padding: 80px 0 100px;
  overflow: hidden;
}
.funnel-hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(182,148,96,.18) 0%, transparent 70%);
  pointer-events: none;
}
.funnel-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.funnel-hero__copy h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 6.4vw, 80px);
  line-height: 0.97;
  letter-spacing: -0.024em;
  margin: 22px 0 24px;
  color: var(--paper-50);
}
.funnel-hero__copy h1 em {
  font-style: italic;
  color: var(--gold-300);
}
.funnel-hero__copy .lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink-200);
  max-width: 56ch;
  margin: 0 0 32px;
}
.funnel-hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.funnel-hero__note {
  font-size: 14px;
  color: var(--ink-300);
  margin: 0 0 32px;
  max-width: 50ch;
  font-style: italic;
}
.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-200);
}
.trust-line li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-line li::before {
  content: "✓";
  color: var(--gold-300);
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 700;
}

.funnel-hero__media {
  margin: 0;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px -20px rgba(0,0,0,0.5);
  background: rgba(255,255,255,0.06);
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.12);
}
.funnel-hero__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: calc(var(--r-lg) - 4px);
  display: block;
}
.funnel-hero__media figcaption {
  padding: 14px 8px 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
  text-align: center;
}

@media (max-width: 900px) {
  .funnel-hero { padding: 56px 0 64px; }
  .funnel-hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .funnel-hero__media img { aspect-ratio: 3/4; }
}

/* ====================================================== SITUATIONS GRID */
.situations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.situation {
  background: #fff;
  border: var(--line);
  border-radius: var(--r-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.situation__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 44px;
  line-height: 1;
  color: var(--gold-500);
  margin-bottom: 16px;
}
.situation h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 10px;
}
.situation p {
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1024px) { .situations { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px)  { .situations { grid-template-columns: 1fr; } }

/* ============================================================ DEMO BLOCK */
.funnel-demo__lede {
  font-size: 18px;
  color: var(--ink-200);
  line-height: 1.6;
  max-width: 60ch;
  margin: 16px 0 48px;
}
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr; /* third gets more weight — the "money shot" */
  gap: 18px;
}
.demo-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.demo-card--feature {
  background: rgba(182,148,96,0.08);
  border-color: rgba(216,195,154,0.32);
}
.demo-card__media {
  margin: 0;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #000;
}
.demo-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.demo-card__body { padding: 24px; }
.demo-card__body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin: 8px 0 8px;
  color: var(--paper-50);
}
.demo-card__body p {
  font-size: 15px;
  color: var(--ink-200);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1024px) {
  .demo-grid { grid-template-columns: 1fr 1fr; }
  .demo-card--feature { grid-column: 1 / -1; }
  .demo-card--feature .demo-card__media { aspect-ratio: 16/9; }
}
@media (max-width: 540px) {
  .demo-grid { grid-template-columns: 1fr; }
  .demo-card--feature .demo-card__media { aspect-ratio: 1/1; }
}

/* =================================================== REASONS LIST (cream) */
.reasons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.reasons li {
  background: #fff;
  padding: 20px 22px;
  border-radius: var(--r-md);
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.55;
  border-left: 3px solid var(--gold-500);
}

/* ==================================================== BRAND BRIDGE (premium) */
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.brand-photo {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.brand-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-photo figcaption {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  padding: 18px 22px;
  background: rgba(14,21,18,.78);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  color: var(--paper-50);
}
.brand-photo figcaption p {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--paper-50);
  line-height: 1.3;
}
.brand-card {
  background: #fff;
  border: var(--line);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.brand-points {
  display: flex;
  flex-direction: column;
}
.brand-point {
  padding: 22px 0;
  border-top: var(--line);
}
.brand-point:first-child { border-top: 0; padding-top: 8px; }
.brand-point:last-child  { padding-bottom: 0; }
.brand-point h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  margin: 0 0 4px;
}
.brand-point p {
  font-size: 14.5px;
  color: var(--ink-500);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 900px) {
  .brand-grid { grid-template-columns: 1fr; gap: 32px; }
  .brand-photo { aspect-ratio: 16/10; }
  .brand-card { padding: 28px; }
}

/* ============================================================== STEPS */
.funnel-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
}
.funnel-steps li {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 24px;
}
.funnel-steps__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 32px;
  color: var(--gold-300);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.funnel-steps h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  margin: 0 0 8px;
  color: var(--paper-50);
}
.funnel-steps p {
  font-size: 14px;
  color: var(--ink-200);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 1024px) { .funnel-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px)  { .funnel-steps { grid-template-columns: 1fr; } }

/* ============================================================== ANFRAGE */
.funnel-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.funnel-direct {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--ink-900);
  color: var(--paper-50);
  border-radius: var(--r-md);
  max-width: 360px;
}
.funnel-direct .kicker { color: var(--gold-300); }
.funnel-direct__num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--paper-50);
  text-decoration: none;
  display: block;
  margin-top: 8px;
}

.funnel-form {
  background: #fff;
  border: var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  box-shadow: var(--shadow-md);
}
.funnel-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
.funnel-form fieldset legend {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-700);
  margin-bottom: 10px;
  padding: 0;
}
.no-address {
  background: var(--paper-100);
  border: 1px solid var(--gold-300);
  border-radius: var(--r-md);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.no-address strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink-900);
}
.no-address span {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.5;
}
.funnel-form__small {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 13px;
  color: var(--ink-400);
  margin: 8px 0 0;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
  .funnel-form-wrap { grid-template-columns: 1fr; gap: 32px; }
  .funnel-direct { max-width: none; }
}
@media (max-width: 720px) {
  .funnel-form { grid-template-columns: 1fr; padding: 24px; gap: 16px; }
}

/* ============================================================ FOOTER */
.funnel-footer {
  padding: 40px 0 32px;
}
.funnel-footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.funnel-footer__row p { font-size: 14px; margin: 0; color: var(--ink-300); }
.funnel-footer__row p a { color: var(--paper-50); text-decoration: none; }
.funnel-footer__legal {
  display: flex;
  gap: 24px;
  font-size: 13px;
}
.funnel-footer__legal a { color: var(--ink-300); text-decoration: none; }
.funnel-footer__legal a:hover { color: var(--paper-50); }
