/* ==========================================================================
   Toza Suv — Home page redesign (2026)
   Modern enhancements layered on top of style-public.css
   Mobile-first, 320-414px → 768px → 1280px+
   No frameworks, vanilla CSS only.
   ========================================================================== */

/* ---------- Safety: ensure no horizontal scroll on tiny viewports ------- */
.home-2026 *,
.home-2026 *::before,
.home-2026 *::after { box-sizing: border-box; }

.home-2026 img,
.home-2026 video { max-width: 100%; height: auto; }

/* ---------- Hero v2: layered glass + animated blobs ---------------------- */
.hero-2026 {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(900px 500px at 85% -8%, #7dd3fc 0%, transparent 60%),
    radial-gradient(700px 420px at -8% 25%, #bae6fd 0%, transparent 55%),
    linear-gradient(180deg, #f0f9ff 0%, #ffffff 78%);
  padding: 36px 0 56px;
}
@media (min-width: 768px) { .hero-2026 { padding: 72px 0 96px; } }
@media (min-width: 1280px) { .hero-2026 { padding: 96px 0 120px; } }

/* Floating decorative orbs */
.hero-2026__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: .55;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}
.hero-2026__orb--1 {
  width: 320px; height: 320px;
  top: -80px; left: -80px;
  background: radial-gradient(circle, #38bdf8 0%, transparent 70%);
  animation: orbDrift1 14s ease-in-out infinite;
}
.hero-2026__orb--2 {
  width: 380px; height: 380px;
  bottom: -120px; right: -120px;
  background: radial-gradient(circle, #fbbf24 0%, transparent 70%);
  opacity: .35;
  animation: orbDrift2 18s ease-in-out infinite;
}
.hero-2026__orb--3 {
  width: 260px; height: 260px;
  top: 40%; left: 50%;
  background: radial-gradient(circle, #a78bfa 0%, transparent 70%);
  opacity: .25;
  animation: orbDrift3 22s ease-in-out infinite;
}
@keyframes orbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, 60px) scale(1.1); }
}
@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-50px, -40px) scale(1.15); }
}
@keyframes orbDrift3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-40%, -60%) scale(1.1); }
}

.hero-2026__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .hero-2026__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 56px;
  }
}

.hero-2026__copy {
  min-width: 0;
  text-align: left;
}
@media (max-width: 899px) {
  .hero-2026__copy { text-align: center; }
  .hero-2026__copy .hero-2026__lead { margin-left: auto; margin-right: auto; }
  .hero-2026__copy .hero-2026__actions { justify-content: center; }
}

/* Glass eyebrow with live dot */
.hero-2026__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-water-700);
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(125,211,252,.5);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  box-shadow: 0 4px 14px -6px rgba(14,165,233,.18);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-2026__eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-water-500);
  box-shadow: 0 0 0 4px rgba(14,165,233,.18);
  animation: pulse 2s infinite ease-in-out;
  flex-shrink: 0;
}

