* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Refined legal — midnight navy, clean paper, soft gold */
    --ink: #0b1c2c;
    --ink-mid: #163048;
    --ink-soft: #23415c;
    --brass: #c2a15a;
    --brass-deep: #a8863f;
    --brass-soft: rgba(194, 161, 90, 0.14);

    --paper: #f6f7f9;
    --paper-deep: #eef1f4;
    --surface: #ffffff;
    --text: #152535;
    --text-muted: #617384;
    --line: #e1e6eb;
    --line-strong: #cdd5dd;

    /* Aliases */
    --primary-color: var(--ink);
    --secondary-color: var(--ink-mid);
    --accent-color: var(--brass);
    --text-dark: var(--text);
    --text-light: var(--text-muted);
    --text-white: #ffffff;
    --bg-light: var(--paper);
    --bg-white: var(--surface);
    --border-color: var(--line);

    --whatsapp-green: #25a85a;
    --whatsapp-dark: #1e8f4b;
    --whatsapp-wash: #f1faf4;
    --whatsapp-wash-deep: #e4f5ea;

    --star-color: #d4b45f;
    --shadow-sm: 0 1px 2px rgba(11, 28, 44, 0.04);
    --shadow-md: 0 8px 20px rgba(11, 28, 44, 0.07);
    --shadow-lg: 0 16px 36px rgba(11, 28, 44, 0.10);
    --spacing-unit: 8px;
    --font-sans: 'Source Sans 3', 'Segoe UI', sans-serif;
    --font-serif: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
    --header-height: 88px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

html,
body {
    overflow-x: hidden;
    overflow-x: clip;
    max-width: 100%;
}

body {
    font-family: var(--font-sans);
    line-height: 1.65;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-weight: 400;
    letter-spacing: 0.01em;
}

::selection {
    background: color-mix(in srgb, var(--brass) 35%, white);
    color: var(--ink);
}

body.nav-open {
    overflow: hidden;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.header {
    background-color: var(--surface);
    box-shadow: none;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    position: relative;
    gap: 16px;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    display: block;
    height: 48px;
    width: auto;
    border-radius: 8px;
}

.logo-mark {
    display: none;
}

.logo-text {
    display: none;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--brass-deep);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brass);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger span {
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
    position: relative;
    color: var(--text-white);
    padding: 140px 0 100px;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

.hero-media {
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.jpg') center / cover no-repeat;
    transform: scale(1.02);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 28, 44, 0.72) 0%, rgba(11, 28, 44, 0.52) 42%, rgba(11, 28, 44, 0.80) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 820px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(34px, 5.5vw, 52px);
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.55;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--text-white);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.whatsapp-btn {
    background-color: var(--whatsapp-green);
    color: var(--text-white);
    box-shadow: 0 8px 20px rgba(37, 168, 90, 0.25);
}

