:root {
  --dark: #0E3040;
  --dark-mid: #1A4A60;
  --accent: #25948f;
  --accent-hover: #1c7a75;
  --accent-light: #D6EFF3;
  --accent-text: #157069;
  --text: #0E1B24;
  --text-mid: #4A6470;
  --text-light: #8AA5B0;
  --border: #DCE9EE;
  --bg: #F4F8FA;
  --danger: #E84020;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
button, input, textarea, a { font-family: inherit; }
::selection { background: var(--accent); color: #fff; }
[hidden] { display: none !important; }

@keyframes scIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes scPop { 0% { transform: scale(0); opacity: 0; } 60% { transform: scale(1.12); } 100% { transform: scale(1); opacity: 1; } }
@keyframes scShake { 0%, 100% { transform: translateX(0); } 20%, 60% { transform: translateX(-6px); } 40%, 80% { transform: translateX(6px); } }
@keyframes scToast { from { opacity: 0; transform: translate(-50%, 24px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* ---------- shared ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-light); color: var(--accent-text);
  font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 9999px;
}
.section-title {
  margin: 0 0 6px; font-size: clamp(23px, 4vw, 30px); line-height: 1.2;
  font-weight: 800; color: var(--text); letter-spacing: -.01em;
}
.section-subtitle {
  margin: 0 0 16px; font-size: 15px; line-height: 1.5; color: var(--text-mid);
}
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; max-width: 420px; min-height: 56px; padding: 16px 24px;
  background: var(--accent); color: #fff; border: none; border-radius: 12px;
  font-size: 17px; font-weight: 600; cursor: pointer;
  box-shadow: 0 6px 18px rgba(37, 148, 143, .36);
  transition: background .18s, transform .12s, box-shadow .18s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37, 148, 143, .42); }
.btn-primary:active { transform: translateY(0) scale(.98); }
.btn-primary--380 { max-width: 380px; }
.real-photo-badge {
  position: absolute; top: 10px; left: 10px;
  background: rgba(14, 48, 64, .82); color: #fff; font-size: 10px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; padding: 5px 9px; border-radius: 9999px;
}

/* ---------- hero ---------- */
.hero-wrap { position: relative; background: #fff; animation: scIn .45s ease both; }
.hero-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 20px 0; max-width: 1180px; margin: 0 auto;
}
.hero-top img { height: 32px; width: auto; }
.hero-tel { font-size: 14px; font-weight: 700; color: var(--accent); text-decoration: none; }
.hero-grid {
  display: flex; flex-direction: column-reverse; gap: 24px;
  max-width: 1180px; margin: 0 auto; padding: 22px 20px 36px;
}
.hero-photo { position: relative; align-self: center; width: 100%; max-width: 330px; }
.hero-photo-frame {
  position: relative; border: 6px solid #fff; border-radius: 150px 28px 150px 28px;
  overflow: hidden; box-shadow: 0 20px 48px rgba(14, 48, 64, .24), 0 0 0 1px var(--border);
  background: var(--dark);
}
.hero-photo-frame img { width: 100%; height: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center 32%; }
.hero-photo-pin {
  position: absolute; left: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .94); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border-radius: 9999px; padding: 7px 13px; box-shadow: 0 4px 14px rgba(14, 48, 64, .2);
}
.hero-photo-pin img { width: 18px; height: 18px; }
.hero-photo-pin span { font-size: 12px; font-weight: 700; color: var(--dark); }
.hero-panel { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.hero-panel h1 {
  margin: 0; font-size: clamp(30px, 7vw, 50px); line-height: 1.12; font-weight: 800;
  color: var(--text); letter-spacing: -.02em; text-wrap: balance;
}
.hero-panel h1 mark {
  background: var(--accent); color: #fff; border-radius: 8px; padding: 0 10px;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.hero-lead { margin: 0; font-size: clamp(15px, 2.4vw, 18px); line-height: 1.55; color: var(--text-mid); max-width: 520px; }
.hero-bullets { display: flex; flex-direction: column; gap: 10px; margin-top: 2px; }
.hero-bullet { display: flex; align-items: flex-start; gap: 11px; }
.hero-bullet-check {
  flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--accent-light);
  display: flex; align-items: center; justify-content: center; color: var(--accent-text);
  font-size: 12px; font-weight: 700; margin-top: 1px;
}
.hero-bullet span:last-child { font-size: 14px; line-height: 1.45; color: #2A3B44; }
.hero-bullet b { color: var(--text); }
.hero-panel .btn-primary { margin-top: 6px; }
.hero-early {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--accent-text);
}

/* ---------- trust strip ---------- */
.trust-strip { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 20px; }
.trust-items { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.trust-item { display: flex; align-items: center; gap: 11px; }
.trust-item img { width: 26px; height: 26px; flex: none; }
.trust-item-emoji { font-size: 22px; flex: none; }
.trust-item-text { display: flex; flex-direction: column; gap: 1px; }
.trust-item-title { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.3; }
.trust-item-sub { font-size: 11px; color: var(--text-mid); }

/* ---------- cabins / dining shared grid ---------- */
.section-cabins, .section-dining { padding: 44px 20px 40px; max-width: 780px; margin: 0 auto; }
.section-dining { padding: 8px 20px 40px; }
.tabs-row { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.tabs-row::-webkit-scrollbar { display: none; }
.tab-pill {
  flex: none; padding: 9px 16px; border: 2px solid var(--accent); border-radius: 9999px;
  font-size: 13px; font-weight: 600; color: var(--accent); background: transparent; cursor: pointer;
  white-space: nowrap; transition: all .15s;
}
.tab-pill.active { color: #fff; background: var(--accent); }
.food-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.food-grid figure { margin: 0; position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(14, 48, 64, .14); }
.food-grid img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; }
.food-grid figcaption {
  position: absolute; left: 10px; bottom: 10px; background: rgba(14, 48, 64, .82);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); color: #fff;
  font-size: 12px; font-weight: 700; padding: 6px 11px; border-radius: 9999px;
}
.cabin-caption { margin: 12px 0 0; font-size: 14px; line-height: 1.5; color: var(--text-mid); }
.cabin-note {
  display: flex; gap: 11px; align-items: flex-start; margin-top: 14px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 13px 15px;
}
.cabin-note-emoji { font-size: 18px; flex: none; }
.cabin-note span:last-child { font-size: 13px; line-height: 1.5; color: var(--text-mid); }

.section-dining .food-grid > div { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(14, 48, 64, .12); }
.section-dining .food-grid img { aspect-ratio: 3/4; }
.dining-bullets { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.dining-bullet { display: flex; align-items: center; gap: 11px; }
.dining-bullet-emoji { font-size: 20px; flex: none; width: 26px; text-align: center; }
.dining-bullet span:last-child { font-size: 14px; line-height: 1.45; color: #2A3B44; }

/* ---------- destinations ---------- */
.section-destinations { padding: 8px 0 44px; }
.section-destinations .section-head { max-width: 1180px; margin: 0 auto; padding: 0 20px 16px; }
.dest-track {
  display: flex; gap: 12px; overflow-x: auto; padding: 4px 20px 8px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  max-width: 1180px; margin: 0 auto; scrollbar-width: none;
}
.dest-track::-webkit-scrollbar { display: none; }
.dest-card {
  flex: 0 0 78vw; max-width: 262px; scroll-snap-align: start; border-radius: 16px; overflow: hidden;
  background: #fff; box-shadow: 0 4px 20px rgba(14, 48, 64, .12); border: 1px solid #EAF1F4;
}
.dest-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.dest-card-body { padding: 14px 16px 18px; }
.dest-card-duration { font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 5px; }
.dest-card-name { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.dest-card-desc { font-size: 14px; line-height: 1.5; color: var(--text-mid); }
.dest-card-price { margin-top: 10px; font-size: 17px; font-weight: 800; color: var(--dark); }

/* ---------- dark CTA blocks ---------- */
.cta-dark, .cta-final { padding: 44px 20px; text-align: center; }
.cta-dark { background: var(--dark); }
.cta-final { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%); padding: 52px 20px; }
.cta-dark-inner, .cta-final-inner { max-width: 520px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cta-dark h2, .cta-final h2 {
  margin: 0; font-size: clamp(24px, 4.4vw, 30px); line-height: 1.2; font-weight: 800;
  color: #fff; letter-spacing: -.01em; text-wrap: balance;
}
.cta-final h2 { font-size: clamp(25px, 4.6vw, 32px); line-height: 1.18; }
.cta-dark p, .cta-final p { margin: 0; font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, .8); max-width: 430px; }
.cta-dark-note { font-size: 13px; color: rgba(255, 255, 255, .55); }
.cta-dark-fine { font-size: 12px; line-height: 1.45; color: rgba(255, 255, 255, .45); max-width: 420px; }
.cta-final-links { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.cta-final-links a { font-size: 14px; text-decoration: none; }
.cta-final-links a.tel { color: rgba(255, 255, 255, .82); font-weight: 600; }
.cta-final-links a.social { color: rgba(255, 255, 255, .72); }

/* ---------- FAQ ---------- */
.section-faq { padding: 44px 20px; }
.faq-wrap { max-width: 1080px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; }
.faq-col { flex: 1 1 0; min-width: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; width: 100%; justify-content: space-between; align-items: center; gap: 12px;
  background: none; border: none; padding: 16px 0; cursor: pointer; text-align: left;
  font-size: 16px; font-weight: 600; color: var(--text);
}
.faq-sign { flex: none; font-size: 24px; color: var(--accent); line-height: 1; width: 20px; text-align: center; }
.faq-body { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .3s ease, opacity .3s ease; }
.faq-body.open { max-height: 320px; opacity: 1; }
.faq-body p { margin: 0; padding: 0 0 16px; font-size: 14px; line-height: 1.55; color: var(--text-mid); }
.faq-help {
  margin-top: 20px; display: flex; align-items: center; gap: 14px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 16px 18px;
}
.faq-help-icon {
  flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
}
.faq-help-icon img { width: 28px; height: 28px; }
.faq-help-text { flex: 1 1 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-help-title { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.3; }
.faq-help-sub { font-size: 13px; line-height: 1.4; color: var(--text-mid); }
.faq-help-cta { flex: none; font-size: 15px; font-weight: 700; color: var(--accent-text); text-decoration: none; white-space: nowrap; }
.video-col { flex: none; }
.video-frame { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 8px 28px rgba(14, 48, 64, .18); background: var(--dark); }
.video-frame img, .video-frame video { display: block; width: 100%; aspect-ratio: 3/4; object-fit: cover; background: var(--dark); }
.video-caption {
  position: absolute; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: space-between;
  gap: 8px; padding: 12px 14px; background: linear-gradient(180deg, transparent, rgba(14, 48, 64, .82));
  pointer-events: none;
}
.video-caption span { font-size: 13px; font-weight: 700; color: #fff; }
.video-mute-btn {
  pointer-events: auto; flex: none; width: 30px; height: 30px; border-radius: 50%; border: none;
  background: rgba(255, 255, 255, .2); color: #fff; font-size: 14px; line-height: 1;
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .15s;
}
.video-mute-btn:hover { background: rgba(255, 255, 255, .34); }

/* ---------- cashback ---------- */
.section-cashback { padding: 8px 20px 44px; max-width: 1080px; margin: 0 auto; }
.cashback-card {
  position: relative; border-radius: 24px; overflow: hidden; border: 1px solid var(--accent-light);
  background: linear-gradient(135deg, #FFFFFF 0%, #EEF8F7 58%, #E2F4F1 100%);
  box-shadow: 0 8px 28px rgba(14, 48, 64, .08); padding: 34px 26px;
}
.cashback-glow {
  position: absolute; right: -40px; top: -40px; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 148, 143, .12), transparent 70%); pointer-events: none;
}
.cash-row { position: relative; display: flex; flex-direction: column; gap: 24px; }
.cash-text { display: flex; flex-direction: column; gap: 16px; max-width: 640px; }
.cash-text h2 {
  margin: 0; font-size: clamp(24px, 4.6vw, 38px); line-height: 1.16; font-weight: 800;
  color: var(--text); letter-spacing: -.02em; text-wrap: balance;
}
.cash-text h2 em { color: var(--accent); font-style: normal; }
.cash-text p { margin: 0; font-size: clamp(14px, 2.4vw, 16px); line-height: 1.55; font-weight: 600; color: var(--text-mid); max-width: 520px; }
.cash-badges { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 2px; }
.cash-badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff;
  font-size: 13px; font-weight: 700; padding: 9px 16px; border-radius: 9999px;
}
.cash-badges img { height: 30px; width: auto; }
.cash-media { display: flex; gap: 10px; flex: none; }
.cash-media figure { margin: 0; flex: 1 1 0; border-radius: 14px; overflow: hidden; box-shadow: 0 6px 20px rgba(14, 48, 64, .18); }
.cash-media img { width: 100%; height: 100%; aspect-ratio: 3/4; object-fit: cover; }

/* ---------- reviews ---------- */
.section-reviews { padding: 8px 20px 44px; max-width: 1080px; margin: 0 auto; }
.reviews-grid { display: flex; flex-direction: column; gap: 20px; }
.reviews-text { display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.reviews-text .badge { width: max-content; }
.reviews-text h2 { margin: 0; font-size: clamp(23px, 4vw, 30px); line-height: 1.2; font-weight: 800; color: var(--text); letter-spacing: -.01em; }
.reviews-text p { margin: 0; font-size: 15px; line-height: 1.5; color: var(--text-mid); max-width: 520px; }
.reviews-text a { display: inline-flex; align-items: center; gap: 8px; width: max-content; font-size: 15px; font-weight: 700; color: var(--accent-text); text-decoration: none; }
.reviews-widget { position: relative; width: 100%; max-width: 560px; height: 760px; margin: 0 auto; overflow: hidden; }
.reviews-widget iframe { width: 100%; height: 100%; border: 1px solid #e6e6e6; border-radius: 16px; box-sizing: border-box; }
.reviews-widget .yandex-credit {
  box-sizing: border-box; text-decoration: none; color: #b3b3b3; font-size: 10px; padding: 0 16px;
  position: absolute; bottom: 8px; width: 100%; text-align: center; left: 0; overflow: hidden;
  text-overflow: ellipsis; display: block; max-height: 14px; white-space: nowrap;
}

/* ---------- about ---------- */
.section-about { background: var(--bg); padding: 44px 20px; }
.about-grid { max-width: 1080px; margin: 0 auto; }
.about-photo { width: 100%; max-width: 340px; aspect-ratio: 4/3; object-fit: cover; border-radius: 20px; margin: 0 auto 22px; box-shadow: 0 8px 28px rgba(14, 48, 64, .16); display: block; }
.about-body h2 { margin: 0 0 12px; font-size: clamp(22px, 3.8vw, 28px); line-height: 1.2; font-weight: 800; color: var(--text); letter-spacing: -.01em; }
.about-body p { margin: 0 0 20px; font-size: 16px; line-height: 1.65; color: var(--text-mid); }
.about-contacts { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.about-contacts a.tel { font-size: 18px; font-weight: 700; color: var(--dark); text-decoration: none; }
.social-circles { display: flex; gap: 10px; }
.social-circle {
  width: 42px; height: 42px; border-radius: 50%; background: var(--dark); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700;
  text-decoration: none; transition: background .15s;
}
.social-circle:hover { background: var(--dark-mid); }

/* ---------- social follow ---------- */
.section-social { background: #fff; padding: 42px 20px; border-top: 1px solid #EAF1F4; }
.social-inner { max-width: 680px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.social-inner h2 { margin: 0; font-size: clamp(22px, 3.8vw, 28px); line-height: 1.22; font-weight: 800; color: var(--text); letter-spacing: -.01em; text-wrap: balance; }
.social-inner p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--text-mid); max-width: 520px; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.social-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 9999px;
  color: #fff; font-size: 15px; font-weight: 600; text-decoration: none; transition: background .15s;
}
.social-pill.dark { background: var(--dark); }
.social-pill.dark:hover { background: var(--dark-mid); }
.social-pill.accent { background: var(--accent); }
.social-pill.accent:hover { background: var(--accent-hover); }

/* ---------- footer ---------- */
.site-footer { background: #0A2430; padding: 28px 20px calc(96px + env(safe-area-inset-bottom)); }
.site-footer-inner { max-width: 1080px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.site-footer img { height: 30px; width: auto; filter: brightness(0) invert(1); }
.site-footer p { margin: 0; font-size: 12px; line-height: 1.6; color: rgba(255, 255, 255, .5); }
.site-footer-links { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12px; }
.site-footer-links a { color: rgba(255, 255, 255, .7); text-decoration: none; }
.site-footer-links a.underline { text-decoration: underline; }

/* ---------- sticky CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  display: grid; grid-template-columns: 1fr auto; gap: 10px;
  background: rgba(255, 255, 255, .96); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: 9px 16px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid #E2ECEF; box-shadow: 0 -4px 20px rgba(14, 48, 64, .06);
}
.sticky-cta-btn {
  display: inline-flex; align-items: center; justify-content: center; white-space: nowrap;
  min-height: 44px; padding: 10px 18px; background: var(--accent); color: #fff; border: none;
  border-radius: 11px; font-size: 16px; font-weight: 600; cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 148, 143, .4);
}
.sticky-cta-btn:active { transform: scale(.98); }
.sticky-cta-ask {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 18px;
  background: #fff; border: 2px solid var(--accent); color: var(--accent-text); border-radius: 11px;
  font-size: 15px; font-weight: 600; text-decoration: none; white-space: nowrap;
}

/* ---------- funnel ---------- */
.funnel { display: flex; flex-direction: column; min-height: 100svh; background: var(--bg); }
.side {
  display: none; width: 38%; max-width: 460px; position: sticky; top: 0; height: 100svh;
  flex-direction: column; justify-content: space-between; background: var(--dark); overflow: hidden;
}
.side-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; z-index: 0; }
.side-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14, 48, 64, .62), rgba(14, 48, 64, .32) 42%, rgba(14, 48, 64, .95));
}
.side-brand { position: relative; z-index: 2; padding: 34px 36px 0; }
.side-brand span { font-size: 23px; font-weight: 800; color: #fff; letter-spacing: -.01em; }
.side-content { position: relative; z-index: 2; padding: 36px; display: flex; flex-direction: column; gap: 20px; }
.side-headline { margin: 0; font-size: 23px; line-height: 1.3; font-weight: 700; color: #fff; text-wrap: balance; }
.side-headline span { display: inline-block; border: 2px solid var(--accent); color: #fff; border-radius: 9999px; padding: 0 10px; }
.side-checklist { display: flex; flex-direction: column; gap: 11px; }
.side-check-item { display: flex; align-items: center; gap: 10px; }
.side-check-icon {
  flex: none; width: 22px; height: 22px; border-radius: 50%; background: rgba(37, 148, 143, .35);
  display: flex; align-items: center; justify-content: center; color: var(--accent-light); font-size: 11px; font-weight: 700;
}
.side-check-item span:last-child { font-size: 14px; color: rgba(255, 255, 255, .86); }
.side-tel { font-size: 16px; font-weight: 700; color: #fff; text-decoration: none; }

.funnel-content { flex: 1 1 auto; display: flex; flex-direction: column; min-width: 0; }
.funnel-header {
  position: sticky; top: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; background: var(--dark); padding: 12px 16px; min-height: 52px;
}
.back-btn {
  display: inline-flex; align-items: center; gap: 4px; background: transparent; border: none;
  color: rgba(255, 255, 255, .85); font-size: 14px; font-weight: 600; cursor: pointer; padding: 6px 8px; margin: -6px -8px; flex: none;
}
.back-spacer { flex: none; width: 64px; }
.mobile-brand { font-size: 16px; font-weight: 800; color: #fff; }
.step-text { font-size: 13px; color: rgba(255, 255, 255, .7); min-width: 64px; text-align: right; flex: none; }

.progress-track { height: 4px; background: var(--border); width: 100%; }
.progress-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent-text), var(--accent)); border-radius: 9999px; transition: width .45s ease; }

.funnel-main { flex: 1 1 auto; padding: 26px 20px 44px; }

.toast {
  position: fixed; left: 50%; bottom: 24px; z-index: 400; transform: translateX(-50%);
  max-width: 520px; width: calc(100% - 40px); background: #EFF8FA; border-left: 4px solid var(--accent);
  border-radius: 10px; box-shadow: 0 8px 28px rgba(14, 48, 64, .22); padding: 14px 16px; font-size: 14px;
  line-height: 1.45; color: var(--text); animation: scToast .3s ease both;
}

/* ---------- quiz ---------- */
.quiz-hint { margin: 0 0 6px; font-size: 14px; font-style: italic; color: var(--text-mid); }
.quiz-question { margin: 0 0 20px; font-size: clamp(21px, 3.6vw, 27px); line-height: 1.25; font-weight: 800; color: var(--text); letter-spacing: -.01em; text-wrap: balance; }
.answer-list { display: flex; flex-direction: column; gap: 12px; }
.answer-card {
  display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; padding: 15px 16px;
  min-height: 66px; background: #fff; border: 2px solid var(--border); border-radius: 16px; cursor: pointer;
  transition: border-color .18s, background .18s, transform .12s, box-shadow .18s; box-shadow: 0 1px 2px rgba(14, 48, 64, .04);
}
.answer-card:hover { border-color: var(--accent); transform: translateY(-1px); }
.answer-card.selected { background: var(--accent-light); border-color: var(--accent); box-shadow: 0 2px 12px rgba(37, 148, 143, .2); }
.answer-emoji { font-size: 25px; line-height: 1; flex: none; width: 32px; text-align: center; }
.answer-text { flex: 1 1 auto; display: flex; flex-direction: column; gap: 2px; text-align: left; }
.answer-label { font-size: 16px; font-weight: 700; color: var(--text); line-height: 1.3; }
.answer-sub { font-size: 13px; color: var(--text-mid); line-height: 1.35; }
.answer-mark {
  flex: none; width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--border); background: #fff;
  display: flex; align-items: center; justify-content: center; color: transparent; font-size: 12px; font-weight: 700; transition: all .15s;
}
.answer-card.selected .answer-mark { border-color: var(--accent); background: var(--accent); color: #fff; }
.quiz-next { width: 100%; min-height: 54px; margin-top: 18px; padding: 15px 24px; font-size: 17px; }

/* ---------- form ---------- */
.form-title { margin: 0 0 8px; font-size: clamp(22px, 3.8vw, 28px); line-height: 1.24; font-weight: 800; color: var(--text); letter-spacing: -.01em; text-wrap: balance; }
.form-lead { margin: 0 0 22px; font-size: 15px; line-height: 1.55; color: var(--text-mid); }
.lead-form { display: flex; flex-direction: column; gap: 15px; }
.field-label { display: flex; flex-direction: column; gap: 6px; }
.field-label > span:first-child { font-size: 13px; font-weight: 600; color: var(--text-mid); }
.field-label > span:first-child em { color: var(--text-light); font-style: normal; font-weight: 400; }
.field {
  width: 100%; height: 54px; border-radius: 12px; border: 2px solid var(--border); padding: 0 16px;
  font-size: 16px; background: var(--bg); color: var(--text); outline: none; transition: border-color .15s, background .15s;
}
.field:focus { border-color: var(--accent); background: #fff; }
.field.error { border-color: var(--danger); background: #fff; animation: scShake .3s; }
.field-error { font-size: 12px; color: var(--danger); }
.form-perk {
  display: flex; gap: 12px; align-items: center; background: linear-gradient(135deg, #EFF8FA, #E7F6F4);
  border: 1px solid #BEE6E2; border-radius: 16px; padding: 14px 16px;
}
.form-perk-emoji { font-size: 26px; flex: none; }
.form-perk-title { font-size: 14px; font-weight: 700; color: var(--text); }
.form-perk-sub { font-size: 12px; color: var(--text-mid); }
.consent-row { display: flex; gap: 10px; align-items: flex-start; }
.consent-box {
  flex: none; width: 22px; height: 22px; border-radius: 6px; border: 2px solid var(--border); background: #fff;
  display: flex; align-items: center; justify-content: center; color: transparent; font-size: 13px; font-weight: 700;
  cursor: pointer; margin-top: 1px; transition: all .15s;
}
.consent-box.checked { border-color: var(--accent); background: var(--accent); color: #fff; }
.consent-text { font-size: 13px; line-height: 1.45; color: var(--text-mid); margin: 0; }
.consent-text a { color: var(--accent); text-decoration: underline; }
.form-error-consent { font-size: 12px; color: var(--danger); margin-top: -8px; }
.form-submit { width: 100%; }
.form-submit:disabled { opacity: .65; pointer-events: none; }
.form-note { margin: 0; font-size: 13px; line-height: 1.5; color: var(--text-light); text-align: center; }

/* ---------- thank you ---------- */
.thankyou { text-align: center; display: flex; flex-direction: column; align-items: center; animation: scIn .3s ease both; }
.thankyou-check {
  width: 76px; height: 76px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--dark));
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 34px;
  box-shadow: 0 10px 30px rgba(37, 148, 143, .35); animation: scPop .55s cubic-bezier(.175, .885, .32, 1.275) both;
}
.thankyou h2 { margin: 22px 0 8px; font-size: clamp(24px, 4.2vw, 30px); font-weight: 800; color: var(--text); letter-spacing: -.01em; }
.thankyou-lead { margin: 0 0 30px; font-size: 15px; line-height: 1.55; color: var(--text-mid); max-width: 440px; }
.thankyou-steps { width: 100%; max-width: 480px; display: flex; flex-direction: column; gap: 18px; text-align: left; }
.thankyou-step { display: flex; gap: 14px; align-items: flex-start; }
.thankyou-step-num {
  flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--accent-light); color: var(--accent-text);
  font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center;
}
.thankyou-step-title { font-size: 15px; font-weight: 700; color: var(--text); }
.thankyou-step-text { font-size: 14px; line-height: 1.5; color: var(--text-mid); }
.thankyou-perk {
  width: 100%; max-width: 480px; display: flex; gap: 12px; align-items: center;
  background: linear-gradient(135deg, #EFF8FA, #E7F6F4); border: 1px solid #BEE6E2; border-radius: 16px;
  padding: 14px 16px; margin-top: 26px; text-align: left;
}
.thankyou-article { display: block; width: 100%; max-width: 480px; margin-top: 14px; border-radius: 16px; overflow: hidden; box-shadow: 0 6px 20px rgba(14, 48, 64, .16); text-decoration: none; }
.thankyou-article img { width: 100%; display: block; }
.thankyou-article-note { margin: 10px 0 0; font-size: 13px; line-height: 1.5; color: var(--text-mid); max-width: 440px; }
.thankyou-social-label { margin: 30px 0 12px; font-size: 14px; color: var(--text-mid); }
.thankyou-social { display: flex; gap: 14px; justify-content: center; }
.thankyou-social a {
  width: 50px; height: 50px; border-radius: 50%; background: var(--dark); color: #fff; display: flex;
  align-items: center; justify-content: center; font-size: 15px; font-weight: 700; text-decoration: none; transition: background .15s;
}
.thankyou-social a:hover { background: var(--dark-mid); }
.thankyou-tel { margin-top: 18px; font-size: 17px; font-weight: 700; color: var(--dark); text-decoration: none; }
.thankyou-home { width: 100%; max-width: 380px; margin-top: 30px; min-height: 54px; padding: 15px 24px; font-size: 17px; }

/* ---------- responsive ---------- */
@media (min-width: 900px) {
  .hero-grid { flex-direction: row-reverse; align-items: center; gap: 56px; padding-top: 28px; padding-bottom: 48px; }
  .hero-photo { align-self: center; width: 40%; max-width: 400px; flex: none; }
  .hero-panel { flex: 1 1 0; }
  .trust-items { flex-direction: row; justify-content: center; gap: 0; }
  .trust-item + .trust-item { border-left: 1px solid var(--border); padding-left: 28px; margin-left: 28px; }
  .about-grid { display: flex; flex-direction: row; gap: 40px; align-items: center; }
  .about-photo { flex: 0 0 360px; max-width: 360px; margin-bottom: 0; }
  .about-body { flex: 1 1 0; }
  .faq-wrap { flex-direction: row; gap: 40px; align-items: flex-start; }
  .video-col { flex: 0 0 380px; max-width: 380px; }
  .cash-row { flex-direction: row; align-items: center; gap: 32px; }
  .cash-text { flex: 1 1 0; max-width: none; }
  .cash-media { flex: 0 0 360px; max-width: 360px; }
  .reviews-grid { flex-direction: row; align-items: stretch; gap: 32px; }
  .reviews-text { flex: 0 0 320px; max-width: 320px; }
  .reviews-widget { flex: 1 1 0; }
  .sticky-cta { display: none; }
  .funnel { flex-direction: row; }
  .side { display: flex; }
  .mobile-brand { display: none; }
  .content-inner { max-width: 600px; margin: 0 auto; }
}
