:root {
    --navy-950: #07162e;
    --navy-900: #0b1d3a;
    --navy-800: #102c50;
    --navy-700: #1b3a5c;
    --blue-100: #dce9f5;
    --blue-50: #edf4fa;
    --orange-600: #a84d08;
    --orange-500: #f28c28;
    --orange-100: #ffead5;
    --orange-50: #fff7ee;
    --green-600: #087a35;
    --green-500: #25d366;
    --ink: #253347;
    --muted: #607086;
    --line: #dce4ed;
    --surface: #ffffff;
    --surface-soft: #f5f8fb;
    --shadow-sm: 0 8px 30px rgba(9, 30, 61, 0.08);
    --shadow-md: 0 20px 60px rgba(9, 30, 61, 0.14);
    --radius-sm: 0.75rem;
    --radius: 1.25rem;
    --radius-lg: 2rem;
    --container: 74rem;
    --header-height: 5.5rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 8rem;
}

body {
    margin: 0;
    min-width: 20rem;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--surface);
    font-family: "Inter", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.2em;
}

button,
input,
textarea {
    color: inherit;
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--navy-900);
}

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

h1,
h2,
h3 {
    color: var(--navy-900);
    font-family: "Outfit", Arial, sans-serif;
    line-height: 1.12;
    text-wrap: balance;
}

h1 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.55rem, 5.5vw, 4.85rem);
    letter-spacing: -0.045em;
}

h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 3.7vw, 3.25rem);
    letter-spacing: -0.035em;
}

h3 {
    margin-bottom: 0.65rem;
    font-size: 1.25rem;
    letter-spacing: -0.018em;
}

p {
    margin-bottom: 1.2rem;
}

.container {
    width: min(calc(100% - 2.5rem), var(--container));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.7rem 1rem;
    color: #fff;
    background: var(--navy-900);
    border-radius: 0.5rem;
    font-weight: 700;
    transform: translateY(-180%);
}

.skip-link:focus {
    transform: translateY(0);
}

.icon {
    width: 1.35rem;
    height: 1.35rem;
    flex: 0 0 auto;
}

.icon--small {
    width: 1rem;
    height: 1rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    color: var(--navy-700);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow--light {
    color: #c8dbef;
}

.eyebrow--orange {
    color: var(--orange-600);
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
}

.button {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.76rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 0.72rem;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    color: var(--navy-950);
    background: var(--orange-500);
    box-shadow: 0 10px 25px rgba(242, 140, 40, 0.24);
}

.button--primary:hover {
    color: #fff;
    background: var(--orange-600);
}

.button--light {
    color: var(--navy-900);
    background: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}

.button--light:hover {
    background: var(--blue-50);
}

.button--outline {
    color: var(--navy-900);
    background: transparent;
    border-color: #aebdce;
}

.button--outline:hover {
    color: #fff;
    background: var(--navy-900);
    border-color: var(--navy-900);
}

.button--whatsapp {
    color: #052b16;
    background: var(--green-500);
    border-color: var(--green-500);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.2);
}

.button--whatsapp:hover {
    color: #fff;
    background: var(--green-600);
    border-color: var(--green-600);
}

.button--large {
    min-height: 3.5rem;
    padding: 0.95rem 1.45rem;
}

.button--small {
    min-height: 2.75rem;
    padding: 0.65rem 0.95rem;
    font-size: 0.86rem;
}

.text-link,
.category-card > a,
.feature-card > a,
.priority-grid article > a,
.parts-card > a,
.service-cards a {
    display: inline-flex;
    min-width: 2.75rem;
    min-height: 2.75rem;
    align-items: center;
    gap: 0.4rem;
    color: var(--navy-800);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.text-link:hover,
.category-card > a:hover,
.feature-card > a:hover,
.priority-grid article > a:hover,
.parts-card > a:hover,
.service-cards a:hover {
    color: var(--orange-600);
}

.section {
    padding-block: clamp(4.5rem, 8vw, 7rem);
}

.section--soft {
    background: var(--surface-soft);
}

.section-heading {
    max-width: 47rem;
    margin-bottom: 2.5rem;
}

.section-heading p {
    max-width: 43rem;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.06rem;
}

.section-heading--split {
    display: flex;
    max-width: none;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
}

.section-heading--split > div {
    max-width: 46rem;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading--center p {
    margin-inline: auto;
}

/* Header */
.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(11, 29, 58, 0.09);
    box-shadow: 0 4px 20px rgba(11, 29, 58, 0.04);
    backdrop-filter: blur(14px);
}

.trust-bar {
    color: #e8f1fa;
    background: var(--navy-950);
    font-size: 0.74rem;
}

.trust-bar__inner {
    display: flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.trust-bar span,
.trust-bar a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.trust-bar a {
    min-width: 2.75rem;
    min-height: 2.75rem;
    text-decoration: none;
}

.trust-bar a:hover {
    color: var(--orange-500);
}

.header-main {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    min-width: 2.75rem;
    min-height: 2.75rem;
    flex: 0 0 auto;
    align-items: center;
}

.brand img {
    width: clamp(12.5rem, 20vw, 15.25rem);
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 1.05rem;
}

.primary-nav ul {
    display: flex;
    align-items: center;
    gap: 0.08rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-nav ul a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    padding: 0.55rem 0.58rem;
    color: #405068;
    border-radius: 0.5rem;
    font-size: 0.79rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.primary-nav ul a:hover,
.primary-nav ul a[aria-current="page"] {
    color: var(--navy-900);
    background: var(--blue-50);
}

.primary-nav ul a[aria-current="page"] {
    box-shadow: inset 0 -2px var(--orange-500);
}

.nav-whatsapp {
    min-height: 2.75rem;
    padding-inline: 0.9rem;
    font-size: 0.84rem;
}

.menu-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    padding: 0.7rem;
    border: 0;
    border-radius: 0.65rem;
    background: var(--blue-50);
    cursor: pointer;
}

.menu-toggle > span[aria-hidden="true"] {
    display: block;
    width: 100%;
    height: 2px;
    margin-block: 0.3rem;
    background: var(--navy-900);
    border-radius: 99px;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(0.49rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-0.49rem) rotate(-45deg);
}

/* Home hero */
.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 78% 12%, rgba(51, 111, 170, 0.38), transparent 34%),
        linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 50%, #123f6a 100%);
}

