:root {
  --brand: #ea580c;
  --brand2: #f97316;
  --brand3: #fb923c;
  --uzum: #6E2EFF;
  --uzum2: #8b5bff;
  --text: #151515;
  --muted: #686f7b;
  --bg: #fffbeb;
  --panel: #fff;
  --line: rgba(17, 24, 39, .08);
  --shadow: 0 16px 44px rgba(17, 24, 39, .08);
  --shadow-red: 0 18px 46px rgba(234, 88, 12, .16);
  --shadow-strong: 0 24px 50px rgba(17, 24, 39, .12);
  --radius: 24px;
  --container: 1120px;
  --grad: linear-gradient(135deg, var(--brand3), var(--brand2) 55%, var(--brand));
  --uzum-grad: linear-gradient(135deg, var(--uzum2), var(--uzum));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, rgba(234, 88, 12, .10), transparent 24%), linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: 96px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 30px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 26px 0;
}

.section-lg {
  padding: 42px 0;
}

.card,
.soft-card {
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.soft-card {
  background: linear-gradient(180deg, #fff, #fff7ed);
  border-color: rgba(234, 88, 12, .12);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 248, .86);
  border-bottom: 1px solid rgba(17, 24, 39, .05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.topbar-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  object-fit: contain;
  padding: 8px;
  background: var(--grad);
  box-shadow: 0 10px 24px rgba(234, 88, 12, .18);
}

.brand-copy > span {
  display: block;
  font-size: 20px;
  line-height: 1.02;
  letter-spacing: -.02em;
  font-weight: 950;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-copy small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.lang-switch {
  display: inline-flex;
  gap: 4px;
  padding: 6px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(234, 88, 12, .14);
  box-shadow: 0 10px 24px rgba(17, 24, 39, .06);
}

.lang-btn {
  min-width: 48px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn.active {
  color: #fff;
  background: var(--grad);
}

h1, h2, h3, p {
  margin: 0;
}

h1 {
  font-size: clamp(29px, 6vw, 48px);
  line-height: 1.02;
  letter-spacing: -.04em;
  font-weight: 950;
}

h2 {
  font-size: clamp(24px, 5vw, 36px);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 950;
}

h3 {
  font-size: 18px;
  line-height: 1.2;
}

.lead {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.58;
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fef3c7;
  border: 1px solid rgba(234, 88, 12, .14);
  color: #9a3412;
  font-size: 13px;
  font-weight: 900;
}

.hero-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: 18px;
  padding: 18px;
  overflow: hidden;
  background: radial-gradient(circle at 100% 0%, rgba(234, 88, 12, .12), transparent 24%), linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 245, 245, .96));
}

.hero-copy {
  display: grid;
  gap: 14px;
  align-content: start;
}

.hero-media {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  align-self: start;
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
}

.price-box {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #ffedd5);
  border: 1px solid rgba(234, 88, 12, .12);
  box-shadow: var(--shadow-red);
}

.discount-pill {
  display: inline-flex;
  width: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe04d, #ffbd18);
  color: #7c2d12;
  font-size: 12px;
  font-weight: 950;
}

.price-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: end;
}

.price-main-left,
.price-main-right {
  display: grid;
  gap: 6px;
}

.price-main-right {
  text-align: right;
  justify-items: end;
}

.price-caption,
.old-price-label {
  font-size: 12px;
  font-weight: 800;
  color: #9a3412;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.new-price {
  font-size: 42px;
  line-height: .95;
  font-weight: 950;
  color: #111827;
  letter-spacing: -.04em;
}

.old-price {
  font-size: 17px;
  font-weight: 800;
  color: #9ca3af;
  text-decoration: line-through;
  white-space: nowrap;
}

.timer-label {
  font-size: 13px;
  font-weight: 900;
  color: #9a3412;
}

.timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 360px;
}

.timer-item {
  background: #fff;
  border: 1px solid rgba(234, 88, 12, .14);
  border-radius: 16px;
  padding: 10px 6px;
  text-align: center;
}

.timer-item strong {
  display: block;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 4px;
}

.timer-item span {
  font-size: 11px;
  color: #9a3412;
}

.btn-row {
  display: grid;
  gap: 10px;
}

.btn,
.btn-ghost {
  min-height: 56px;
  border: 0;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: #fff;
  font-weight: 950;
  cursor: pointer;
  background: var(--grad);
  box-shadow: 0 14px 32px rgba(234, 88, 12, .22);
  font-size: 17px;
  transition: transform .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  background: #fff;
  color: #111827;
  border: 1px solid rgba(17, 24, 39, .10);
  box-shadow: none;
}

.btn-uzum {
  background: var(--uzum-grad);
  box-shadow: 0 16px 36px rgba(110, 46, 255, .26);
  gap: 10px;
}

