:root {
  --navy: #061827;
  --navy-2: #0a2235;
  --ink: #0f172a;
  --slate: #475569;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f6f9fb;
  --white: #fff;
  --green: #10b981;
  --green-dark: #079c6d;
  --green-soft: #e9fbf4;
  --amber: #f59e0b;
  --shadow: 0 18px 48px rgba(15, 23, 42, .08);
  --shadow-strong: 0 24px 70px rgba(2, 18, 30, .18);
  --radius: 18px;
  --radius-sm: 11px;
  --shell: min(1160px, calc(100vw - 48px));
  --font-body: "Roboto", Arial, sans-serif;
  --font-heading: "Montserrat", "Poppins", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--slate); background: var(--white); font-family: var(--font-body); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
.language-boot-screen { display: none; }
html.i18n-pending body { min-height: 100vh; overflow: hidden; }
html.i18n-pending body > :not([data-language-boot-screen]) { visibility: hidden; }
html.i18n-pending .language-boot-screen {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  visibility: visible;
  color: var(--ink);
  background: var(--white);
}
html.i18n-pending .language-boot-screen span {
  width: 42px;
  height: 42px;
  border: 4px solid var(--green-soft);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: language-boot-spin .75s linear infinite;
}
html.i18n-pending .language-boot-screen p { margin: 0; font-weight: 700; }
@keyframes language-boot-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { html.i18n-pending .language-boot-screen span { animation: none; } }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
body.modal-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a, select, summary { -webkit-tap-highlight-color: transparent; }
button:not(:disabled), a, select, summary { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .55; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { display: block; width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid rgba(16, 185, 129, .45); outline-offset: 3px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); font-family: var(--font-heading); line-height: 1.12; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.content-shell, .header-shell, .footer-shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; z-index: 9999; top: 10px; left: 10px; padding: 10px 16px; color: white; background: var(--navy); transform: translateY(-150%); border-radius: 8px; }
.skip-link:focus { transform: none; }

.primary-button, .secondary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.primary-button { color: white; background: var(--green); box-shadow: 0 10px 24px rgba(16, 185, 129, .22); }
.primary-button:hover:not(:disabled) { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(16, 185, 129, .28); }
.secondary-button { min-height: 44px; color: var(--ink); background: white; border: 1px solid var(--line); }
.secondary-button:hover { border-color: var(--green); color: var(--green-dark); }