.hero::after {
    position: absolute;
    z-index: -1;
    right: -10rem;
    bottom: -18rem;
    width: 38rem;
    height: 38rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    content: "";
}

.hero__glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.45;
}

.hero__glow--one {
    top: 12%;
    left: -8rem;
    width: 17rem;
    height: 17rem;
    background: rgba(242, 140, 40, 0.16);
}

.hero__glow--two {
    right: 28%;
    bottom: -5rem;
    width: 13rem;
    height: 13rem;
    background: rgba(37, 211, 102, 0.09);
}

.hero__grid {
    display: grid;
    min-height: 42rem;
    grid-template-columns: minmax(0, 1.13fr) minmax(25rem, 0.87fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 5.5rem);
    padding-block: clamp(4.75rem, 8vw, 7.5rem);
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    max-width: 49rem;
    color: #fff;
}

.hero h1 span,
.page-hero h1 span {
    color: var(--orange-500);
}

.hero__lead {
    max-width: 42rem;
    margin-bottom: 2rem;
    color: #d6e2ee;
    font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

.hero__secondary-link {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.75rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.hero__secondary-link:hover {
    color: var(--orange-500);
}

.hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.2rem;
    padding: 0;
    margin: 1.8rem 0 0;
    color: #c9d7e5;
    font-size: 0.84rem;
    list-style: none;
}

.hero__proof li {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.hero__proof .icon {
    color: var(--orange-500);
}

.hero-showcase {
    position: relative;
    width: min(100%, 31rem);
    height: 31rem;
    justify-self: end;
}

.hero-showcase__halo {
    position: absolute;
    inset: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.hero-showcase__halo::before,
.hero-showcase__halo::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.hero-showcase__halo::before {
    inset: 2rem;
    border: 1px dashed rgba(255, 255, 255, 0.15);
}

.hero-showcase__halo::after {
    inset: 5rem;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 70px rgba(65, 131, 192, 0.34);
}

.hero-product {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--navy-900);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
}

.hero-product--main {
    top: 6.5rem;
    left: 50%;
    width: 15rem;
    height: 17rem;
    align-items: center;
    padding: 1.5rem;
    border-radius: 7rem 7rem 2rem 2rem;
    text-align: center;
    transform: translateX(-50%);
}

.hero-product--main .hero-product__icon {
    display: grid;
    width: 8rem;
    height: 8rem;
    margin-bottom: 1rem;
    place-items: center;
    color: var(--navy-700);
    background: var(--blue-50);
    border-radius: 50%;
}

.hero-product--main .icon {
    width: 5rem;
    height: 5rem;
}

.hero-product--main > span:not(.hero-product__icon) {
    font-family: "Outfit", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.hero-product--main small {
    color: var(--muted);
}

.hero-product--top,
.hero-product--bottom {
    width: 8.75rem;
    min-height: 7rem;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.hero-product--top {
    top: 1.4rem;
    right: 0;
    transform: rotate(3deg);
}

.hero-product--bottom {
    bottom: 2.3rem;
    left: 0;
    transform: rotate(-3deg);
}

.hero-product--top .icon,
.hero-product--bottom .icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--orange-600);
}

.hero-badge {
    position: absolute;
    z-index: 3;
    right: -0.5rem;
    bottom: 3.4rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.8rem 1rem;
    color: var(--navy-900);
    background: var(--orange-500);
    border: 4px solid var(--navy-800);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    font-size: 0.78rem;
    line-height: 1.3;
}

.hero-badge .icon {
    width: 2rem;
    height: 2rem;
}

.hero-badge strong {
    display: block;
    font-size: 0.9rem;
}

/* Product and benefit cards */
.category-grid {
    display: grid;
    gap: 1rem;
}

.category-grid--home,
.category-grid--catalogue {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 1.7rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.category-card::after {
    position: absolute;
    right: -2.5rem;
    bottom: -2.5rem;
    width: 7rem;
    height: 7rem;
    background: var(--blue-50);
    border-radius: 50%;
    content: "";
    transition: transform 220ms ease;
}

.category-card:hover {
    border-color: #b7cde1;
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.category-card:hover::after {
    transform: scale(1.18);
}

.category-card > * {
    position: relative;
    z-index: 1;
}

.category-card__icon {
    display: grid;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.3rem;
    place-items: center;
    color: var(--navy-700);
    background: var(--blue-50);
    border-radius: 0.9rem;
}

.category-card__icon .icon {
    width: 2rem;
    height: 2rem;
}

.category-card p {
    flex: 1;
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.section--products {
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.parts-feature {
    display: grid;
    grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
    padding: clamp(2.2rem, 5vw, 4.5rem);
    color: #fff;
    background: linear-gradient(135deg, var(--navy-950), var(--navy-700));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.parts-feature h2 {
    color: #fff;
}

.parts-feature__content > p {
    max-width: 43rem;
    color: #d5e0eb;
}

.parts-feature__visual {
    position: relative;
    display: grid;
    min-height: 21rem;
    place-items: center;
}

.parts-feature__ring {
    position: absolute;
    inset: 1rem;
    border: 1px dashed rgba(255, 255, 255, 0.27);
    border-radius: 50%;
}

.parts-feature__ring::after {
    position: absolute;
    inset: 3rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    content: "";
}

.parts-feature__box {
    position: relative;
    z-index: 1;
    display: grid;
    width: 10rem;
    height: 10rem;
    place-items: center;
    color: var(--orange-500);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2rem;
    transform: rotate(-5deg);
}

.parts-feature__box .icon {
    width: 6rem;
    height: 6rem;
}

.parts-feature__tag {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 2.5rem;
    padding: 0.65rem 0.9rem;
    color: var(--navy-900);
    background: var(--orange-500);
    border-radius: 0.65rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    padding: 0;
    margin: 1.5rem 0 2rem;
    list-style: none;
}

.chip-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.7rem;
    color: #e7f0f8;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 99px;
    font-size: 0.77rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.benefit-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-card {
    padding: 1.8rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.benefit-card > span {
    display: grid;
    width: 3.3rem;
    height: 3.3rem;
    margin-bottom: 1.2rem;
    place-items: center;
    color: var(--navy-700);
    background: var(--blue-50);
    border-radius: 50%;
}

.benefit-card > span .icon {
    width: 1.8rem;
    height: 1.8rem;
}

.benefit-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.benefit-card--accent {
    color: #fff;
    background: var(--navy-900);
    border-color: var(--navy-900);
}

.benefit-card--accent h3 {
    color: #fff;
}

.benefit-card--accent p {
    color: #ccd9e6;
}

.benefit-card--accent > span {
    color: var(--navy-900);
    background: var(--orange-500);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.feature-card {
    position: relative;
    min-height: 21rem;
    padding: 2rem;
    overflow: hidden;
    background: var(--blue-50);
    border-radius: var(--radius);
}

.feature-card::after {
    position: absolute;
    right: -3rem;
    bottom: -3rem;
    width: 12rem;
    height: 12rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    content: "";
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-card--cook {
    background: var(--orange-50);
}

.feature-card--morning {
    background: #eef8f4;
}

.feature-card__icons {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 3rem;
    color: var(--navy-700);
}

.feature-card__icons .icon {
    width: 3.25rem;
    height: 3.25rem;
}

.feature-card > span {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--orange-600);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.feature-card p {
    color: var(--muted);
}

.section--trust,
.cta-band {
    color: #fff;
    background: linear-gradient(135deg, var(--navy-950), #123f6a);
}

.trust-panel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

.trust-panel__icon {
    display: grid;
    width: 6rem;
    height: 6rem;
    place-items: center;
    color: var(--navy-900);
    background: var(--orange-500);
    border-radius: 1.5rem;
    transform: rotate(-4deg);
}

.trust-panel__icon .icon {
    width: 3.5rem;
    height: 3.5rem;
}

.trust-panel h2,
.cta-band h2 {
    color: #fff;
}

.trust-panel p,
.cta-band p {
    max-width: 47rem;
    margin-bottom: 0;
    color: #d0dfec;
}

.visit-grid {
    display: grid;
    grid-template-columns: minmax(18rem, 0.83fr) minmax(0, 1.17fr);
    align-items: center;
    gap: clamp(2.5rem, 7vw, 6.5rem);
}

.visit-photo,
.story-photo,
.contact-showcase__photo {
    position: relative;
}

.visit-photo img,
.story-photo img,
.contact-showcase__photo img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.visit-photo > span,
.contact-showcase__photo > span {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 0.85rem;
    color: var(--navy-900);
    background: rgba(255, 255, 255, 0.94);
    border-radius: 0.65rem;
    box-shadow: var(--shadow-sm);
    font-size: 0.8rem;
    font-weight: 700;
}

.visit-content > p {
    color: var(--muted);
    font-size: 1.04rem;
}

.contact-facts,
.contact-detail-list {
    display: grid;
    gap: 1rem;
    margin: 1.8rem 0 2rem;
}

.contact-facts > div,
.contact-detail-list > div {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.contact-facts dt,
.contact-detail-list dt {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
    color: var(--navy-900);
    font-weight: 700;
}

.contact-facts dd,
.contact-detail-list dd {
    margin: 0;
    color: var(--muted);
}

.contact-facts .icon,
.contact-detail-list .icon {
    color: var(--orange-600);
}

.cta-band {
    position: relative;
    overflow: hidden;
    padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.cta-band::after {
    position: absolute;
    right: -6rem;
    bottom: -11rem;
    width: 25rem;
    height: 25rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    content: "";
}

.cta-band__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

.cta-band__inner h2 {
    margin-bottom: 0.65rem;
    font-size: clamp(1.85rem, 3vw, 2.7rem);
}

/* Internal page heroes */
.page-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 85% 20%, rgba(64, 132, 196, 0.38), transparent 30%),
        linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.page-hero::after {
    position: absolute;
    z-index: -1;
    right: -8rem;
    bottom: -18rem;
    width: 33rem;
    height: 33rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
    content: "";
}

.page-hero__grid {
    display: grid;
    min-height: 29rem;
    grid-template-columns: minmax(0, 1fr) 21rem;
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
    padding-block: clamp(4rem, 7vw, 6.25rem);
}

.page-hero h1 {
    max-width: 57rem;
    margin-bottom: 1.2rem;
    color: #fff;
    font-size: clamp(2.45rem, 5vw, 4.45rem);
}

.page-hero p {
    max-width: 48rem;
    color: #d2dfeb;
    font-size: 1.08rem;
}

.page-hero .button-group,
.page-hero > .container > div > .button {
    margin-top: 1.8rem;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.55rem;
    color: #bed0e1;
    font-size: 0.76rem;
}

.breadcrumbs a {
    min-width: 2.75rem;
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
}

.breadcrumbs a:hover {
    color: var(--orange-500);
}

.page-hero__symbol {
    position: relative;
    display: grid;
    width: 16rem;
    height: 16rem;
    justify-self: end;
    place-items: center;
    color: var(--orange-500);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.03);
}

.page-hero__symbol > .icon {
    width: 8rem;
    height: 8rem;
}

.page-hero__symbol > span {
    position: absolute;
    right: -1rem;
    bottom: 1rem;
    display: grid;
    width: 5rem;
    height: 5rem;
    place-items: center;
    color: var(--navy-900);
    background: #fff;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
}

.page-hero__symbol > span .icon {
    width: 2.6rem;
    height: 2.6rem;
}

.page-hero--products .page-hero__symbol > span:nth-of-type(1) {
    top: -0.5rem;
    right: -1rem;
    bottom: auto;
}

.page-hero--products .page-hero__symbol > span:nth-of-type(2) {
    right: auto;
    bottom: -0.5rem;
    left: -1rem;
}

.page-hero__symbol--store,
.page-hero__symbol--contact {
    color: #fff;
}

.value-strip {
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.value-strip__grid {
    display: grid;
    min-height: 5.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
}

.value-strip__grid > span {
    display: flex;
    min-height: 3.5rem;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    color: var(--muted);
    border-right: 1px solid var(--line);
    font-size: 0.84rem;
}

.value-strip__grid > span:last-child {
    border-right: 0;
}

.value-strip__grid .icon {
    color: var(--orange-600);
}

.value-strip__grid strong {
    color: var(--navy-900);
}

.availability-note {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 0.8rem;
    color: var(--navy-700) !important;
    background: var(--blue-50);
    border-radius: 0.6rem;
    font-size: 0.8rem !important;
    font-weight: 600;
}

.category-card--catalogue {
    min-height: 22rem;
}

.category-card--catalogue > div {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.category-card--catalogue .button {
    align-self: flex-start;
}

.help-panel,
.cross-link__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: clamp(2rem, 4vw, 3.2rem);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.help-panel__icon {
    display: grid;
    width: 5.5rem;
    height: 5.5rem;
    place-items: center;
    color: var(--navy-900);
    background: var(--green-500);
    border-radius: 50%;
}

.help-panel__icon .icon {
    width: 3rem;
    height: 3rem;
}

.help-panel h2,
.cross-link h2 {
    margin-bottom: 0.55rem;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.help-panel p,
.cross-link p {
    margin-bottom: 0;
    color: var(--muted);
}

.cross-link {
    padding-top: 0;
}

.cross-link__inner {
    color: #fff;
    background: var(--navy-900);
    border-color: var(--navy-900);
}

.cross-link h2 {
    color: #fff;
}

.cross-link p {
    color: #cad7e3;
}

/* Parts */
.original-seal {
    display: grid;
    width: 17rem;
    height: 17rem;
    justify-self: end;
    place-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 0 0 1rem rgba(255, 255, 255, 0.03);
}

.original-seal__icon {
    display: grid;
    width: 4.2rem;
    height: 4.2rem;
    margin: 0 auto 0.5rem;
    place-items: center;
    color: var(--navy-900);
    background: var(--orange-500);
    border-radius: 50%;
}

.original-seal__icon .icon {
    width: 2.4rem;
    height: 2.4rem;
}

.original-seal > strong {
    color: var(--orange-500);
    font-family: "Outfit", sans-serif;
    font-size: 3rem;
    line-height: 1;
}

.original-seal > span:last-child {
    margin-top: 0.35rem;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.45;
    text-transform: uppercase;
}

.model-reminder {
    background: var(--orange-50);
    border-bottom: 1px solid var(--orange-100);
}

.model-reminder__inner {
    display: flex;
    min-height: 5.5rem;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.model-reminder__inner > .icon {
    width: 2.2rem;
    height: 2.2rem;
    color: var(--orange-600);
}

.model-reminder p {
    margin: 0;
}

.parts-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.9rem;
}

.parts-card {
    display: flex;
    min-height: 13.5rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.35rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: center;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.parts-card:hover {
    border-color: #b6cce0;
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.parts-card > span {
    display: grid;
    width: 3.8rem;
    height: 3.8rem;
    margin-bottom: 1rem;
    place-items: center;
    color: var(--navy-700);
    background: var(--blue-50);
    border-radius: 50%;
}

.parts-card > span .icon {
    width: 2.1rem;
    height: 2.1rem;
}

.parts-card h3 {
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.other-lines {
    margin: 1.5rem 0 0;
    color: var(--muted);
    text-align: center;
}

.parts-types {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
}

.parts-types > div > p {
    color: var(--muted);
}

.parts-type-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.parts-type-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.15rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0.85rem;
}

.parts-type-list .icon {
    width: 1.7rem;
    height: 1.7rem;
    padding: 0.2rem;
    color: #fff;
    background: var(--green-600);
    border-radius: 50%;
}

.parts-type-list span {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.parts-type-list strong {
    display: block;
    color: var(--navy-900);
    font-size: 0.93rem;
}

.process-grid {
    display: grid;
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: process;
}

.process-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.process-grid li {
    position: relative;
    padding: 1.8rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.process-grid li:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 2.25rem;
    right: -0.75rem;
    width: 1.5rem;
    height: 1px;
    background: var(--orange-500);
    content: "";
}

.process-grid__number {
    display: inline-block;
    margin-bottom: 2.2rem;
    color: var(--orange-600);
    font-family: "Outfit", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
}

.process-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.89rem;
}

/* Guarantee */
.guarantee-mark {
    display: grid;
    width: 17rem;
    height: 17rem;
    justify-self: end;
    place-items: center;
    align-content: center;
    gap: 1rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 4rem 50% 50% 50%;
    text-align: center;
    transform: rotate(4deg);
}

.guarantee-mark > * {
    transform: rotate(-4deg);
}

.guarantee-mark .icon {
    width: 6rem;
    height: 6rem;
    color: var(--orange-500);
}

.guarantee-mark span {
    font-size: 0.85rem;
    line-height: 1.35;
    text-transform: uppercase;
}

.guarantee-mark strong {
    font-size: 1.25rem;
}

.guarantee-overview {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    align-items: center;
    gap: clamp(2.5rem, 7vw, 6rem);
}

.guarantee-overview > div > p {
    color: var(--muted);
    font-size: 1.02rem;
}

.document-card {
    padding: clamp(2rem, 4vw, 3rem);
    background: var(--orange-50);
    border: 1px solid var(--orange-100);
    border-radius: var(--radius-lg);
}

.document-card > span {
    display: grid;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
    place-items: center;
    color: var(--navy-900);
    background: var(--orange-500);
    border-radius: 1rem;
}

.document-card > span .icon {
    width: 2.3rem;
    height: 2.3rem;
}

.document-card p {
    margin: 0;
    color: var(--muted);
}

.support-split {
    display: grid;
    grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: clamp(2.5rem, 7vw, 6rem);
}

.support-split__visual {
    display: flex;
    min-height: 18rem;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    padding: 2rem;
    color: #fff;
    background: linear-gradient(135deg, var(--navy-950), var(--navy-700));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.support-split__visual > span {
    display: grid;
    width: 6rem;
    height: 6rem;
    place-items: center;
    color: var(--navy-900);
    background: var(--orange-500);
    border-radius: 50%;
}

.support-split__visual > span .icon {
    width: 3.4rem;
    height: 3.4rem;
}

.support-split__visual small,
.support-split__visual strong {
    display: block;
}

.support-split__visual small {
    color: #cddce9;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.support-split__visual strong {
    font-family: "Outfit", sans-serif;
    font-size: 1.55rem;
}

.support-split > div:last-child > p {
    color: var(--muted);
}

.check-list {
    display: grid;
    gap: 0.75rem;
    padding: 0;
    margin: 1.5rem 0 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
}

.check-list .icon {
    width: 1.45rem;
    height: 1.45rem;
    padding: 0.18rem;
    color: #fff;
    background: var(--green-600);
    border-radius: 50%;
}

.section--faq {
    background: var(--surface-soft);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(2rem, 6vw, 5rem);
}

.faq-intro {
    align-self: start;
    position: sticky;
    top: 9.5rem;
}

.faq-intro p {
    color: var(--muted);
}

.faq-list {
    display: grid;
    gap: 0.75rem;
}

.faq-list details {
    padding: 0 1.35rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0.9rem;
}

.faq-list details[open] {
    border-color: #b8cee1;
    box-shadow: var(--shadow-sm);
}

.faq-list summary {
    position: relative;
    min-height: 4.5rem;
    padding: 1.2rem 2.4rem 1.2rem 0;
    color: var(--navy-900);
    font-family: "Outfit", sans-serif;
    font-size: 1.04rem;
    font-weight: 700;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary > span,
.faq-list summary > span::after {
    position: absolute;
    top: 50%;
    right: 0.1rem;
    width: 1rem;
    height: 2px;
    background: var(--orange-600);
    content: "";
    transform: translateY(-50%);
}

.faq-list summary > span::after {
    top: 0;
    right: 0;
    transform: rotate(90deg);
    transition: transform 180ms ease;
}

.faq-list details[open] summary > span::after {
    transform: rotate(0);
}

.faq-list details p {
    padding: 0 0 1.3rem;
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

/* About and service */
.story-grid {
    display: grid;
    grid-template-columns: minmax(18rem, 0.86fr) minmax(0, 1.14fr);
    align-items: center;
    gap: clamp(2.5rem, 7vw, 6rem);
}

.story-photo__badge {
    position: absolute;
    right: -1.4rem;
    bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.8rem 1rem;
    color: #fff;
    background: var(--navy-900);
    border: 3px solid #fff;
    border-radius: 0.85rem;
    box-shadow: var(--shadow-md);
}

.story-photo__badge .icon {
    color: var(--orange-500);
}

.story-photo__badge span,
.story-photo__badge strong {
    display: block;
    font-size: 0.74rem;
    line-height: 1.3;
}

.story-photo__badge strong {
    font-size: 0.9rem;
}

.story-content > p {
    color: var(--muted);
    font-size: 1.01rem;
}

.story-content blockquote {
    margin: 1.8rem 0 0;
    padding: 1.1rem 0 1.1rem 1.3rem;
    color: var(--navy-800);
    border-left: 4px solid var(--orange-500);
    font-family: "Outfit", sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
}

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

.priority-grid article {
    position: relative;
    min-height: 22rem;
    padding: 2rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.priority-grid__number {
    position: absolute;
    top: 0.7rem;
    right: 1.2rem;
    color: var(--blue-100);
    font-family: "Outfit", sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.priority-grid__icon {
    display: grid;
    width: 4rem;
    height: 4rem;
    margin: 2.2rem 0 2rem;
    place-items: center;
    color: var(--navy-700);
    background: var(--blue-50);
    border-radius: 1rem;
}

.priority-grid__icon .icon {
    width: 2.3rem;
    height: 2.3rem;
}

.priority-grid p {
    color: var(--muted);
    font-size: 0.9rem;
}

.customer-layout,
.service-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    align-items: start;
    gap: clamp(2rem, 7vw, 6rem);
}

.customer-layout > div:first-child > p,
.service-intro > div:first-child > p {
    color: var(--muted);
}

.customer-cards,
.service-cards {
    display: grid;
    gap: 1rem;
}

.customer-cards article,
.service-cards article {
    display: flex;
    gap: 1.1rem;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.customer-cards article > .icon,
.service-cards article > .icon {
    width: 2.5rem;
    height: 2.5rem;
    flex: 0 0 auto;
    padding: 0.3rem;
    color: var(--navy-700);
    background: var(--blue-50);
    border-radius: 0.7rem;
}

.customer-cards h3,
.service-cards h3 {
    margin-bottom: 0.35rem;
}

.customer-cards p,
.service-cards p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.service-cards a {
    margin-top: 0.4rem;
}

/* Contact */
.contact-showcase {
    display: grid;
    grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(2.5rem, 7vw, 6rem);
}

.contact-detail-list dd a {
    display: inline-flex;
    min-width: 2.75rem;
    min-height: 2.75rem;
    align-items: center;
    color: var(--navy-800);
    font-weight: 700;
}

.map-layout {
    display: grid;
    grid-template-columns: minmax(15rem, 0.58fr) minmax(0, 1.42fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
}

.map-layout > div:first-child > p {
    color: var(--muted);
}

.map-frame {
    min-width: 0;
    padding: 0.55rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 26rem;
    border: 0;
    border-radius: 0.85rem;
}

.message-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: clamp(2rem, 7vw, 6rem);
}

.message-layout > div:first-child > p {
    color: var(--muted);
}

.message-note {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding: 1rem;
    color: #15572d;
    background: #e8f9ee;
    border: 1px solid #bde8cc;
    border-radius: 0.8rem;
}

.message-note > .icon {
    width: 2.2rem;
    height: 2.2rem;
}

.message-note span,
.message-note strong {
    display: block;
    font-size: 0.8rem;
    line-height: 1.45;
}

.message-note strong {
    font-size: 0.9rem;
}

.contact-form {
    padding: clamp(1.6rem, 4vw, 2.5rem);
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.no-js-contact {
    display: none;
    padding: clamp(1.6rem, 4vw, 2.5rem);
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.no-js-contact p {
    color: var(--muted);
}

.no-js .no-js-contact {
    display: block;
}

.no-js .contact-form {
    display: none;
}

.form-field {
    margin-bottom: 1.25rem;
}

.form-field label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--navy-900);
    font-size: 0.86rem;
    font-weight: 700;
}

.form-field input,
.form-field textarea {
    width: 100%;
    min-height: 3.25rem;
    padding: 0.78rem 0.9rem;
    color: var(--ink);
    background: #fff;
    border: 1px solid #bdc9d6;
    border-radius: 0.65rem;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field textarea {
    min-height: 9rem;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--navy-700);
    box-shadow: 0 0 0 3px rgba(27, 58, 92, 0.12);
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
    box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--navy-900);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #7d8999;
}

.form-feedback {
    min-height: 1.5rem;
    margin: -0.5rem 0 0.8rem;
    color: #a43b24;
    font-size: 0.82rem;
    font-weight: 600;
}

/* 404 */
.error-page {
    display: grid;
    min-height: 38rem;
    place-items: center;
    padding-block: 5rem;
    background: var(--surface-soft);
}

.error-page__inner {
    max-width: 48rem;
    text-align: center;
}

.error-page__code {
    margin-bottom: -1rem;
    color: var(--blue-100);
    font-family: "Outfit", sans-serif;
    font-size: clamp(7rem, 20vw, 13rem);
    font-weight: 700;
    letter-spacing: -0.08em;
    line-height: 0.75;
}

.error-page h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.error-page p {
    max-width: 38rem;
    margin-inline: auto;
    color: var(--muted);
}

.error-page .button-group {
    justify-content: center;
    margin-top: 2rem;
}

/* Footer */
.site-footer {
    padding-top: 4.5rem;
    color: #bfcddd;
    background: var(--navy-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.7fr 1fr 0.95fr;
    gap: clamp(2rem, 5vw, 4rem);
    padding-bottom: 3.5rem;
}

.footer-brand img {
    width: 13rem;
    padding: 0.55rem;
    background: #fff;
    border-radius: 0.65rem;
}

.footer-brand > p {
    max-width: 22rem;
    margin: 1.4rem 0 1rem;
    font-size: 0.86rem;
}

.footer-trust,
.footer-action {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.footer-trust {
    color: var(--orange-500);
    font-size: 0.73rem;
    font-weight: 700;
}

.site-footer h2 {
    margin-bottom: 1.2rem;
    color: #fff;
    font-size: 1rem;
}

.site-footer address,
.site-footer p {
    font-size: 0.82rem;
    font-style: normal;
}

.footer-links {
    display: grid;
    gap: 0.3rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links a,
.footer-action {
    min-width: 2.75rem;
    min-height: 2.75rem;
    color: #c3d0de;
    font-size: 0.82rem;
    text-decoration: none;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover,
.footer-action:hover {
    color: var(--orange-500);
}

.footer-bottom {
    display: flex;
    min-height: 4.2rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: #8799ac;
    font-size: 0.74rem;
}

.whatsapp-float {
    position: fixed;
    z-index: 90;
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
    display: inline-flex;
    min-height: 3.5rem;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.05rem;
    color: #052b16;
    background: var(--green-500);
    border: 2px solid #fff;
    border-radius: 99px;
    box-shadow: 0 14px 35px rgba(8, 43, 21, 0.28);
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease;
}

.whatsapp-float:hover {
    color: #fff;
    background: var(--green-600);
    transform: translateY(-3px);
}

/* Responsive navigation */
@media (max-width: 68.75rem) {
    .menu-toggle {
        display: block;
        flex: 0 0 auto;
    }

    .primary-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: flex;
        max-height: calc(100vh - 7rem);
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1.15rem max(1.25rem, calc((100% - var(--container)) / 2));
        overflow-y: auto;
        background: #fff;
        border-top: 1px solid var(--line);
        box-shadow: 0 20px 35px rgba(9, 30, 61, 0.16);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-0.5rem);
        visibility: hidden;
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    .primary-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }

    .primary-nav ul {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.25rem;
    }

    .primary-nav ul a {
        width: 100%;
        min-height: 3rem;
        padding-inline: 0.8rem;
        font-size: 0.9rem;
    }

    .nav-whatsapp {
        align-self: stretch;
    }

    .no-js .header-main {
        flex-wrap: wrap;
        padding-bottom: 0.75rem;
    }

    .no-js .menu-toggle {
        display: none;
    }

    .no-js .primary-nav {
        position: static;
        max-height: none;
        flex: 1 0 100%;
        padding: 0;
        border: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        visibility: visible;
    }

    .category-grid--home,
    .category-grid--catalogue {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-card--catalogue {
        min-height: 20rem;
    }

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

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

@media (max-width: 56.25rem) {
    .hero__grid {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-bottom: 4rem;
    }

    .hero__content {
        max-width: 47rem;
    }

    .hero-showcase {
        width: min(100%, 32rem);
        justify-self: center;
    }

    .parts-feature,
    .visit-grid,
    .guarantee-overview,
    .support-split,
    .story-grid,
    .contact-showcase,
    .parts-types {
        grid-template-columns: 1fr;
    }

    .parts-feature__visual {
        width: min(100%, 25rem);
        justify-self: center;
    }

    .story-photo__badge {
        right: 0.75rem;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 18rem;
    }

    .feature-card__icons {
        margin-bottom: 2rem;
    }

    .trust-panel,
    .help-panel,
    .cross-link__inner {
        grid-template-columns: auto 1fr;
    }

    .trust-panel > .button,
    .help-panel > .button,
    .cross-link__inner > .button {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .page-hero__grid {
        min-height: auto;
        grid-template-columns: 1fr auto;
    }

    .page-hero__symbol,
    .original-seal,
    .guarantee-mark {
        width: 12rem;
        height: 12rem;
    }

    .page-hero__symbol > .icon {
        width: 6rem;
        height: 6rem;
    }

    .priority-grid,
    .process-grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid--four li:nth-child(2)::after {
        display: none;
    }

    .customer-layout,
    .service-intro,
    .faq-layout,
    .map-layout,
    .message-layout {
        grid-template-columns: 1fr;
    }

    .faq-intro {
        position: static;
    }

    .map-layout > div:first-child {
        max-width: 40rem;
    }

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

@media (max-width: 43.75rem) {
    .container {
        width: min(calc(100% - 2rem), var(--container));
    }

    .trust-bar__inner {
        justify-content: center;
    }

    .trust-bar a {
        display: none;
    }

    .header-main {
        min-height: 4.8rem;
    }

    .brand img {
        width: min(12.25rem, 60vw);
    }

    .primary-nav ul {
        grid-template-columns: 1fr;
    }

    .section {
        padding-block: 4rem;
    }

    .section-heading--split {
        display: block;
    }

    .section-heading--split .text-link,
    .section-heading--split .availability-note {
        margin-top: 1rem;
    }

    .button-group {
        align-items: stretch;
        flex-direction: column;
    }

    .button-group .button {
        width: 100%;
    }

    .hero__grid {
        gap: 1.5rem;
        padding-top: 3.8rem;
    }

    .hero h1 {
        font-size: clamp(2.35rem, 12vw, 3.4rem);
    }

    .hero__proof {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-showcase {
        height: 23rem;
    }

    .hero-showcase__halo {
        inset: 2rem;
    }

    .hero-product--main {
        top: 4.6rem;
        width: 11rem;
        height: 13rem;
        padding: 1rem;
    }

    .hero-product--main .hero-product__icon {
        width: 5.7rem;
        height: 5.7rem;
        margin-bottom: 0.65rem;
    }

    .hero-product--main .icon {
        width: 3.6rem;
        height: 3.6rem;
    }

    .hero-product--main > span:not(.hero-product__icon) {
        font-size: 1rem;
    }

    .hero-product--top,
    .hero-product--bottom {
        width: 7rem;
        min-height: 5.6rem;
        padding: 0.7rem;
        font-size: 0.68rem;
    }

    .hero-product--top .icon,
    .hero-product--bottom .icon {
        width: 1.9rem;
        height: 1.9rem;
    }

    .hero-product--top {
        top: 1rem;
        right: 0.2rem;
    }

    .hero-product--bottom {
        bottom: 1.5rem;
        left: 0.2rem;
    }

    .hero-badge {
        right: 0;
        bottom: 1.5rem;
        padding: 0.55rem 0.65rem;
    }

    .category-grid--home,
    .category-grid--catalogue,
    .benefit-grid,
    .benefit-grid--three,
    .parts-type-list,
    .priority-grid,
    .process-grid--three,
    .process-grid--four {
        grid-template-columns: 1fr;
    }

    .category-card,
    .category-card--catalogue {
        min-height: auto;
    }

    .parts-feature {
        padding: 1.5rem;
        border-radius: var(--radius);
    }

    .parts-feature__visual {
        min-height: 17rem;
    }

    .benefit-card,
    .priority-grid article {
        min-height: auto;
    }

    .trust-panel,
    .help-panel,
    .cross-link__inner {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .trust-panel__icon,
    .help-panel__icon {
        width: 4.5rem;
        height: 4.5rem;
    }

    .trust-panel > .button,
    .help-panel > .button,
    .cross-link__inner > .button {
        width: 100%;
        justify-self: stretch;
    }

    .page-hero__grid {
        display: block;
        padding-block: 3.5rem;
    }

    .page-hero h1 {
        font-size: clamp(2.3rem, 11vw, 3.25rem);
    }

    .page-hero__symbol,
    .original-seal,
    .guarantee-mark {
        display: none;
    }

    .value-strip__grid {
        grid-template-columns: 1fr;
        padding-block: 0.65rem;
    }

    .value-strip__grid > span {
        justify-content: flex-start;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .value-strip__grid > span:last-child {
        border-bottom: 0;
    }

    .model-reminder__inner {
        align-items: flex-start;
        padding-block: 1rem;
        text-align: left;
    }

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

    .parts-card {
        min-height: 12rem;
        padding: 1rem 0.65rem;
    }

    .process-grid li:not(:last-child)::after {
        display: none;
    }

    .support-split__visual {
        min-height: 14rem;
        flex-direction: column;
        text-align: center;
    }

    .story-photo__badge {
        right: 0.7rem;
        bottom: 0.7rem;
    }

    .map-frame iframe {
        height: 21rem;
    }

    .contact-form {
        padding: 1.3rem;
        border-radius: var(--radius);
    }

    .cta-band__inner {
        align-items: stretch;
        flex-direction: column;
    }

    .cta-band__inner .button {
        width: 100%;
    }

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 1rem;
    }

    .whatsapp-float {
        width: 3.5rem;
        padding: 0;
        justify-content: center;
    }

    .whatsapp-float span {
        display: none;
    }
}

@media (max-width: 23.75rem) {
    .container {
        width: min(calc(100% - 1.5rem), var(--container));
    }

    .brand img {
        width: 10.9rem;
    }

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

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    .trust-bar,
    .menu-toggle,
    .primary-nav,
    .whatsapp-float,
    .button,
    .cta-band,
    .map-frame {
        display: none !important;
    }

    .site-header {
        position: static;
        box-shadow: none;
    }

    .section,
    .page-hero__grid,
    .hero__grid {
        min-height: auto;
        padding-block: 1.5rem;
    }

    .page-hero,
    .hero,
    .section--trust,
    .parts-feature,
    .cross-link__inner {
        color: #000;
        background: #fff;
    }

    .page-hero h1,
    .hero h1,
    .parts-feature h2,
    .cross-link h2 {
        color: #000;
    }
}
