:root {
  --navy: #072d5f;
  --navy-2: #041f43;
  --blue: #00a6ff;
  --green: #53a179;
  --green-dark: #347557;
  --yellow: #ffd164;
  --yellow-light: #ffdf92;
  --yellow-border: #d39208;
  --ink: #191b1f;
  --copy: #44484f;
  --muted: #6b7078;
  --line: #e2e5e9;
  --soft: #f0f3fa;
  --paper: #ffffff;
  --off-white: #fafafa;
  --danger: #a83b3b;
  --container: 1180px;
  --shadow: 0 18px 50px rgba(7, 45, 95, .11);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button, select { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 9999; padding: 10px 16px; background: #fff; color: var(--navy); }
.skip-link:focus { top: 12px; }

/* Header patterned after the supplied NanoPolix sales page */
.offer-bar { background: #050505; color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .16em; text-align: center; }
.offer-bar .container { min-height: 32px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.offer-bar .offer-bar__text { color: #fff; }
.offer-bar .offer-bar__text + span { color: var(--yellow); }
.service-bar { background: #f1f2f3; color: #333; border-bottom: 1px solid #e4e5e6; font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.service-bar__inner { min-height: 30px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.service-bar__inner > div { display: flex; gap: 28px; }
.main-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); box-shadow: 0 4px 18px rgba(7,45,95,.06); backdrop-filter: blur(10px); }
.main-header__inner { min-height: 76px; display: flex; align-items: center; gap: 32px; }
.brand-slot { width: 196px; min-height: 54px; display: flex; align-items: center; justify-content: flex-start; text-decoration: none; position: relative; overflow: hidden; }
.brand-slot img { width: 100%; max-height: 54px; object-fit: contain; object-position: left center; opacity: 0; }
.brand-slot.is-loaded img { opacity: 1; }
.brand-slot.is-loaded > span { display: none; }
.brand-slot > span { width: 100%; min-height: 44px; padding: 7px 10px; border: 1px dashed #9aa8ba; background: #f7f9fb; color: var(--navy); display: flex; flex-direction: column; justify-content: center; line-height: 1.2; }
.brand-slot > span strong { font-size: 12px; letter-spacing: .06em; }
.brand-slot > span small { margin-top: 3px; color: #758194; font-size: 9px; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 25px; }
.desktop-nav a { position: relative; text-decoration: none; color: #25282d; font-size: 12px; font-weight: 700; letter-spacing: .02em; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--green); transition: right .2s ease; }
.desktop-nav a:hover::after { right: 0; }
.language-picker { display: grid; gap: 2px; color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .1em; }
.language-picker select { width: 112px; height: 34px; padding: 0 28px 0 10px; border: 1px solid #ccd1d8; border-radius: 3px; color: #222; background: #fff; font-size: 12px; font-weight: 700; }

/* Shared components */
.section { padding: 92px 0; }
.section-title { max-width: 790px; margin: 0 auto 48px; text-align: center; }
.section-title > span, .mini-title { display: block; color: var(--green-dark); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.section-title h2, .content h2, .faq-heading h2, .guarantee-card h2, .final h2 { margin: 8px 0 12px; color: var(--ink); font-family: Arial, Roboto, Helvetica, sans-serif; font-size: clamp(32px, 3.7vw, 50px); font-weight: 700; line-height: 1.08; letter-spacing: -.01em; }
.section-title i, .blue-line { display: block; width: 72px; height: 4px; margin: 19px auto; background: var(--blue); border-radius: 10px; }
.section-title p, .content > p, .faq-heading > p { margin: 0; color: var(--copy); font-size: 17px; }
.blue-line { margin-left: 0; margin-right: 0; }
.cta { min-height: 56px; padding: 14px 27px; display: inline-flex; align-items: center; justify-content: center; gap: 20px; border: 1px solid var(--yellow-border); border-radius: 4px; box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 5px 12px rgba(211,146,8,.2); color: #28200f; background: linear-gradient(0deg, var(--yellow) 4%, var(--yellow-light) 100%); text-decoration: none; text-align: center; font-size: 14px; font-weight: 900; letter-spacing: .05em; transition: transform .18s ease, filter .18s ease; }
.cta:hover { transform: translateY(-2px); filter: saturate(1.12); }
.cta:focus-visible, a:focus-visible, button:focus-visible, select:focus-visible, input:focus-visible { outline: 3px solid rgba(0,166,255,.38); outline-offset: 3px; }
.two-col { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: center; gap: 76px; }
.two-col--reverse { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); }

/* Explicit .webp spaces: the caption disappears automatically after upload */
.media-slot { position: relative; margin: 0; overflow: hidden; border: 1px dashed #aab6c5; border-radius: 4px; background-color: #eef1f5; background-image: linear-gradient(45deg, rgba(255,255,255,.45) 25%, transparent 25%), linear-gradient(-45deg, rgba(255,255,255,.45) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(255,255,255,.45) 75%), linear-gradient(-45deg, transparent 75%, rgba(255,255,255,.45) 75%); background-size: 28px 28px; background-position: 0 0, 0 14px, 14px -14px, -14px 0; }
.media-slot img { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .2s ease; }
.media-slot.is-loaded { border-style: solid; border-color: #d8dde4; background: #fff; }
.media-slot.is-loaded img { opacity: 1; }
.media-slot.is-loaded figcaption { display: none; }
.media-slot figcaption { position: absolute; inset: 0; padding: 28px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; text-align: center; color: #536174; }
.media-slot figcaption b { color: var(--navy); font-size: 13px; letter-spacing: .1em; }
.media-slot figcaption span, .media-slot figcaption small { font-size: 11px; }
.media-slot figcaption code { max-width: 95%; padding: 5px 8px; background: rgba(255,255,255,.78); color: #24446b; border: 1px solid #d8dee7; border-radius: 3px; font-size: 11px; overflow-wrap: anywhere; }
.media-slot--hero { min-height: 520px; box-shadow: var(--shadow); }
.media-slot--hero img, .media-slot--product img, .media-slot--feature img, .media-slot--technology img, .media-slot--guarantee img { object-fit: contain; }
.media-slot--product { min-height: 580px; }
.media-slot--feature { min-height: 610px; }
.media-slot--technology { min-height: 500px; }
.media-slot--wide { min-height: 470px; }
.media-slot--guarantee { min-height: 260px; }

/* Hero */
.hero { padding: 64px 0 0; background: var(--off-white); border-bottom: 1px solid var(--line); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); align-items: center; gap: 65px; }
.hero__copy { padding-bottom: 52px; }
.hero__rating { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 18px; color: #3e434a; font-size: 10px; letter-spacing: .08em; }
.hero__rating .stars { color: #efa500; font-size: 14px; letter-spacing: 1px; }
.hero__rating strong { font-size: 10px; }
.hero__rating i { width: 1px; height: 12px; background: #b7bcc2; }
.hero h1 { max-width: 680px; margin: 0; color: #141619; font-family: Arial, Roboto, Helvetica, sans-serif; font-size: clamp(40px, 4.75vw, 62px); font-weight: 700; line-height: 1.06; letter-spacing: -.01em; }
.hero__subtitle { max-width: 650px; margin: 22px 0; color: #4a4e54; font-size: 18px; line-height: 1.55; }
.check-list { margin: 0 0 27px; padding: 0; list-style: none; display: grid; gap: 9px; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; color: #292d31; font-size: 15px; font-weight: 600; }
.check-list b { flex: 0 0 21px; width: 21px; height: 21px; margin-top: 1px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: 12px; }
.hero .cta { min-width: 310px; }
.cta-note { margin: 11px 0 0; color: #777d84; font-size: 11px; }
.hero-badges { min-height: 92px; display: grid; grid-template-columns: repeat(3, 1fr); background: #fff; border: 1px solid var(--line); border-bottom: 0; box-shadow: 0 -9px 28px rgba(7,45,95,.05); }
.hero-badges article { padding: 18px 25px; display: flex; align-items: center; justify-content: center; gap: 13px; text-align: left; }
.hero-badges article + article { border-left: 1px solid var(--line); }
.hero-badges article > b, .hero-badges .proof-icon { flex: 0 0 40px; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid #bdd8cc; border-radius: 50%; color: var(--green-dark); font-size: 13px; font-weight: 900; }
.hero-badges article span, .hero-badges article p, .hero-badges article strong { margin: 0; color: #33383e; font-size: 12px; font-weight: 700; line-height: 1.4; }
.featured-strip { overflow: hidden; background: var(--navy); color: #fff; }
.featured-strip .container { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 25px; white-space: nowrap; }
.featured-strip span { color: #b9c9dc; font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.featured-strip b { font-family: Arial, Roboto, Helvetica, sans-serif; font-size: 19px; font-weight: 700; letter-spacing: .02em; }

/* Country selector */
.countries { background: var(--soft); }
.country-box { background: #fff; border: 1px solid #dfe4eb; box-shadow: var(--shadow); }
.country-box__top { min-height: 74px; padding: 16px 23px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.country-box__top h3 { margin: 0; font-size: 15px; text-transform: uppercase; letter-spacing: .05em; }
.search { width: min(100%, 310px); height: 40px; padding: 0 13px; display: flex; align-items: center; gap: 10px; background: #f6f7f9; border: 1px solid #d9dde3; }
.search span { color: #758090; }
.search input { width: 100%; border: 0; outline: 0; background: transparent; color: #25282d; font-size: 13px; }
.country-grid { padding: 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; }
.country-card { min-height: 68px; padding: 11px 14px; display: flex; align-items: center; gap: 11px; color: #25292e; background: #fff; border: 1px solid #dfe3e8; text-decoration: none; transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.country-card:hover { z-index: 1; transform: translateY(-2px); border-color: var(--green); box-shadow: 0 8px 20px rgba(7,45,95,.09); }
.country-card .flag, .country-card > span:first-child { font-size: 26px; line-height: 1; }
.country-card strong { font-size: 13px; }
.country-card > b:last-child { margin-left: auto; color: var(--green); font-size: 18px; }
.empty { margin: 0 24px 24px; padding: 16px; text-align: center; background: #fff7e4; color: #77561d; border: 1px solid #edd69d; }
.other-regions { padding: 24px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 34px; color: #fff; background: var(--navy); }
.other-regions h3 { margin: 0 0 4px; font-family: Arial, Roboto, Helvetica, sans-serif; font-size: 24px; line-height: 1.15; }
.other-regions p { margin: 0; color: #c5d0df; font-size: 12px; }
.region-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.region-links a { min-height: 66px; padding: 10px; display: flex; align-items: center; gap: 9px; color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); text-decoration: none; }
.region-links a:hover { background: rgba(255,255,255,.14); }
.region-links span { font-size: 21px; }
.region-links strong { font-size: 11px; line-height: 1.25; }

/* Product content */
.product-intro { background: #fff; }
.content .mini-title { margin-bottom: 8px; }
.benefit-list { margin: 28px 0; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.benefit-list article { min-height: 60px; padding: 13px 16px; display: flex; align-items: center; gap: 13px; background: #fff; }
.benefit-list article > b, .benefit-list article > span:first-child { flex: 0 0 28px; color: var(--green); font-weight: 900; }
.benefit-list article p, .benefit-list article > span:last-child { margin: 0; color: #363b40; font-size: 14px; font-weight: 700; }
.info-note { padding: 17px 19px; display: grid; grid-template-columns: auto 1fr; gap: 14px; background: #edf5f1; border-left: 4px solid var(--green); }
.info-note b { color: var(--green-dark); font-size: 11px; letter-spacing: .07em; }
.info-note span { color: #46504b; font-size: 12px; }
.feature-section { background: var(--soft); }
.feature-layout { display: grid; grid-template-columns: 1fr minmax(300px, .88fr) 1fr; align-items: center; gap: 33px; }
.feature-column { display: grid; gap: 18px; }
.feature-column article { min-height: 138px; padding: 22px; display: grid; grid-template-columns: 40px 1fr; gap: 14px; background: #fff; border: 1px solid #e0e4e9; box-shadow: 0 7px 20px rgba(7,45,95,.05); }
.feature-column article > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: 11px; font-weight: 900; }
.feature-column h3 { margin: 1px 0 5px; font-size: 17px; line-height: 1.25; }
.feature-column p { margin: 0; color: var(--muted); font-size: 13px; }
.how-section { background: #fff; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.steps article { position: relative; padding-bottom: 26px; background: #fff; border: 1px solid var(--line); text-align: center; box-shadow: 0 9px 25px rgba(7,45,95,.06); }
.media-slot--step { min-height: 225px; border: 0; border-bottom: 1px dashed #aab6c5; border-radius: 0; }
.steps article > span { width: 44px; height: 44px; margin: -22px auto 14px; position: relative; z-index: 2; display: grid; place-items: center; border: 4px solid #fff; border-radius: 50%; color: #fff; background: var(--green); font-size: 11px; font-weight: 900; }
.steps article h3 { margin: 0 20px 6px; font-size: 19px; }
.steps article p { margin: 0 25px; color: var(--muted); font-size: 13px; }
.safety { margin-top: 25px; padding: 17px 22px; color: #5a4b2f; background: #fff8e9; border: 1px solid #eed9aa; text-align: center; font-size: 12px; }
.technology { color: #fff; background: var(--navy); }
.content--light h2 { color: #fff; }
.content--light > p { color: #c5d2e1; }
.content--light .mini-title { color: #7ed0ac; }
.content--light ul { margin: 28px 0 0; padding: 0; display: grid; gap: 9px; list-style: none; }
.content--light li { padding-left: 27px; position: relative; color: #eff5fc; font-size: 14px; }
.content--light li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: #7ed0ac; font-weight: 900; }
.fit-section { background: var(--soft); }
.fit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.fit-card { padding: 30px 32px; background: #fff; border-top: 5px solid var(--green); box-shadow: 0 10px 26px rgba(7,45,95,.06); }
.fit-card--no { border-color: #b66a61; }
.fit-card h3 { margin: 0 0 20px; font-size: 22px; }
.fit-card ul { margin: 0; padding: 0; display: grid; gap: 11px; list-style: none; }
.fit-card li { padding-left: 27px; position: relative; color: #4d535a; font-size: 14px; }
.fit-card li::before { content: "\2713"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.fit-card--no li::before { content: "!"; width: 17px; height: 17px; display: grid; place-items: center; color: #fff; background: #b66a61; border-radius: 50%; font-size: 10px; }
.before-after { background: #fff; }
.disclaimer-box { margin-top: 27px; padding: 20px; background: #f6f7f8; border-left: 4px solid var(--navy); }
.disclaimer-box strong { color: var(--navy); font-size: 11px; letter-spacing: .1em; }
.disclaimer-box p { margin: 4px 0 0; color: #585e65; font-size: 13px; }

/* Comparison, FAQ and close */
.comparison { background: var(--soft); }
.comparison-table { max-width: 980px; margin: auto; background: #fff; border: 1px solid #dce1e7; box-shadow: var(--shadow); }
.comparison-table article { min-height: 105px; padding: 22px 27px; display: grid; grid-template-columns: 55px 1fr auto; align-items: center; gap: 22px; }
.comparison-table article + article { border-top: 1px solid var(--line); }
.comparison-table article > span, .compare-index { width: 42px; height: 42px; display: grid; place-items: center; color: #fff; background: var(--navy); font-size: 11px; font-weight: 900; }
.comparison-table h3 { margin: 0 0 4px; font-size: 18px; }
.comparison-table p { margin: 0; color: var(--muted); font-size: 13px; }
.comparison-table article > b, .compare-level { padding: 6px 9px; color: var(--green-dark); background: #e8f2ed; border: 1px solid #c7dfd3; font-size: 10px; letter-spacing: .06em; }
.faq { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: 70px; }
.faq-heading { position: sticky; top: 120px; }
.faq-heading .blue-line { margin-top: 20px; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { min-height: 74px; padding: 18px 5px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; cursor: pointer; list-style: none; color: #282c31; font-size: 16px; font-weight: 800; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary > span { color: var(--green); font-size: 10px; }
.accordion summary b { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid #ccd3da; border-radius: 50%; color: var(--navy); font-size: 17px; }
.accordion details[open] summary b { transform: rotate(45deg); }
.accordion details p { margin: -4px 45px 22px 30px; color: var(--muted); font-size: 14px; }
.guarantee { padding-top: 20px; background: #fff; }
.guarantee-card { padding: 42px 55px; display: grid; grid-template-columns: 280px 1fr; align-items: center; gap: 48px; color: #fff; background: var(--navy); box-shadow: var(--shadow); }
.guarantee-card > div > span { color: #7ed0ac; font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.guarantee-card h2 { color: #fff; font-size: clamp(30px, 3vw, 43px); }
.guarantee-card p { color: #c5d2e1; font-size: 14px; }
.final { padding: 90px 0; color: #252a2f; background: #f1f3f5; text-align: center; }
.final .container { max-width: 800px; }
.final p { margin: 0 auto 25px; color: #555b62; font-size: 17px; }
.final small { display: block; margin-top: 12px; color: #747b83; }

/* Footer and legal modal */
.footer { padding: 64px 0 20px; color: #d4d7dc; background: #080a0d; }
.footer-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 55px; }
.brand-slot--footer { width: 210px; }
.brand-slot--footer > span { color: #fff; background: #161a20; border-color: #4f5966; }
.footer h3 { margin: 0 0 13px; color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }
.footer p { margin: 0 0 12px; color: #afb4bc; font-size: 12px; }
.footer .muted { color: #858b94; }
.footer-grid a:not(.brand-slot) { display: block; width: fit-content; margin: 6px 0; color: #fff; text-decoration-color: #4d5967; font-size: 13px; }
.footer-source { margin-top: 45px; padding: 18px 0; color: #777e87; border-top: 1px solid #24282e; border-bottom: 1px solid #24282e; font-size: 10px; line-height: 1.5; }
.footer-bottom { padding-top: 19px; display: flex; justify-content: space-between; gap: 25px; color: #777e87; font-size: 10px; }
.footer-bottom div { display: flex; flex-wrap: wrap; gap: 15px; }
.footer-bottom button { padding: 0; color: #b6bbc2; background: none; border: 0; font-size: 10px; text-decoration: underline; }
.mobile-cta { display: none; }
.modal-backdrop { position: fixed; inset: 0; z-index: 500; padding: 24px; overflow-y: auto; background: rgba(2,10,20,.78); }
.modal-backdrop[hidden] { display: none; }
.modal { width: min(100%, 680px); margin: 6vh auto; padding: 38px; position: relative; color: var(--ink); background: #fff; border-top: 5px solid var(--green); box-shadow: 0 25px 80px rgba(0,0,0,.35); }
.modal h2 { margin: 0 45px 20px 0; font-family: Arial, Roboto, Helvetica, sans-serif; font-size: 31px; line-height: 1.12; letter-spacing: -.01em; }
.modal p, .modal li { color: #4f555d; font-size: 14px; }
.modal a { color: var(--navy); font-weight: 700; }
.modal-close { width: 38px; height: 38px; position: absolute; top: 20px; right: 20px; color: #333; background: #f0f2f4; border: 1px solid #d9dde2; font-size: 22px; }
.modal .cta { min-height: 43px; margin-top: 15px; padding: 8px 20px; }
body.modal-open { overflow: hidden; }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .language-picker { margin-left: auto; }
  .hero__grid { grid-template-columns: 1fr 420px; gap: 35px; }
  .country-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-layout { grid-template-columns: 1fr 330px 1fr; gap: 18px; }
  .feature-column article { padding: 16px; grid-template-columns: 32px 1fr; }
  .feature-column article > span { width: 30px; height: 30px; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 78px; }
  body { padding-bottom: 58px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .service-bar { display: none; }
  .offer-bar { font-size: 9px; }
  .main-header__inner { min-height: 66px; gap: 13px; }
  .brand-slot { width: 150px; }
  .language-picker span { display: none; }
  .language-picker select { width: 100px; }
  .section { padding: 68px 0; }
  .hero { padding-top: 42px; }
  .hero__grid, .two-col, .two-col--reverse, .faq-grid { grid-template-columns: 1fr; }
  .hero__grid { gap: 30px; }
  .hero__copy { padding-bottom: 0; }
  .hero h1 { font-size: clamp(38px, 10.5vw, 54px); line-height: 1.08; }
  .media-slot--hero { min-height: 440px; }
  .hero-badges { margin-top: 35px; }
  .featured-strip .container { justify-content: center; }
  .featured-strip .container > :nth-child(n+4) { display: none; }
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  .other-regions { grid-template-columns: 1fr; }
  .feature-layout { grid-template-columns: 1fr; }
  .media-slot--feature { min-height: 500px; grid-row: 1; }
  .feature-column { grid-template-columns: repeat(3, 1fr); }
  .feature-column article { min-height: 185px; display: block; }
  .feature-column article > span { margin-bottom: 13px; }
  .steps { grid-template-columns: 1fr; max-width: 520px; margin: auto; }
  .media-slot--step { min-height: 310px; }
  .fit-grid { grid-template-columns: 1fr; }
  .faq-grid { gap: 35px; }
  .faq-heading { position: static; }
  .guarantee-card { padding: 35px; grid-template-columns: 220px 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .mobile-cta { min-height: 58px; padding: 13px 20px; position: fixed; z-index: 150; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: center; color: #241d0d; background: linear-gradient(0deg, var(--yellow), var(--yellow-light)); border-top: 1px solid var(--yellow-border); box-shadow: 0 -6px 20px rgba(0,0,0,.16); text-decoration: none; font-size: 13px; font-weight: 900; letter-spacing: .05em; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .offer-bar .container { min-height: 29px; }
  .brand-slot { width: 126px; }
  .language-picker select { width: 92px; height: 32px; font-size: 11px; }
  .section-title { margin-bottom: 35px; }
  .section-title h2, .content h2, .faq-heading h2 { font-size: 34px; line-height: 1.1; }
  .hero { padding-top: 33px; }
  .hero__rating { line-height: 1.2; }
  .hero h1 { font-size: 39px; line-height: 1.09; letter-spacing: -.008em; }
  .hero__subtitle { font-size: 16px; }
  .hero .cta { width: 100%; min-width: 0; }
  .media-slot--hero { min-height: 345px; }
  .hero-badges { grid-template-columns: 1fr; }
  .hero-badges article { justify-content: flex-start; min-height: 67px; padding: 12px 18px; }
  .hero-badges article + article { border-left: 0; border-top: 1px solid var(--line); }
  .featured-strip .container > :nth-child(n+3) { display: none; }
  .country-box__top { align-items: stretch; flex-direction: column; }
  .search { width: 100%; }
  .country-grid { padding: 14px; grid-template-columns: 1fr; }
  .country-card { min-height: 59px; }
  .other-regions { padding: 22px 17px; }
  .region-links { grid-template-columns: 1fr; }
  .media-slot--product, .media-slot--feature, .media-slot--technology, .media-slot--wide { min-height: 350px; }
  .two-col { gap: 38px; }
  .feature-column { grid-template-columns: 1fr; }
  .feature-column article { min-height: auto; display: grid; }
  .media-slot--step { min-height: 225px; }
  .comparison-table article { padding: 18px; grid-template-columns: 42px 1fr; gap: 14px; }
  .comparison-table article > b, .comparison-table .compare-level { grid-column: 2; width: fit-content; }
  .accordion summary { grid-template-columns: 1fr auto; }
  .accordion summary > span { display: none; }
  .accordion details p { margin-left: 5px; }
  .guarantee-card { padding: 26px 20px; grid-template-columns: 1fr; }
  .media-slot--guarantee { min-height: 220px; }
  .guarantee-card .cta { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .modal { padding: 29px 20px; }
}

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