@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --ink: #0b0d10;
  --ink-soft: #4d5159;
  --paper: #ffffff;
  --surface: #f4f5f7;
  --surface-2: #e9ebef;
  --dark: #070a0e;
  --dark-2: #10151c;
  --blue: #0879e8;
  --blue-hover: #0668ca;
  --green: #1f9b75;
  --line: rgba(11, 13, 16, .12);
  --container: 1220px;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(10, 18, 29, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
address { font-style: normal; }
::selection { color: #fff; background: var(--blue); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 12px 16px;
  transform: translateY(-160%);
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.section { padding: 108px 0; }

.announcement {
  min-height: 36px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: rgba(255,255,255,.72);
  background: #020305;
  font-size: 13px;
  letter-spacing: -.01em;
}
.announcement__dot { width: 6px; height: 6px; border-radius: 50%; background: #37d39e; box-shadow: 0 0 0 5px rgba(55,211,158,.1); }
.announcement a { margin-left: 8px; color: #fff; font-weight: 600; }
.announcement a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(0,0,0,.08);
  backdrop-filter: saturate(160%) blur(18px);
}
.site-header__inner { height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand img { width: 176px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a { position: relative; color: #2f333a; font-size: 14px; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; transform: scaleX(0); background: var(--blue); transition: transform .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.phone-link { display: flex; flex-direction: column; align-items: flex-end; font-size: 14px; font-weight: 700; }
.phone-link small { color: #70757e; font-size: 11px; font-weight: 500; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 6px; border: 0; border-radius: 50%; background: var(--surface); cursor: pointer; }
.menu-toggle span { width: 18px; height: 1.5px; background: var(--ink); transition: transform .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
.mobile-menu { position: absolute; top: 70px; right: 0; left: 0; padding: 10px 16px 24px; border-bottom: 1px solid var(--line); background: #fff; box-shadow: 0 18px 35px rgba(0,0,0,.08); }
.mobile-menu a { display: flex; align-items: center; min-height: 50px; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 600; }

.button {
  min-height: 44px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible { outline: 3px solid rgba(8,121,232,.35); outline-offset: 3px; }
.button--small { min-height: 40px; padding-inline: 17px; font-size: 13px; }
.button--large { min-height: 52px; padding: 0 24px; font-size: 16px; }
.button--primary { color: #fff; background: var(--blue); }
.button--primary:hover { background: var(--blue-hover); }
.button--dark { min-height: 42px; color: #fff; background: var(--ink); font-size: 13px; }
.button--dark:hover { background: var(--blue); }
.button--light { color: var(--ink); background: #fff; }
.button--light:hover { color: var(--blue); }
.button--ghost { color: #fff; border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.06); }
.button--ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.12); }

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 68px 68px; mask-image: linear-gradient(to bottom, #000, transparent 85%); }
.hero__glow { position: absolute; width: 680px; height: 680px; right: -90px; top: -150px; border-radius: 50%; background: radial-gradient(circle, rgba(8,121,232,.25), rgba(8,121,232,.07) 36%, transparent 68%); filter: blur(12px); }
.hero__grid { position: relative; z-index: 1; min-height: 690px; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 50px; padding-top: 46px; padding-bottom: 36px; }
.hero__content { padding-bottom: 16px; }
.eyebrow { margin: 0 0 18px; color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow--light { color: rgba(255,255,255,.64); }
.eyebrow--light span { color: #55d8ac; }
.hero h1 { max-width: 660px; margin: 0; font-size: clamp(48px, 5.3vw, 78px); font-weight: 600; letter-spacing: -.065em; line-height: .98; }
.hero h1 span { color: #68b4ff; }
.hero__lead { max-width: 680px; margin: 28px 0 0; color: rgba(255,255,255,.72); font-size: 20px; line-height: 1.6; letter-spacing: -.025em; text-wrap: pretty; }
.hero__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 10px; }
.hero__proof { margin: 44px 0 0; padding: 0; display: flex; list-style: none; }
.hero__proof li { min-width: 128px; padding: 0 25px; display: flex; flex-direction: column; border-left: 1px solid rgba(255,255,255,.14); }
.hero__proof li:first-child { padding-left: 0; border-left: 0; }
.hero__proof strong { font-size: 19px; letter-spacing: -.04em; }
.hero__proof span { margin-top: 4px; color: rgba(255,255,255,.54); font-size: 11px; text-transform: uppercase; letter-spacing: .07em; }
.hero__visual { position: relative; height: 580px; isolation: isolate; }
.hero__visual::before { content: ""; position: absolute; width: 420px; height: 420px; left: 50%; top: 50%; z-index: -2; transform: translate(-42%,-49%); border-radius: 50%; background: #111821; box-shadow: inset 0 0 120px rgba(8,121,232,.11), 0 55px 100px rgba(0,0,0,.3); }
.orbit { position: absolute; z-index: -1; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; transform: rotate(-16deg); }
.orbit--one { width: 520px; height: 300px; left: 6%; top: 26%; }
.orbit--two { width: 580px; height: 370px; left: 0; top: 20%; }
.hero-laptop { position: absolute; width: min(620px, 100%); height: auto; aspect-ratio: 4 / 3; max-width: none; object-fit: contain; object-position: center; left: 0; top: 18%; filter: drop-shadow(0 38px 32px rgba(0,0,0,.48)); transform: rotate(-5deg); }
.hero-phone { position: absolute; width: 178px; max-height: 395px; object-fit: contain; right: 3%; top: 22%; z-index: 2; filter: drop-shadow(0 28px 30px rgba(0,0,0,.55)); transform: rotate(8deg); }
.hero-headphones { position: absolute; width: 180px; height: auto; aspect-ratio: 735 / 806; object-fit: contain; object-position: center; left: 2%; bottom: 18px; z-index: 3; filter: drop-shadow(0 23px 25px rgba(0,0,0,.55)); transform: rotate(-7deg); }
.product-note { position: absolute; z-index: 5; padding: 9px 13px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: rgba(255,255,255,.8); background: rgba(9,13,18,.72); backdrop-filter: blur(14px); font-size: 11px; font-weight: 600; letter-spacing: .02em; }
.product-note i { width: 6px; height: 6px; display: inline-block; margin-right: 6px; border-radius: 50%; background: #43d6a4; box-shadow: 0 0 12px #43d6a4; }
.product-note--top { top: 58px; left: 20%; }
.product-note--bottom { right: 3%; bottom: 60px; }
.brand-strip { position: relative; z-index: 2; min-height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 28px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.34); font-size: 13px; font-weight: 700; letter-spacing: .1em; }

.section-heading { margin-bottom: 42px; }
.section-heading h2, .about-copy h2, .cta-section h2 { margin: 0; font-size: clamp(39px, 5vw, 64px); font-weight: 600; letter-spacing: -.06em; line-height: 1.02; }
.section-heading--split { display: grid; grid-template-columns: 1fr 360px; align-items: end; gap: 80px; }
.section-heading__aside p { margin: 0 0 15px; color: var(--ink-soft); font-size: 15px; line-height: 1.65; }
.text-link, .footer-link { color: var(--blue); font-size: 14px; font-weight: 700; }
.text-link:hover, .footer-link:hover { text-decoration: underline; }
.section-lead { max-width: 650px; margin: 20px 0 0; color: var(--ink-soft); font-size: 18px; line-height: 1.7; }

.catalog-section { background: #fff; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card { min-width: 0; overflow: hidden; display: flex; flex-direction: column; border: 1px solid rgba(11,13,16,.08); border-radius: var(--radius); background: #fff; transition: transform .3s ease, box-shadow .3s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-card--featured { grid-column: span 2; }
.product-card--wide { grid-column: span 3; }
.product-card__media { position: relative; height: 290px; overflow: hidden; }
.product-card--featured .product-card__media, .product-card--wide .product-card__media { height: 340px; }
.product-card__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.product-card:hover .product-card__media img { transform: scale(1.035); }
.product-card__media--dark { background: #11171e; }
.product-card__media--blue { background: #dceefc; }
.product-card__media--warm { background: #eee9df; }
.product-card__media--silver { background: #e9edf1; }
.product-card__media--graphite { background: #171b20; }
.product-card__media--dark img { padding: 26px 34px 0; filter: drop-shadow(0 22px 25px rgba(0,0,0,.42)); }
.product-card__phone { padding: 26px 52px 0; transform: translateY(5px) rotate(5deg); filter: drop-shadow(0 22px 20px rgba(26,85,136,.26)); }
.product-card:hover .product-card__phone { transform: translateY(5px) rotate(3deg) scale(1.035); }
.product-card__audio { padding: 38px; filter: drop-shadow(0 20px 23px rgba(57,48,36,.2)); }
.product-card__camera { padding: 47px; filter: drop-shadow(0 20px 18px rgba(24,31,37,.23)); }
.product-card__pocket { padding: 10px 20px 10px 50%; object-position: right center; filter: drop-shadow(0 24px 24px rgba(0,0,0,.48)); }
.media-copy { position: absolute; left: 30px; bottom: 31px; color: #fff; }
.media-copy span { display: block; margin-bottom: 7px; color: rgba(255,255,255,.5); font-size: 11px; }
.media-copy strong { display: block; font-size: 22px; letter-spacing: -.04em; }
.product-card__labels { position: absolute; z-index: 3; top: 14px; left: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.badge { padding: 7px 10px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: #fff; background: rgba(7,10,14,.67); backdrop-filter: blur(12px); font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.badge--green { color: #c9ffec; background: rgba(20,117,85,.84); }
.badge--condition { border-color: rgba(255,255,255,.34); color: #fff; background: rgba(8,121,232,.92); box-shadow: 0 6px 18px rgba(8,121,232,.24); }
.product-card__body { flex: 1; padding: 23px; display: flex; flex-direction: column; justify-content: space-between; gap: 28px; }
.product-card__category { margin: 0 0 7px; color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-card h3 { margin: 0; font-size: 20px; letter-spacing: -.045em; }
.product-card__spec { margin: 7px 0 0; color: #666c76; font-size: 14px; }
.product-card__buy { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.price { display: flex; flex-direction: column; }
.price small { color: #777c85; font-size: 11px; text-transform: uppercase; }
.price strong { margin-top: 3px; font-size: 20px; letter-spacing: -.04em; white-space: nowrap; }
.price-note { max-width: 900px; margin: 22px 0 0; color: #666c76; font-size: 13px; line-height: 1.65; }

.about-section { color: #fff; background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 115px; align-items: center; }
.about-copy p:not(.eyebrow) { max-width: 590px; margin: 26px 0 0; color: rgba(255,255,255,.66); font-size: 17px; line-height: 1.75; }
.about-copy .button { margin-top: 34px; }
.condition-list { border-top: 1px solid rgba(255,255,255,.16); }
.condition-list article { padding: 25px 0; display: grid; grid-template-columns: 55px 1fr; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.16); }
.condition-list article > span { color: #55d8ac; font-size: 12px; font-weight: 700; }
.condition-list h3 { margin: 0 0 7px; font-size: 19px; letter-spacing: -.035em; }
.condition-list p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.6; }

.benefits-section { background: var(--surface); }
.benefit-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 16px; }
.benefit-main { min-height: 410px; padding: 38px; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; border-radius: var(--radius); color: #fff; background: #0a64bb; }
.benefit-main__copy p { margin: 0 0 13px; color: rgba(255,255,255,.67); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.benefit-main h3 { margin: 0; font-size: clamp(32px, 4vw, 52px); font-weight: 600; letter-spacing: -.055em; line-height: 1.05; }
.benefit-main__copy > span { max-width: 560px; margin-top: 18px; display: block; color: rgba(255,255,255,.76); font-size: 15px; line-height: 1.65; }
.route { display: grid; grid-template-columns: 16px auto 1fr 16px auto; align-items: center; gap: 10px; color: rgba(255,255,255,.72); font-size: 10px; font-weight: 700; letter-spacing: .1em; }
.route i { width: 11px; height: 11px; border: 2px solid #fff; border-radius: 50%; box-shadow: 0 0 0 6px rgba(255,255,255,.1); }
.route__rb { background: #53d7a9; }
.route__line { height: 1px; overflow: hidden; background: rgba(255,255,255,.28); }
.route__line b { width: 38%; height: 100%; display: block; background: #fff; animation: route 3s ease-in-out infinite alternate; }
@keyframes route { to { transform: translateX(165%); } }
.benefit-side { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.benefit-side article { padding: 30px; display: flex; align-items: flex-start; gap: 24px; border-radius: var(--radius); background: #fff; }
.benefit-side h3 { margin: 3px 0 8px; font-size: 17px; letter-spacing: -.035em; }
.benefit-side p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.65; }
.benefit-number, .benefit-symbol { min-width: 58px; color: var(--blue); font-size: 54px; font-weight: 600; letter-spacing: -.08em; line-height: .9; }
.benefit-symbol { font-size: 45px; }

.cta-section { padding: 88px 0; color: #fff; background: #07111d; }
.cta-section__inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; }
.cta-section h2 { font-size: clamp(36px, 5vw, 60px); }
.cta-section__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }

.site-footer { padding: 75px 0 24px; color: rgba(255,255,255,.6); background: #030405; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr .85fr 1fr; gap: 65px; }
.footer-brand > img { width: 170px; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand p { max-width: 260px; }
.site-footer h3 { margin: 0 0 17px; color: #fff; font-size: 12px; letter-spacing: .09em; text-transform: uppercase; }
.site-footer p, .site-footer address { margin: 0 0 14px; font-size: 14px; line-height: 1.75; }
.footer-phone { margin-bottom: 10px; display: block; color: #fff; font-size: 16px; font-weight: 700; }
.footer-label { display: block; margin: 22px 0 10px !important; color: rgba(255,255,255,.56); font-size: 11px !important; font-weight: 700; letter-spacing: .08em; line-height: 1.2 !important; text-transform: uppercase; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; background: rgba(255,255,255,.03); transition: transform .2s ease, border-color .2s ease, background-color .2s ease; }
.footer-socials a:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.08); }
.footer-socials img { width: 24px; height: 24px; border-radius: 7px; }
.footer-trust { margin-top: 56px; padding-top: 28px; display: grid; grid-template-columns: 1fr auto; gap: 40px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-trust .footer-label { margin-top: 0 !important; }
.footer-trust__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-trust__group--kufar { min-width: 260px; }
.platform-button { min-height: 54px; padding: 8px 12px 8px 9px; display: inline-flex; align-items: center; gap: 11px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; color: #fff; background: rgba(255,255,255,.035); font-size: 13px; font-weight: 700; transition: transform .2s ease, border-color .2s ease, background-color .2s ease; }
.platform-button:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.36); background: rgba(255,255,255,.08); }
.platform-button > img { width: 30px; height: 30px; flex: 0 0 auto; border-radius: 8px; object-fit: contain; }
.platform-button b { margin-left: 8px; color: rgba(255,255,255,.45); font-size: 12px; }
.platform-button--kufar { min-width: 260px; }
.platform-button--kufar > img { width: 82px; height: 26px; border-radius: 0; }
.footer-bottom { margin-top: 60px; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.54); font-size: 12px; }
.privacy-trigger { padding: 0; border: 0; color: rgba(255,255,255,.72); background: transparent; font: inherit; text-decoration: underline; text-decoration-color: rgba(255,255,255,.28); text-underline-offset: 4px; cursor: pointer; }
.privacy-trigger:hover { color: #fff; text-decoration-color: var(--blue); }

.privacy-modal { width: min(calc(100% - 32px), 920px); max-height: min(86vh, 900px); padding: 0; overflow: hidden; border: 0; border-radius: 24px; background: #fff; box-shadow: 0 30px 100px rgba(0,0,0,.4); }
.privacy-modal::backdrop { background: rgba(3,5,8,.8); backdrop-filter: blur(8px); }
.privacy-modal__header { position: sticky; top: 0; z-index: 2; padding: 28px 32px 22px; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(14px); }
.privacy-modal__header .eyebrow { margin-bottom: 8px; }
.privacy-modal h2 { margin: 0; font-size: clamp(28px, 4vw, 42px); letter-spacing: -.05em; }
.privacy-close { width: 44px; height: 44px; flex: 0 0 auto; border: 0; border-radius: 50%; background: var(--surface); font-size: 25px; cursor: pointer; }
.privacy-close:hover { color: #fff; background: var(--blue); }
.privacy-modal__content { max-height: calc(min(86vh, 900px) - 116px); padding: 28px 32px 56px; overflow-y: scroll; scrollbar-gutter: stable; scrollbar-width: auto; scrollbar-color: var(--blue) #e8ebef; color: #343941; font-size: 16px; line-height: 1.72; white-space: pre-wrap; overscroll-behavior: contain; }
.privacy-modal__content::-webkit-scrollbar { width: 12px; }
.privacy-modal__content::-webkit-scrollbar-track { background: #e8ebef; }
.privacy-modal__content::-webkit-scrollbar-thumb { border: 3px solid #e8ebef; border-radius: 999px; background: var(--blue); }
.privacy-modal__content:focus { outline: none; }

.floating-contact { position: fixed; right: 22px; bottom: 22px; z-index: 90; min-height: 48px; padding: 5px 5px 5px 18px; display: none; align-items: center; gap: 12px; border-radius: 999px; color: #fff; background: var(--blue); box-shadow: 0 14px 35px rgba(8,121,232,.35); font-size: 12px; font-weight: 700; }
.floating-contact b { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--blue); background: #fff; }

@media (max-width: 1080px) {
  .desktop-nav { gap: 20px; }
  .desktop-nav a { font-size: 12px; }
  .phone-link { display: none; }
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-laptop { width: 480px; left: -7%; }
  .hero-phone { right: -2%; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card--featured, .product-card--wide { grid-column: span 1; }
  .product-card--featured .product-card__media, .product-card--wide .product-card__media { height: 290px; }
  .about-grid { gap: 65px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 820px) {
  .desktop-nav, .header-order { display: none; }
  .menu-toggle { display: flex; }
  .section { padding: 80px 0; }
  .hero { min-height: auto; }
  .hero__grid { min-height: auto; padding-top: 72px; display: flex; flex-direction: column; align-items: stretch; }
  .hero__content { z-index: 5; }
  .hero__lead { max-width: 620px; }
  .hero__visual { height: 500px; margin-top: -25px; }
  .hero__visual::before { width: 390px; height: 390px; }
  .hero-laptop { width: min(610px, 85vw); left: 8%; top: 16%; }
  .hero-phone { width: 155px; right: 11%; top: 18%; }
  .hero-headphones { width: 165px; left: 9%; }
  .brand-strip { min-height: 86px; overflow-x: auto; justify-content: flex-start; }
  .brand-strip span { flex: 0 0 auto; }
  .section-heading--split { grid-template-columns: 1fr; gap: 22px; }
  .section-heading__aside { max-width: 480px; }
  .about-grid { grid-template-columns: 1fr; }
  .benefit-layout { grid-template-columns: 1fr; }
  .cta-section__inner { align-items: flex-start; flex-direction: column; }
  .cta-section__actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-trust { grid-template-columns: 1fr; }
  .footer-trust__group--kufar { min-width: 0; }
}

@media (max-width: 580px) {
  html { scroll-behavior: auto; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .announcement { min-height: 40px; justify-content: flex-start; white-space: nowrap; overflow: hidden; font-size: 12px; }
  .announcement__dot { flex: 0 0 auto; }
  .announcement__text { flex: 0 1 auto; min-width: 0; font-size: 0; }
  .announcement__text::after { content: attr(data-short); font-size: 11px; }
  .announcement a { flex: 0 0 auto; margin-left: auto; padding-left: 8px; font-size: 11px; }
  .site-header__inner { height: 62px; }
  .brand img { width: 152px; }
  .mobile-menu { top: 62px; }
  .section { padding: 67px 0; }
  .hero__grid { padding-top: 56px; }
  .hero h1 { font-size: clamp(43px, 13vw, 60px); }
  .hero__lead { margin-top: 23px; font-size: 17px; line-height: 1.62; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__proof { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero__proof li { min-width: 0; padding: 0 10px; }
  .hero__proof strong { font-size: 15px; }
  .hero__proof span { color: rgba(255,255,255,.68); font-size: 10px; line-height: 1.4; }
  .hero__visual { height: 390px; margin-top: 3px; }
  .hero__visual::before { width: 280px; height: 280px; }
  .orbit--one { width: 360px; height: 210px; left: -4%; }
  .orbit--two { width: 390px; height: 260px; left: -8%; }
  .hero-laptop { width: 390px; left: -3%; top: 14%; }
  .hero-phone { width: 108px; right: 3%; top: 17%; }
  .hero-headphones { width: 125px; left: 0; bottom: 2px; }
  .product-note { font-size: 10px; }
  .product-note--top { top: 10px; left: 4%; }
  .product-note--bottom { right: 0; bottom: 30px; }
  .brand-strip { min-height: 108px; padding: 20px 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px 10px; overflow: visible; font-size: 10px; text-align: center; }
  .section-heading h2, .about-copy h2, .cta-section h2 { font-size: 39px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card__media, .product-card--featured .product-card__media, .product-card--wide .product-card__media { height: 285px; }
  .product-card__pocket { padding-left: 42%; }
  .media-copy { left: 22px; bottom: 24px; }
  .product-card__body { padding: 20px; }
  .about-grid { gap: 52px; }
  .about-copy p:not(.eyebrow) { font-size: 16px; }
  .condition-list article { grid-template-columns: 36px 1fr; gap: 11px; }
  .benefit-main { min-height: 430px; padding: 28px 24px; }
  .benefit-main h3 { font-size: 37px; }
  .route { grid-template-columns: 12px 1fr 12px 1fr; gap: 8px; font-size: 9px; line-height: 1.4; }
  .route__line { display: none; }
  .benefit-side article { padding: 25px 22px; flex-direction: column; gap: 17px; }
  .cta-section { padding: 65px 0; }
  .cta-section__actions { width: 100%; flex-direction: column; }
  .cta-section__actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-trust { margin-top: 42px; gap: 28px; }
  .footer-trust__actions { display: grid; grid-template-columns: 1fr; }
  .platform-button, .platform-button--kufar { width: 100%; min-width: 0; }
  .platform-button b { margin-left: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .privacy-modal { width: calc(100% - 20px); max-height: 92vh; border-radius: 18px; }
  .privacy-modal__header { padding: 22px 18px 17px; }
  .privacy-modal__content { max-height: calc(92vh - 105px); padding: 22px 18px 34px; font-size: 14px; line-height: 1.68; }
  .floating-contact { right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); }
}

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