.btn-uzum img {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  object-fit: cover;
  filter: brightness(0) invert(1);
}

.proof-row,
.proof-row-full,
.trust-grid,
.benefits-grid,
.compare-grid,
.faq-grid,
.doubts-grid {
  display: grid;
  gap: 14px;
}

.proof-row,
.trust-grid,
.compare-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-row-full {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 8px;
}

.trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
}

.trust-item p,
.dcard .a,
.faq-item p,
.compare-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.58;
}

.icon-box {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #ffedd5;
  border: 1px solid rgba(234, 88, 12, .12);
  font-size: 19px;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.stepper-photo {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.stepper-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(234, 88, 12, .10);
}

.feature-line b {
  display: block;
  margin-bottom: 2px;
}

.feature-line span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.red-dot {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  flex: 0 0 26px;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 950;
  margin-top: 1px;
}

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

.gallery-card {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 6px;
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(17, 24, 39, .10);
}

.gallery-card img {
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.benefits-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
  aspect-ratio: 1/1;
  padding: 16px;
}

.benefit h3 {
  font-size: 16px;
}

.warn-block {
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff7ed, #ffedd5);
  border: 1px solid rgba(239, 68, 68, .22);
  box-shadow: 0 18px 42px rgba(239, 68, 68, .08);
}

.warn-head {
  display: flex;
  gap: 14px;
}

.warn-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(239, 68, 68, .10);
  border: 1px solid rgba(239, 68, 68, .20);
  display: grid;
  place-items: center;
  color: #dc2626;
  font-size: 22px;
  flex: 0 0 42px;
}

.warn-icon:after {
  content: "!";
  font-weight: 950;
}

.warn-copy {
  display: grid;
  gap: 10px;
}

.warn-copy h3 {
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.warn {
  color: #dc2626;
}

.warn-copy p {
  font-size: 15px;
  color: #7f1d1d;
  line-height: 1.58;
}

.compare-card,
.faq-item,
.dcard,
.cta-card {
  padding: 16px;
}

.compare-card.highlight {
  border: 1.5px solid rgba(234, 88, 12, .25);
  box-shadow: var(--shadow-red);
}

.compare-table {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.cmp-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 14px;
}

.cmp-good,
.cmp-bad {
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.cmp-good {
  background: rgba(16, 185, 129, .10);
  color: #10b981;
}

.cmp-bad {
  background: rgba(239, 68, 68, .10);
  color: #ef4444;
}

.doubts-grid {
  grid-template-columns: 1fr;
}

.dcard {
  background: linear-gradient(180deg, #fff, #fffbeb);
  border: 1px solid rgba(234, 88, 12, .12);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.dcard .q {
  font-size: 16px;
  font-weight: 950;
  margin-bottom: 8px;
}

.cta-card {
  display: grid;
  gap: 12px;
  background: linear-gradient(180deg, #fff, #fff6f6);
  border: 1px solid rgba(234, 88, 12, .12);
}

.cta-bullets {
  display: grid;
  gap: 10px;
}

.cta-bullets .item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.cta-bullets .item strong {
  color: #111827;
}

.cta-price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(234, 88, 12, .10);
}

.cta-price-stack {
  display: grid;
  gap: 4px;
}

.cta-price-stack small {
  font-size: 12px;
  font-weight: 900;
  color: #9a3412;
  text-transform: uppercase;
  letter-spacing: .08em;
}

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

.faq-grid {
  grid-template-columns: 1fr;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding-top: 10px;
}

.faq-item summary:after {
  content: "+";
  font-size: 20px;
  color: #9a3412;
}

.faq-item[open] summary:after {
  content: "−";
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px);
  transition: .22s;
}

.sticky-cta.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta > .btn {
  width: min(calc(100% - 16px), 760px);
  margin: 0 auto;
  display: flex;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(2, 6, 23, .58);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .24s;
  padding: 20px;
}

.modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-content {
  width: min(100%, 720px);
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-red);
  position: relative;
  padding: 18px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid rgba(234, 88, 12, .24);
  background: #fff;
  color: #9a3412;
  cursor: pointer;
  font-size: 26px;
  font-weight: 900;
  z-index: 5;
}

#modalImage {
  width: 100%;
  border-radius: 18px;
  max-height: 78vh;
  object-fit: contain;
  background: #fff;
}

.modal-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.modal-nav button {
  min-height: 46px;
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.social-pill {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(17, 24, 39, .12);
}

.social-pill--telegram {
  background: linear-gradient(135deg, #37aee2, #229ed9);
}

.social-pill--instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 52%, #8134af 78%, #515bd4);
}

.social-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  flex: 0 0 28px;
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

footer {
  padding: 28px 0 10px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(234, 88, 12, .14);
  background: linear-gradient(180deg, #fff, #fff7ed);
  box-shadow: var(--shadow-strong);
  padding: 12px;
  min-height: auto;
  contain: layout paint;
}

.video-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(234, 88, 12, .12), transparent 36%);
  pointer-events: none;
}

.video-shell video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #000;
  display: block;
  border-radius: 18px;
}

