/* OnlinePolisa.pl — Phase 3 landing styles
 * Palette from mockup: blue #1e56d6 primary, green #2fb867 CTA, red #cb2e3f accent (brand)
 */

:root {
  --c-primary: #1e56d6;
  --c-primary-dark: #164bb8;
  --c-primary-soft: #e8efff;
  --c-green: #2fb867;
  --c-green-dark: #26a159;
  --c-red: #cb2e3f;
  --c-dark: #0f172a;
  --c-text: #334155;
  --c-muted: #64748b;
  --c-bg: #ffffff;
  --c-bg-soft: #f5f7fb;
  --c-bg-muted: #eef2f7;
  --c-border: #e2e8f0;
  --c-border-strong: #cbd5e1;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.1);
  --container: 1200px;
  --gap: 24px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { color: var(--c-dark); line-height: 1.2; margin: 0 0 16px; font-weight: 700; }
h1 { font-size: clamp(28px, 4vw, 44px); }
h2 { font-size: clamp(24px, 3vw, 34px); }
h3 { font-size: clamp(18px, 2vw, 22px); }
p { margin: 0 0 16px; }

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

.d-none { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  transition: transform 0.1s, background 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--c-primary); color: #fff; }
.btn--primary:hover { background: var(--c-primary-dark); color: #fff; }
.btn--green { background: var(--c-green); color: #fff; }
.btn--green:hover { background: var(--c-green-dark); color: #fff; }
.btn--outline { background: #fff; color: var(--c-primary); border-color: var(--c-primary); }
.btn--outline:hover { background: var(--c-primary-soft); color: var(--c-primary); }
.btn--ghost { background: transparent; color: var(--c-dark); }
.btn--ghost:hover { background: var(--c-bg-soft); }
.btn--lg { padding: 14px 26px; font-size: 16px; }
.btn--block { width: 100%; }
.btn__arrow { width: 16px; height: 16px; }
.btn__play {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--c-primary-soft); color: var(--c-primary);
  display: inline-flex; align-items: center; justify-content: center;
}
.btn__play svg { width: 12px; height: 12px; margin-left: 2px; }

/* ---------- Header ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 10px 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand__mark { width: 34px; height: 42px; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name { font-weight: 700; font-size: 18px; color: var(--c-dark); letter-spacing: -0.2px; }
.brand__tag { font-size: 11px; color: var(--c-muted); margin-top: 1px; }
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav__link {
  color: var(--c-text);
  font-size: 15px;
  font-weight: 500;
  padding: 6px 0;
}
.nav__link:hover { color: var(--c-primary); text-decoration: none; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch { position: relative; }
.lang-switch__btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text);
}
.lang-switch__btn:hover { border-color: var(--c-border-strong); }
.lang-switch__btn img { width: 20px; height: 14px; border-radius: 2px; }
.lang-switch__chev { width: 12px; height: 12px; opacity: 0.6; }
.lang-switch__menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 100px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 6px;
  display: none;
  z-index: 60;
}
.lang-switch--open .lang-switch__menu { display: block; }
.lang-switch__menu a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: var(--c-text);
  font-size: 14px;
}
.lang-switch__menu a:hover { background: var(--c-bg-soft); text-decoration: none; }
.lang-switch__menu img { width: 20px; height: 14px; border-radius: 2px; }
.mobile-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  align-items: center; justify-content: center;
}
.mobile-toggle:hover { background: var(--c-bg-soft); }
.mobile-toggle svg { width: 24px; height: 24px; stroke: var(--c-dark); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, #fff 0%, var(--c-bg-soft) 100%);
  padding: 48px 0 24px;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--c-primary);
  background: var(--c-primary-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.hero__title {
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.15;
  margin: 0 0 20px;
  color: var(--c-dark);
  font-weight: 800;
  letter-spacing: -0.5px;
}
.hero__title em {
  font-style: normal;
  color: var(--c-primary);
  background: linear-gradient(180deg, transparent 60%, var(--c-primary-soft) 60%);
  padding: 0 4px;
}
.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15.5px;
  color: var(--c-text);
}
.hero__bullets svg {
  flex-shrink: 0; width: 22px; height: 22px;
  color: var(--c-primary);
  margin-top: 1px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__visual {
  position: relative;
  min-height: 320px;
}
.hero__photo {
  width: 100%; height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  max-height: 460px;
}
.hero__badge {
  position: absolute;
  bottom: 18px; right: 18px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  box-shadow: var(--shadow-lg);
  max-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__badge-row { display: flex; align-items: center; gap: 8px; }
.hero__badge-shield {
  width: 32px; height: 32px;
  color: var(--c-primary);
  background: var(--c-primary-soft);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__badge-shield svg { width: 18px; height: 18px; }
.hero__badge-text {
  font-size: 13px;
  color: var(--c-dark);
  font-weight: 600;
  line-height: 1.35;
}
.hero__badge-logo { height: 24px; width: auto; }
.hero__badge-sub {
  font-size: 11.5px;
  color: var(--c-muted);
  line-height: 1.4;
}

/* ---------- Wizard calc ---------- */
.wizard {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: 40px auto -60px;
  max-width: var(--container);
  padding: 18px 20px;
  position: relative;
  z-index: 2;
}
.wizard__form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
}
.wizard__step { position: relative; min-width: 0; }
.wizard__step-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
}
.wizard__num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--c-primary-soft);
  color: var(--c-primary);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wizard__step.is-active .wizard__num { background: var(--c-primary); color: #fff; }
.wizard__step.is-done .wizard__num { background: var(--c-green); color: #fff; }
.wizard__step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-dark);
}
.wizard__label {
  display: block;
  font-size: 12px;
  color: var(--c-muted);
  margin-bottom: 4px;
}
.wizard__select {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'><path d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat right 12px center;
  background-size: 10px 6px;
  appearance: none;
  color: var(--c-dark);
  font-family: inherit;
  padding-right: 32px;
}
.wizard__select:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(30,86,214,0.15); }
.wizard__price {
  font-size: 12px;
  color: var(--c-muted);
  margin-bottom: 4px;
}
.wizard__price-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-green);
  line-height: 1;
}
.wizard__submit {
  width: 100%;
  background: var(--c-primary);
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 0.15s;
}
.wizard__submit:hover { background: var(--c-primary-dark); }
.wizard__footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 12px;
  color: var(--c-muted);
}
.wizard__footer svg { width: 14px; height: 14px; }