.whatsapp-btn:hover {
    background-color: var(--whatsapp-dark);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.btn-group .btn {
    width: auto;
    max-width: 100%;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 56px;
    color: var(--primary-color);
    letter-spacing: 0.01em;
}

.services {
    padding: 80px 0;
    background-color: var(--paper);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 32px;
}

.service-card {
    background-color: var(--surface);
    padding: 40px 32px;
    border-radius: 8px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: color-mix(in srgb, var(--brass) 35%, var(--line));
}

.service-icon {
    color: var(--accent-color);
    margin-bottom: 24px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-description {
    color: var(--text-light);
    line-height: 1.6;
}

.about {
    padding: 80px 0;
    background-color: var(--surface);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-title {
    text-align: left;
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-text p strong {
    color: var(--text-dark);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.image-reviews {
    padding: 80px 0;
    background: var(--paper);
}

.image-reviews .title_section {
    text-align: center;
    margin-bottom: 40px;
}

.image-reviews .references__title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--ink);
    margin: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
}

.image-reviews .references__title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 64px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    width: 100%;
}

.reviews-track-wrap {
    overflow: hidden;
    min-width: 0;
    touch-action: pan-x;
}

.reviews-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 4px 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.image-reviews__item {
    flex: 0 0 240px;
    scroll-snap-align: start;
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
}

.image-reviews__item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.review-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 20px 18px 18px;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.review-card__head {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 4px;
    align-items: center;
    margin-bottom: 14px;
}

.review-card__avatar {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
    background: var(--paper-deep);
    display: block;
    overflow: hidden;
}

.review-card__info {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
}

.review-card__name {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 2px;
    letter-spacing: 0.01em;
}

.review-card__meta {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.review-card__stars {
    grid-column: 2;
    grid-row: 2;
    color: var(--star-color);
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1;
}

.review-card__text {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 0 0 16px;
    flex: 1;
}

.review-card__source {
    margin-top: auto;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.02em;
}

.review-card__source--facebook {
    color: #1877f2;
    font-family: Helvetica, Arial, sans-serif;
    text-transform: lowercase;
}

.review-card__source--google {
    font-family: 'Product Sans', Arial, sans-serif;
    font-size: 20px;
    letter-spacing: -0.5px;
}

.review-card__source--trustpilot {
    color: #191919;
    font-size: 15px;
    font-weight: 700;
}

.review-card__source--trustpilot::first-letter {
    color: #00b67a;
}

.reviews-nav {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--surface);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.reviews-nav:hover {
    background: var(--paper);
    transform: translateY(-1px);
}

.process {
    padding: 88px 0;
    background-color: var(--surface);
}

.process-eyebrow {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.process-heading {
    font-family: var(--font-serif);
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 48px;
    letter-spacing: 0.01em;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.process-step {
    background: transparent;
    padding: 8px 4px;
    text-align: center;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
}

.step-badge {
    width: 36px;
    height: 36px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--text-white);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border-radius: 10px;
    background: var(--brass-soft);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.55;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(145deg, var(--ink) 0%, var(--ink-mid) 100%);
    color: var(--text-white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.contact {
    padding: 80px 0;
    background-color: var(--paper);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-details p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.whatsapp-link {
    color: var(--whatsapp-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: var(--whatsapp-dark);
}

.contact-form-wrapper {
    display: flex;
    align-items: center;
}

.whatsapp-promo {
    background: linear-gradient(160deg, var(--whatsapp-wash) 0%, var(--whatsapp-wash-deep) 100%);
    border: 1px solid color-mix(in srgb, var(--whatsapp-green) 35%, var(--line));
    border-radius: 12px;
    padding: 48px 40px;
    text-align: center;
}

.whatsapp-promo-icon {
    color: var(--whatsapp-green);
    margin-bottom: 24px;
}

.whatsapp-promo h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.whatsapp-promo p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.footer {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 64px 0 28px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 40px 48px;
    margin-bottom: 48px;
    align-items: start;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 18px;
    line-height: 0;
}

.footer-logo img {
    display: block;
    height: 48px;
    width: auto;
    border-radius: 8px;
}

.footer-column h4 {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brass);
}

.footer-column--brand p {
    max-width: 360px;
    margin: 0;
    color: rgba(245, 246, 245, 0.72);
    font-size: 14px;
    line-height: 1.65;
}

.footer-column a {
    display: block;
    color: rgba(245, 246, 245, 0.78);
    font-size: 14px;
    line-height: 1.9;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--brass);
}

.footer-column a.whatsapp-link {
    color: var(--whatsapp-green);
}

.footer-licenses {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px 28px;
    margin-bottom: 36px;
    align-items: center;
}

.footer-license {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    aspect-ratio: auto;
    min-height: 0;
    overflow: visible;
}

.footer-license--dark {
    background: none;
}

.footer-license img {
    width: 100%;
    max-width: 280px;
    height: 110px;
    display: block;
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
    background: transparent;
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px 24px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    line-height: 1.7;
    text-align: left;
    max-width: 920px;
    flex: 1 1 280px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 12px;
}

.footer-links a:hover {
    color: var(--brass);
}

/* —— Tablet —— */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .review-card {
        flex-basis: 260px;
    }
}

@media (max-width: 968px) {
    .container {
        padding: 0 20px;
    }

    .nav {
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-md);
        padding: 12px 20px 24px;
        gap: 0;
        display: none;
        border-bottom: 1px solid var(--border-color);
        max-height: min(70vh, calc(100dvh - 72px));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 999;
    }

    .nav.active {
        display: flex;
        top: var(--nav-top, 72px);
    }

    .nav-link {
        padding: 14px 8px;
        font-size: 16px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link::after {
        display: none;
    }

    .burger {
        display: flex;
        z-index: 2;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .hero {
        padding: 96px 0 80px;
    }

    .hero-title {
        font-size: clamp(28px, 6vw, 40px);
    }

    .hero-subtitle {
        font-size: 17px;
        margin-bottom: 28px;
    }

    .cta-title {
        font-size: 32px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-title {
        text-align: center;
    }

    .about-image img {
        max-height: 420px;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .whatsapp-promo {
        padding: 36px 28px;
        width: 100%;
    }

    .contact-form-wrapper {
        width: 100%;
    }
}

/* —— Mobile —— */
@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .logo-img {
        height: 40px;
    }

    .hero {
        padding: 72px 0 56px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(26px, 8vw, 32px);
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 24px;
    }

    .btn-group {
        flex-direction: column;
        width: 100%;
    }

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

    .section-title {
        font-size: clamp(24px, 7vw, 28px);
        margin-bottom: 32px;
    }

    .services,
    .about,
    .process,
    .contact,
    .cta-section,
    .image-reviews {
        padding: 56px 0;
    }

    .service-card {
        padding: 28px 22px;
    }

    .cta-title {
        font-size: clamp(24px, 7vw, 28px);
    }

    .cta-text {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .services-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
    }

    .stat-number {
        font-size: 32px;
    }

    .btn {
        padding: 14px 22px;
        font-size: 15px;
        min-height: 48px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }

    .whatsapp-promo {
        padding: 28px 18px;
    }

    .whatsapp-promo h3 {
        font-size: 20px;
    }

    .whatsapp-promo p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    /* Reviews: swipe + buttons below */
    .reviews-carousel {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px 16px;
    }

    .reviews-track-wrap {
        flex: 1 1 100%;
        order: 1;
    }

    .reviews-nav {
        width: 44px;
        height: 44px;
        order: 2;
    }

    .reviews-nav--prev {
        order: 2;
    }

    .reviews-nav--next {
        order: 3;
    }

    .review-card {
        flex: 0 0 min(280px, calc(100vw - 64px));
        min-height: 280px;
        padding: 18px 16px 16px;
    }

    .image-reviews__item {
        flex: 0 0 min(220px, calc(100vw - 64px));
    }

    .contact-item {
        gap: 14px;
    }

    .contact-details p {
        font-size: 14px;
        word-break: break-word;
    }

    .footer {
        padding: 48px 0 24px;
    }

    .footer-licenses {
        grid-template-columns: 1fr 1fr;
        gap: 16px 20px;
        margin-bottom: 28px;
    }

    .footer-license img {
        height: 88px;
        max-width: 240px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    .process-heading {
        margin-bottom: 36px;
    }
}

/* —— Small phones —— */
@media (max-width: 380px) {
    .footer-licenses {
        grid-template-columns: 1fr;
    }

    .review-card {
        flex-basis: calc(100vw - 48px);
    }
}

/* —— Desktop comfort —— */
@media (min-width: 969px) {
    .hero {
        padding: 140px 0 100px;
    }

    .reviews-track {
        scroll-padding-inline: 4px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 32px;
    }
}