.hero-2026__title {
  font-size: clamp(32px, 7vw, 64px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.035em;
  margin: 0 0 18px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.hero-2026__title .grad {
  background: linear-gradient(110deg, #0ea5e9 0%, #0369a1 50%, #075985 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-2026__lead {
  font-size: clamp(15px, 1.7vw, 19px);
  line-height: 1.55;
  color: var(--c-ink-700);
  margin: 0 0 28px;
  max-width: 560px;
}

.hero-2026__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.hero-2026__actions .btn { max-width: 100%; }

/* Hero stats — pill row */
.hero-2026__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 480px;
}
@media (min-width: 480px) {
  .hero-2026__stats { gap: 14px; }
}
.hero-2026__stat {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(186,230,253,.6);
  border-radius: var(--radius);
  padding: 12px 8px;
  text-align: center;
  transition: transform var(--t-base), box-shadow var(--t-base);
  min-width: 0;
}
@media (min-width: 480px) {
  .hero-2026__stat { padding: 14px 10px; }
}
.hero-2026__stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -10px rgba(14,165,233,.3);
}
.hero-2026__stat-num {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: var(--c-water-700);
  line-height: 1;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.hero-2026__stat-label {
  font-size: 11px;
  color: var(--c-muted);
  margin-top: 6px;
  line-height: 1.3;
  word-wrap: break-word;
}
@media (min-width: 480px) {
  .hero-2026__stat-label { font-size: 12px; }
}

/* Hero visual: bottle + glass badges */
.hero-2026__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: min(520px, 92vw);
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}
.hero-2026__visual::before {
  content: "";
  position: absolute;
  inset: 5%;
  background: radial-gradient(circle at 50% 50%, rgba(125,211,252,.7), transparent 65%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.hero-2026__bottle {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(14,165,233,.4));
  /* Animation handled by .hero__bottle from style-public.css (parallax-aware). */
}

.hero-2026__badge {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius);
  padding: 10px 14px;
  box-shadow: 0 18px 40px -12px rgba(15,23,42,.18);
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 60%;
  color: var(--c-ink-800);
}
@media (min-width: 540px) {
  .hero-2026__badge { font-size: 13px; padding: 12px 16px; gap: 10px; }
}
.hero-2026__badge .ic {
  width: 30px; height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-water-100);
  color: var(--c-water-700);
  border-radius: 10px;
  flex-shrink: 0;
}
.hero-2026__badge--1 { top: 10%; left: 0; animation: badgeFloat 6s ease-in-out infinite; }
.hero-2026__badge--2 { bottom: 14%; right: 0; animation: badgeFloat 7s ease-in-out infinite reverse; }
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@media (min-width: 600px) {
  .hero-2026__badge--1 { left: -3%; }
  .hero-2026__badge--2 { right: -3%; }
}

/* ---------- Section header (modern, centered) --------------------------- */
.sec-2026__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
  padding: 0 4px;
}
@media (min-width: 768px) { .sec-2026__head { margin-bottom: 56px; } }

.sec-2026__eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-water-700);
  background: linear-gradient(135deg, rgba(186,230,253,.7) 0%, rgba(224,242,254,.7) 100%);
  border: 1px solid rgba(125,211,252,.4);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.sec-2026__title {
  font-size: clamp(26px, 4.2vw, 46px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--c-ink-900);
}
.sec-2026__lead {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--c-muted);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Format tiles (modernized) ---------------------------------- */
.fmt-grid-2026 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (min-width: 480px) { .fmt-grid-2026 { gap: 16px; } }
@media (min-width: 700px) { .fmt-grid-2026 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; } }

.fmt-tile-2026 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 10px 18px;
  background: linear-gradient(180deg, #ffffff 0%, var(--c-water-50) 100%);
  border: 1px solid var(--c-ink-200);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  overflow: hidden;
  min-height: 200px;
}
@media (min-width: 700px) { .fmt-tile-2026 { padding: 28px 16px 22px; min-height: 260px; } }

.fmt-tile-2026::before {
  content: "";
  position: absolute;
  inset: auto -30% -50% auto;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(186,230,253,.6), transparent 60%);
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}
.fmt-tile-2026 > * { position: relative; z-index: 1; }

.fmt-tile-2026:hover {
  transform: translateY(-6px);
  border-color: var(--c-water-300);
  box-shadow: 0 24px 40px -16px rgba(14,165,233,.32);
}
.fmt-tile-2026 img {
  height: 110px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(14,165,233,.25));
  transition: transform var(--t-base);
}
@media (min-width: 700px) { .fmt-tile-2026 img { height: 160px; } }
.fmt-tile-2026:hover img { transform: translateY(-4px) scale(1.05); }

.fmt-tile-2026__name {
  margin-top: 14px;
  font-weight: 800;
  font-size: clamp(15px, 2.2vw, 18px);
  color: var(--c-ink-900);
  letter-spacing: -.01em;
}
.fmt-tile-2026__sub {
  font-size: 11px;
  color: var(--c-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

/* ---------- Features (icon cards) -------------------------------------- */
.feat-grid-2026 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) { .feat-grid-2026 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; } }
@media (min-width: 1000px){ .feat-grid-2026 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.feat-2026 {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-ink-200);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  overflow: hidden;
}
@media (min-width: 768px) { .feat-2026 { padding: 28px; } }

.feat-2026::after {
  content: "";
  position: absolute;
  inset: auto -25% -50% auto;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(186,230,253,.5), transparent 65%);
  filter: blur(30px);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}
