:root {
    --color-blush: #f8d7e3;
    --color-rose: #e98ba8;
    --color-rose-dark: #cf6f8e;
    --color-rose-ink: #9d4868;
    --color-white: #ffffff;
    --color-soft: #f6f6f6;
    --color-ivory: #fffafb;
    --color-leaf: #a8b5a2;
    --color-leaf-dark: #75836f;
    --color-text: #4a3a3f;
    --color-muted: #74676b;
    --color-line: rgba(233, 139, 168, 0.2);
    --shadow-soft: 0 28px 70px rgba(74, 58, 63, 0.13);
    --shadow-card: 0 24px 58px rgba(116, 103, 107, 0.14);
    --shadow-glow: 0 18px 50px rgba(233, 139, 168, 0.24);
    --radius: 8px;
    --container: 1180px;
    --header-height: 78px;
    --font-serif: "Playfair Display", Georgia, serif;
    --font-sans: "Inter", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-text);
    background:
        linear-gradient(180deg, rgba(255, 250, 251, 0.96), rgba(255, 255, 255, 0.98) 38rem),
        radial-gradient(circle at 6% 10%, rgba(248, 215, 227, 0.58), transparent 30rem),
        radial-gradient(circle at 94% 16%, rgba(168, 181, 162, 0.2), transparent 28rem),
        var(--color-ivory);
    font-family: var(--font-sans);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    transform: translateY(-140%);
    border-radius: var(--radius);
    background: var(--color-text);
    color: var(--color-white);
    padding: 10px 14px;
    transition: transform 180ms ease;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 250, 251, 0.82);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(20px);
    transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
    border-color: rgba(233, 139, 168, 0.16);
    box-shadow: 0 16px 40px rgba(74, 58, 63, 0.08);
    background: rgba(255, 255, 255, 0.94);
}

.navbar {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    max-width: 230px;
}

.brand__logo {
    width: 162px;
    object-fit: contain;
}

.nav-toggle {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(233, 139, 168, 0.32);
    border-radius: var(--radius);
    background: var(--color-white);
    color: var(--color-text);
    cursor: pointer;
}

.nav-toggle__line {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-panel {
    position: fixed;
    inset: var(--header-height) 16px auto;
    display: grid;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(233, 139, 168, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
}

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

.nav-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 9px 0;
    color: var(--color-muted);
    font-size: 0.95rem;
    font-weight: 700;
    transition: color 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--color-rose-dark);
}

.btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 13px 20px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-rose), var(--color-rose-ink));
    color: var(--color-white);
    box-shadow: var(--shadow-glow);
}

.btn--primary:hover,
.btn--primary:focus-visible {
    background: linear-gradient(135deg, var(--color-rose-dark), var(--color-rose-ink));
    box-shadow: 0 22px 44px rgba(233, 139, 168, 0.34);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.64);
    border-color: rgba(74, 58, 63, 0.14);
    color: var(--color-text);
    box-shadow: 0 12px 30px rgba(74, 58, 63, 0.06);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
    background: var(--color-white);
    border-color: var(--color-rose);
}

.btn--soft {
    min-height: 40px;
    padding: 10px 20px;
    background: rgba(233, 139, 168, 0.13);
    color: var(--color-rose-dark);
}

.btn--soft:hover,
.btn--soft:focus-visible {
    background: var(--color-rose);
    color: var(--color-white);
}

.btn--large {
    width: 100%;
    min-height: 50px;
    padding-inline: 22px;
}

.btn--nav {
    width: 100%;
}

.section-hero {
    position: relative;
    overflow: hidden;
    padding: 58px 0 42px;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.94), rgba(255, 245, 248, 0.88) 48%, rgba(248, 215, 227, 0.44)),
        radial-gradient(circle at 8% 92%, rgba(233, 139, 168, 0.16), transparent 22rem),
        linear-gradient(0deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0));
}

.section-hero::before {
    content: "";
    position: absolute;
    inset: 22px 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(233, 139, 168, 0.26), transparent);
}

.section-hero::after {
    content: "";
    position: absolute;
    right: -9rem;
    bottom: -12rem;
    width: 28rem;
    height: 28rem;
    border: 1px solid rgba(233, 139, 168, 0.18);
    border-radius: 999px;
    pointer-events: none;
}