/* ---------- Section common ---------- */
section[class^="section-"], .section { padding: 64px 0; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { margin: 0 0 10px; }
.section-header p { color: var(--c-muted); max-width: 640px; margin: 0 auto; }

/* ---------- Features ---------- */
.section-features { padding-top: 120px; padding-bottom: 56px; background: #fff; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.feature {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: left;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.feature:hover { border-color: var(--c-primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.feature__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--c-primary-soft);
  color: var(--c-primary);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-dark);
  margin: 0 0 6px;
}
.feature__desc {
  font-size: 13.5px;
  color: var(--c-muted);
  line-height: 1.5;
  margin: 0;
}

/* ---------- Trust bar ---------- */
.section-trust { padding: 28px 0; background: var(--c-bg-soft); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: center;
}
.trust-cell { text-align: center; color: var(--c-muted); }
.trust-cell img { height: 36px; width: auto; margin: 0 auto; display: block; opacity: 0.95; }
.trust-cell__value {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1.2;
}
.trust-cell__label {
  font-size: 13px;
  color: var(--c-muted);
  margin-top: 2px;
}
.trust-cell__icon {
  width: 40px; height: 40px;
  margin: 0 auto 8px;
  color: var(--c-primary);
  background: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.trust-cell__icon svg { width: 22px; height: 22px; }

/* ---------- How it works ---------- */
.section-how { background: #fff; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.how-step {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
  text-align: left;
}
.how-step__num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.how-step__title {
  font-size: 16px; font-weight: 700;
  color: var(--c-dark);
  margin: 0 0 6px;
}
.how-step__desc {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.5;
  margin: 0;
}
.how-step__arrow {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  color: var(--c-border-strong);
  z-index: 2;
}
.how-grid .how-step:last-child .how-step__arrow { display: none; }

/* ---------- FAQ ---------- */
.section-faq { background: var(--c-bg-soft); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item[open] { border-color: var(--c-primary); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--c-dark);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 12px; height: 12px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'><path d='M1 4l5 5 5-5' stroke='%231e56d6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item__body {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.6;
}

/* ---------- CTA banner ---------- */
.section-cta { padding: 56px 0; }
.cta-banner {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  color: #fff;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-banner::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-banner__image {
  width: 120px; height: auto;
  border-radius: var(--radius-sm);
  border: 3px solid rgba(255,255,255,0.2);
  position: relative;
  z-index: 1;
}
.cta-banner__text { position: relative; z-index: 1; }
.cta-banner__title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.25;
}
.cta-banner__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-banner__bullets li {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.92);
}
.cta-banner__bullets svg { width: 16px; height: 16px; color: rgba(255,255,255,0.85); }
.cta-banner__btn {
  position: relative;
  z-index: 1;
}
.cta-banner__sub {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  margin-top: 10px;
  text-align: center;
}