.feat-2026:hover::after { opacity: 1; }

.feat-2026:hover {
  transform: translateY(-4px);
  border-color: var(--c-water-300);
  box-shadow: 0 18px 32px -14px rgba(14,165,233,.25);
}
.feat-2026__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c-water-100) 0%, var(--c-water-200) 100%);
  color: var(--c-water-700);
  margin-bottom: 18px;
  font-size: 24px;
  position: relative;
  z-index: 1;
}
.feat-2026__title {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--c-ink-900);
  letter-spacing: -.01em;
  position: relative;
  z-index: 1;
}
.feat-2026__text {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.55;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ---------- Telegram CTA --------------------------------------------- */
.tg-cta-2026 {
  position: relative;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  align-items: center;
  background:
    radial-gradient(800px 400px at 110% -10%, rgba(255,255,255,.18), transparent 60%),
    linear-gradient(135deg, #229ED9 0%, #1c8bbf 50%, #0c7eb0 100%);
  border-radius: var(--radius-xl);
  padding: 28px 22px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(34,158,217,.5);
}
@media (min-width: 540px) { .tg-cta-2026 { padding: 36px 30px; } }
@media (min-width: 768px) { .tg-cta-2026 { padding: 56px 48px; gap: 36px; grid-template-columns: 1.4fr 1fr; } }

.tg-cta-2026::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255,255,255,.25), transparent 60%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}
.tg-cta-2026 > * { position: relative; z-index: 1; }

.tg-cta-2026__title {
  color: #fff;
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0 0 12px;
}
.tg-cta-2026__lead {
  color: rgba(255,255,255,.88);
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 540px;
}
.tg-cta-2026__btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tg-cta-2026__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 0;
}
.tg-cta-2026__icon-wrap {
  width: 140px; height: 140px;
  border-radius: 36px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,.35);
  animation: tgIconFloat 5s ease-in-out infinite;
}
@keyframes tgIconFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@media (min-width: 768px) {
  .tg-cta-2026__icon-wrap { width: 180px; height: 180px; border-radius: 44px; }
}
.tg-cta-2026__icon-wrap svg {
  width: 80px;
  height: 80px;
  color: #fff;
  fill: #fff;
}
@media (min-width: 768px) {
  .tg-cta-2026__icon-wrap svg { width: 100px; height: 100px; }
}

/* ---------- News modern grid ---------------------------------------- */
.news-2026 {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px)  { .news-2026 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; } }
@media (min-width: 1000px) { .news-2026 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.news-2026__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--c-ink-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
}
.news-2026__card:hover {
  transform: translateY(-5px);
  border-color: var(--c-water-300);
  box-shadow: 0 22px 40px -16px rgba(14,165,233,.25);
}
.news-2026__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--c-water-50);
  position: relative;
}
.news-2026__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.news-2026__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15,23,42,.18) 100%);
  pointer-events: none;
}
.news-2026__card:hover .news-2026__img img { transform: scale(1.07); }

.news-2026__body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.news-2026__date {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-water-600);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.news-2026__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-ink-900);
  margin: 0;
  line-height: 1.35;
  letter-spacing: -.005em;
}
@media (min-width: 768px) {
  .news-2026__title { font-size: 16px; }
}

.news-2026__head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.news-2026__head-row > div { min-width: 0; flex: 1 1 240px; }

/* ---------- About split (modernized) ------------------------------- */
.split-2026 {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .split-2026 { grid-template-columns: 1fr 1fr; gap: 56px; } }