.hero__glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 78%, rgba(233, 139, 168, 0.12), transparent 22rem),
        radial-gradient(circle at 78% 15%, rgba(168, 181, 162, 0.2), transparent 24rem);
    pointer-events: none;
}

.hero__grid {
    position: relative;
    display: grid;
    align-items: center;
    gap: 34px;
}

.hero__content {
    max-width: 640px;
    margin-inline: auto;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    color: var(--color-rose-ink);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
    opacity: 0.56;
}

.hero__content .eyebrow {
    justify-content: center;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--color-text);
}

h1,
h2 {
    font-family: var(--font-serif);
    line-height: 1.05;
}

h1 {
    max-width: 11ch;
    margin-inline: auto;
    font-size: clamp(3rem, 14vw, 5.8rem);
    letter-spacing: 0;
}

h2 {
    font-size: clamp(2.12rem, 8vw, 3.8rem);
    letter-spacing: 0;
}

h3 {
    font-size: 1.1rem;
    line-height: 1.25;
}

.hero__text {
    max-width: 520px;
    margin: 22px auto 0;
    color: var(--color-muted);
    font-size: 1.12rem;
    line-height: 1.75;
}

.hero__actions {
    display: grid;
    gap: 12px;
    margin-top: 32px;
}

.hero__visual {
    position: relative;
    min-height: 390px;
    display: grid;
    align-items: end;
    max-width: 560px;
    margin-inline: auto;
}

.hero__visual::before {
    content: "";
    position: absolute;
    inset: 7% -5% -4% 8%;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 30px 80px rgba(74, 58, 63, 0.08);
    transform: rotate(2deg);
}

.hero__visual::after {
    content: "";
    position: absolute;
    left: -12px;
    top: 34px;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    background: rgba(248, 215, 227, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.hero__image {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 390px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    object-position: center;
}

.hero__badge {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    max-width: 188px;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 30px rgba(74, 58, 63, 0.12);
    backdrop-filter: blur(12px);
}

.hero__badge span,
.hero__badge strong {
    display: block;
}

.hero__badge span {
    color: var(--color-muted);
    font-size: 0.78rem;
}

.hero__badge strong {
    color: var(--color-text);
    font-size: 1rem;
}

.image-placeholder {
    position: relative;
    min-height: 220px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(233, 139, 168, 0.2);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.86) 0 8%, transparent 9% 100%),
        radial-gradient(circle at 62% 40%, rgba(233, 139, 168, 0.32) 0 12%, transparent 13% 100%),
        radial-gradient(circle at 48% 66%, rgba(168, 181, 162, 0.36) 0 13%, transparent 14% 100%),
        linear-gradient(135deg, #fff7fa, #f8d7e3 52%, #ffffff);
    color: var(--color-text);
    object-fit: cover;
}

.image-placeholder::before,
.image-placeholder::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(1px);
}

.image-placeholder::before {
    width: 98px;
    height: 98px;
    background: rgba(233, 139, 168, 0.22);
    top: 18%;
    left: 18%;
}

.image-placeholder::after {
    width: 124px;
    height: 124px;
    background: rgba(168, 181, 162, 0.18);
    right: 14%;
    bottom: 12%;
}

.image-placeholder span {
    position: relative;
    z-index: 1;
    max-width: 16ch;
    padding: 10px 12px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.7);
    color: var(--color-muted);
    font-size: 0.86rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 10px 26px rgba(74, 58, 63, 0.08);
}

.image-placeholder--hero {
    min-height: 360px;
}

.trust-strip {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.84);
    border-block: 1px solid var(--color-line);
    backdrop-filter: blur(12px);
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.benefit {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(248, 215, 227, 0.22));
    border: 1px solid rgba(233, 139, 168, 0.12);
    text-align: center;
}

.benefit__icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: var(--radius);
    background: var(--color-white);
    color: var(--color-rose-dark);
    box-shadow: 0 10px 20px rgba(233, 139, 168, 0.14);
}

.benefit h2 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.25;
}

@media (max-width: 380px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    h1 {
        font-size: clamp(2.55rem, 13vw, 3.1rem);
    }

    .hero__text,
    .section-heading p:last-child,
    .final-cta p:not(.eyebrow) {
        font-size: 0.98rem;
    }

    .product-card__body h3,
    .testimonial-card blockquote {
        font-size: 1.22rem;
    }
}