.site-header { position: sticky; z-index: 100; top: 0; height: 72px; background: rgba(255, 255, 255, .97); border-bottom: 1px solid rgba(226, 232, 240, .85); backdrop-filter: blur(14px); }
.header-shell { height: 100%; display: grid; grid-template-columns: 220px 1fr auto; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; width: fit-content; }
.brand img { width: 168px; height: 35px; object-fit: contain; object-position: left center; }
.brand-text { display: none; color: var(--ink); font-family: var(--font-heading); }
.desktop-nav { display: flex; justify-content: center; gap: 36px; }
.desktop-nav a { position: relative; color: #1e293b; font-family: var(--font-heading); font-size: .9rem; font-weight: 700; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: -10px; left: 0; height: 2px; background: var(--green); transform: scaleX(0); transition: transform .2s ease; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--green-dark); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.language-switcher { position: relative; width: 112px; height: 44px; display: grid; grid-template-columns: 17px minmax(0, 1fr) 10px; align-items: center; gap: 7px; padding-inline: 10px; color: var(--ink); background: rgba(255,255,255,.96); border: 1px solid var(--line); border-radius: 999px; cursor: pointer; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.language-switcher:hover { border-color: var(--green); background: white; }
.language-switcher:focus-within { border-color: var(--green); box-shadow: 0 0 0 3px rgba(16,185,129,.24); }
.language-switcher-icon { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; pointer-events: none; }
.language-current { min-width: 0; overflow: hidden; color: inherit; font-size: 13px; font-weight: 800; line-height: 1; text-align: center; text-overflow: ellipsis; white-space: nowrap; pointer-events: none; }
.language-switcher-chevron { width: 10px; height: 8px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; transition: transform .2s ease; }
.language-switcher:focus-within .language-switcher-chevron { transform: translateY(1px); }
.language-switcher select { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; border: 0; border-radius: inherit; cursor: pointer; }
.header-cta { min-height: 44px; padding-inline: 22px; }
.menu-button { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 12px; }
.mobile-menu { position: fixed; z-index: 90; top: 72px; right: 0; left: 0; padding: 18px 24px 28px; background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
.mobile-menu a { display: block; padding: 12px 4px; color: var(--ink); font-weight: 700; border-bottom: 1px solid var(--line); }
.mobile-menu .primary-button { width: 100%; margin-top: 18px; }

.page-loading { min-height: 70vh; display: grid; place-content: center; justify-items: center; gap: 14px; color: var(--muted); }
.page-loading span { width: 34px; height: 34px; border: 3px solid var(--line); border-top-color: var(--green); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.home-hero { position: relative; min-height: 590px; display: grid; align-items: center; color: white; background-image: var(--hero-image); background-position: center; background-size: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2, 18, 30, .48), rgba(2, 18, 30, .75)), linear-gradient(90deg, rgba(2, 18, 30, .25), transparent 60%); }
.hero-inner { position: relative; z-index: 1; padding-block: 76px 70px; text-align: center; }
.section-kicker { margin-bottom: 14px; color: var(--green-dark); font-family: var(--font-heading); font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.section-kicker.light { color: #c9ffec; }
.hero-inner h1 { max-width: 760px; margin: 0 auto 18px; color: white; font-size: clamp(2.25rem, 5.3vw, 4.65rem); letter-spacing: -.055em; }
.hero-inner h1 span { display: block; }
.hero-inner h1 .hero-mobile-second { display: inline; }
.hero-inner h1 .hero-accent { display: block; }
.hero-inner > p:not(.section-kicker) { max-width: 650px; margin: 0 auto 30px; color: rgba(255, 255, 255, .9); font-size: 1.1rem; }
.no-payment { display: block; margin-top: 15px; color: rgba(255, 255, 255, .86); font-size: .86rem; font-weight: 600; }

.booking-search { width: min(1050px, 100%); margin-inline: auto; display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; align-items: stretch; padding: 7px; color: var(--slate); text-align: left; background: white; border: 1px solid rgba(255, 255, 255, .58); border-radius: 999px; box-shadow: var(--shadow-strong); }
.booking-search label { min-width: 0; padding: 8px 18px; border-right: 1px solid var(--line); }
.booking-search label span { display: block; margin-bottom: 2px; color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.booking-search select, .booking-search input { width: 100%; min-width: 0; height: 28px; padding: 0; color: var(--ink); background: transparent; border: 0; outline: 0; font-weight: 600; }
.booking-search .primary-button { min-width: 205px; }

.trust-strip { position: relative; z-index: 2; margin-top: -23px; }
.trust-strip .content-shell { display: flex; min-height: 86px; align-items: center; justify-content: space-between; gap: 32px; padding: 16px 28px; background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
.review-logos, .trust-points { display: flex; align-items: center; gap: 28px; }
.review-logos > span { display: grid; grid-template-columns: auto auto; grid-template-rows: auto auto; align-items: center; column-gap: 8px; }
.review-logos img { grid-row: 1 / 3; width: 24px; height: 24px; object-fit: contain; }
.review-logos strong { color: var(--amber); font-size: .74rem; letter-spacing: .08em; }
.review-logos small { color: var(--slate); font-weight: 700; }
.trust-points > span { display: grid; grid-template-columns: auto auto; align-items: center; column-gap: 10px; }
.trust-points svg { grid-row: 1 / 3; color: var(--green); }
.trust-points strong, .trust-points small { display: block; }
.trust-points strong { color: var(--ink); font-size: .86rem; }
.trust-points small { color: var(--muted); font-size: .75rem; }

.section { padding-block: 96px; }
.soft-section { background: var(--soft); }
.section-heading { max-width: 750px; margin: 0 auto 55px; text-align: center; }
.section-heading h2 { margin-bottom: 14px; font-size: clamp(2rem, 4vw, 3.3rem); letter-spacing: -.045em; }
.section-heading > p:last-child { max-width: 660px; margin: 0 auto; color: var(--muted); }

.featured-groups { display: grid; gap: 74px; }
.featured-group { padding-top: 34px; border-top: 1px solid var(--line); }
.featured-group-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.featured-group-head > div { max-width: 630px; }
.featured-group-head h3 { margin-bottom: 8px; font-size: 1.45rem; }
.featured-group-head p { margin: 0; color: var(--muted); }
.featured-group-head > a { color: var(--green-dark); font-size: .9rem; font-weight: 800; white-space: nowrap; }
.featured-group > .product-card { width: 360px; margin: 28px auto 0; }

.product-card { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 12px 34px rgba(15, 23, 42, .07); transition: transform .24s ease, box-shadow .24s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-image { position: relative; display: block; aspect-ratio: 4 / 3; padding: 20px; background: #f8fafc; }
.product-image img { width: 100%; height: 100%; object-fit: contain; }
.product-badge, .license-badge { position: absolute; top: 14px; padding: 5px 9px; font-family: var(--font-heading); font-size: .58rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; border-radius: 999px; }
.product-badge { left: 14px; color: #865200; background: #fff4cd; }
.license-badge { right: 14px; color: #087153; background: #dff9ef; }
.product-body { padding: 22px; }
.product-body h3 { margin-bottom: 10px; font-size: 1.35rem; }
.product-spec { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; color: var(--muted); font-size: .83rem; }
.product-spec strong { color: var(--ink); }
.product-type-icon { color: var(--green); font-size: .72rem; font-style: normal; line-height: 1.2; }
.rating-row { display: flex; align-items: center; gap: 5px; margin-bottom: 15px; font-size: .82rem; }
.rating-row > span { color: var(--amber); }
.rating-row strong { color: var(--ink); }
.rating-row small { color: var(--muted); }
.product-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding-block: 14px; border-block: 1px solid var(--line); }
.product-benefits > span { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 6px; }
.product-benefits svg { width: 15px; height: 15px; color: var(--green); }
.product-benefits small { font-size: .68rem; line-height: 1.35; }
.product-price { display: flex; align-items: end; justify-content: space-between; gap: 10px; padding-block: 17px; }
.product-price p { margin: 0; }
.product-price p strong { display: block; color: var(--ink); font-size: 1.6rem; line-height: 1; }
.product-price p span { display: block; margin-top: 4px; color: var(--muted); font-size: .72rem; }
.product-price > small { color: var(--muted); font-size: .66rem; text-align: right; }
.product-button { width: 100%; min-height: 44px; border-radius: 7px; font-size: .82rem; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }

.gallery-section { background: var(--soft); }
.gallery-heading { display: grid; grid-template-columns: 1.3fr 1fr; align-items: end; gap: 80px; margin-bottom: 36px; }
.gallery-heading .section-heading { margin: 0; text-align: left; }
.gallery-heading .section-heading h2 { margin-bottom: 0; }
.gallery-heading > p { margin: 0; }
.photo-grid { display: grid; grid-template-columns: 2fr repeat(2, 1fr); grid-template-rows: repeat(2, 190px); gap: 12px; }
.photo-grid img, .photo-main { width: 100%; height: 100%; overflow: hidden; border-radius: 12px; }
.photo-grid img { object-fit: cover; }
.photo-main { position: relative; grid-row: 1 / 3; margin: 0; }
.photo-main img { width: 100%; height: 100%; object-fit: cover; }
.photo-main figcaption { position: absolute; bottom: 14px; left: 14px; padding: 7px 12px; color: white; background: rgba(6, 24, 39, .8); border-radius: 999px; font-size: .75rem; font-weight: 700; }

.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-grid article { position: relative; min-height: 220px; padding: 30px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.step-grid article > span { position: absolute; top: 24px; right: 24px; color: #d7e0e8; font-family: var(--font-heading); font-size: 2.3rem; font-weight: 800; }
.step-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 26px; color: var(--green-dark); background: var(--green-soft); border-radius: 12px; }
.step-grid h3 { margin-bottom: 10px; font-size: 1.12rem; }
.step-grid p { margin: 0; font-size: .88rem; }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-grid article { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 24px; background: white; border: 1px solid var(--line); border-radius: 14px; }
.feature-grid svg { width: 30px; height: 30px; padding: 7px; color: var(--green-dark); background: var(--green-soft); border-radius: 50%; }
.feature-grid h3 { margin-bottom: 7px; font-size: 1rem; }
.feature-grid p { margin: 0; font-size: .85rem; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-grid article { padding: 25px; background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 10px 32px rgba(15, 23, 42, .05); }
.review-user { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px; }
.review-user > span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--green-dark); background: var(--green-soft); border-radius: 50%; font-size: .72rem; font-weight: 800; }
.review-user h3 { margin: 0; font-size: .86rem; }
.review-user small { color: var(--muted); font-size: .68rem; }
.review-user > strong { color: var(--amber); font-size: .66rem; letter-spacing: .04em; }
.review-grid blockquote { margin: 22px 0 10px; color: var(--ink); font-family: var(--font-heading); font-size: 1rem; font-weight: 700; }
.review-grid article > p { margin: 0; font-size: .83rem; }

.license-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.license-grid a { display: block; padding: 28px; background: white; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .2s ease, border-color .2s ease; }
.license-grid a:hover { transform: translateY(-4px); border-color: var(--green); }
.license-grid a > span { display: inline-block; margin-bottom: 24px; padding: 5px 10px; color: var(--green-dark); background: var(--green-soft); border-radius: 999px; font-size: .64rem; font-weight: 800; text-transform: uppercase; }
.license-grid svg { width: 32px; height: 32px; margin-bottom: 22px; color: var(--green); }
.license-grid h3 { margin-bottom: 10px; }
.license-grid p { min-height: 78px; font-size: .86rem; }
.license-grid strong { color: var(--green-dark); font-size: .8rem; }
.license-grid a { position: relative; }
.license-grid a > span { position: absolute; top: 26px; right: 26px; margin: 0; }
.legal-note { max-width: 860px; margin: 28px auto 0; color: var(--muted); font-size: .78rem; text-align: center; }

.about-layout, .editorial-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.about-images { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: 12px; }
.about-images img { width: 100%; height: 430px; object-fit: cover; border-radius: 18px; }
.about-images img:nth-child(2) { height: 330px; margin-top: 70px; }
.about-images > span { position: absolute; bottom: 25px; left: 40%; display: grid; padding: 12px 16px; background: white; border-radius: 11px; box-shadow: var(--shadow); }
.about-images > span strong { color: var(--ink); font-size: .82rem; }
.about-images > span small { font-size: .7rem; }
.about-copy h2, .editorial-split h2 { margin-bottom: 20px; font-size: clamp(2rem, 3.5vw, 3rem); letter-spacing: -.04em; }
.about-copy > p:not(.section-kicker) { margin-bottom: 30px; }
.about-copy ul { display: grid; gap: 20px; margin: 0 0 30px; padding: 0; list-style: none; }
.about-copy li { display: grid; grid-template-columns: auto 1fr; gap: 12px; }
.about-copy li svg { color: var(--green); }
.about-copy li span { display: grid; }
.about-copy li strong { color: var(--ink); font-size: .9rem; }
.about-copy li small { color: var(--muted); }
.editorial-split > img { width: 100%; min-height: 530px; object-fit: cover; border-radius: var(--radius); }
.editorial-split > div > p { font-size: 1.02rem; }

.faq-section { background: var(--soft); }
.faq-list { max-width: 880px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 4px; color: var(--ink); font-family: var(--font-heading); font-size: .9rem; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--green); font-size: 1.2rem; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details > p { padding: 0 40px 20px 4px; font-size: .9rem; }
.quick-answer { max-width: 880px; margin: 32px auto 0; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 24px 28px; background: white; border: 1px solid #ccefe2; border-radius: 14px; }
.quick-answer div { display: grid; }
.quick-answer div span { color: var(--green-dark); font-size: .68rem; font-weight: 800; letter-spacing: .1em; }
.quick-answer div strong { color: var(--ink); }
.quick-answer div p { margin: 4px 0 0; font-size: .78rem; }

.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.guide-grid article { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 14px; }
.guide-grid article > a { display: block; aspect-ratio: 16 / 9; overflow: hidden; }
.guide-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.guide-grid article:hover img { transform: scale(1.04); }
.guide-grid article > div { padding: 22px; }
.guide-grid article > div > p { margin-bottom: 9px; color: var(--green-dark); font-size: .62rem; font-weight: 800; letter-spacing: .08em; }
.guide-grid h3 { min-height: 76px; margin-bottom: 10px; font-size: 1.08rem; }
.guide-grid article > div > span { display: block; min-height: 70px; margin-bottom: 14px; font-size: .82rem; }
.guide-grid article > div > a { color: var(--green-dark); font-size: .78rem; font-weight: 800; }
.centered-button { width: fit-content; margin: 28px auto 0; display: flex; }
.guide-authors { margin-top: 30px; text-align: center; color: var(--muted); font-size: .9rem; }
.guide-authors a { color: var(--green-dark); font-weight: 700; }

.final-cta { padding: 0 0 90px; }
.final-cta .content-shell { padding: 55px 30px; color: white; text-align: center; background: radial-gradient(circle at 90% 0, #0c4250 0, transparent 35%), var(--navy-2); border-radius: 18px; box-shadow: var(--shadow-strong); }
.final-cta h2 { margin-bottom: 12px; color: white; font-size: clamp(2rem, 4vw, 3rem); }
.final-cta p:not(.section-kicker) { max-width: 650px; margin: 0 auto 24px; color: #b8c7d1; }
.final-cta .primary-button { margin-inline: auto; }
.final-cta .content-shell > div { display: flex; justify-content: center; gap: 24px; margin-top: 14px; color: #a8bac5; font-size: .73rem; }

.subpage-hero { padding: 100px 0 92px; color: white; text-align: center; background: linear-gradient(135deg, #071b2b, #0b3045); }
.subpage-hero.with-image { position: relative; background-image: linear-gradient(90deg, rgba(4, 21, 34, .9), rgba(4, 21, 34, .62)), var(--sub-image); background-position: center; background-size: cover; }
.subpage-hero .content-shell { position: relative; z-index: 1; }
.subpage-hero h1 { max-width: 880px; margin: 0 auto 18px; color: white; font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: -.05em; }
.subpage-hero .content-shell > p:last-child { max-width: 720px; margin: 0 auto; color: #c6d1d8; font-size: 1.06rem; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; }
.price-table { width: 100%; min-width: 780px; border-collapse: collapse; background: white; }
.price-table th, .price-table td { padding: 19px 20px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.price-table th { color: var(--ink); background: #eef4f6; font-family: var(--font-heading); font-size: .75rem; text-transform: uppercase; }
.price-table td { font-size: .82rem; }
.price-table td strong, .price-table td small { display: block; }
.price-table td strong { color: var(--ink); }
.price-table td small { margin-top: 3px; color: var(--muted); }
.rate-category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.rate-category-grid article { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); }
.rate-category-grid article > span { color: var(--green-dark); font-size: .68rem; font-weight: 800; letter-spacing: .1em; }
.rate-category-grid h3 { margin: 8px 0 10px; font-size: 1.45rem; }
.rate-category-grid article > p { min-height: 52px; font-size: .86rem; }
.rate-category-grid dl { display: grid; gap: 8px; margin-block: 20px; }
.rate-category-grid dl div { display: flex; justify-content: space-between; gap: 20px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.rate-category-grid dt { color: var(--muted); }
.rate-category-grid dd { margin: 0; color: var(--ink); font-weight: 800; }
.rate-category-grid a { color: var(--green-dark); font-size: .82rem; font-weight: 800; }

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.contact-copy h2 { margin-bottom: 20px; font-size: clamp(2rem, 4vw, 3.2rem); }
.contact-cards { display: grid; gap: 12px; margin: 28px 0; }
.contact-cards a { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; padding: 16px; border: 1px solid var(--line); border-radius: 12px; }
.contact-cards a:hover { border-color: var(--green); }
.contact-cards svg { color: var(--green-dark); }
.contact-cards span { display: grid; }
.contact-cards strong { color: var(--ink); }
.contact-cards small { color: var(--muted); }
.contact-photo { position: relative; }
.contact-photo img { width: 100%; height: 540px; object-fit: cover; border-radius: var(--radius); }
.contact-photo > div { position: absolute; right: 22px; bottom: 22px; left: 22px; display: grid; padding: 18px; color: white; background: rgba(4, 21, 34, .88); border-radius: 12px; }
.contact-photo span { font-size: .8rem; }

.article-page > header { padding: 95px 0 70px; background: var(--soft); }
.article-page header .content-shell { max-width: 900px; text-align: center; }
.article-page h1 { margin-bottom: 20px; font-size: clamp(2.4rem, 5vw, 4.3rem); letter-spacing: -.05em; }
.article-page header p:last-child { max-width: 730px; margin: 0 auto; font-size: 1.08rem; }
.article-body { max-width: 940px; padding-block: 60px 100px; }
.article-cover { width: 100%; max-height: 520px; object-fit: cover; border-radius: var(--radius); }
.article-content { max-width: 760px; margin: 48px auto 0; }
.article-content > p { color: var(--ink); font-size: 1.14rem; }
.article-content section { padding-block: 28px; border-bottom: 1px solid var(--line); }
.article-content h2 { margin-bottom: 12px; font-size: 1.4rem; }
.article-content aside { margin-top: 42px; padding: 28px; background: var(--green-soft); border-radius: var(--radius); }
.article-content aside strong { color: var(--ink); font-family: var(--font-heading); }

.product-detail { padding: 45px 0 100px; background: white; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; color: var(--muted); font-size: .78rem; }
.breadcrumbs a:hover { color: var(--green-dark); }
.product-detail-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.detail-image { position: relative; aspect-ratio: 4 / 3; display: grid; place-items: center; padding: 36px; background: #f7f9fa; border: 1px solid var(--line); border-radius: var(--radius); }
.detail-image img { width: 100%; height: 100%; object-fit: contain; }
.detail-image > span { position: absolute; top: 18px; left: 18px; padding: 6px 11px; color: #855400; background: #fff4cd; border-radius: 999px; font-size: .68rem; font-weight: 800; }
.detail-copy h1 { margin-bottom: 15px; font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -.05em; }
.detail-spec { color: var(--muted); }
.detail-license { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center; margin: 26px 0; padding: 16px; background: var(--green-soft); border-radius: 12px; }
.detail-license svg { color: var(--green-dark); }
.detail-license span { display: grid; }
.detail-license strong { color: var(--ink); }
.detail-license small { color: var(--muted); }
.detail-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 22px; }
.detail-price strong { color: var(--ink); font-family: var(--font-heading); font-size: 2.15rem; }
.detail-sections { display: grid; gap: 34px; margin-top: 80px; }
.detail-sections > section { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); }
.detail-sections h2 { margin-bottom: 24px; }
.rate-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.rate-cards article { display: grid; gap: 8px; padding: 20px; background: var(--soft); border-radius: 12px; }
.rate-cards article span { color: var(--muted); }
.rate-cards article strong { color: var(--ink); }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 9px; color: var(--ink); }
.check-list svg { flex: 0 0 auto; color: var(--green); }
.share-section { display: grid; grid-template-columns: 1fr auto; gap: 35px; align-items: center; background: var(--soft); }
.share-section > img { width: 210px; height: 210px; padding: 8px; background: white; border-radius: 12px; }
.share-input { display: flex; max-width: 600px; margin-bottom: 14px; }
.share-input input { width: 100%; min-width: 0; padding: 12px; border: 1px solid var(--line); border-radius: 9px 0 0 9px; }
.share-input button { display: inline-flex; align-items: center; gap: 7px; padding: 0 16px; color: white; background: var(--navy); border: 0; border-radius: 0 9px 9px 0; }
.share-section a { display: inline-flex; align-items: center; gap: 8px; color: var(--green-dark); font-weight: 800; }

.empty-page { min-height: 70vh; display: grid; place-items: center; padding: 60px 24px; text-align: center; }
.empty-page > div { max-width: 650px; }
.empty-page h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }

.site-footer { color: #9fb0bc; background: #03111d; }
.footer-shell { padding-block: 62px 28px; }
.footer-top { display: grid; grid-template-columns: 1fr 360px; gap: 90px; align-items: center; padding-bottom: 38px; border-bottom: 1px solid rgba(255, 255, 255, .09); }
.footer-logo { width: 230px; max-height: 62px; object-fit: contain; object-position: left; filter: brightness(0) invert(1); }
.footer-brand-block p { max-width: 560px; margin: 20px 0 0; }
.footer-action-block { display: grid; gap: 8px; }
.footer-action-block .primary-button { border-radius: 8px; }
.footer-action-block p, .footer-action-block a { margin: 0; font-size: .8rem; text-align: center; }
.footer-action-block a:hover { color: white; }
.footer-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding-block: 30px; border-bottom: 1px solid rgba(255, 255, 255, .09); }
.footer-benefits > div { display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: center; }
.footer-benefits svg { color: #57dbaf; }
.footer-benefits span { display: grid; }
.footer-benefits strong { color: white; font-size: .78rem; }
.footer-benefits small { font-size: .68rem; }
.footer-columns { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 70px; padding-block: 40px; }
.footer-columns > div { display: grid; align-content: start; gap: 8px; }
.footer-columns h2, .footer-columns .footer-heading { margin: 0 0 12px; color: #6f8593; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.footer-columns a, .footer-columns p { margin: 0; font-size: .8rem; }
.footer-columns a:hover { color: white; }
.footer-contact-list { display: grid; gap: 8px; }
.footer-contact-button { width: fit-content; padding: 0; color: inherit; background: transparent; border: 0; font-size: .8rem; text-align: left; }
.footer-contact-button:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .09); font-size: .73rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 22px; }

.contact-dock { position: fixed; z-index: 80; right: 22px; bottom: 22px; display: flex; align-items: flex-end; flex-direction: column; gap: 10px; }
.contact-channel { position: relative; width: 54px; height: 54px; display: grid; flex: 0 0 54px; padding: 0; place-items: center; color: white; background: var(--green); border: 3px solid rgba(255, 255, 255, .94); border-radius: 50%; box-shadow: 0 12px 30px rgba(2, 18, 30, .22); transition: transform .2s ease, box-shadow .2s ease, filter .2s ease; }
.contact-channel:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 16px 34px rgba(2, 18, 30, .26); }
.contact-channel:focus-visible { outline-color: white; box-shadow: 0 0 0 4px rgba(16,185,129,.38), 0 16px 34px rgba(2, 18, 30, .26); }
.contact-channel > svg { width: 24px; height: 24px; }
.contact-channel-label { position: absolute; right: calc(100% + 10px); top: 50%; width: max-content; max-width: 210px; padding: 7px 10px; color: white; background: rgba(6, 24, 39, .96); border-radius: 8px; box-shadow: 0 8px 20px rgba(2,18,30,.18); font-size: 12px; font-weight: 800; line-height: 1.2; opacity: 0; pointer-events: none; transform: translate(6px, -50%); transition: opacity .18s ease, transform .18s ease; }
.contact-channel:hover .contact-channel-label,
.contact-channel:focus-visible .contact-channel-label { opacity: 1; transform: translate(0, -50%); }
.contact-phone { background: #007b69; }
.contact-zalo { background: #0866ff; }
.contact-wechat { background: #07c160; }
.contact-kakao { color: #191919; background: #fee500; }
.contact-facebook { background: #1877f2; }
.contact-facebook > svg { fill: currentColor; stroke: none; }
.contact-whatsapp { background: #20c966; }
.contact-map { background: #ea4335; }
.contact-brand { display: grid; place-items: center; font-family: Arial, sans-serif; font-weight: 900; line-height: 1; }
.contact-brand-zalo { font-size: 13px; letter-spacing: -.5px; }
.contact-brand-kakao { padding: 7px 5px; color: #fee500; background: #191919; border-radius: 50%; font-size: 8px; letter-spacing: -.2px; }

.modal { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; padding: 24px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(2, 12, 20, .72); backdrop-filter: blur(6px); }
.modal-panel { position: relative; z-index: 1; width: min(700px, 100%); max-height: calc(100vh - 48px); overflow-y: auto; padding: 36px; background: white; border-radius: var(--radius); box-shadow: var(--shadow-strong); }
.modal-close { position: absolute; z-index: 2; top: 15px; right: 15px; width: 40px; height: 40px; display: grid; place-items: center; color: var(--ink); background: var(--soft); border: 0; border-radius: 50%; }
.wechat-panel { width: min(460px, 100%); padding: 38px; text-align: center; }
.wechat-heading > span { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 16px; color: white; background: #07c160; border-radius: 18px; }
.wechat-heading > span svg { width: 32px; height: 32px; }
.wechat-heading h2 { margin-bottom: 8px; font-size: 1.8rem; }
.wechat-heading > p:last-child { margin: 0 auto 22px; max-width: 340px; font-size: .88rem; }
.wechat-qr-wrap { padding: 16px; background: #f5f8f7; border: 1px solid var(--line); border-radius: 16px; }
.wechat-qr-wrap img { width: min(230px, 100%); aspect-ratio: 1; object-fit: contain; background: white; border-radius: 10px; }
.wechat-qr-wrap p { margin: 10px 0 0; font-size: .78rem; }
.wechat-id-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 16px; padding: 14px; text-align: left; background: white; border: 1px solid var(--line); border-radius: 12px; }
.wechat-id-row > span { min-width: 0; display: grid; gap: 3px; }
.wechat-id-row small { color: var(--muted); font-size: .7rem; }
.wechat-id-row strong { overflow-wrap: anywhere; color: var(--ink); }
.wechat-id-row .secondary-button { flex: 0 0 auto; gap: 6px; padding-inline: 13px; border-radius: 9px; font-size: .76rem; }
.wechat-id-row .secondary-button svg { width: 17px; height: 17px; }
.request-panel h2 { margin-bottom: 10px; font-size: 2rem; }
.modal-intro { margin-bottom: 28px; }
.request-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.span-2 { grid-column: span 2; }
.form-field { display: grid; gap: 6px; }
.form-field > span { color: var(--ink); font-size: .78rem; font-weight: 700; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 12px 13px; color: var(--ink); background: white; border: 1px solid #cbd5e1; border-radius: 9px; }
.form-field textarea { resize: vertical; }
.contact-preference { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.contact-preference label { position: relative; }
.contact-preference input { position: absolute; opacity: 0; }
.contact-preference span { display: inline-flex; padding: 9px 15px; border: 1px solid var(--line); border-radius: 999px; font-size: .8rem; font-weight: 700; }
.contact-preference input:checked + span { color: var(--green-dark); background: var(--green-soft); border-color: var(--green); }
.consent-row { display: flex; align-items: flex-start; gap: 9px; margin: 18px 0; font-size: .78rem; }
.consent-row input { margin-top: 4px; }
.form-error { min-height: 22px; margin: 0 0 10px; color: #be123c; font-size: .8rem; }
.submit-request { width: 100%; border-radius: 9px; }
.request-success { padding: 40px 10px; text-align: center; }
.success-icon { width: 66px; height: 66px; display: grid; place-items: center; margin: 0 auto 24px; color: var(--green-dark); background: var(--green-soft); border-radius: 50%; }
.success-icon svg { width: 32px; height: 32px; }
.toast { position: fixed; z-index: 1200; right: 24px; bottom: 24px; max-width: 360px; padding: 13px 18px; color: white; background: var(--navy); border-radius: 10px; box-shadow: var(--shadow-strong); }

@media (max-width: 1024px) {
  :root { --shell: min(100% - 36px, 920px); }
  .header-shell { grid-template-columns: 190px 1fr auto; gap: 15px; }
  .desktop-nav { gap: 20px; }
  .desktop-nav a { font-size: .8rem; }
  .booking-search { grid-template-columns: 1fr 1fr; border-radius: 16px; }
  .booking-search label:nth-child(2) { border-right: 0; }
  .booking-search .primary-button { grid-column: span 2; border-radius: 10px; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-heading { gap: 40px; }
  .about-layout, .editorial-split, .contact-layout, .product-detail-grid { gap: 45px; }
  .footer-top { gap: 45px; }
}

@media (max-width: 800px) {
  :root { --shell: min(100% - 30px, 700px); }
  .site-header { height: 66px; }
  .header-shell { grid-template-columns: 1fr auto; }
  .brand img { width: 150px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: flex; }
  .mobile-menu { top: 66px; }
  .home-hero { min-height: 680px; }
  .hero-inner { padding-block: 70px 50px; }
  .booking-search { grid-template-columns: 1fr; gap: 2px; padding: 10px; border-radius: 16px; }
  .booking-search label { padding: 10px 12px; border-right: 0; border-bottom: 1px solid var(--line); }
  .booking-search .primary-button { grid-column: auto; margin-top: 7px; }
  .trust-strip { margin-top: 0; padding-top: 15px; background: var(--soft); }
  .trust-strip .content-shell { align-items: flex-start; }
  .review-logos, .trust-points { flex-direction: column; align-items: flex-start; gap: 14px; }
  .section { padding-block: 70px; }
  .section-heading { margin-bottom: 38px; }
  .featured-group-head, .gallery-heading { display: block; }
  .featured-group-head > a { display: inline-block; margin-top: 12px; }
  .gallery-heading > p { margin-top: 18px; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 150px 150px; }
  .photo-main { grid-column: 1 / 3; grid-row: auto; }
  .step-grid, .review-grid, .license-grid, .guide-grid { grid-template-columns: 1fr; }
  .feature-grid, .rate-category-grid { grid-template-columns: 1fr; }
  .about-layout, .editorial-split, .contact-layout, .product-detail-grid { grid-template-columns: 1fr; }
  .about-images { order: 2; }
  .about-images img { height: 350px; }
  .about-images img:nth-child(2) { height: 270px; }
  .editorial-split > img, .contact-photo img { min-height: 0; height: 420px; }
  .quick-answer { align-items: flex-start; flex-direction: column; }
  .catalog-grid { grid-template-columns: 1fr 1fr; }
  .product-detail-grid { gap: 35px; }
  .detail-sections { margin-top: 50px; }
  .share-section { grid-template-columns: 1fr; }
  .share-section > img { width: 180px; height: 180px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-action-block { max-width: 360px; }
  .footer-benefits { grid-template-columns: 1fr 1fr; }
  .footer-columns { grid-template-columns: 1fr 1fr; gap: 35px; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 24px); }
  body { font-size: 15px; }
  .home-hero { min-height: 720px; }
  .hero-inner h1 { font-size: 2.65rem; }
  .trust-strip .content-shell { display: grid; gap: 24px; padding: 20px; }
  .review-logos, .trust-points { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .featured-group > .product-card { width: 100%; }
  .catalog-grid { grid-template-columns: 1fr; }
  .product-image { aspect-ratio: 5 / 4; }
  .photo-grid { grid-template-rows: 270px 130px 130px; }
  .product-benefits { grid-template-columns: 1fr; }
  .about-images img { height: 300px; }
  .about-images img:nth-child(2) { height: 230px; margin-top: 45px; }
  .about-images > span { right: 10px; bottom: 15px; left: auto; }
  .final-cta { padding-bottom: 55px; }
  .final-cta .content-shell { padding: 42px 20px; border-radius: 14px; }
  .final-cta .content-shell > div { align-items: center; flex-direction: column; gap: 4px; }
  .subpage-hero { padding: 75px 0 66px; }
  .subpage-hero h1 { font-size: 2.55rem; }
  .rate-category-grid article { padding: 23px; }
  .rate-cards, .check-list { grid-template-columns: 1fr; }
  .detail-sections > section { padding: 23px; }
  .share-input { display: grid; }
  .share-input input { border-radius: 9px 9px 0 0; }
  .share-input button { min-height: 42px; justify-content: center; border-radius: 0 0 9px 9px; }
  .footer-benefits, .footer-columns { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .contact-dock { right: max(12px, env(safe-area-inset-right)); bottom: max(12px, env(safe-area-inset-bottom)); max-width: calc(100vw - 24px); align-items: center; flex-direction: row; gap: 4px; padding: 6px; overflow-x: auto; background: rgba(255,255,255,.94); border: 1px solid rgba(226,232,240,.95); border-radius: 999px; box-shadow: 0 14px 34px rgba(2,18,30,.2); backdrop-filter: blur(14px); scrollbar-width: none; }
  .contact-dock::-webkit-scrollbar { display: none; }
  .contact-channel { width: 44px; height: 44px; flex-basis: 44px; border-width: 2px; box-shadow: none; }
  .contact-channel:hover { transform: none; box-shadow: none; }
  .contact-channel-label { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
  .modal { padding: 10px; align-items: end; }
  .modal-panel { width: 100%; max-height: calc(100vh - 20px); padding: 28px 20px 22px; border-radius: 18px 18px 0 0; }
  .wechat-panel { padding-top: 36px; }
  .wechat-id-row { align-items: stretch; flex-direction: column; }
  .wechat-id-row .secondary-button { width: 100%; justify-content: center; }
  .request-grid { grid-template-columns: 1fr; }
  .request-grid .span-2 { grid-column: auto; }
  .toast { right: 12px; bottom: 12px; left: 12px; max-width: none; }
}

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

/* Authorized DanangBike fidelity pass — measured against the live reference. */
:root { --shell: min(1140px, calc(100vw - 40px)); --green: #00aa6c; --green-dark: #008f5a; --soft: #f8fafc; }
body { font-size: 18px; line-height: 1.6; }
.site-header { height: 63px; }
.header-shell { grid-template-columns: 200px 1fr auto; max-width: 100%; padding-inline: 20px; }
.home-page .site-header { position: fixed; top: 0; right: 0; left: 0; color: white; background: transparent; border-bottom-color: transparent; backdrop-filter: none; }
.home-page .site-header .brand img { filter: brightness(0) invert(1); }
.home-page .desktop-nav a { color: white; }
.home-page .site-header:not(.scrolled):not(.menu-open) .language-switcher,
.fleet-page .site-header:not(.scrolled):not(.menu-open) .language-switcher,
.category-page .site-header:not(.scrolled):not(.menu-open) .language-switcher,
.contact-page .site-header:not(.scrolled):not(.menu-open) .language-switcher,
.price-page .site-header:not(.scrolled):not(.menu-open) .language-switcher,
.about-page .site-header:not(.scrolled):not(.menu-open) .language-switcher,
.service-page .site-header:not(.scrolled):not(.menu-open) .language-switcher,
.article-route-page .site-header:not(.scrolled):not(.menu-open) .language-switcher { color: white; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); }
.home-page .site-header.scrolled,
.home-page .site-header.menu-open { color: var(--ink); background: rgba(255, 255, 255, .975); border-bottom-color: rgba(15, 23, 42, .08); box-shadow: 0 8px 28px rgba(15, 23, 42, .08); backdrop-filter: saturate(140%) blur(14px); }
.home-page .site-header.scrolled .brand img,
.home-page .site-header.menu-open .brand img { filter: none; }
.home-page .site-header.scrolled .desktop-nav a,
.home-page .site-header.menu-open .desktop-nav a { color: #142238; }

.home-page .home-hero { min-height: 585px; }
.home-page .hero-inner { padding-block: 120px 58px; }
.home-page .hero-inner h1 { max-width: 800px; margin-bottom: 18px; font-size: 56px; line-height: 1.1; letter-spacing: -2px; }
.home-page .hero-inner h1 span { display: inline; }
.home-page .hero-inner > p:not(.section-kicker) { margin-bottom: 30px; font-size: 18px; }
.home-page .booking-search { width: 940px; min-height: 60px; grid-template-columns: 1.14fr 1fr 1fr 209px; gap: 8px; padding: 7px 8px 7px 13px; border: 1px solid rgba(255,255,255,.66); }
.home-page .booking-search label { display: flex; align-items: center; padding: 0 16px; }
.home-page .booking-search label > span { display: none; }
.home-page .booking-search select,
.home-page .booking-search input { height: 44px; font-size: 15px; }
.home-page .booking-search .primary-button { min-width: 0; min-height: 46px; padding-inline: 18px; }
.home-page .no-payment { margin-top: 13px; font-size: 13px; }

.home-page .trust-strip { min-height: 161px; margin-top: 0; background: var(--soft); }
.home-page .trust-strip .content-shell { width: min(960px, calc(100vw - 40px)); min-height: 161px; flex-direction: column; justify-content: center; gap: 16px; padding: 24px 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
.home-page .review-logos { width: 100%; justify-content: center; gap: 30px; }
.home-page .review-logos > span { display: flex; grid-template: none; gap: 7px; }
.home-page .review-logos img { width: 18px; height: 18px; }
.home-page .review-logos strong { font-size: 12px; }
.home-page .review-logos small { font-size: 12px; }
.home-page .review-logos small b { color: var(--ink); }
.home-page .trust-points { width: min(704px, 100%); display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.home-page .trust-points > span { min-height: 69px; padding: 13px 18px; background: white; border: 1px solid #e5eaf0; border-radius: 10px; box-shadow: 0 7px 20px rgba(15,23,42,.035); }

.home-page .section { padding-block: 72px; }
.home-page .section-heading { max-width: 760px; margin-bottom: 34px; }
.home-page .section-heading h2 { font-size: 42px; line-height: 1.16; letter-spacing: -2px; }
.home-page .product-showcase { padding-block: 72px 67px; }
.home-page .product-showcase .section-heading { min-height: 199px; margin-bottom: 34px; }
.home-page .featured-groups { gap: 0; }
.home-page .featured-group { min-height: 667px; padding: 34px 0 32px; }
.home-page .featured-group:first-child { min-height: 672px; }
.home-page .featured-group:nth-child(2) { min-height: 715px; }
.home-page .featured-group-head { min-height: 62px; }
.home-page .featured-group > .product-card { width: 428px; margin-top: 28px; }

.product-card { border-radius: 12px; }
.product-image { height: 225px; aspect-ratio: auto; padding: 0; background: white; }
.product-image img { padding: 15px 24px; }
.product-body { padding: 17px 18px 16px; font-size: 16px; line-height: 1.6; }
.product-body h3 { margin-bottom: 7px; font-size: 20px; }
.product-spec { margin-bottom: 8px; font-size: 13px; }
.rating-row { min-height: 21px; margin-bottom: 12px; font-size: 12px; }
.rating-row-empty { visibility: hidden; }
.product-benefits { gap: 10px; padding-block: 12px; }
.product-benefits > span { align-items: center; }
.product-benefits svg { width: 22px; height: 22px; }
.product-benefits small { display: grid; font-size: 11px; line-height: 1.3; }
.product-benefits small strong { color: var(--ink); font-size: 12px; }
.product-price { min-height: 69px; padding-block: 14px; }
.product-price p strong { font-size: 25px; }
.product-price > small { font-size: 12px; }
.product-button { min-height: 45px; }

.home-page .gallery-section { padding-block: 72px; }
.home-page .process-section { padding-block: 72px; }
.home-page .process-section .content-shell { width: min(980px, calc(100vw - 40px)); }
.home-page .process-section .section-heading { margin-bottom: 28px; }
.home-page .step-grid { gap: 14px; }
.home-page .step-grid article { min-height: 198px; padding: 24px; border-radius: 12px; }
.home-page .step-icon { margin-bottom: 18px; }
.process-note { margin: 16px 0 0; color: var(--green-dark); font-size: 12px; font-weight: 700; text-align: center; }

.home-page .feature-grid { width: min(920px, 100%); margin-inline: auto; grid-template-columns: repeat(2, 1fr); gap: 32px 36px; }
.home-page .feature-grid article { min-height: 78px; padding: 0; background: transparent; border: 0; border-radius: 0; }
.home-page .feature-grid svg { margin-top: 2px; }

.review-actions { display: flex; justify-content: center; gap: 14px; margin-top: 22px; }
.review-actions a { min-height: 38px; display: inline-flex; align-items: center; padding: 0 14px; color: var(--green-dark); border: 1px solid var(--line); border-radius: 999px; font-size: 12px; font-weight: 700; }
.home-page .review-grid { gap: 16px; }
.home-page .review-grid article { padding: 22px; }
.home-page .license-grid { gap: 32px; }
.home-page .license-grid a { min-height: 319px; padding: 26px; border-radius: 14px; }
.home-page .license-grid p { min-height: 112px; }
.home-page .about-layout { grid-template-columns: repeat(2, 1fr); gap: 64px; }
.home-page .about-images img { height: 540px; }
.home-page .about-images img:nth-child(2) { height: 438px; margin-top: 82px; }
.home-page .about-copy ul { gap: 18px; }
.home-page .faq-list { max-width: 880px; }
.home-page .faq-list summary { min-height: 66px; padding-block: 18px; }
.home-page .quick-answer { min-height: 130px; }

.home-page .guide-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
.home-page .guide-grid article { min-height: 801px; border-radius: 12px; }
.home-page .guide-grid article > a { height: 242px; aspect-ratio: auto; }
.home-page .guide-grid article > div { padding: 28px 26px; }
.home-page .guide-grid h3 { min-height: 188px; font-size: 25px; line-height: 1.23; }
.home-page .guide-grid article > div > span { min-height: 190px; font-size: 15px; line-height: 1.7; }

.home-page .final-cta { padding: 72px 0; }
.home-page .final-cta .content-shell { width: min(1100px, calc(100vw - 40px)); min-height: 411px; display: grid; align-content: center; padding: 64px 72px; border-radius: 24px; }
.home-page .final-cta h2 { font-size: 44px; }
.site-footer { min-height: 744px; }

@media (max-width: 800px) {
  :root { --shell: min(100% - 32px, 700px); }
  body { font-size: 16px; }
  .site-header { height: 66px; }
  .header-shell { padding-inline: 16px; }
  .home-page .menu-button { color: white; background: transparent; border: 0; }
  .home-page .site-header.scrolled .menu-button,
  .home-page .site-header.menu-open .menu-button { color: var(--ink); }
  .home-page .mobile-menu { top: 66px; }
  .home-page .home-hero { min-height: 530px; }
  .home-page .hero-inner { padding-block: 88px 24px; }
  .home-page .hero-inner h1 { max-width: 350px; margin-bottom: 12px; font-size: 36px; line-height: 1.08; letter-spacing: -1.5px; }
  .home-page .hero-inner > p:not(.section-kicker) { margin-bottom: 16px; font-size: 15px; }
  .home-page .booking-search { width: 100%; min-height: 158px; grid-template-columns: 1fr 1fr; gap: 7px; padding: 9px; border-radius: 14px; }
  .home-page .booking-search label { min-height: 42px; padding: 0 10px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
  .home-page .booking-search label:first-child { grid-column: 1 / 3; }
  .home-page .booking-search select,
  .home-page .booking-search input { height: 40px; font-size: 13px; }
  .home-page .booking-search .primary-button { grid-column: 1 / 3; min-height: 44px; margin-top: 0; }
  .home-page .no-payment { margin-top: 8px; font-size: 11px; }

  .home-page .trust-strip { min-height: 282px; padding: 0; }
  .home-page .trust-strip .content-shell { width: calc(100% - 32px); min-height: 282px; display: flex; gap: 20px; padding: 24px 0; }
  .home-page .review-logos { display: flex; flex-direction: row; align-items: center; justify-content: center; }
  .home-page .trust-points { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .home-page .trust-points > span { min-height: 88px; padding: 12px; }

  .home-page .section { padding-block: 48px; }
  .home-page .section-heading { margin-bottom: 26px; }
  .home-page .section-heading h2 { font-size: 29px; line-height: 1.14; letter-spacing: -1.2px; }
  .home-page .product-showcase { padding-block: 48px; }
  .home-page .product-showcase .section-heading { min-height: 177px; margin-bottom: 0; }
  .home-page .featured-group,
  .home-page .featured-group:first-child,
  .home-page .featured-group:nth-child(2) { min-height: 0; padding: 24px 0 28px; }
  .home-page .featured-group-head { min-height: 76px; display: block; }
  .home-page .featured-group-head > a { margin-top: 6px; }
  .home-page .featured-group > .product-card { width: 100%; max-width: 428px; margin-top: 16px; }
  .home-page .product-image { height: 190px; }
  .home-page .product-body { padding: 15px; }
  .home-page .product-benefits { grid-template-columns: 1fr 1fr; }
  .home-page .product-price { min-height: 60px; }

  .home-page .gallery-section { padding-block: 48px; }
  .home-page .gallery-heading > p { margin-top: 12px; }
  .home-page .photo-grid { grid-template-rows: 230px 105px 105px; gap: 8px; }
  .home-page .process-section { padding-block: 48px; }
  .home-page .process-section .content-shell { width: var(--shell); }
  .home-page .step-grid { gap: 10px; }
  .home-page .step-grid article { min-height: 0; padding: 16px; }
  .home-page .step-grid article > span { top: 14px; right: 16px; font-size: 24px; }
  .home-page .step-icon { width: 34px; height: 34px; margin-bottom: 10px; }
  .home-page .step-grid h3 { margin-bottom: 5px; }
  .home-page .step-grid p { font-size: 13px; line-height: 1.45; }
  .process-note { margin-top: 12px; }

  .home-page .feature-grid { grid-template-columns: 1fr; gap: 12px; }
  .home-page .feature-grid article { min-height: 66px; gap: 12px; }
  .home-page .review-grid { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .home-page .review-grid article { min-width: 100%; min-height: 286px; scroll-snap-align: start; }
  .review-actions { flex-wrap: wrap; margin-top: 16px; }
  .home-page .license-grid { gap: 14px; }
  .home-page .license-grid a { min-height: 238px; padding: 22px; }
  .home-page .license-grid p { min-height: 0; }
  .home-page .about-layout { gap: 28px; }
  .home-page .about-images { order: initial; }
  .home-page .about-images img { height: 300px; }
  .home-page .about-images img:nth-child(2) { height: 230px; margin-top: 45px; }
  .home-page .about-copy ul { gap: 13px; }
  .home-page .faq-list summary { min-height: 62px; padding-block: 14px; }
  .home-page .quick-answer { min-height: 0; padding: 20px; }

  .home-page .guide-grid { grid-template-columns: 1fr; }
  .home-page .guide-grid article { min-height: 0; }
  .home-page .guide-grid article > a { height: 230px; }
  .home-page .guide-grid article > div { padding: 22px; }
  .home-page .guide-grid h3 { min-height: 0; font-size: 23px; }
  .home-page .guide-grid article > div > span { min-height: 0; font-size: 15px; }

  .home-page .final-cta { padding: 48px 0; }
  .home-page .final-cta .content-shell { width: calc(100% - 32px); min-height: 456px; padding: 48px 22px; border-radius: 20px; }
  .home-page .final-cta h2 { font-size: 32px; }
  .site-footer { min-height: 0; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 32px); }
  .home-page .review-logos { gap: 12px; }
  .home-page .review-logos > span { min-width: 0; }
  .home-page .review-logos small { font-size: 10px; }
  .home-page .product-benefits { grid-template-columns: 1fr 1fr; }
  .home-page .footer-shell { padding-block: 40px 24px; }
}

@media (min-width: 801px) {
  .home-page .section-heading h2 { font-size: 54px; font-weight: 600; line-height: 1.2; letter-spacing: -2px; }
  .home-page .product-showcase { height: 2439px; }
  .home-page .product-showcase .section-heading { height: 199px; overflow: hidden; }
  .home-page .gallery-section .content-shell { width: min(980px, calc(100vw - 40px)); }
  .home-page .gallery-heading { grid-template-columns: 542.8px 1fr; gap: 36px; margin-bottom: 20px; }
  .home-page .gallery-heading .section-heading { width: 542.8px; margin: 0; }
  .home-page .photo-grid { grid-template-columns: 472.4px repeat(2, 1fr); grid-template-rows: repeat(2, 190px); gap: 10px; }
  .home-page .gallery-footer { min-height: 54px; display: flex; align-items: start; justify-content: space-between; gap: 18px; margin-top: 14px; }
  .home-page .gallery-footer p { margin: 0; color: var(--muted); font-size: 12px; }
  .home-page .gallery-footer .secondary-button { min-height: 40px; padding-inline: 16px; font-size: 12px; }
  .home-page .process-section .content-shell { position: relative; }
  .home-page .process-section .section-heading { width: 700px; height: 195px; margin-bottom: 24px; overflow: hidden; }
  .home-page .process-note { position: absolute; right: 0; bottom: -30px; left: 0; margin: 0; }
  .home-page .reviews-section .section-heading { width: 700px; height: 195px; margin-bottom: 32px; overflow: hidden; }
  .home-page .soft-section:not(.license-section) .section-heading { width: 720px; height: 119px; margin-bottom: 34px; overflow: hidden; }
  .home-page .license-section .section-heading { width: 840px; height: 170px; margin-bottom: 32px; overflow: hidden; }
  .home-page .about-copy h2 { font-size: 54px; font-weight: 600; line-height: 1.2; letter-spacing: -2px; }
  .home-page .faq-section .section-heading h2 { font-size: 43.2px; font-weight: 750; line-height: 1.12; letter-spacing: -1.08px; }
  .home-page .final-cta h2 { max-width: 820px; margin-inline: auto; font-size: 48px; font-weight: 800; line-height: 1.08; letter-spacing: -1.68px; }
  .home-page .featured-group { min-height: 0; padding: 43px 0 46px; }
  .home-page .featured-group:first-child { min-height: 0; padding-top: 0; }
  .home-page .featured-group:last-child { min-height: 0; padding-bottom: 0; }
  .home-page .featured-group-head { min-height: 66px; }
  .home-page .featured-group-head h3 { margin-bottom: 5px; font-size: 20px; }
  .home-page .featured-group-head p { font-size: 13px; line-height: 1.45; }
  .home-page .featured-group > .product-card { min-height: 558px; margin-top: 0; }
  .home-page .gallery-section { height: 772px; padding-block: 78px 66px; overflow: hidden; }
  .home-page .gallery-section,
  .home-page .about-section,
  .home-page .faq-section,
  .home-page .guides-section,
  .home-page .final-cta { position: relative; top: -1px; }
  .home-page .process-section { height: 561px; padding-block: 72px; }
  .home-page .soft-section:not(.license-section) { height: 486px; padding-block: 72px; }
  .home-page .reviews-section { height: 666px; padding-block: 72px; }
  .home-page .review-grid { height: 223px; overflow: hidden; }
  .home-page .review-actions { height: 40px; margin-top: 32px; }
  .home-page .license-section { height: 758px; padding-block: 72px; }
  .home-page .license-grid { height: 319px; overflow: hidden; }
  .home-page .license-grid a { height: 319px; min-height: 319px; }
  .home-page .legal-note { width: min(880px, 100%); min-height: 40px; margin-top: 32px; font-size: 13px; line-height: 1.55; }
  .home-page .about-section { height: 832px; padding-block: 72px; }
  .home-page .about-layout { min-height: 688px; }
  .home-page .faq-section { height: 1006px; padding-block: 72px; }
  .home-page .faq-section .section-heading { height: 181px; margin-bottom: 32px; overflow: hidden; }
  .home-page .faq-list { width: 900px; min-height: 483px; }
  .home-page .quick-answer { width: 900px; min-height: 134px; margin-top: 32px; padding: 24px; }
  .home-page .guides-section { height: 1204px; padding-block: 72px; }
  .home-page .guides-section .section-heading { height: 141px; margin-bottom: 40px; overflow: hidden; }
  .home-page .centered-button { min-height: 46px; margin-top: 32px; }
}

@media (max-width: 800px) {
  .gallery-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 10px; }
  .gallery-footer p { margin: 0; font-size: 10px; line-height: 1.35; }
  .gallery-footer .secondary-button { min-height: 34px; padding-inline: 10px; font-size: 10px; }
  .home-page .license-grid a { position: relative; }
  .home-page .license-grid a > span { position: absolute; top: 20px; right: 20px; margin: 0; }
  .home-page .license-grid a > svg { margin-top: 2px; }
  .home-page .product-showcase { height: 2157px; overflow: hidden; }
  .home-page .featured-group-head { height: 89px; min-height: 89px; overflow: hidden; }
  .home-page .featured-group-head h3 { margin-bottom: 5px; font-size: 20px; }
  .home-page .featured-group-head p { font-size: 13px; line-height: 1.42; }
  .home-page .featured-group-head > a { font-size: 12px; }
  .home-page .featured-group,
  .home-page .featured-group:first-child,
  .home-page .featured-group:nth-child(2) { padding: 0 0 38px; }
  .home-page .featured-group:nth-child(2) { padding-top: 35px; }
  .home-page .featured-group:nth-child(3) { padding: 35px 0 0; }
  .home-page .featured-group:nth-child(2) .featured-group-head { height: 73px; min-height: 73px; }
  .home-page .featured-group > .product-card { height: 483px; min-height: 483px; margin-top: 13px; overflow: hidden; }
  .home-page .featured-group:nth-child(2) > .product-card { margin-top: 12px; }
  .home-page .featured-group:nth-child(3) > .product-card { margin-top: 14px; }
  .home-page .gallery-section { height: 712px; padding-block: 42px; }
  .home-page .photo-grid { grid-template-rows: 200px 90px 90px; }
  .home-page .process-section { height: 592px; padding-block: 48px; }
  .home-page .process-section .section-heading { margin-bottom: 22px; }
  .home-page .step-grid article { height: 86px; display: grid; grid-template-columns: 34px 1fr; grid-template-rows: auto auto; align-content: center; column-gap: 10px; padding: 10px 14px; }
  .home-page .step-grid article > span { font-size: 19px; }
  .home-page .step-icon { grid-row: 1 / 3; width: 32px; height: 32px; margin: 0; }
  .home-page .step-grid h3 { align-self: end; margin: 0; font-size: 14px; }
  .home-page .step-grid p { align-self: start; margin: 2px 0 0; font-size: 11.5px; line-height: 1.3; }
  .home-page .soft-section:not(.license-section) { height: 542px; padding-block: 46px; }
  .home-page .reviews-section { height: 661px; padding-block: 44px; }
  .home-page .license-section { height: 1120px; padding-block: 46px; }
  .home-page .license-grid a { min-height: 0; height: 220px; padding: 18px 20px; }
  .home-page .license-grid a > span { margin-bottom: 13px; }
  .home-page .license-grid svg { margin-bottom: 10px; }
  .home-page .license-grid h3 { margin-bottom: 6px; font-size: 17px; }
  .home-page .license-grid p { margin-bottom: 8px; font-size: 12px; line-height: 1.4; }
  .home-page .legal-note { margin-top: 18px; font-size: 11px; }
  .home-page .about-section { height: 909px; padding-block: 42px; overflow: hidden; }
  .home-page .about-layout { gap: 18px; }
  .home-page .about-images img { height: 240px; }
  .home-page .about-images img:nth-child(2) { height: 190px; margin-top: 34px; }
  .home-page .about-images > span { padding: 8px 11px; }
  .home-page .about-copy h2 { margin-bottom: 10px; font-size: 27px; }
  .home-page .about-copy > p:not(.section-kicker) { margin-bottom: 14px; font-size: 13px; line-height: 1.45; }
  .home-page .about-copy ul { gap: 9px; margin-bottom: 14px; }
  .home-page .about-copy li { gap: 9px; }
  .home-page .about-copy li strong { font-size: 13px; }
  .home-page .about-copy li small { font-size: 11px; line-height: 1.35; }
  .home-page .about-copy .secondary-button { min-height: 38px; padding-inline: 14px; font-size: 12px; }
  .home-page .faq-section { height: 1097px; padding-block: 46px; }
  .home-page .guides-section { height: 1708px; padding-block: 46px; overflow: hidden; }
  .home-page .final-cta { margin-top: -1px; }
  .home-page .guide-grid { gap: 16px; }
  .home-page .guide-grid article > a { height: 170px; }
  .home-page .guide-grid article > div { padding: 18px; }
  .home-page .guide-grid h3 { margin-bottom: 8px; font-size: 20px; line-height: 1.22; }
  .home-page .guide-grid article > div > span { margin-bottom: 10px; font-size: 13px; line-height: 1.5; }
  .home-page .centered-button { margin-top: 18px; }
  .home-page .site-footer { height: 1253px; overflow: hidden; }
}

/* Current authorised reference alignment: desktop header and booking hero. */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; justify-content: center; gap: 9px; }
.nav-dropdown > a span { font-size: 18px; line-height: 1; transform: translateY(-2px); }
.nav-dropdown-menu { position: absolute; z-index: 120; top: 63px; left: 0; width: 275px; display: none; padding: 9px 0; color: #142238; background: white; border: 1px solid #e2e8f0; border-radius: 0 0 8px 8px; box-shadow: 0 14px 34px rgba(15,23,42,.14); }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: grid; }
.desktop-nav .nav-dropdown-menu a { min-height: 44px; display: flex; align-items: center; padding: 8px 18px; color: #142238; font-family: var(--font-body); font-size: 14px; font-weight: 600; }
.desktop-nav .nav-dropdown-menu a::after { display: none; }
.desktop-nav .nav-dropdown-menu a:hover { color: var(--green-dark); background: #f2faf6; }

@media (min-width: 801px) {
  .home-page .header-shell { width: 100%; height: 73px; grid-template-columns: 300px 1fr auto; gap: 0; padding-inline: 15px; transform: translateY(-5.5px); }
  .home-page .brand img { width: 144px; height: 30.375px; }
  .home-page .desktop-nav { width: 509.35px; height: 72px; justify-content: flex-start; align-items: stretch; gap: 0; margin-left: 70.32px; }
  .home-page .desktop-nav > .nav-item { flex-shrink: 0; min-width: max-content; white-space: nowrap; }
  .home-page .desktop-nav > .nav-dropdown { width: 131px; height: 72px; }
  .home-page .desktop-nav > .nav-hoian { width: 208px; }
  .home-page .desktop-nav > .nav-price { width: 75px; }
  .home-page .desktop-nav > .nav-contact { width: 96px; }
  .home-page .desktop-nav > a,
  .home-page .desktop-nav > .nav-dropdown > a { height: 72px; display: flex; align-items: center; justify-content: center; color: white; font-family: "Roboto", Arial, sans-serif; font-size: 18px; font-weight: 600; line-height: 30px; }
  .home-page .header-cta { width: 114.375px; min-height: 44px; padding: 0 16px; border-radius: 999px; font-size: 14px; }

  .home-page .hero-inner { transform: translateY(-7.5px); }
  .home-page .hero-inner > .section-kicker { width: 940px; margin: 0 auto 10px; font-family: "Roboto", Arial, sans-serif; font-size: 12px; line-height: 14.4px; }
  .home-page .hero-inner h1 { font-family: "Roboto", Arial, sans-serif; font-weight: 800; }
  .home-page .hero-inner > p:not(.section-kicker) { max-width: 720px; margin-bottom: 24px; font-size: 15.5px; font-weight: 450; line-height: 24.025px; }
  .home-page .booking-search { position: relative; top: -2px; height: 60px; min-height: 60px; max-height: 60px; }
  .home-page .booking-search label { height: 44px; min-height: 44px; padding: 0 13px; gap: 8px; }
  .home-page .booking-search label:first-child::before { content: ""; flex: 0 0 18px; width: 18px; height: 18px; border: 2px solid #00aa6c; border-radius: 50%; box-shadow: inset 0 0 0 4px white; background: #00aa6c; }
  .home-page .booking-search select,
  .home-page .booking-search input { height: 42px; font-size: 14px; font-weight: 500; }
  .home-page .booking-search .primary-button { height: 44px; min-height: 44px; max-height: 44px; gap: 8px; padding: 0 20px; font-size: 14px; line-height: 22.4px; }
  .home-page .site-footer { height: 744px; min-height: 744px; overflow: hidden; }
  .home-page .final-cta { margin-bottom: 0; }
}

/* The reference uses a separate tablet composition instead of stretching the phone layout. */
@media (min-width: 561px) and (max-width: 800px) {
  .home-page .home-hero { min-height: 560px; height: 560px; }
  .home-page .trust-strip { min-height: 161px; height: 161px; }
  .home-page .trust-strip .content-shell { min-height: 161px; height: 161px; gap: 16px; padding: 24px 0; }
  .home-page .trust-points > span { min-height: 69px; padding: 13px 18px; }

  .home-page .product-showcase { height: 2328px; }
  .home-page .product-showcase .section-heading { min-height: 163px; height: 163px; }
  .home-page .featured-group-head,
  .home-page .featured-group:nth-child(2) .featured-group-head { height: 50px; min-height: 50px; }
  .home-page .featured-group,
  .home-page .featured-group:first-child { padding: 0 0 44px; }
  .home-page .featured-group:nth-child(2) { padding: 39px 0 43px; }
  .home-page .featured-group:nth-child(3) { padding: 39px 0 0; }
  .home-page .featured-group > .product-card,
  .home-page .featured-group:nth-child(2) > .product-card,
  .home-page .featured-group:nth-child(3) > .product-card { width: 100%; max-width: none; height: 561px; min-height: 561px; margin-top: 15px; }
  .home-page .featured-group:nth-child(2) > .product-card,
  .home-page .featured-group:nth-child(3) > .product-card { margin-top: 16px; }
  .home-page .product-image { height: 225px; }

  .home-page .gallery-section { height: 711px; }
  .home-page .process-section { height: 496px; padding-block: 72px; }
  .home-page .process-section .section-heading { width: 700px; height: 100px; margin-bottom: 24px; overflow: hidden; }
  .home-page .step-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .home-page .step-grid article { height: 228px; display: block; padding: 24px; }
  .home-page .step-icon { width: 46px; height: 46px; margin-bottom: 18px; }

  .home-page .soft-section:not(.license-section) { height: 454px; padding-block: 72px; }
  .home-page .soft-section:not(.license-section) .section-heading { width: 720px; height: 89px; margin-bottom: 34px; overflow: hidden; }
  .home-page .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 28px; }

  .home-page .reviews-section { height: 624px; padding-block: 72px; }
  .home-page .reviews-section .section-heading { width: 736px; height: 101px; margin-bottom: 32px; overflow: hidden; }
  .home-page .review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; overflow: visible; }
  .home-page .review-grid article { min-width: 0; height: 275px; min-height: 275px; }
  .home-page .review-actions { height: 40px; margin-top: 32px; }

  .home-page .license-section { height: 852px; padding-block: 72px; }
  .home-page .license-section .section-heading { width: 728px; height: 110px; margin-bottom: 32px; overflow: hidden; }
  .home-page .license-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .home-page .license-grid a { height: auto; min-height: 319px; }

  .home-page .about-section { height: 811px; padding-block: 72px; }
  .home-page .about-layout { grid-template-columns: repeat(2, 1fr); gap: 52px; }

  .home-page .faq-section { height: 981px; padding-block: 72px; }
  .home-page .faq-section .section-heading { width: 728px; height: 156px; margin-bottom: 32px; overflow: hidden; }

  .home-page .guides-section { height: 2312px; padding-block: 72px; }
  .home-page .guides-section .section-heading { width: 720px; height: 111px; margin-bottom: 40px; overflow: hidden; }
  .home-page .guide-grid { width: 680px; margin-inline: auto; gap: 29px; }
  .home-page .guide-grid article { min-height: 635px; height: 635px; }
  .home-page .guide-grid article:nth-child(3) { min-height: 612px; height: 612px; }
  .home-page .guide-grid article > a { height: 382px; }

  .home-page .final-cta { height: 542px; margin: 0; padding: 48px 0; }
  .home-page .final-cta .content-shell { min-height: 446px; height: 446px; }
  .home-page .site-footer { height: 1090px; min-height: 1090px; }
}

@media (min-width: 801px) and (max-width: 1399px) {
  .home-page .product-showcase { height: 2432px; }
  .home-page .site-footer { height: 726px; min-height: 726px; }
  .home-page .final-cta { margin-bottom: -5px; }
}

@media (min-width: 1400px) {
  .home-page .final-cta { margin-bottom: -1px; }
}

/* 2026-08 operational parity: stable date labels, three-step availability and final responsive polish. */
html, body { max-width: 100%; overflow-x: clip; }

.date-field { position: relative; }
.date-field .date-display { position: relative; z-index: 1; pointer-events: none; color: var(--ink); }
.date-field .date-display::placeholder { color: var(--ink); opacity: 1; }
.date-field .date-native { position: absolute !important; z-index: 2; inset: 0; width: 100% !important; height: 100% !important; opacity: .001; cursor: pointer; touch-action: manipulation; }
.booking-search .date-field { cursor: pointer; transition: background-color .18s ease, box-shadow .18s ease; }
.booking-search .date-field:hover { background: #f8fafc; }
.booking-search .date-field:focus-within { background: #f8fafc; box-shadow: inset 0 0 0 2px rgba(0,170,108,.42); }

.product-badge, .license-badge { letter-spacing: .01em; text-transform: none; }
.product-image img { transform: scale(.89); }
.product-price { display: block; margin-top: 10px; padding: 13px 14px; background: #f8fafc; border: 1px solid var(--line); border-radius: 8px; }
.product-price p { display: flex; align-items: baseline; gap: 7px; }
.product-price p strong { display: inline; }
.product-price p span { display: inline; margin-top: 0; }
.product-price > small { display: block; margin-top: 5px; text-align: left; }
.product-button { margin-top: 9px; }

.checkout-progress { width: min(420px, calc(100% - 70px)); display: grid; grid-template-columns: 30px 1fr 30px 1fr 30px; align-items: center; gap: 8px; margin: 0 auto 24px; }
.checkout-progress span { width: 30px; height: 30px; display: grid; place-items: center; color: var(--muted); background: #eef2f6; border-radius: 50%; font-size: 12px; font-weight: 800; }
.checkout-progress span.active { color: white; background: var(--green); }
.checkout-progress i { height: 2px; background: var(--line); }
.checkout-progress i.active { background: var(--green); }
.request-step { animation: request-step-in .18s ease-out; }
@keyframes request-step-in { from { opacity: 0; transform: translateX(8px); } }
.request-step .step-label { margin: 0 0 5px; color: var(--green-dark); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.request-step .submit-request { width: 100%; margin-top: 18px; }
.availability-result { min-height: 66px; display: grid; align-content: center; gap: 2px; margin-top: 16px; padding: 12px 15px; color: var(--slate); background: var(--soft); border: 1px solid var(--line); border-radius: 9px; font-size: 12px; }
.availability-result strong { color: var(--ink); }
.availability-result.available { color: #2f6655; background: var(--green-soft); border-color: #bdebd9; }
.availability-result.unavailable { color: #9b2c2c; background: #fff4f2; border-color: #fecaca; }
.availability-result.loading { color: var(--muted); }
.step-actions { display: grid; grid-template-columns: 120px 1fr; gap: 12px; margin-top: 20px; }
.request-review { display: grid; gap: 0; margin: 0; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.request-review > div { display: grid; grid-template-columns: 135px 1fr; gap: 14px; padding: 13px 15px; border-bottom: 1px solid var(--line); }
.request-review > div:last-child { border-bottom: 0; }
.request-review dt { color: var(--muted); font-size: 12px; font-weight: 700; }
.request-review dd { margin: 0; color: var(--ink); font-size: 13px; font-weight: 700; }

.review-dots { display: none; }
.review-dots button { width: 8px; height: 8px; padding: 0; background: #d7e1e8; border: 0; border-radius: 50%; }
.review-dots button.active { background: var(--green); }

.published-comments { width: min(700px, calc(100% - 32px)); margin: 0 auto; padding: 30px 0 10px; }
.published-comments > h2 { font-size: 27px; }
.published-comments > article { padding: 18px 0; border-top: 1px solid var(--line); }
.published-comments article header { display: flex; justify-content: space-between; gap: 16px; }
.published-comments article time { color: var(--muted); font-size: 12px; }
.published-comments article p { margin: 8px 0 0; white-space: pre-line; }
.managed-article { min-height: auto !important; }

@media (max-width: 560px) {
  .home-page .hero-inner h1 { max-width: 358px; font-size: 34px; line-height: 1.08; letter-spacing: -1.7px; }
  .home-page .hero-inner h1 .hero-mobile-second { display: block; }
  .home-page .hero-inner h1 .hero-accent { display: inline; }
  .home-page .hero-inner { padding-block: 58px 16px; transform: translateY(-10px); }
  .home-page .hero-inner > p:not(.section-kicker) { font-size: 13px; }
  .home-page .booking-search { width: calc(100% + 4px); min-height: 211px; margin-left: -2px; gap: 10px; padding: 20px; }
  .home-page .booking-search label { min-height: 50px; }
  .home-page .booking-search label:first-child { min-height: 50px; }
  .home-page .booking-search select,
  .home-page .booking-search input { height: 48px; }
  .home-page .booking-search .primary-button { min-height: 51px; }
  .home-page .trust-strip .content-shell { display: grid; align-content: start; gap: 16px; padding: 24px 0; }
  .home-page .review-logos { width: 100%; min-height: 58px; padding: 10px 16px; background: white; border: 1px solid var(--line); border-radius: 15px; }
  .home-page .trust-points { grid-template-columns: 1fr; gap: 16px; }
  .home-page .trust-points > span { min-height: 72px; grid-template-columns: 40px 1fr; padding: 12px 16px; background: white; border: 1px solid var(--line); border-radius: 14px; }
  .home-page .trust-points > span svg { width: 32px; height: 32px; grid-row: 1 / 3; padding: 8px; background: var(--green-soft); border-radius: 50%; }
  .home-page .trust-points > span strong,
  .home-page .trust-points > span small { grid-column: 2; text-align: left; }

  .home-page .product-showcase .section-heading,
  .home-page .gallery-heading .section-heading,
  .home-page .process-section .section-heading,
  .home-page .soft-section:not(.license-section) .section-heading,
  .home-page .about-copy,
  .home-page .faq-section .section-heading,
  .home-page .guides-section .section-heading { text-align: left; }
  .home-page .product-showcase .section-heading > p:last-child,
  .home-page .gallery-heading .section-heading > p:last-child,
  .home-page .process-section .section-heading > p:last-child,
  .home-page .soft-section:not(.license-section) .section-heading > p:last-child,
  .home-page .faq-section .section-heading > p:last-child,
  .home-page .guides-section .section-heading > p:last-child { margin-left: 0; }

  .home-page .featured-group > .product-card { height: 483px; }
  .home-page .product-image { height: 163px; }
  .home-page .product-image img { transform: scale(.84); }
  .home-page .product-body { padding: 16px; }
  .home-page .product-body h3 { margin-bottom: 5px; }
  .home-page .product-spec { margin-bottom: 7px; }
  .home-page .rating-row { margin-bottom: 9px; }
  .home-page .product-benefits { min-height: 52px; padding: 9px 10px; background: var(--soft); border: 0; border-radius: 9px; }
  .home-page .product-price { min-height: 80px; margin-top: 9px; padding: 11px 12px; }
  .home-page .product-price p strong { font-size: 24px; }
  .home-page .product-button { min-height: 52px; margin-top: 11px; }

  .home-page .gallery-heading .section-heading { margin-bottom: 11px; }
  .home-page .gallery-heading > p { margin-top: 12px; font-size: 13px; line-height: 1.55; }
  .home-page .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 210px 118px; }
  .home-page .photo-main { grid-column: 1 / -1; grid-row: 1; }
  .home-page .photo-grid > img:nth-of-type(n + 3) { display: none; }
  .home-page .gallery-footer { display: grid; gap: 9px; }
  .home-page .gallery-footer p { font-size: 11px; line-height: 1.45; }
  .home-page .gallery-footer .secondary-button { width: 100%; min-height: 38px; }

  .home-page .reviews-section .section-heading h2 { font-size: 27px; }
  .home-page .reviews-section .section-heading > p:last-child { font-size: 13px; line-height: 1.55; }
  .home-page .reviews-section .section-heading { margin-bottom: 30px; }
  .home-page .review-grid { height: 223px; }
  .home-page .review-grid article { height: 223px; min-height: 223px; padding: 24px; }
  .home-page .review-grid blockquote { margin-top: 18px; font-size: 15px; }
  .home-page .review-grid article > p { font-size: 12px; line-height: 1.55; }
  .home-page .review-grid { scrollbar-width: none; }
  .home-page .review-grid::-webkit-scrollbar { display: none; }
  .home-page .review-dots { height: 18px; display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 12px; }
  .home-page .review-actions { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .home-page .review-actions { gap: 16px; margin-top: 25px; }
  .home-page .review-actions a { width: 100%; min-height: 48px; justify-content: center; }

  .home-page .about-layout { display: block; }
  .home-page .about-images { position: relative; width: 100%; height: 267px; display: block; margin-bottom: 8px; }
  .home-page .about-images img:first-child { width: 78%; height: 204px; margin: 6px 0 0 4px; }
  .home-page .about-images img:nth-child(2) { position: absolute; z-index: 2; top: 109px; right: 0; width: 30%; height: 139px; margin: 0; border: 5px solid white; }
  .home-page .about-images > span { z-index: 3; top: 187px; right: auto; bottom: auto; left: 8px; padding: 9px 11px; }
  .home-page .about-copy .section-kicker { margin-bottom: 19px; }
  .home-page .about-copy h2 { font-size: 27px; line-height: 1.15; }
  .home-page .about-copy > p:not(.section-kicker) { margin-bottom: 5px; font-size: 15px; line-height: 1.5; }
  .home-page .about-copy ul { gap: 24px; margin-bottom: 25px; }
  .home-page .about-copy li { gap: 24px; }
  .home-page .about-copy li svg { width: 40px; height: 40px; padding: 10px; background: var(--green-soft); border-radius: 50%; }
  .home-page .about-copy li strong { font-size: 17px; }
  .home-page .about-copy li small { font-size: 13px; line-height: 1.5; }
  .home-page .about-copy .secondary-button { min-height: 44px; padding-inline: 22px; font-size: 12px; }

  .home-page .footer-benefits { grid-template-columns: 1fr 1fr; gap: 16px 10px; }
  .home-page .footer-shell { padding: 44px 0 24px; }
  .home-page .footer-logo { width: 208px; }
  .home-page .footer-brand-block p { margin-top: 24px; font-size: 14px; line-height: 1.75; }
  .home-page .footer-action-block { margin-top: 0; }
  .home-page .footer-top { gap: 19px; padding-bottom: 28px; }
  .home-page .footer-action-block .primary-button { min-height: 55px; }
  .home-page .footer-action-block p,
  .home-page .footer-action-block a { text-align: left; }
  .home-page .footer-benefits { padding: 26px 0 53px; }
  .home-page .footer-columns { grid-template-columns: 1fr; gap: 30px; padding: 42px 0 60px; }
  .home-page .footer-columns > div:last-child { grid-column: auto; }
  .home-page .footer-columns > div:nth-child(3) { margin-top: -5px; }
  .home-page .footer-columns a,
  .home-page .footer-columns p { font-size: 13px; }
  .home-page .footer-bottom { gap: 8px; padding-top: 22px; }

  .modal { padding: 8px; }
  .modal-panel { max-height: calc(100vh - 16px); padding: 26px 18px 20px; border-radius: 14px; }
  .request-panel h2 { font-size: 26px; }
  .modal-intro { margin-bottom: 18px; font-size: 14px; }
  .checkout-progress { margin-bottom: 18px; }
  .step-actions { grid-template-columns: 96px 1fr; }
  .step-actions .primary-button, .step-actions .secondary-button { min-height: 44px; padding-inline: 12px; }
  .request-review > div { grid-template-columns: 105px 1fr; }
}

@media (min-width: 561px) and (max-width: 800px) {
  .home-page, .home-page main, .home-page .site-footer { max-width: 100vw; overflow-x: clip; }
}

/* Complete authorized reference interaction pass. */
.home-page .hero-inner h1 .hero-mobile-second { display: block; }
.photo-grid > button { position: relative; width: 100%; height: 100%; display: block; padding: 0; overflow: hidden; background: transparent; border: 0; border-radius: 12px; cursor: zoom-in; }
.photo-grid > button img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.photo-grid > button:hover img { transform: scale(1.025); }
.photo-grid .photo-main { grid-row: 1 / 3; }
.photo-grid .photo-main span { position: absolute; right: 16px; bottom: 14px; padding: 7px 11px; color: #fff; background: rgba(4,21,34,.72); border-radius: 999px; font-size: 11px; font-weight: 700; }
.gallery-footer button.secondary-button { cursor: pointer; }

.step-grid .step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.step-grid .step-top > span { color: #a8b6c1; font-family: var(--font-heading); font-size: 14px; font-weight: 800; letter-spacing: .1em; }
.step-grid .step-top .step-icon { margin: 0; }
.difference-section .feature-grid svg { width: 42px; height: 42px; padding: 10px; }

.checkout-scooter { display: grid; grid-template-columns: 82px 1fr; gap: 16px; align-items: center; margin: -8px 45px 24px 0; padding: 10px 12px; background: #f8fafc; border: 1px solid var(--line); border-radius: 12px; }
.checkout-scooter img { width: 82px; height: 62px; object-fit: contain; background: #fff; border-radius: 8px; }
.checkout-scooter div { display: grid; }
.checkout-scooter small { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.checkout-scooter strong { color: var(--ink); font-family: var(--font-heading); font-size: 17px; }
.checkout-scooter span { color: var(--green-dark); font-size: 11px; font-weight: 700; }
.checkout-progress { width: min(510px, calc(100% - 30px)); grid-template-columns: max-content 1fr max-content 1fr max-content; margin-bottom: 25px; }
.checkout-progress > div { display: grid; grid-template-columns: 30px auto; align-items: center; gap: 7px; color: var(--muted); }
.checkout-progress > div span { width: 30px; height: 30px; display: grid; place-items: center; background: #eef2f6; border-radius: 50%; font-size: 12px; font-weight: 800; }
.checkout-progress > div small { font-size: 10px; white-space: nowrap; }
.checkout-progress > div.active span { color: #fff; background: var(--green); }
.checkout-progress > div.active small { color: var(--green-dark); font-weight: 700; }
.handover-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.handover-options label { position: relative; }
.handover-options input { position: absolute; opacity: 0; }
.handover-options label > span { min-height: 156px; display: grid; grid-template-rows: auto auto 1fr auto; gap: 7px; padding: 20px; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; }
.handover-options svg { width: 26px; height: 26px; color: var(--green-dark); }
.handover-options strong { color: var(--ink); }
.handover-options small { color: var(--muted); font-size: 12px; line-height: 1.45; }
.handover-options b { color: var(--green-dark); font-size: 12px; }
.handover-options input:checked + span { background: #f3fcf8; border-color: var(--green); box-shadow: 0 0 0 2px rgba(0,170,108,.1); }
.delivery-location { margin-top: 14px; }
.checkout-extras { display: grid; gap: 9px; margin: 20px 0 0; padding: 0; border: 0; }
.checkout-extras legend { margin-bottom: 8px; color: var(--ink); font-size: 13px; font-weight: 800; }
.checkout-extras label { display: grid; grid-template-columns: 20px 1fr auto; align-items: center; gap: 12px; min-height: 70px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
.checkout-extras label > span { display: grid; grid-template-columns: 34px 1fr; align-items: center; }
.checkout-extras label svg { grid-row: 1 / 3; width: 25px; height: 25px; color: var(--green-dark); }
.checkout-extras label strong, .checkout-extras label small { grid-column: 2; }
.checkout-extras label small { color: var(--muted); font-size: 11px; }
.checkout-extras label b { color: var(--ink); font-size: 12px; }
.checkout-live-total { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding: 14px 16px; color: var(--muted); background: var(--soft); border-radius: 9px; font-size: 12px; }
.checkout-live-total strong { color: var(--ink); font-size: 18px; }
.checkout-alternatives { margin-top: 12px; padding: 13px; background: #fff8ec; border: 1px solid #f3d7a7; border-radius: 10px; }
.checkout-alternatives > strong { color: var(--ink); font-size: 13px; }
.checkout-alternatives > div { display: grid; gap: 7px; margin-top: 9px; }
.checkout-alternatives button { display: grid; grid-template-columns: 64px 1fr; gap: 10px; align-items: center; padding: 7px; text-align: left; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.checkout-alternatives img { width: 64px; height: 50px; object-fit: contain; }
.checkout-alternatives span { display: grid; color: var(--ink); font-weight: 700; }
.checkout-alternatives small { color: var(--muted); font-weight: 500; }
.whatsapp-submit { gap: 8px; }
.whatsapp-submit svg { width: 20px; height: 20px; }
.checkout-disclaimer { display: block; margin-top: 13px; color: var(--muted); font-size: 11px; text-align: center; }

.gallery-lightbox { position: fixed; z-index: 1300; inset: 0; display: grid; grid-template-columns: 72px minmax(0, 1fr) 72px; align-items: center; padding: 40px; color: #fff; background: rgba(2,11,18,.96); }
.gallery-lightbox figure { width: 100%; height: calc(100vh - 80px); display: grid; grid-template-rows: 1fr auto; place-items: center; margin: 0; }
.gallery-lightbox figure img { max-width: 100%; max-height: calc(100vh - 125px); object-fit: contain; }
.gallery-lightbox figcaption { padding-top: 13px; font-size: 13px; }
.gallery-lightbox-close { position: absolute; top: 18px; right: 18px; width: 46px; height: 46px; display: grid; place-items: center; color: #fff; background: rgba(255,255,255,.1); border: 0; border-radius: 50%; }
.gallery-lightbox-close svg { width: 22px; height: 22px; }
.gallery-lightbox-nav { width: 52px; height: 52px; color: #fff; background: rgba(255,255,255,.1); border: 0; border-radius: 50%; font-size: 38px; line-height: 1; }
.gallery-lightbox-nav.next { justify-self: end; }
.gallery-lightbox[hidden] { display: none; }

.article-byline { margin: 15px 0 0; color: rgba(255,255,255,.82); font-size: 13px; }
.article-related { width: min(980px, calc(100% - 32px)); margin: 30px auto 10px; padding: 36px 0; border-top: 1px solid var(--line); }
.article-related > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.article-related a { display: grid; grid-template-columns: 90px 1fr; gap: 12px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; }
.article-related img { width: 90px; height: 72px; object-fit: cover; border-radius: 7px; }
.article-related span { display: grid; align-content: center; }
.article-related strong { color: var(--ink); font-size: 13px; line-height: 1.35; }
.article-related small { color: var(--green-dark); font-size: 11px; }

@media (max-width: 800px) {
  .home-page .hero-inner h1 .hero-mobile-second { display: block; }
  .home-page .step-grid article { display: block; height: auto; min-height: 180px; padding: 20px; }
  .home-page .step-grid .step-top { margin-bottom: 18px; }
  .home-page .about-images { order: 0; }
  .home-page .about-copy { order: 1; }
  .review-grid article { scroll-snap-stop: always; }
  .article-related > div { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .photo-grid .photo-main { grid-column: 1 / -1; grid-row: 1; }
  .home-page .photo-grid > button:nth-child(n + 4) { display: none; }
  .checkout-scooter { grid-template-columns: 68px 1fr; margin-right: 38px; }
  .checkout-scooter img { width: 68px; height: 54px; }
  .checkout-progress { width: 100%; grid-template-columns: max-content 1fr max-content 1fr max-content; gap: 4px; }
  .checkout-progress > div { grid-template-columns: 28px; justify-items: center; }
  .checkout-progress > div span { width: 28px; height: 28px; }
  .checkout-progress > div small { display: none; }
  .handover-options { grid-template-columns: 1fr; }
  .handover-options label > span { min-height: 116px; grid-template-columns: 28px 1fr auto; grid-template-rows: auto auto; align-items: center; }
  .handover-options svg { grid-row: 1 / 3; }
  .handover-options strong, .handover-options small { grid-column: 2; }
  .handover-options b { grid-column: 3; grid-row: 1 / 3; }
  .gallery-lightbox { grid-template-columns: 44px minmax(0, 1fr) 44px; padding: 22px 8px; }
  .gallery-lightbox figure { height: calc(100vh - 44px); }
  .gallery-lightbox figure img { max-height: calc(100vh - 90px); }
  .gallery-lightbox-nav { width: 40px; height: 40px; font-size: 30px; }
  .gallery-lightbox-close { top: 12px; right: 12px; }
}

/* Page-builder, interaction and exact-reference completion pass. */
.product-type { display: inline-flex; align-items: center; gap: 5px; }
.product-type-icon { display: inline-flex; align-items: center; }
.product-type-icon svg, .product-type-icon img { width: 14px; height: 14px; display: block; object-fit: contain; }
.product-badge, .license-badge { display: inline-flex; align-items: center; gap: 4px; }
.product-badge svg, .license-badge svg { width: 12px; height: 12px; }
.about-copy li h3 { margin: 0; color: var(--ink); font-family: var(--font-heading); font-size: .9rem; line-height: 1.3; }
.home-page .process-note { position: static; display: flex; align-items: flex-start; gap: 7px; margin: 13px 0 0; color: var(--green-dark); font-size: 11px; line-height: 1.4; text-align: left; }
.home-page .process-note > span:first-child { width: 18px; height: 18px; flex: 0 0 18px; display: grid; place-items: center; color: white; background: var(--green); border-radius: 50%; font-size: 10px; }
.nav-dropdown.keyboard-open .nav-dropdown-menu { display: grid; }
.delivery-location > small { display: block; margin-top: 7px; color: var(--muted); font-size: 11px; line-height: 1.4; }
.checkout-extras > p { margin: -5px 0 5px; color: var(--muted); font-size: 11px; }
.request-step[data-request-step="3"] .step-actions { grid-template-columns: 1fr 1fr; }
.request-step[data-request-step="3"] .whatsapp-submit { grid-column: 1 / -1; }
.gallery-lightbox figure img { opacity: .3; transform: translateY(5px); transition: opacity .2s ease, transform .2s ease; }
.gallery-lightbox figure img.is-ready { opacity: 1; transform: none; }
.gallery-lightbox figcaption { width: min(900px, 100%); display: flex; justify-content: space-between; gap: 24px; color: rgba(255,255,255,.85); }
.gallery-lightbox figcaption span:last-child { flex: 0 0 auto; color: white; font-weight: 700; }
.faq-list details > p { interpolate-size: allow-keywords; }
.faq-list details::details-content { overflow: hidden; block-size: 0; opacity: 0; transition: block-size .22s ease, content-visibility .22s allow-discrete, opacity .18s ease; }
.faq-list details[open]::details-content { block-size: auto; opacity: 1; }

[data-builder-section][data-builder-background="soft"] { background: var(--soft) !important; }
[data-builder-section][data-builder-background="dark"] { color: white; background: #03111d !important; }
[data-builder-section][data-builder-background="brand"] { color: white; background: var(--green-dark) !important; }
[data-builder-columns] :is(.catalog-grid,.feature-grid,.license-grid,.guide-grid,.step-grid,.builder-card-grid,.builder-content-items,.price-category-grid,.category-route-grid,.category-reason-grid,.finder-comparison-grid) { grid-template-columns: repeat(var(--builder-columns), minmax(0, 1fr)) !important; }
.builder-block { padding: 72px 0; }
.builder-block .section-heading { margin-bottom: 34px; }
.builder-block .section-heading > p:not(.section-kicker) { max-width: 720px; }
.builder-card-grid,.builder-content-items { display: grid; grid-template-columns: repeat(var(--builder-columns, 3), minmax(0, 1fr)); gap: 20px; }
.builder-card-grid article,.builder-content-items article { padding: 24px; background: white; border: 1px solid var(--line); border-radius: 14px; }
.builder-card-grid img { width: 100%; aspect-ratio: 16 / 10; margin-bottom: 18px; object-fit: cover; border-radius: 10px; }
.builder-card-grid h3,.builder-content-items h3 { margin-bottom: 8px; color: var(--ink); }
.builder-card-grid p,.builder-content-items p { color: var(--muted); }
.builder-image-text > .content-shell { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 54px; }
.builder-image-text img { width: 100%; max-height: 540px; object-fit: cover; border-radius: 18px; }
.builder-cta > .content-shell { min-height: 260px; display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 48px; color: white; background: #031d30; border-radius: 22px; }
.builder-cta h2 { color: white; }
.builder-spacer { height: clamp(24px, 5vw, 80px); padding: 0; }

.finder-hero { min-height: 480px; display: grid; align-items: center; padding-top: 80px; color: white; background: linear-gradient(110deg,rgba(3,17,29,.96),rgba(3,68,83,.74)),var(--hero-image) center/cover; }
.finder-hero h1 { max-width: 760px; margin: 12px 0 18px; color: white; font-size: clamp(42px,6vw,72px); }
.finder-hero p:last-child { max-width: 700px; color: rgba(255,255,255,.82); font-size: 18px; }
.finder-tool,.finder-results,.finder-comparison { padding: 72px 0; }
.finder-tool { background: var(--soft); }
.finder-choice-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.finder-choice-grid button { min-height: 190px; display: grid; align-content: start; gap: 10px; padding: 24px; color: var(--muted); text-align: left; background: white; border: 1px solid var(--line); border-radius: 14px; cursor: pointer; transition: border-color .2s ease,box-shadow .2s ease,background-color .2s ease; }
.finder-choice-grid button:hover,.finder-choice-grid button.active { background: #f3fcf8; border-color: var(--green); box-shadow: 0 10px 28px rgba(0,170,108,.1); }
.finder-choice-grid svg { width: 34px; height: 34px; color: var(--green-dark); }
.finder-choice-grid strong { color: var(--ink); font-size: 17px; }
.finder-choice-grid span { font-size: 13px; line-height: 1.5; }
.finder-results .catalog-grid > div[hidden] { display: none; }
.finder-results .catalog-grid > div > .product-card { height: 100%; }
.finder-comparison { background: var(--soft); }
.finder-comparison-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.finder-comparison-grid a { min-height: 250px; padding: 25px; background: white; border: 1px solid var(--line); border-radius: 14px; }
.finder-comparison-grid svg { width: 34px; height: 34px; color: var(--green-dark); }
.finder-comparison-grid h3 { margin: 20px 0 10px; color: var(--ink); }
.finder-comparison-grid p { color: var(--muted); font-size: 13px; }
.finder-comparison-grid span { display: block; margin-top: 18px; color: var(--green-dark); font-size: 12px; font-weight: 800; }

:where(a,button,input,select,textarea,summary):focus-visible { outline: 3px solid rgba(0,170,108,.42); outline-offset: 3px; }
button,[role="button"],summary { cursor: pointer; }

@media (min-width: 561px) and (max-width: 800px) {
  .home-page .trust-strip { height: 161px; min-height: 161px; }
  .home-page .trust-strip .content-shell { height: 161px; min-height: 161px; display: grid; gap: 14px; }
  .home-page .review-logos { min-height: 54px; }
  .home-page .trust-points { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .home-page .process-section { height: 496px; min-height: 496px; overflow: hidden; }
  .home-page .step-grid article:nth-child(3) { height: 228px; }
  .home-page .about-section { height: 811px; min-height: 811px; overflow: hidden; }
  .finder-choice-grid,.finder-comparison-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }

  /* Measured against the authorised 768px composition. */
  .home-page .hero-inner { width: calc(100% - 40px); height: 560px; padding: 157px 0 0; }
  .home-page .hero-inner > .section-kicker { height: 14px; margin: 0 0 10px; font-size: 12px; line-height: 14px; }
  .home-page .hero-inner h1 { width: 100%; max-width: none; height: 45px; margin: 0; font-size: 40.704px; line-height: 44.7744px; letter-spacing: -1.5px; white-space: nowrap; }
  .home-page .hero-inner h1 span,
  .home-page .hero-inner h1 .hero-mobile-second,
  .home-page .hero-inner h1 .hero-accent { display: inline; }
  .home-page .hero-inner > p:not(.section-kicker) { width: calc(100% - 8px); max-width: none; height: 24px; margin: 16px 4px 0; font-size: 15px; line-height: 24px; }
  .home-page .booking-search { top: 0; width: 100%; height: 117px; min-height: 117px; max-height: 117px; grid-template-columns: 1.2fr 1fr 1fr; grid-template-rows: 44px 44px; gap: 8px; margin-top: 24px; padding: 9px 10px; border-radius: 14px; }
  .home-page .booking-search label,
  .home-page .booking-search label:first-child { height: 44px; min-height: 44px; padding: 0 10px; }
  .home-page .booking-search label:first-child { grid-column: auto; }
  .home-page .booking-search .primary-button { grid-column: 1 / -1; height: 44px; min-height: 44px; max-height: 44px; margin: 0; }
  .home-page .no-payment { height: 20px; margin-top: 8px; font-size: 12px; line-height: 20px; }

  .home-page .trust-strip .content-shell { width: calc(100% - 40px); }
  .home-page .product-showcase { padding-block: 72px; }
  .home-page .product-showcase .content-shell { width: calc(100% - 32px); }
  .home-page .product-showcase .section-heading { width: 100%; height: 105px; min-height: 105px; margin-bottom: 34px; }
  .home-page .featured-group-head,
  .home-page .featured-group:nth-child(2) .featured-group-head { width: 100%; }
  .home-page .featured-group:first-child { padding-top: 0; }
  .home-page .featured-group > .product-card,
  .home-page .featured-group:nth-child(2) > .product-card,
  .home-page .featured-group:nth-child(3) > .product-card { width: 100%; }
  .home-page .product-body { height: 334px; }
  .home-page .featured-group > .product-card { position: relative; top: -1px; }
  .home-page .product-body { padding: 17px 18px; }
  .home-page .product-body h3 { margin-bottom: 5px; font-family: "Roboto", Arial, sans-serif; font-size: 21px; font-weight: 780; line-height: 24.78px; letter-spacing: -.42px; }
  .home-page .product-spec { margin-bottom: 7px; color: rgb(96,112,132); font-size: 12.75px; line-height: 18.105px; }
  .home-page .rating-row { height: 19px; margin-bottom: 10px; font-size: 12.75px; line-height: 19px; }
  .home-page .product-benefits { height: 56px; }
  .home-page .product-price { height: 85px; margin-top: 10px; padding: 13px 14px; }
  .home-page .product-price p strong { color: rgb(20,34,56); font-size: 30px; line-height: 31.5px; }
  .home-page .product-button { height: 52px; min-height: 52px; margin-top: 11px; font-size: 13.5px; line-height: 13.5px; }

  .home-page :is(.product-showcase,.gallery-section,.process-section,.difference-section,.reviews-section,.license-section,.about-section,.guides-section) .section-heading h2,
  .home-page .about-copy h2 { color: rgb(30,41,59); font-family: "Montserrat", sans-serif; font-size: 29.184px; font-weight: 600; line-height: 35.0208px; letter-spacing: -2px; }
  .home-page :is(.product-showcase,.gallery-section,.process-section,.difference-section,.reviews-section,.license-section,.guides-section) .section-heading > p:last-child { color: rgb(99,112,132); font-family: "Roboto", sans-serif; font-size: 15px; font-weight: 400; line-height: 24px; }
  .home-page .featured-group-head h3 { color: rgb(20,34,56); font-size: 22px; font-weight: 800; line-height: 25.96px; letter-spacing: -.44px; }

  .home-page .gallery-section { padding-block: 72px; }
  .home-page .gallery-section .content-shell { width: calc(100% - 32px); }
  .home-page .gallery-heading { width: 100%; height: 123px; margin-bottom: 20px; overflow: hidden; }
  .home-page .photo-grid { width: 100%; height: 370px; grid-template-columns: 424px 303px; grid-template-rows: 180px 180px; gap: 10px; }
  .home-page .photo-grid .photo-main { grid-column: 1; grid-row: 1 / 3; }
  .home-page .photo-grid > button:nth-child(n + 4) { display: none; }

  .home-page .process-section .content-shell,
  .home-page .difference-section .content-shell,
  .home-page .reviews-section .content-shell { width: calc(100% - 32px); }
  .home-page .step-grid { width: 100%; }
  .home-page .step-grid h3 { color: rgb(20,34,56); font-size: 17px; font-weight: 800; line-height: 21.25px; letter-spacing: -.204px; }
  .home-page .difference-section .section-heading { width: calc(100% - 16px); margin-inline: auto; }
  .home-page .feature-grid { width: 100%; height: 187px; }
  .home-page .feature-grid h3 { color: rgb(20,34,56); font-size: 17px; font-weight: 800; line-height: 21.08px; letter-spacing: -.204px; }
  .home-page .reviews-section .section-heading,
  .home-page .review-grid { width: 100%; }
  .home-page .review-grid blockquote { color: rgb(20,34,56); font-family: "Roboto", sans-serif; font-size: 18px; font-weight: 850; line-height: 25.56px; letter-spacing: -.18px; }

  .home-page .license-section .content-shell { width: calc(100% - 40px); }
  .home-page .license-section .section-heading { width: 100%; }
  .home-page .license-grid { width: 100%; height: 473px; grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .home-page .license-grid a { height: 473px; min-height: 473px; }
  .home-page .license-grid h3 { color: rgb(20,34,56); font-size: 22px; font-weight: 800; line-height: 26.4px; letter-spacing: -.44px; }
  .home-page .license-section .content-shell { min-height: 687px; }

  .home-page .about-section { padding-block: 64px; }
  .home-page .about-section .content-shell { width: calc(100% - 40px); }
  .home-page .about-layout { grid-template-columns: 1fr 1fr; gap: 40px; }
  .home-page .about-images { position: relative; width: 344px; height: 320px; display: block; margin: 0; }
  .home-page .about-images img:first-child { width: 260px; height: 195px; margin: 0; }
  .home-page .about-images img:nth-child(2) { position: absolute; top: 174px; left: 227px; width: 117px; height: 146px; margin: 0; }
  .home-page .about-copy { width: 344px; min-height: 683px; }

  .home-page .faq-section .content-shell { width: calc(100% - 40px); }
  .home-page .faq-section .section-heading { width: 100%; }
  .home-page .faq-section .section-heading h2 { color: rgb(20,34,56); font-family: "Roboto", sans-serif; font-size: 32px; font-weight: 750; line-height: 35.84px; letter-spacing: -.8px; }
  .home-page .faq-section .content-shell { height: 837px; min-height: 837px; }
  .home-page .faq-list { width: 100%; height: 483px; min-height: 483px; border-top: 0; }
  .home-page .faq-list details { height: 69px; min-height: 69px; }
  .home-page .faq-list summary { height: 69px; min-height: 69px; }
  .home-page .faq-list summary { color: rgb(20,34,56); font-family: "Roboto", sans-serif; font-size: 16.5px; font-weight: 700; line-height: 23.1px; letter-spacing: -.132px; }
  .home-page .quick-answer { height: 134px; min-height: 134px; align-items: center; flex-direction: row; }

  .home-page .guides-section .content-shell { width: calc(100% - 48px); }
  .home-page .guides-section .section-heading { width: 100%; }
  .home-page .guide-grid h3 { color: rgb(30,41,59); font-size: 23.712px; font-weight: 600; line-height: 30.8256px; letter-spacing: -.47424px; }

  .home-page .final-cta { padding: 72px 0; }
  .home-page .final-cta .content-shell { width: calc(100% - 40px); height: 398px; min-height: 398px; }

  .home-page .footer-shell { width: calc(100% - 44px); }
  .home-page .footer-heading { color: rgba(203,213,225,.48); font-size: 10.5px; line-height: 14.175px; letter-spacing: 1.47px; }
  .home-page .footer-columns a { color: rgba(226,232,240,.72); font-size: 13.8px; line-height: 20.01px; }
}

@media (max-width: 800px) {
  .builder-block { padding: 48px 0; }
  .builder-image-text > .content-shell { grid-template-columns: 1fr; gap: 26px; }
  .builder-cta > .content-shell { display: grid; min-height: 0; padding: 30px 24px; }
  .finder-hero { min-height: 420px; padding-top: 66px; }
  .finder-tool,.finder-results,.finder-comparison { padding: 48px 0; }
}

@media (max-width: 560px) {
  .home-page .about-copy li h3 { font-size: 17px; }
  .home-page .process-note { margin-top: 10px; font-size: 10.5px; }
  .request-step[data-request-step="3"] .step-actions { grid-template-columns: 1fr; }
  .request-step[data-request-step="3"] .whatsapp-submit { grid-column: auto; }
  .gallery-lightbox figcaption { padding-inline: 8px; font-size: 11px; }
  [data-builder-columns] :is(.catalog-grid,.feature-grid,.license-grid,.guide-grid,.step-grid,.builder-card-grid,.builder-content-items,.price-category-grid,.category-route-grid,.category-reason-grid,.finder-comparison-grid) { grid-template-columns: 1fr !important; }
  .builder-card-grid,.builder-content-items,.finder-choice-grid,.finder-comparison-grid { grid-template-columns: 1fr; }
  .finder-choice-grid button { min-height: 142px; }
}

/* Measured against the authorised 390px composition. Keep the section heights
   above stable and align the visible content inside every mobile section. */
@media (max-width: 560px) {
  .home-page .home-hero { height: 530px; min-height: 530px; }
  .home-page .hero-inner { width: calc(100% - 28px); height: 530px; padding: 84px 0 30px; transform: none; }
  .home-page .hero-inner > .section-kicker { height: 14.4px; margin: 0 0 10px; font-family: "Roboto", sans-serif; font-size: 12px; font-weight: 800; line-height: 14.4px; }
  .home-page .hero-inner h1 { position: static; width: 100%; max-width: none; height: 76.75px; margin: 0; font-family: "Roboto", sans-serif; font-size: 31.98px; font-weight: 800; line-height: 38.376px; letter-spacing: 0; }
  .home-page .hero-inner > p:not(.section-kicker) { height: 21.28px; margin: 13px 0 0; font-size: 14px; font-weight: 450; line-height: 21.28px; }
  .home-page .booking-search { position: static; width: 100%; height: 212px; min-height: 212px; max-height: 212px; margin: 17px 0 0; }

  .home-page .trust-strip .content-shell { width: 100%; }

  .home-page .product-showcase .content-shell,
  .home-page .gallery-section .content-shell,
  .home-page .process-section .content-shell,
  .home-page .license-section .content-shell,
  .home-page .about-section .content-shell,
  .home-page .faq-section .content-shell,
  .home-page .guides-section .content-shell { width: calc(100% - 32px); }

  .home-page .product-showcase .section-heading { height: 148px; min-height: 148px; overflow: hidden; }
  .home-page .featured-group:first-child { height: 623px; min-height: 623px; margin-top: 29px; }
  .home-page .featured-group:nth-child(2) { height: 641px; min-height: 641px; }
  .home-page .featured-group:nth-child(3) { height: 620px; min-height: 620px; }
  .home-page .featured-group-head { position: relative; top: -1px; }
  .home-page .featured-group > .product-card { position: relative; top: -1px; }
  .home-page .product-image { height: 165px; }
  .home-page .product-image img {
    width: 100%;
    height: 100%;
    padding: 31px 16px 9px;
    transform: none;
    object-fit: contain;
  }
  .home-page .product-badge,
  .home-page .license-badge {
    top: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 8px;
    font-family: "Roboto", sans-serif;
    font-weight: 850;
    line-height: 1;
  }
  .home-page .product-badge {
    left: 8px;
    width: 87px;
    height: 26px;
    justify-content: center;
    color: rgb(31,41,55);
    background: rgb(246,200,76);
    font-size: 8.75px;
    letter-spacing: 0;
  }
  .home-page .license-badge {
    top: 8.5px;
    right: 8px;
    width: 113px;
    height: 25px;
    justify-content: center;
    color: rgb(15,122,83);
    background: rgba(248,250,252,.98);
    font-size: 8.25px;
    letter-spacing: .0825px;
  }
  .home-page .product-badge svg,
  .home-page .license-badge svg { width: 11px; height: 11px; }
  .home-page .product-body {
    height: 316px;
    display: flex;
    flex-direction: column;
    padding: 15px 16px;
  }
  .home-page .product-body h3 {
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 780;
    line-height: 23.6px;
    letter-spacing: -.4px;
  }
  .home-page .product-spec {
    height: 18px;
    margin: 5px 0 0;
    gap: 4px 5.58px;
    overflow: hidden;
    color: rgb(96,112,132);
    font-size: 12.25px;
    line-height: 17.395px;
  }
  .home-page .rating-row {
    height: 19px;
    min-height: 19px;
    margin: 6px 0 0;
    gap: 4px;
    font-size: 14px;
    line-height: 18.9px;
  }
  .home-page .rating-row small { font-size: 12px; line-height: 18.9px; }
  .home-page .product-benefits {
    height: 52px;
    min-height: 52px;
    margin-top: 10px;
    padding: 0;
    gap: 0;
    border-radius: 10px;
  }
  .home-page .product-benefits > span {
    height: 52px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: 8px;
  }
  .home-page .product-benefits > span:nth-child(2) { padding-left: 9px; }
  .home-page .product-benefits svg {
    width: 23px;
    height: 23px;
    padding: 5.5px;
  }
  .home-page .product-benefits small {
    display: block;
    font-size: 12px;
    font-weight: 600;
    line-height: 13.44px;
  }
  .home-page .product-benefits small strong {
    font-size: 13px;
    font-weight: 800;
    line-height: 14.56px;
  }
  .home-page .product-price {
    height: 79px;
    min-height: 79px;
    margin-top: 9px;
    padding: 12px 12px 11px;
    border-radius: 11px;
  }
  .home-page .product-price p { height: 28.35px; }
  .home-page .product-price p strong {
    font-size: 27px;
    line-height: 28.35px;
    letter-spacing: .162px;
  }
  .home-page .product-price > small {
    margin-top: 7px;
    font-size: 14px;
    font-weight: 650;
    line-height: 18.9px;
  }
  .home-page .product-button {
    height: 52px;
    min-height: 52px;
    margin-top: auto;
    padding-inline: 10px;
    border: 1px solid rgb(0,170,108);
    border-radius: 9px;
    font-size: 13px;
    line-height: 13px;
    gap: 7px;
  }

  .home-page :is(.product-showcase,.gallery-section,.process-section,.difference-section,.reviews-section,.license-section,.guides-section) .section-heading h2,
  .home-page .about-copy h2 {
    color: rgb(30,41,59);
    font-family: "Montserrat", sans-serif;
    font-size: 25.536px;
    font-weight: 600;
    line-height: 30.6432px;
    letter-spacing: -2px;
  }
  .home-page :is(.product-showcase,.gallery-section,.process-section,.difference-section,.reviews-section,.license-section,.guides-section) .section-heading > p:last-child {
    color: rgb(99,112,132);
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
  }

  .home-page .gallery-section { padding-block: 48px; }
  .home-page .gallery-heading { height: 166px; margin-bottom: 16px; overflow: hidden; }
  .home-page .gallery-heading .section-heading { margin-bottom: 11px; }
  .home-page .photo-grid { height: 336px; grid-template-rows: 210px 118px; }

  .home-page .process-section { padding-block: 49px 48px; }
  .home-page .process-section .section-heading { width: 100%; height: 144px; margin-bottom: 21px; overflow: hidden; }
  .home-page .step-grid { height: 331px; gap: 8px; }
  .home-page .step-grid article {
    height: 95px;
    min-height: 95px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-content: start;
    column-gap: 10px;
    padding: 15px;
  }
  .home-page .step-grid article:nth-child(3) { height: 124px; min-height: 124px; }
  .home-page .step-grid .step-top { width: 38px; height: 65px; grid-row: 1 / 4; display: grid; align-content: start; justify-items: center; gap: 8px; margin: 0; }
  .home-page .step-grid .step-top > span { order: 2; font-size: 10px; }
  .home-page .step-grid .step-icon { order: 1; width: 32px; height: 32px; margin: 0; }
  .home-page .step-grid h3 { align-self: start; margin: 0 0 5px; font-size: 15.5px; line-height: 19px; }
  .home-page .step-grid p { align-self: start; margin: 0; font-size: 11.75px; line-height: 17.5px; }
  .home-page .process-note { grid-column: 2; margin: 7px 0 0; font-size: 10px; line-height: 14px; }

  .home-page .soft-section.difference-section { padding-block: 49px 46px; }
  .home-page .difference-section .content-shell,
  .home-page .reviews-section .content-shell { width: 100%; }
  .home-page .difference-section .section-heading,
  .home-page .reviews-section .section-heading { width: calc(100% - 32px); margin-inline: auto; }
  .home-page .difference-section .section-heading { height: 78px; margin-bottom: 24px; overflow: hidden; }
  .home-page .difference-section .section-kicker { display: none; }
  .home-page .difference-section .section-heading h2 { height: 31px; margin: 0; white-space: nowrap; }
  .home-page .difference-section .section-heading > p:last-child { height: 40px; margin-top: 8px; overflow: hidden; }
  .home-page .feature-grid { width: calc(100% - 32px); height: 344px; display: grid; gap: 25px; margin-inline: auto; }
  .home-page .feature-grid article { height: 62px; min-height: 62px; gap: 12px; padding: 0; }
  .home-page .feature-grid article:first-child { height: 80px; min-height: 80px; }
  .home-page .difference-section .feature-grid svg { width: 42px; height: 42px; }

  .home-page .reviews-section { padding-block: 49px 44px; }
  .home-page .reviews-section .section-heading { height: 142px; margin-bottom: 24px; overflow: hidden; }
  .home-page .reviews-section .section-heading h2 { font-size: 25.536px; line-height: 30.6432px; }
  .home-page .review-viewport,
  .home-page .review-grid { width: calc(100% - 32px); margin-inline: auto; }
  .home-page .review-viewport { overflow: hidden; }
  .home-page .review-viewport .review-grid { width: 100%; margin-inline: 0; }
  .home-page .review-grid { height: 223px; }

  .home-page .license-section { padding-block: 49px 46px; }
  .home-page .license-section .section-heading { width: 100%; height: 90px; margin-bottom: 24px; overflow: hidden; }
  .home-page .license-grid { height: 784px; display: grid; gap: 16px; }
  .home-page .license-grid a,
  .home-page .license-grid a:nth-child(2),
  .home-page .license-grid a:nth-child(3) { height: 243px; min-height: 243px; padding: 22px; }
  .home-page .license-grid a:first-child { height: 266px; min-height: 266px; }
  .home-page .license-grid h3 { margin-bottom: 8px; font-family: "Montserrat", sans-serif; font-size: 20px; font-weight: 800; line-height: 24px; letter-spacing: -.4px; }

  .home-page .about-images { height: 245px; margin-bottom: 33px; }
  .home-page .about-images img:first-child { height: 188px; }
  .home-page .about-images img:nth-child(2) { top: 96px; height: 130px; }
  .home-page .about-images > span { top: 167px; }
  .home-page .about-copy { height: 535px; overflow: hidden; }

  .home-page .faq-section .content-shell { position: relative; top: 2px; }
  .home-page .faq-section .section-heading { width: 100%; height: 194px; margin-bottom: 24px; overflow: hidden; }
  .home-page .faq-section .section-heading h2 { color: rgb(20,34,56); font-family: "Roboto", sans-serif; font-size: 28px; font-weight: 750; line-height: 32.2px; letter-spacing: -.7px; }
  .home-page .faq-list { width: 100%; height: 547px; min-height: 547px; overflow: hidden; border-top: 0; }
  .home-page .faq-list details,
  .home-page .faq-list summary { height: 80px; min-height: 80px; }
  .home-page .faq-list details:nth-child(6),
  .home-page .faq-list details:nth-child(6) summary { height: 65px; min-height: 65px; }

  .home-page .guides-section { padding-block: 48px 46px; }
  .home-page .guides-section .section-heading { width: 100%; height: 120px; margin-bottom: 31px; overflow: hidden; }
  .home-page .guides-section .section-kicker { height: 14px; margin-bottom: 19px; font-size: 12px; line-height: 14px; }
  .home-page .guides-section .section-heading h2 { height: 31px; margin: 0; white-space: nowrap; }
  .home-page .guides-section .section-heading > p:last-child { height: 43px; margin-top: 12px; overflow: hidden; }
  .home-page .guide-grid { height: 1386px; display: grid; gap: 28px; }
  .home-page .guide-grid article,
  .home-page .guide-grid article:nth-child(3) { height: 452px; min-height: 452px; }
  .home-page .guide-grid article:nth-child(2) { height: 426px; min-height: 426px; }
  .home-page .guide-grid article > a {
    height: 135px;
    overflow: hidden;
  }
  .home-page .guide-grid article > a img {
    width: 100%;
    height: auto;
    min-height: 237px;
    object-fit: cover;
  }
  .home-page .guide-grid article > div {
    height: calc(100% - 136px);
    display: flex;
    flex-direction: column;
    padding: 18px 18px 20px;
  }
  .home-page .guide-grid article > div > p {
    margin: 0 0 17px;
    font-size: 10.5px;
    line-height: 13.125px;
  }
  .home-page .guide-grid h3 { font-family: "Montserrat", sans-serif; font-size: 20.064px; font-weight: 600; line-height: 26.0832px; letter-spacing: -.40128px; }
  .home-page .guide-grid article > div > span {
    min-height: 0;
    height: 42px;
    display: -webkit-box;
    margin: 8px 0 22px;
    overflow: hidden;
    font-size: 13.5px;
    line-height: 20.925px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .home-page .guide-grid article > div > a {
    display: flex;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 16px;
    font-size: 13.5px;
    font-weight: 750;
    line-height: 16.2px;
  }

  .home-page .footer-shell { padding: 0 0 24px; }
  .home-page .footer-top { height: 288px; min-height: 288px; gap: 19px; padding-bottom: 28px; overflow: hidden; transform: translateY(1px); }
  .home-page .footer-benefits { height: 173px; min-height: 173px; padding: 26px 0 53px; overflow: hidden; }
  .home-page .footer-columns { height: 659px; min-height: 659px; padding: 42px 0 60px; overflow: hidden; }
}

/* Header-only bridge between tablet and desktop layouts. The full-width
   navigation cannot fit safely in this narrow range, so use the same
   accessible menu control as the tablet layout. */
@media (min-width: 801px) and (max-width: 1023px) {
  .site-header { height: 66px; }
  .header-shell,
  .home-page .header-shell {
    width: 100%;
    height: 66px;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding-inline: 16px;
    transform: none;
  }
  .brand img { width: 150px; }
  .desktop-nav,
  .header-cta { display: none; }
  .menu-button { display: flex; }
  .home-page .menu-button { color: white; background: transparent; border: 0; }
  .home-page .site-header.scrolled .menu-button,
  .home-page .site-header.menu-open .menu-button { color: var(--ink); }
  .mobile-menu,
  .home-page .mobile-menu { top: 66px; }
}

@media (max-width: 800px) {
  .header-shell,
  .home-page .header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px;
  }
  .header-actions { gap: 7px; }
  .language-switcher { width: 110px; padding-inline: 9px; }
}

@media (max-width: 380px) {
  .brand img { width: 136px; }
  .language-switcher { width: 108px; grid-template-columns: 16px minmax(0, 1fr) 9px; gap: 6px; padding-inline: 8px; }
  .language-switcher-icon { width: 16px; height: 16px; }
  .language-current { font-size: 12px; }
  .language-switcher-chevron { width: 9px; }
}

html[lang="zh-CN"] body { font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif; }
html[lang="ko"] body { font-family: "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", Arial, sans-serif; word-break: keep-all; }

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

/* Homepage fleet: show every configured product and adapt from one to four
   columns without stretching small product sets across the full section. */
.home-page .product-showcase {
  height: auto !important;
  overflow: visible !important;
}
.home-page .product-showcase .content-shell {
  width: min(1500px, calc(100vw - 48px));
}
.home-page .featured-group,
.home-page .featured-group:first-child,
.home-page .featured-group:nth-child(2),
.home-page .featured-group:nth-child(3) {
  height: auto !important;
  min-height: 0 !important;
  margin-top: 0;
}
.home-page .featured-products-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
  margin-top: 24px;
}
.home-page .featured-products-grid[data-product-count="1"] {
  max-width: 428px;
  grid-template-columns: minmax(0, 1fr);
  margin-inline: auto;
}
.home-page .featured-products-grid[data-product-count="2"] {
  max-width: 880px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-inline: auto;
}
.home-page .featured-products-grid[data-product-count="3"] {
  max-width: 1130px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-inline: auto;
}
.home-page .featured-products-grid > .product-card {
  position: static !important;
  top: auto !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 0 !important;
  display: flex;
  flex-direction: column;
  margin: 0 !important;
}
.home-page .featured-products-grid > .product-card .product-body {
  flex: 1;
}

@media (min-width: 901px) and (max-width: 1199px) {
  .home-page .featured-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .home-page .featured-products-grid[data-product-count="1"] {
    grid-template-columns: minmax(0, 428px);
  }
  .home-page .featured-products-grid[data-product-count="2"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .home-page .product-showcase .content-shell {
    width: calc(100% - 32px);
  }
  .home-page .featured-products-grid,
  .home-page .featured-products-grid[data-product-count="2"],
  .home-page .featured-products-grid[data-product-count="3"] {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-page .featured-products-grid[data-product-count="1"] {
    max-width: 428px;
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .home-page .product-showcase .content-shell {
    width: calc(100% - 32px);
  }
  .home-page .featured-products-grid,
  .home-page .featured-products-grid[data-product-count="1"],
  .home-page .featured-products-grid[data-product-count="2"],
  .home-page .featured-products-grid[data-product-count="3"] {
    max-width: 428px;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    margin-inline: auto;
  }
}