.video-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(234, 88, 12, .12);
  font-size: 13px;
  font-weight: 900;
  color: #7c2d12;
}

.video-note span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  margin-right: 7px;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, .4);
  animation: livePulse 1.6s ease-out infinite;
}

.reviews-list {
  display: grid;
  gap: 14px;
}

.review-card {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-name {
  font-size: 18px;
  font-weight: 950;
}

.review-title {
  font-size: 13px;
  font-weight: 900;
  color: #9a3412;
}

.stars {
  font-size: 14px;
  color: #f59e0b;
  letter-spacing: 1px;
  white-space: nowrap;
}

.review-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.58;
}

.review-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.review-thumb {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  border: 2px solid rgba(234, 88, 12, .10);
  overflow: hidden;
  padding: 0;
  background: #fff;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease;
}

.review-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(234, 88, 12, .28);
}

.review-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticky-mini-video {
  position: fixed;
  right: 12px;
  bottom: 96px;
  z-index: 69;
  width: 94px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(234, 88, 12, .18);
  box-shadow: 0 20px 44px rgba(17, 24, 39, .18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px) scale(.96);
  transition: .22s;
}

.sticky-mini-video.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.sticky-mini-video.hidden-forever {
  display: none !important;
}

.sticky-mini-video-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #000;
  cursor: pointer;
  position: relative;
}

.sticky-mini-video video {
  width: 100%;
  aspect-ratio: 9/14;
  object-fit: cover;
  background: #000;
  display: block;
}

.sticky-mini-video-overlay {
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 8px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 6px;
  border-radius: 999px;
  background: rgba(17, 24, 39, .68);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.sticky-mini-video-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ff3b30;
  box-shadow: 0 0 0 0 rgba(255, 59, 48, .55);
  animation: livePulse 1.6s ease-out infinite;
}

.sticky-mini-video-close {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 3;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 24, 39, .62);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 59, 48, .55); }
  70% { box-shadow: 0 0 0 8px rgba(255, 59, 48, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(2, 6, 23, .58);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .24s;
  padding: 20px;
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal-content {
  width: min(100%, 720px);
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-red);
  position: relative;
  padding: 18px;
}

.video-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid rgba(234, 88, 12, .24);
  background: #fff;
  color: #9a3412;
  cursor: pointer;
  font-size: 26px;
  font-weight: 900;
  z-index: 5;
}

.video-title {
  font-size: 20px;
  font-weight: 950;
  margin-bottom: 12px;
  padding-right: 48px;
}

.video-modal video {
  width: 100%;
  border-radius: 18px;
  background: #000;
}

.video-cta-wrap {
  margin-top: 14px;
}

.video-cta-wrap .btn {
  width: 100%;
}

@media (max-width: 960px) {
  .hero-wrap,
  .showcase,
  .compare-grid,
  .proof-row,
  .proof-row-full,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta-actions {
    grid-template-columns: 1fr;
  }
  .hero-media {
    min-height: auto;
  }
  .hero-media img {
    height: auto;
    object-fit: contain;
  }
  .section-lg {
    padding: 34px 0;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 86px;
  }
  .container {
    width: min(calc(100% - 22px), var(--container));
  }
  .section {
    padding: 18px 0;
  }
  .section-lg {
    padding: 24px 0;
  }
  .topbar-inner {
    min-height: 62px;
  }
  .brand img {
    width: 36px;
    height: 36px;
  }
  .brand-copy > span {
    font-size: 26px;
  }
  .brand-copy small {
    display: none;
  }
  .hero-wrap {
    gap: 12px;
    padding: 12px;
  }
  .price-main {
    grid-template-columns: 1fr;
  }
  .price-main-right {
    text-align: left;
    justify-items: start;
  }
  .new-price {
    font-size: 34px;
  }
  .benefit {
    min-height: 140px;
    aspect-ratio: auto;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .btn {
    font-size: 15px;
  }
  .warn-copy h3 {
    font-size: 22px;
  }
  .review-card {
    grid-template-columns: 1fr;
  }
  .video-note {
    flex-direction: column;
    align-items: flex-start;
  }
  .video-note .btn-ghost {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .proof-row,
  .trust-grid,
  .benefits-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .container {
    width: min(calc(100% - 16px), var(--container));
  }
  .btn,
  .btn-ghost {
    width: 100%;
  }
}
