:root {
  --navy: #102a56;
  --blue: #0866e5;
  --blue-dark: #0652c9;
  --light-blue: #eff7ff;
  --green: #18a957;
  --red: #e53935;
  --text: #102a43;
  --muted: #5c6b7a;
  --border: #e3ebf4;
  --white: #fff;
  --space: 16px;
  --radius: 18px;
  --shadow-soft: 0 7px 22px rgba(16, 42, 86, .08);
  --shadow-cta: 0 9px 20px rgba(8, 102, 229, .22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding-bottom: calc(82px + env(safe-area-inset-bottom));
  color: var(--text);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--space);
}

/* Промотивна лента */
.promo-bar {
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: 7px 16px;
  color: var(--white);
  background: linear-gradient(90deg, var(--blue-dark), #2479db);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

/* Заглавје */
.site-header {
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 10px; color: var(--navy); }
.brand-mark { width: 38px; height: 38px; color: var(--blue); }
.brand-mark svg { width: 100%; height: 100%; stroke-width: 2; }
.brand strong { display: block; font-size: 21px; line-height: 1.05; }
.brand small { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 1; }
.header-actions { display: flex; gap: 4px; }

.icon-button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.icon-button svg { width: 25px; height: 25px; stroke-width: 2; }

/* Главна понуда */
.hero-layout { padding-inline: 0; }
.hero-visual { position: relative; overflow: hidden; background: var(--light-blue); }

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1122 / 1120;
  object-fit: cover;
  object-position: center 48%;
}

.discount-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  min-width: 62px;
  height: 48px;
  padding: 0 10px;
  color: var(--white);
  background: linear-gradient(145deg, #20b75e, #109547);
  border: 3px solid rgba(255,255,255,.75);
  border-radius: 999px;
  box-shadow: 0 7px 17px rgba(24,169,87,.25);
  font-size: 19px;
  font-weight: 800;
}

.hero-copy { padding: 24px 16px 10px; text-align: center; }

h1 {
  max-width: 660px;
  margin: 0 auto;
  color: var(--navy);
  font-size: clamp(29px, 8vw, 48px);
  line-height: 1.14;
  letter-spacing: -.035em;
}

.hero-description {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 20px;
  margin: 18px 0 14px;
}

.price del { color: #6e7883; font-size: 18px; font-weight: 500; }
.price strong { color: var(--blue-dark); font-size: 42px; line-height: 1; letter-spacing: -.04em; }
.price strong span { font-size: 19px; letter-spacing: 0; }

.primary-cta {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 14px;
  box-shadow: var(--shadow-cta);
  font-size: 19px;
  font-weight: 700;
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}

.primary-cta svg { width: 25px; height: 25px; stroke-width: 2; }
.primary-cta:active { transform: translateY(2px) scale(.99); filter: brightness(.92); box-shadow: 0 3px 8px rgba(8,102,229,.2); }

/* Информации за доверба */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.trust-row svg { width: 20px; height: 20px; color: var(--blue-dark); }
.trust-row i { width: 4px; height: 4px; align-self: center; background: #9ba9b7; border-radius: 50%; }

/* Картички со придобивки */
.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.benefit-card {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.benefit-card svg { width: 45px; height: 45px; color: var(--blue-dark); stroke-width: 1.65; }
.benefit-card h2 { margin: 0; color: var(--text); font-size: 15px; line-height: 1.3; }
.benefit-card.benefit-green svg { color: var(--green); }

/* Заеднички стилови за секциите */
.content-section { padding-top: 64px; }

.section-heading {
  max-width: 650px;
  margin: 0 auto 24px;
  text-align: center;
}

.section-heading h2,
.charging-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(26px, 7vw, 38px);
  line-height: 1.18;
  letter-spacing: -.025em;
}

.section-heading p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Проблем и решение */
.story-grid { display: grid; gap: 16px; }

.story-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(120px, .85fr);
  min-height: 215px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.problem-card { background: linear-gradient(135deg, #f8fbff, #edf5fd); }
.solution-card { background: linear-gradient(135deg, #f6fcf8, #ebf8f0); }
.story-copy { align-self: center; padding: 22px 8px 22px 20px; }
.story-copy h3 { margin: 0 0 9px; color: var(--navy); font-size: 21px; }
.solution-card .story-copy h3 { color: #138a48; }
.story-copy p { margin: 0; color: var(--text); font-size: 15px; line-height: 1.6; }
.story-image { min-width: 0; overflow: hidden; }

.story-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 52% center;
}

/* Клучни карактеристики */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.feature-card {
  min-height: 196px;
  padding: 20px 12px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.feature-card svg {
  width: 47px;
  height: 47px;
  margin-bottom: 12px;
  color: var(--blue-dark);
  stroke-width: 1.65;
}

.feature-card.feature-accent svg { color: var(--green); }
.feature-card h3 { margin: 0; color: var(--navy); font-size: 16px; line-height: 1.3; }
.feature-card p { margin: 8px 0 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

/* Чекори за употреба */
.steps-grid { display: grid; gap: 16px; }

.step-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.step-image { position: relative; height: 220px; overflow: hidden; background: var(--light-blue); }
.step-image img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 47%; }
.step-image-product img { object-position: center 45%; }

.step-image span {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 5px 12px rgba(8,102,229,.25);
  font-size: 18px;
  font-weight: 800;
}

.step-copy { padding: 20px; }
.step-copy h3 { margin: 0; color: var(--navy); font-size: 19px; line-height: 1.3; }
.step-copy p { margin: 8px 0 0; color: var(--muted); font-size: 15px; line-height: 1.6; }

.usage-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  max-width: 780px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.usage-note svg { width: 19px; height: 19px; flex: 0 0 auto; margin-top: 1px; color: var(--blue); }

/* Содржина на пакетот */
.package-layout { display: grid; gap: 16px; }

.package-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.package-image img { display: block; width: 100%; height: 100%; object-fit: cover; }

.package-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.package-items article {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 8px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.package-items svg { width: 39px; height: 39px; color: var(--blue-dark); stroke-width: 1.65; }
.package-items span { color: var(--text); font-size: 14px; font-weight: 600; line-height: 1.4; }

/* USB полнење */
.charging-section {
  margin-top: 64px;
  padding: 44px 0;
  background: linear-gradient(145deg, #f4f9ff, #eaf5ff);
}

.charging-layout { display: grid; gap: 26px; }

.charging-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(8,102,229,.1);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.charging-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.charging-copy { align-self: center; }

.eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.charging-copy > p { margin: 14px 0 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.charging-copy ul { display: grid; gap: 11px; margin: 20px 0 0; padding: 0; list-style: none; }
.charging-copy li { display: flex; align-items: center; gap: 9px; color: var(--text); font-size: 15px; font-weight: 600; }
.charging-copy li svg { width: 22px; height: 22px; flex: 0 0 auto; color: var(--green); stroke-width: 2; }

/* Избор на понуда */
.offer-grid { display: grid; gap: 16px; max-width: 900px; margin-inline: auto; }

.offer-card {
  position: relative;
  min-height: 230px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 24px 20px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.offer-card > input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.offer-radio { position: absolute; top: 24px; right: 20px; width: 24px; height: 24px; border: 2px solid #b8c5d4; border-radius: 50%; }
.offer-radio::after { content: ""; position: absolute; inset: 4px; background: var(--blue); border-radius: 50%; transform: scale(0); transition: transform .15s ease; }
.offer-card:has(input:checked) { border-color: var(--blue); box-shadow: 0 10px 25px rgba(8,102,229,.14); }
.offer-double:has(input:checked) { border-color: var(--green); box-shadow: 0 10px 25px rgba(24,169,87,.14); }
.offer-card input:checked ~ .offer-radio { border-color: var(--blue); }
.offer-double input:checked ~ .offer-radio { border-color: var(--green); }
.offer-double .offer-radio::after { background: var(--green); }
.offer-card input:checked ~ .offer-radio::after { transform: scale(1); }
.offer-card:focus-within { outline: 3px solid #74adf4; outline-offset: 3px; }

.offer-quantity {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: var(--light-blue);
  border-radius: 13px;
  font-size: 18px;
  font-weight: 800;
}

.offer-double .offer-quantity { color: #108044; background: #eaf8ef; }
.offer-content { min-width: 0; display: flex; flex-direction: column; padding-right: 22px; }
.offer-title { color: var(--navy); font-size: 21px; line-height: 1.25; }
.offer-description { margin-top: 6px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.offer-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 5px 12px; margin-top: auto; padding-top: 16px; }
.offer-price b { color: var(--blue-dark); font-size: 28px; line-height: 1; }
.offer-price small { color: var(--muted); font-size: 13px; }
.offer-total { margin-top: 9px; color: var(--text); font-size: 14px; }
.offer-total b { color: var(--navy); font-size: 17px; }
.offer-comparison { margin-top: 12px; color: var(--muted); font-size: 13px; }
.offer-comparison del { margin-right: 4px; }
.offer-price .free-delivery, .offer-saving { color: #128849; font-weight: 700; }
.offer-saving { margin-top: 8px; font-size: 14px; }

.best-offer {
  position: absolute;
  top: -13px;
  left: 50%;
  padding: 5px 14px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transform: translateX(-50%);
}

/* Искуства */
.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(285px, 84%);
  gap: 14px;
  margin-inline: -16px;
  padding: 2px 16px 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
}

.review-person { display: flex; align-items: center; gap: 12px; }
.avatar { width: 48px; height: 48px; display: grid; place-items: center; flex: 0 0 auto; color: var(--white); background: var(--blue); border-radius: 50%; font-weight: 800; }
.avatar-green { background: var(--green); }
.avatar-navy { background: var(--navy); }
.review-person h3 { margin: 0; color: var(--navy); font-size: 16px; }
.review-person small { color: var(--muted); font-size: 13px; }
.stars { margin-top: 17px; color: #f5a900; font-size: 20px; letter-spacing: 2px; line-height: 1; }
.review-card blockquote { margin: 16px 0 0; color: var(--text); font-size: 15px; line-height: 1.65; }

/* Најчести прашања */
.faq-list { max-width: 820px; display: grid; gap: 12px; margin-inline: auto; }

.faq-list details {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 15px;
  box-shadow: 0 4px 14px rgba(16,42,86,.05);
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 16px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; width: 20px; height: 20px; flex: 0 0 auto; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; top: 9px; left: 3px; width: 14px; height: 2px; background: var(--blue); border-radius: 2px; transition: transform .18s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details[open] summary { border-bottom: 1px solid var(--border); }
.faq-list details p { margin: 0; padding: 16px; color: var(--muted); font-size: 15px; line-height: 1.65; }

/* Форма за нарачка */
#order { scroll-margin-top: 16px; }
.order-section { padding-bottom: 56px; background: linear-gradient(180deg, #fff, #f7fbff); }
.order-layout { display: grid; gap: 18px; max-width: 1000px; margin-inline: auto; }

.customer-form, .order-summary {
  padding: 22px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.form-grid { display: grid; gap: 17px; }
.field { min-width: 0; }
.field label, .form-offers legend { display: block; margin-bottom: 7px; color: var(--navy); font-size: 14px; font-weight: 700; }
.label-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.label-row label { margin-bottom: 7px; }
.label-row small, .label-row > span { color: var(--muted); font-size: 12px; font-weight: 500; }

.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid #cdd9e6;
  border-radius: 11px;
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.field textarea { min-height: 108px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #8795a5; opacity: 1; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(8,102,229,.13); }
.field [aria-invalid="true"] { border-color: var(--red); box-shadow: 0 0 0 3px rgba(229,57,53,.1); }
.field-error { display: block; min-height: 0; margin-top: 5px; color: #c62828; font-size: 13px; line-height: 1.4; }
.field-error:not(:empty) { min-height: 18px; }

.form-offers { display: grid; gap: 9px; margin: 22px 0 0; padding: 0; border: 0; }
.form-offers label { min-height: 50px; display: flex; align-items: center; gap: 10px; padding: 10px 13px; border: 1px solid var(--border); border-radius: 11px; cursor: pointer; }
.form-offers label:has(input:checked) { border-color: var(--blue); background: #f5f9ff; }
.form-offers input, .consent input { width: 20px; height: 20px; flex: 0 0 auto; accent-color: var(--blue); }
.form-offers span { font-size: 14px; }

.consent { min-height: 44px; display: flex; align-items: flex-start; gap: 10px; margin-top: 22px; color: var(--text); font-size: 14px; line-height: 1.5; cursor: pointer; }
.consent input { margin-top: 2px; }
.consent-error { margin-left: 30px; }
.privacy-note { margin: 5px 0 0 30px; color: var(--muted); font-size: 12px; line-height: 1.5; }

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

.turnstile-area { margin-top: 18px; }
#turnstile-container { min-height: 0; }
.turnstile-message { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.turnstile-message:not(:empty) { padding: 11px 12px; background: #fff9e8; border: 1px solid #ead99c; border-radius: 10px; }
.turnstile-message.error { color: #a52525; background: #fff1f1; border-color: #f1bcbc; }

.form-feedback { display: none; margin-top: 18px; padding: 13px 14px; border-radius: 11px; font-size: 14px; line-height: 1.5; }
.form-feedback:not(:empty) { display: block; }
.form-feedback.info { color: #245680; background: #edf6ff; border: 1px solid #bddbf8; }
.form-feedback.loading { color: #245680; background: #edf6ff; border: 1px solid #bddbf8; }
.form-feedback.success { color: #126a38; background: #edf9f2; border: 1px solid #b8e3c9; }
.form-feedback.error { color: #a52525; background: #fff1f1; border: 1px solid #f1bcbc; }

.submit-order {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border: 0;
  border-radius: 13px;
  box-shadow: var(--shadow-cta);
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.submit-order svg { width: 24px; height: 24px; }
.submit-order:disabled { opacity: .62; cursor: wait; box-shadow: none; }
.payment-note { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 12px 0 0; color: var(--muted); font-size: 13px; }
.payment-note svg { width: 18px; height: 18px; color: var(--blue-dark); }
.noscript-note { max-width: 1000px; margin: 0 auto 16px; padding: 12px; color: #795d13; background: #fff9e5; border: 1px solid #ead68e; border-radius: 10px; font-size: 14px; }

.order-summary h3 { margin: 0 0 18px; color: var(--navy); font-size: 21px; }
.summary-product { display: grid; grid-template-columns: 74px 1fr; align-items: center; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.summary-product img { width: 74px; height: 74px; object-fit: cover; object-position: center 45%; border-radius: 12px; }
.summary-product strong { display: block; color: var(--navy); font-size: 14px; line-height: 1.4; }
.summary-product span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; }
.order-summary dl { margin: 14px 0 0; }
.order-summary dl div { display: flex; justify-content: space-between; gap: 18px; padding: 8px 0; color: var(--muted); font-size: 14px; }
.order-summary dd { margin: 0; color: var(--text); font-weight: 600; }
.order-summary .summary-total { margin-top: 8px; padding-top: 16px; color: var(--navy); border-top: 1px solid var(--border); font-size: 17px; font-weight: 800; }
.order-summary .summary-total dd { color: var(--blue-dark); font-size: 24px; }
.summary-trust { display: grid; gap: 9px; margin: 19px 0 0; padding: 16px 0 0; border-top: 1px solid var(--border); list-style: none; }
.summary-trust li { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; }
.summary-trust svg { width: 19px; height: 19px; color: var(--green); }

/* Мобилна лента за нарачка */
.sticky-order {
  position: fixed;
  z-index: 20;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.97);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(16,42,86,.1);
  backdrop-filter: blur(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.sticky-order.is-hidden { opacity: 0; visibility: hidden; transform: translateY(100%); pointer-events: none; }
.sticky-order > div { display: flex; flex-direction: column; }
.sticky-order > div small { color: var(--muted); font-size: 11px; font-weight: 600; line-height: 1.2; }
.sticky-order > div strong { color: var(--blue-dark); font-size: 23px; white-space: nowrap; letter-spacing: -.03em; line-height: 1.25; }

.sticky-order > a {
  min-width: 154px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 13px;
  font-size: 17px;
  font-weight: 700;
}

.sticky-order svg { width: 21px; height: 21px; }

:focus-visible { outline: 3px solid #74adf4; outline-offset: 3px; }

@media (min-width: 560px) {
  .benefits { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .sticky-order { display: none; }
  .hero { padding: 48px 0 64px; }
  .hero-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(400px, 1.05fr); align-items: center; gap: 56px; padding-inline: 24px; }
  .hero-visual { grid-column: 2; border-radius: 26px; box-shadow: var(--shadow-soft); }
  .hero-visual img { aspect-ratio: 1122 / 1260; }
  .hero-copy { grid-column: 1; grid-row: 1; padding: 0; text-align: left; }
  h1, .hero-description { margin-left: 0; }
  .price { justify-content: flex-start; margin-block: 28px 20px; }
  .primary-cta { max-width: 410px; }
  .trust-row { justify-content: flex-start; }
  .benefit-card { min-height: 132px; text-align: center; }
  .content-section { padding-top: 92px; }
  .section-heading { margin-bottom: 32px; }
  .story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
  .story-card { min-height: 290px; }
  .story-copy { padding: 30px 12px 30px 28px; }
  .story-copy p { font-size: 16px; }
  .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .feature-card { min-height: 210px; padding: 25px 18px; }
  .steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
  .step-image { height: 235px; }
  .step-card { position: relative; }
  .step-card:not(:last-child)::after {
    content: "›";
    position: absolute;
    z-index: 2;
    top: 108px;
    right: -17px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
    font-size: 27px;
  }
  .package-layout { grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr); align-items: stretch; gap: 28px; }
  .package-image { min-height: 430px; aspect-ratio: auto; }
  .package-items article { min-height: 0; }
  .charging-section { margin-top: 92px; padding: 72px 0; }
  .charging-layout { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; gap: 56px; }
  .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .offer-card { min-height: 260px; }
  .reviews-track { grid-auto-flow: initial; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-inline: 0; padding: 2px 0 14px; overflow: visible; }
  .review-card { min-height: 260px; }
  .order-section { padding-bottom: 92px; }
  .order-layout { grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr); align-items: start; gap: 24px; }
  .customer-form, .order-summary { padding: 28px; }
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field-wide { grid-column: 1 / -1; }
  .order-summary { position: sticky; top: 24px; }
}

@media (min-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .feature-card { min-height: 225px; padding-inline: 12px; }
}

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