.section {
    padding: 80px 0;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading .eyebrow {
    justify-content: center;
}

.section-heading p:last-child {
    max-width: 600px;
    margin: 16px auto 0;
    color: var(--color-muted);
    font-size: 1rem;
}

.catalog {
    background:
        radial-gradient(circle at 8% 10%, rgba(248, 215, 227, 0.36), transparent 24rem),
        radial-gradient(circle at 90% 88%, rgba(168, 181, 162, 0.15), transparent 26rem),
        linear-gradient(180deg, rgba(255, 250, 251, 0.95), rgba(255, 255, 255, 0.98)),
        var(--color-white);
}

.catalog__grid,
.services__grid,
.process__grid,
.testimonials__grid {
    display: grid;
    gap: 20px;
}

.product-card,
.service-card,
.step-card,
.testimonial-card {
    border: 1px solid rgba(233, 139, 168, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 42px rgba(74, 58, 63, 0.075);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.product-card:hover,
.service-card:hover,
.step-card:hover,
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(233, 139, 168, 0.4);
    box-shadow: var(--shadow-card);
}

.product-card {
    overflow: hidden;
}

.services {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 250, 0.92)),
        radial-gradient(circle at 12% 18%, rgba(168, 181, 162, 0.14), transparent 24rem),
        var(--color-ivory);
}

.service-card {
    overflow: hidden;
}

.service-card__media {
    aspect-ratio: 1 / 0.78;
    overflow: hidden;
    background: #fff5f8;
}

.service-card__image {
    width: 100%;
    height: 100%;
    min-height: 0;
    border: 0;
    border-radius: 0;
    object-fit: cover;
    object-position: center;
    transition: transform 260ms ease;
}

.service-card:hover .service-card__image {
    transform: scale(1.04);
}

.service-card__body {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.service-card__body h3 {
    font-family: var(--font-serif);
    font-size: 1.45rem;
}

.service-card__body p {
    margin: 0;
    color: var(--color-muted);
}

.service-card__body .btn {
    width: fit-content;
    margin-top: 4px;
}

.product-card__media {
    aspect-ratio: 1 / 1.02;
    overflow: hidden;
    background: #fff5f8;
}

.product-card__image {
    width: 100%;
    height: 100%;
    min-height: 0;
    border: 0;
    border-radius: 0;
    object-fit: cover;
    object-position: center;
    transition: transform 260ms ease;
}

.product-card:hover .product-card__image {
    transform: scale(1.04);
}

.product-card__body {
    display: grid;
    gap: 12px;
    justify-items: center;
    padding: 20px 18px 22px;
    text-align: center;
}

.product-card__body h3 {
    font-family: var(--font-serif);
    font-size: 1.34rem;
}

.product-card__body p {
    margin: 0;
    color: var(--color-rose-ink);
    font-weight: 700;
}

.process {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(246, 246, 246, 0.94)),
        radial-gradient(circle at 10% 18%, rgba(168, 181, 162, 0.15), transparent 22rem),
        radial-gradient(circle at 90% 82%, rgba(248, 215, 227, 0.45), transparent 24rem),
        var(--color-soft);
}

.step-card {
    min-height: 164px;
    padding: 24px;
}

.step-card__heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.step-card__number {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(248, 215, 227, 0.82), rgba(255, 255, 255, 0.9));
    color: var(--color-rose-ink);
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(233, 139, 168, 0.12);
}

.step-card p,
.testimonial-card blockquote {
    margin: 10px 0 0;
    color: var(--color-muted);
}

.testimonials {
    background:
        radial-gradient(circle at 15% 15%, rgba(248, 215, 227, 0.26), transparent 21rem),
        var(--color-white);
}

.testimonial-card {
    display: grid;
    justify-items: start;
    padding: 28px;
}

.testimonial-card__photo {
    width: 74px;
    height: 74px;
    min-height: 74px;
    margin-bottom: 14px;
    border-radius: 999px;
    object-fit: cover;
    border: 3px solid rgba(248, 215, 227, 0.72);
}

.image-placeholder--avatar span {
    width: 100%;
    padding: 0;
    background: transparent;
    box-shadow: none;
    color: var(--color-rose-dark);
    font-size: 0.72rem;
}