.split-2026__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 30px 60px -20px rgba(14,165,233,.35);
}
.split-2026__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(.4,0,.2,1);
}
.split-2026__media:hover img { transform: scale(1.04); }
.split-2026__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(7,89,133,.4) 100%);
  pointer-events: none;
}
.split-2026__title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
  margin: 16px 0 16px;
}
.split-2026__text {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--c-ink-600);
  line-height: 1.65;
  margin-bottom: 22px;
}
.split-2026__kpi {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
  list-style: none;
  padding: 0;
}
.split-2026__kpi li {
  background: linear-gradient(180deg, var(--c-water-50) 0%, #fff 100%);
  border-radius: var(--radius);
  padding: 14px 16px;
  border: 1px solid var(--c-water-200);
  transition: border-color var(--t-base), transform var(--t-base);
}
.split-2026__kpi li:hover { border-color: var(--c-water-400); transform: translateY(-2px); }
.split-2026__kpi b {
  display: block;
  font-size: clamp(20px, 2.5vw, 24px);
  color: var(--c-water-700);
  letter-spacing: -.01em;
  font-weight: 800;
  line-height: 1.1;
}
.split-2026__kpi span {
  font-size: 12.5px;
  color: var(--c-muted);
  display: block;
  margin-top: 2px;
}

/* ---------- Final CTA banner --------------------------------------- */
.final-cta-2026 {
  position: relative;
  background:
    radial-gradient(700px 400px at 90% 0%, rgba(255,255,255,.2), transparent 60%),
    linear-gradient(135deg, #38bdf8 0%, #0ea5e9 50%, #0369a1 100%);
  border-radius: var(--radius-xl);
  padding: 32px 22px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(14,165,233,.5);
}
@media (min-width: 540px) { .final-cta-2026 { padding: 44px 32px; } }
@media (min-width: 768px) { .final-cta-2026 { padding: 64px 56px; } }

.final-cta-2026::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255,255,255,.28), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.final-cta-2026 > * { position: relative; z-index: 1; }

.final-cta-2026__title {
  font-size: clamp(24px, 3.6vw, 38px);
  font-weight: 800;
  letter-spacing: -.025em;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.15;
}
.final-cta-2026__lead {
  color: rgba(255,255,255,.88);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.55;
  max-width: 580px;
  margin: 0 auto 26px;
}
.final-cta-2026__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 100%;
}
.final-cta-2026__actions .btn { max-width: 100%; }

/* ---------- Mobile safety: prevent horizontal overflow -------------- */
@media (max-width: 480px) {
  .hero-2026__bottle { transform: scale(.95); }
  .hero-2026__badge { font-size: 11px; padding: 8px 11px; max-width: 65%; }
  .hero-2026__badge .ic { width: 26px; height: 26px; }
  .hero-2026__title { font-size: clamp(28px, 8vw, 40px); }

  .tg-cta-2026__icon-wrap { width: 110px; height: 110px; border-radius: 28px; }
  .tg-cta-2026__icon-wrap svg { width: 60px; height: 60px; }

  /* Stats — keep 3 cols but compact */
  .hero-2026__stats { gap: 8px; }
  .hero-2026__stat { padding: 10px 6px; }
  .hero-2026__stat-num { font-size: 18px; }
  .hero-2026__stat-label { font-size: 10px; }
}

/* iPhone SE / 320–360 wide — extra tight */
@media (max-width: 360px) {
  .hero-2026__title { font-size: 26px; }
  .hero-2026__lead { font-size: 14px; }
  .hero-2026 { padding: 28px 0 44px; }
}

/* ---------- Reduced motion ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .hero-2026__orb,
  .tg-cta-2026__icon-wrap,
  .hero-2026__badge--1,
  .hero-2026__badge--2 {
    animation: none !important;
  }
}

/* ---------- Low-end mobile perf safety -----------------------------
   Heavy 64px-blur orbs + 30+px-blur radial gradients can drop frames on
   budget Android. On phones we keep one orb static (no animation) and
   trim the larger one to lighten compositing while preserving the look. */
@media (max-width: 540px) {
  .hero-2026__orb {
    animation: none !important;
    will-change: auto;
    filter: blur(40px);   /* less blur = cheaper composite */
    opacity: .35;
  }
  .hero-2026__orb--2 { width: 280px; height: 280px; bottom: -90px; right: -90px; }
  .hero-2026__orb--3 { display: none; } /* third decorative orb is overkill on phone */
}

/* ---------- Mobile safety: full-width hero CTAs ---------- */
@media (max-width: 480px) {
  /* Hero CTA buttons — full-width pair on phones for easier thumb reach.
     The hero-2026 wrapper already has overflow:hidden + isolation:isolate
     so badges can't blow out horizontally. We don't add another overflow
     boundary on the visual itself because that would clip the bottle's
     drop-shadow (50px below). */
  .hero-2026__actions .btn { flex: 1 1 100%; max-width: 100%; }
}