/* ---------- Footer trust bar ---------- */
.section-footer-trust { padding: 32px 0; background: #fff; border-top: 1px solid var(--c-border); }
.ftrust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ftrust {
  display: flex; align-items: flex-start; gap: 12px;
}
.ftrust__icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--c-primary-soft);
  color: var(--c-primary);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ftrust__icon svg { width: 18px; height: 18px; }
.ftrust__title { font-size: 14px; font-weight: 700; color: var(--c-dark); margin: 0 0 2px; }
.ftrust__desc { font-size: 13px; color: var(--c-muted); margin: 0; line-height: 1.4; }

/* ---------- Documents + contact ---------- */
.section-contact { padding: 56px 0; background: var(--c-bg-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}
.docs-card, .contact-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.docs-card h3, .contact-card h3 { margin-top: 0; }
.docs-card p { color: var(--c-muted); font-size: 14.5px; }
.docs-card__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.contact-form .field { margin-bottom: 12px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  color: var(--c-dark);
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(30,86,214,0.15); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-alert {
  background: var(--c-primary-soft);
  border: 1px solid var(--c-primary);
  color: var(--c-primary-dark);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  font-size: 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.form-alert--fail { background: #fee2e2; border-color: #ef4444; color: #b91c1c; }
.form-alert button { color: inherit; font-size: 16px; line-height: 1; padding: 4px 8px; }
.contact-meta {
  margin-top: 18px;
  font-size: 14px;
  color: var(--c-muted);
  display: flex; align-items: center; gap: 8px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-dark);
  color: rgba(255,255,255,0.7);
  padding: 28px 0;
  font-size: 13.5px;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: #fff; }
.site-footer__links { display: flex; gap: 18px; }
.site-footer__heart { display: inline-flex; align-items: center; gap: 4px; }
.site-footer__heart img { width: 14px; height: 14px; }

/* ---------- Docs modal ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.55);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.is-open { display: flex; }
.modal-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.modal-card h3 { margin-top: 0; }
.modal-card a {
  display: block;
  padding: 10px 12px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  color: var(--c-dark);
  font-size: 14px;
  font-weight: 500;
}
.modal-card a:hover { background: var(--c-primary-soft); border-color: var(--c-primary); text-decoration: none; }
.modal-card__close {
  margin-top: 10px;
  width: 100%;
  padding: 10px;
  background: var(--c-bg-soft);
  color: var(--c-text);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-step__arrow { display: none; }
  .ftrust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-toggle { display: inline-flex; }
  .site-header.is-mobile-open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--c-border);
    padding: 16px 20px;
    gap: 12px;
    box-shadow: var(--shadow-md);
  }
  .header-actions .btn--header-cta { display: none; }
  .hero { padding: 32px 0 20px; }
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero__visual { order: -1; min-height: auto; }
  .hero__photo { max-height: 280px; object-fit: cover; object-position: center top; }
  .hero__badge { position: static; max-width: none; margin-top: 14px; }
  .wizard { margin: 24px 16px -40px; padding: 16px; }
  .wizard__form { grid-template-columns: 1fr; gap: 10px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .cta-banner { grid-template-columns: 1fr; text-align: center; padding: 28px 20px; }
  .cta-banner__image { margin: 0 auto; }
  .cta-banner__bullets { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .ftrust-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  section[class^="section-"], .section { padding: 40px 0; }
  .section-features { padding-top: 90px; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 26px; }
  h2 { font-size: 22px; }
  .brand__tag { display: none; }
}