.stars {
    color: #e6a050;
    font-size: 0.98rem;
    letter-spacing: 0;
}

.testimonial-card blockquote {
    font-family: var(--font-serif);
    font-size: 1.38rem;
    line-height: 1.25;
}

.testimonial-card cite {
    margin-top: 16px;
    color: var(--color-text);
    font-style: normal;
    font-weight: 800;
}

.final-cta {
    position: relative;
    overflow: hidden;
    padding: 86px 0;
    background:
        linear-gradient(135deg, rgba(74, 58, 63, 0.78), rgba(157, 72, 104, 0.62)),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.38), transparent 22rem),
        radial-gradient(circle at 16% 92%, rgba(168, 181, 162, 0.32), transparent 20rem),
        var(--color-rose);
    color: var(--color-white);
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius);
    pointer-events: none;
}

.final-cta__inner {
    max-width: 780px;
    text-align: center;
}

.final-cta .eyebrow,
.final-cta h2,
.final-cta p {
    color: var(--color-white);
}

.final-cta p:not(.eyebrow) {
    margin: 18px 0 28px;
    font-size: 1.08rem;
}

.final-cta .btn {
    background: var(--color-white);
    color: var(--color-rose-dark);
    box-shadow: 0 16px 36px rgba(74, 58, 63, 0.18);
}

.site-footer {
    padding: 48px 0 24px;
    background: #fff7fa;
    border-top: 1px solid var(--color-line);
}

.site-footer__grid {
    display: grid;
    gap: 26px;
}

.site-footer__brand img {
    width: 156px;
}

.site-footer__brand p,
.site-footer__bottom p {
    color: var(--color-muted);
}

.footer-contact {
    display: grid;
    gap: 8px;
    color: var(--color-muted);
    font-style: normal;
}

.footer-contact strong {
    color: var(--color-text);
}

.footer-contact a {
    width: fit-content;
    transition: color 180ms ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
    color: var(--color-rose-dark);
}

.site-footer__bottom {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid var(--color-line);
}

.site-footer__bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #e6e6e6;
    color: var(--color-white);
    box-shadow: 0 14px 30px rgba(95, 143, 89, 0.32);
    font-size: 1.55rem;
    transition: transform 180ms ease, box-shadow 180ms ease;
    background-image: url(../img/whatsapp_logo.png);
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 36px rgba(95, 143, 89, 0.4);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal--delay {
    transition-delay: 120ms;
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (min-width: 560px) {
    .hero__actions {
        grid-template-columns: repeat(2, minmax(0, max-content));
    }

    .btn--large {
        width: auto;
    }

    .trust-strip__grid,
    .catalog__grid,
    .services__grid,
    .process__grid,
    .testimonials__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 820px) {
    .container {
        width: min(calc(100% - 48px), var(--container));
    }

    .nav-toggle {
        display: none;
    }

    .nav-panel {
        position: static;
        display: flex;
        align-items: center;
        gap: 22px;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .nav-list {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .nav-link {
        padding: 8px 0;
        font-size: 0.88rem;
    }

    .btn--nav {
        width: auto;
        min-height: 42px;
        padding-inline: 16px;
        font-size: 0.88rem;
    }

    .section-hero {
        min-height: calc(100svh - var(--header-height));
        display: grid;
        align-items: center;
        padding: 58px 0;
    }

    .hero__grid {
        grid-template-columns: minmax(0, 0.86fr) minmax(410px, 1.14fr);
        gap: 58px;
    }

    .hero__content {
        margin-inline: 0;
        text-align: left;
    }

    .hero__content .eyebrow {
        justify-content: flex-start;
    }

    h1 {
        max-width: 11ch;
        margin-inline: 0;
    }

    .hero__text {
        margin-inline: 0;
    }

    .hero__visual {
        max-width: none;
        margin-inline: 0;
    }

    .hero__image,
    .image-placeholder--hero {
        min-height: 560px;
    }

    .trust-strip__grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .benefit {
        min-height: 104px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

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

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

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

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

    .site-footer__grid {
        grid-template-columns: 1fr 1.15fr;
        align-items: start;
    }
}

@media (min-width: 1080px) {
    .brand__logo {
        width: 172px;
    }

    .nav-list {
        gap: 24px;
    }

    .section {
        padding: 92px 0;
    }
}
