/* Global Lindus — Refined industrial theme */
:root {
    --color-primary: #1e4976;
    --color-primary-dark: #0f2744;
    --color-primary-light: #2d6a9f;
    --color-accent: #e85d04;
    --color-accent-hover: #c2410c;
    --color-teal: #0d9488;
    --color-surface: #ffffff;
    --color-surface-alt: #f1f5f9;
    --color-surface-muted: #e8eef4;
    --color-text: #0c1929;
    --color-text-muted: #5c6b7a;
    --color-border: #d8e2ec;
    --font-display: 'Sora', system-ui, sans-serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    --header-navy: #1A3668;
    --header-navy-dark: #122648;
    --header-text-muted: #808080;
    --header-nav-text: #374151;
    --sticky-height: 36px;
    --header-height: 84px;
    --shadow-sm: 0 2px 8px rgba(15, 39, 68, 0.06);
    --shadow-md: 0 12px 40px rgba(15, 39, 68, 0.1);
    --shadow-lg: 0 24px 56px rgba(15, 39, 68, 0.14);
    --radius: 14px;
    --radius-lg: 22px;
    --radius-pill: 999px;
    --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --eyebrow-size: 0.72rem;
    --eyebrow-spacing: 0.12em;
    --gradient-brand: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--color-accent), #f97316);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Global section label (replaces orange uppercase style everywhere) */
.eyebrow,
.section__label,
.about-intro__label,
.top-selling__label,
.eng-stack__label,
.industries-marquee__label,
.process-work__label,
.plants-showcase__label,
.process-steps__label,
.cta-premium__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-body);
    font-size: var(--eyebrow-size);
    font-weight: 600;
    letter-spacing: var(--eyebrow-spacing);
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.eyebrow::before,
.section__label::before,
.about-intro__label::before,
.top-selling__label::before,
.eng-stack__label::before,
.industries-marquee__label::before,
.process-work__label::before,
.plants-showcase__label::before,
.process-steps__label::before,
.cta-premium__badge::before {
    content: '';
    flex-shrink: 0;
    width: 32px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.section__header .eyebrow,
.section__header .section__label,
.top-selling__header .eyebrow,
.top-selling__header .top-selling__label,
.eng-stack__header .eyebrow,
.eng-stack__header .eng-stack__label,
.industries-marquee__header .eyebrow,
.industries-marquee__header .industries-marquee__label,
.process-work__header .eyebrow,
.process-work__header .process-work__label,
.plants-showcase__header .eyebrow,
.plants-showcase__header .plants-showcase__label,
.process-steps__header .eyebrow,
.process-steps__header .process-steps__label {
    justify-content: center;
}

/* Light text on dark backgrounds */
.eyebrow--light,
.plants-showcase__label {
    color: #7dd3fc;
}

.eyebrow--light::before,
.plants-showcase__label::before {
    background: linear-gradient(90deg, var(--color-accent), #fde68a);
}

.plants-showcase__label::after {
    display: none;
}

/* Pill style for hero / CTA on dark backgrounds */
.eyebrow--pill,
.hero__badge {
    padding: 0.45rem 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50px;
    color: #e0f2fe !important;
    font-weight: 600;
    letter-spacing: var(--eyebrow-spacing);
    gap: 0;
}

.eyebrow--pill::before,
.hero__badge::before {
    display: none;
}

.cta-premium__badge {
    color: #fde68a !important;
}

.cta-premium__badge::before {
    background: linear-gradient(90deg, var(--color-accent), #fde68a) !important;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--sticky-height) + var(--header-height) + 16px);
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-surface-alt);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 1.75rem);
}

/* ========== TOP CONTACT BAR ========== */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: var(--sticky-height);
    background: var(--header-navy);
    color: #fff;
    font-family: 'Inter', var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    border-bottom: none;
    transition: transform var(--transition);
}

.sticky-header--hidden {
    transform: translateY(-100%);
}

.sticky-header__inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.sticky-header__contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sticky-header__item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #fff;
    white-space: nowrap;
    transition: opacity var(--transition);
}

.sticky-header__item:hover {
    opacity: 0.85;
    color: #fff;
}

.sticky-header__item svg {
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .sticky-header__item--hide-mobile {
        display: none;
    }

    .sticky-header__contact {
        gap: 0.75rem;
    }

    .sticky-header__item {
        font-size: 0.6875rem;
    }
}

/* ========== MAIN HEADER ========== */
.main-header {
    position: fixed;
    top: var(--sticky-height);
    left: 0;
    right: 0;
    z-index: 1000;
    transition: top var(--transition), box-shadow var(--transition), background var(--transition);
}

.main-header--light {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.main-header--scrolled {
    top: 0;
}

.main-header--light.main-header--scrolled {
    background: #fff;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
    border-bottom-color: #e5e7eb;
}

body.header-compact .site-main {
    padding-top: var(--header-height);
}

.main-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 1.5rem;
}

.main-header__shadow {
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.04), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition);
}

.main-header--scrolled .main-header__shadow { opacity: 1; }

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--gradient-brand);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.9375rem;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(15, 39, 68, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.logo__mark {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

.logo__img {
    display: block;
    width: auto;
    height: 52px;
    max-width: 115px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo--header .logo__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.05rem;
    line-height: 1.2;
}

.logo--header .logo__name-line {
    display: block;
    font-family: 'Inter', var(--font-body);
    font-size: clamp(0.72rem, 1.25vw, 0.88rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--header-navy);
    white-space: nowrap;
}

.logo--header .logo__tagline {
    display: block;
    margin-top: 0.15rem;
    font-family: 'Inter', var(--font-body);
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--header-text-muted);
}

.logo__text { display: flex; flex-direction: column; line-height: 1.2; }

.logo__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-primary-dark);
}

.logo__tagline {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.logo--footer .logo__name,
.logo--footer .logo__tagline { color: #e0f2fe; }
.logo--footer .logo__tagline { opacity: 0.75; }

.logo--footer {
    display: inline-flex;
    margin-bottom: 1rem;
}

.logo--footer:hover .logo__name {
    color: #fff;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
}

.main-nav__list {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.main-nav__item--cta {
    margin-left: 0.35rem;
}

.main-nav__item--has-mega {
    position: static;
}

.main-nav__link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.25;
    color: var(--color-text-muted);
    border-radius: var(--radius-pill);
    transition: color var(--transition), background var(--transition);
}

.main-nav__link:hover {
    color: var(--color-primary);
    background: var(--color-surface-muted);
}

.main-nav__link--active {
    color: #fff;
    background: var(--gradient-brand);
    box-shadow: 0 4px 14px rgba(15, 39, 68, 0.2);
}

.main-header--light .main-nav__link {
    color: var(--header-nav-text);
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 0;
    min-height: 40px;
}

.main-header--light .main-nav__link:hover {
    color: var(--header-navy);
    background: transparent;
}

.main-header--light .main-nav__link--active {
    color: var(--header-navy);
    background: transparent;
    box-shadow: none;
    font-weight: 600;
}

.main-header--light .main-nav__trigger {
    color: var(--header-nav-text);
    font-weight: 500;
    font-size: 0.875rem;
    min-height: 40px;
    padding: 0.5rem 1rem;
    border-radius: 0;
    line-height: 1.25;
}

.main-header--light .main-nav__trigger:hover,
.main-header--light .main-nav__item--has-mega.is-open .main-nav__trigger {
    color: var(--header-navy);
    background: transparent;
}

.main-header--light .main-nav__item--has-mega.is-open .main-nav__trigger,
.main-header--light .main-nav__trigger--active {
    color: var(--header-navy);
    background: transparent;
    font-weight: 600;
    box-shadow: none;
}

.main-nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.5rem 1.15rem;
    white-space: nowrap;
    font-family: 'Inter', var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.25;
    color: #fff;
    border-radius: 6px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.main-header--light .main-nav__cta {
    background: var(--header-navy);
    box-shadow: 0 4px 14px rgba(26, 54, 104, 0.22);
}

.main-header--light .main-nav__cta:hover {
    background: var(--header-navy-dark, #122648);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(26, 54, 104, 0.28);
    color: #fff;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: none;
    background: var(--color-surface-alt);
    border-radius: 10px;
    cursor: pointer;
    transition: background var(--transition);
}

.nav-toggle:hover { background: var(--color-border); }

.nav-toggle__bar {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 991.98px) {
    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .main-nav {
        position: fixed;
        top: calc(var(--sticky-height) + var(--header-height));
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 999;
        flex-direction: column;
        align-items: stretch;
        margin-left: 0;
        padding: 1rem clamp(1rem, 3vw, 1.75rem) 1.5rem;
        background: #fff;
        border-top: 1px solid #e5e7eb;
        overflow-y: auto;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform var(--transition), visibility var(--transition);
    }

    body.header-compact .main-nav {
        top: var(--header-height);
    }

    .main-nav.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .main-nav__list {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0.15rem;
    }

    .main-nav__item--cta {
        margin-left: 0;
        margin-top: 0.5rem;
        padding-top: 0.75rem;
        border-top: 1px solid #e5e7eb;
    }

    .main-nav__link,
    .main-header--light .main-nav__trigger {
        width: 100%;
        justify-content: space-between;
        min-height: 44px;
        padding: 0.75rem 1rem;
        border-radius: 8px;
    }

    .main-nav__cta {
        width: 100%;
        min-height: 44px;
        justify-content: center;
    }

    .main-header--light .nav-toggle {
        background: #f3f4f6;
    }

    .main-header--light .nav-toggle__bar {
        background: var(--header-navy);
    }
}

body.nav-open {
    overflow: hidden;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn--primary {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: 0 6px 20px rgba(232, 93, 4, 0.35);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(232, 93, 4, 0.42);
}

.btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Main content offset */
.site-main {
    flex: 1;
    padding-top: calc(var(--sticky-height) + var(--header-height));
    min-height: 40vh;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--color-primary-dark);
    overflow: hidden;
}

.hero:not(.hero-slider) {
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero:not(.hero-slider)::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(15, 39, 68, 0.94) 0%, rgba(30, 73, 118, 0.82) 42%, rgba(13, 148, 136, 0.45) 100%),
        radial-gradient(ellipse 80% 60% at 85% 20%, rgba(232, 93, 4, 0.15) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 0;
}

.hero__content { color: #fff; }

.hero__badge {
    margin-bottom: 1.25rem;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero__title span {
    background: linear-gradient(90deg, #fdba74, var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__text {
    font-size: 1.0625rem;
    line-height: 1.75;
    opacity: 0.92;
    max-width: 580px;
    margin-bottom: 2rem;
}

.hero__subtagline {
    font-size: clamp(0.9375rem, 2vw, 1.0625rem);
    color: #e0f2fe;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero__card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    padding: 2rem;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.hero__card--stats { max-width: 440px; }

.hero__card-title {
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1rem;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero__stat-num {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1.1;
}

.hero__stat-num--compact { font-size: clamp(1.5rem, 3.5vw, 2rem); }

.hero__stat-label {
    opacity: 0.88;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: #e0f2fe;
}

/* ========== ABOUT INTRO (Section 2) ========== */
.about-intro {
    background: #eef2f6;
    padding: 4.5rem 0 5rem;
}

.about-intro__layout {
    display: grid;
    grid-template-columns: 42% 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
        "media panel"
        "features features";
    gap: 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(12, 74, 110, 0.1);
    border: 1px solid #e2e8f0;
}

.about-intro__media {
    grid-area: media;
    position: relative;
    min-height: 100%;
}

.about-intro__figure {
    margin: 0;
    height: 100%;
    min-height: 420px;
    position: relative;
}

.about-intro__figure img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.about-intro:not(.about-intro--v2) .about-intro__badge {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    margin: 0;
    padding: 1rem 1.25rem;
    background: rgba(8, 47, 73, 0.92);
    backdrop-filter: blur(8px);
    color: #fff;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-intro__badge-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-accent);
}

.about-intro__badge-text {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #bae6fd;
}

.about-intro__panel {
    grid-area: panel;
    padding: clamp(2rem, 4vw, 3rem) clamp(1.75rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid #f1f5f9;
}

.about-intro__label {
    margin-bottom: 1rem;
}

.about-intro__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.8vw, 2.25rem);
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--color-primary-dark);
    margin-bottom: 1.25rem;
}

.about-intro__title em {
    font-style: normal;
    color: #0ea5e9;
}

.about-intro__text {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 0.875rem;
}

.about-intro__text:last-of-type {
    margin-bottom: 1.75rem;
}

.about-intro__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.about-intro__actions .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 50px;
}

.btn--blue {
    background: var(--gradient-brand);
    color: #fff;
    border: none;
    box-shadow: 0 6px 20px rgba(15, 39, 68, 0.28);
}

.btn--blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(15, 39, 68, 0.35);
    filter: brightness(1.08);
}

.btn--secondary {
    background: #fff;
    color: var(--color-primary-dark);
    border: 2px solid #cbd5e1;
    padding: calc(0.75rem - 2px) calc(1.5rem - 2px);
}

.btn--secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: #f0f9ff;
    transform: translateY(-2px);
}

.about-intro__features {
    grid-area: features;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.about-intro__card {
    padding: 1.5rem 1.25rem;
    text-align: center;
    border-right: 1px solid #e2e8f0;
    transition: background var(--transition);
}

.about-intro__card:last-child {
    border-right: none;
}

.about-intro__card:hover {
    background: #fff;
}

.about-intro__card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--color-primary);
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(12, 74, 110, 0.06);
}

.about-intro__card h3 {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary-dark);
    margin-bottom: 0.35rem;
}

.about-intro__card p {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #64748b;
}

/* Page header (inner pages) */
.page-hero {
    background: var(--gradient-brand);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-hero p { opacity: 0.9; font-size: 1.0625rem; }

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.85;
}

.breadcrumb a:hover { text-decoration: underline; }

/* Sections */
.section {
    padding: 4.5rem 0;
}

.section--alt { background: var(--color-surface-alt); }

.section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section__label {
    margin-bottom: 0.5rem;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 0.75rem;
}

.section__desc { color: var(--color-text-muted); }

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
}

.card {
    background: var(--color-surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.card__img {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #bae6fd, #7dd3fc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.card__body { padding: 1.5rem; }

.card__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-primary-dark);
}

.card__text { color: var(--color-text-muted); font-size: 0.9375rem; }

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-surface);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.feature:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-sm);
}

.feature__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--color-primary), #0369a1);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature h3 {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary-dark);
}

.feature p { color: var(--color-text-muted); font-size: 0.9375rem; }

.feature__icon--svg {
    font-size: 0;
}

.feature__icon--svg svg {
    display: block;
}

.features-grid--about {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature--about {
    text-align: left;
    padding: 1.75rem 1.5rem;
}

.feature--about .feature__icon {
    margin: 0 0 1rem;
}

/* About page */
.page-hero--about {
    padding: 3.5rem 0;
}

.about-page {
    background: var(--color-surface-alt);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.about-intro--page {
    padding: 0;
    background: transparent;
}

.about-intro--page .about-intro__layout {
    min-height: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    grid-template-columns: minmax(300px, 42%) 1fr;
    grid-template-areas:
        "media panel"
        "features features";
}

.about-intro--page .about-intro__media {
    min-height: 380px;
    background: var(--color-primary-dark);
    display: flex;
}

.about-intro--page .about-intro__media-frame {
    position: relative;
    flex: 1;
    width: 100%;
    min-height: 380px;
    overflow: hidden;
}

.about-intro--page .about-intro__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-intro--page .about-intro__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(15, 39, 68, 0.4) 0%, transparent 40%),
        linear-gradient(0deg, rgba(15, 39, 68, 0.88) 0%, transparent 50%);
    pointer-events: none;
}

.about-intro--page .about-intro__media-top {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.about-intro--page .about-intro__chip {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    padding: 0.4rem 0.85rem;
    background: rgba(15, 39, 68, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
}

.about-intro--page .about-intro__badge {
    position: absolute !important;
    left: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    top: auto !important;
    z-index: 4;
    margin: 0;
    padding: 1.15rem 1.5rem;
    background: var(--color-primary-dark) !important;
    border: none !important;
    border-radius: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-left: 4px solid var(--color-accent) !important;
    text-align: left !important;
    min-width: 160px;
}

.about-intro--page .about-intro__title em {
    font-style: normal;
    color: var(--color-primary-light);
}

.about-stats-section {
    padding: 3rem 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-stats__item {
    text-align: center;
    padding: 1.75rem 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-stats__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-stats__value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.about-stats__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.about-values-section {
    padding-bottom: 4rem;
}

@media (max-width: 1100px) {
    .features-grid--about {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .about-intro--page .about-intro__layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "media"
            "panel"
            "features";
    }

    .about-intro--page .about-intro__features {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-intro--page .about-intro__card:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 576px) {
    .about-intro--page .about-intro__features {
        grid-template-columns: 1fr;
    }

    .about-intro--page .about-intro__card {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .about-intro--page .about-intro__card:last-child {
        border-bottom: none;
    }

    .features-grid--about,
    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.gallery-item {
    display: block;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    padding: 0;
    border: 1px solid var(--color-border);
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: var(--color-surface-muted);
    box-shadow: var(--shadow-sm);
    font: inherit;
    text-align: left;
    transition: box-shadow var(--transition), transform var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.gallery-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
}

.gallery-item:hover .gallery-item__img {
    transform: scale(1.06);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 47, 73, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 1rem;
    text-align: center;
}

.gallery-item:hover .gallery-item__overlay,
.gallery-item:focus-visible .gallery-item__overlay {
    opacity: 1;
}

/* Gallery lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox[hidden] {
    display: none !important;
}

body.gallery-lightbox-open {
    overflow: hidden;
}

.gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 23, 41, 0.88);
    backdrop-filter: blur(6px);
}

.gallery-lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s;
}

.gallery-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s;
}

.gallery-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.22);
}

.gallery-lightbox__nav--prev { left: 1rem; }
.gallery-lightbox__nav--next { right: 1rem; }

.gallery-lightbox__content {
    position: relative;
    z-index: 2;
    width: min(1100px, 100%);
    max-height: calc(100vh - 3rem);
}

.gallery-lightbox__figure {
    margin: 0;
    text-align: center;
}

.gallery-lightbox__img {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 8rem);
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    object-fit: contain;
}

.gallery-lightbox__img.is-loading {
    opacity: 0.35;
}

.gallery-lightbox__caption {
    margin-top: 1rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.gallery-lightbox__counter {
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
}

@media (max-width: 640px) {
    .gallery-lightbox__nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .gallery-lightbox__nav--prev { left: 0.5rem; }
    .gallery-lightbox__nav--next { right: 0.5rem; }
}

/* Blog */
.page-hero--blog {
    padding: 3.5rem 0;
}

.page-hero--article {
    padding: 2.5rem 0 3rem;
    text-align: left;
}

.page-hero--article .container {
    max-width: 900px;
}

.breadcrumb--left {
    justify-content: flex-start;
    margin-top: 0;
    margin-bottom: 1.25rem;
}

.blog-hero__category {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    margin-bottom: 0.85rem;
}

.blog-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.35rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 0.85rem;
    max-width: 52rem;
}

.blog-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.9;
}

.blog-page {
    padding: 3rem 0 4rem;
    background: var(--color-surface-alt);
}

.blog-page--single {
    padding-top: 2.5rem;
}

.blog-page__head {
    margin: 0 0 2rem;
}

.blog-page__head--center {
    text-align: center;
}

.blog-page__head--center .eyebrow {
    justify-content: center;
}

/* Blog listing — all cards in one row */
.blog-grid--row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
    align-items: stretch;
}

.blog-card--grid {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.blog-card--grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 2;
    pointer-events: none;
}

.blog-card--grid:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 73, 118, 0.2);
}

.blog-card--grid:hover::before {
    opacity: 1;
}

.blog-card--grid .blog-card__media {
    height: 200px;
    flex-shrink: 0;
}

.blog-card--grid .blog-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.2rem 1.3rem 1.3rem;
}

.blog-card--grid .blog-card__title {
    font-size: 1.0625rem;
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card--grid .blog-card__excerpt {
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4em;
}

.blog-card--grid .blog-card__link {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.blog-page__subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--color-primary-dark);
    margin: 0.35rem 0 0;
}

.blog-page__related-strip {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.blog-not-found {
    text-align: center;
    max-width: 32rem;
    margin: 0 auto;
}

.blog-not-found p {
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
}

/* Featured card (listing top) */
.blog-card--featured {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 0.5rem;
    transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.blog-card--featured:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(1, 43, 91, 0.18);
}

.blog-card--featured .blog-card__media {
    height: 100%;
    min-height: 320px;
}

.blog-card--featured .blog-card__body {
    padding: 2rem 2.25rem;
    justify-content: center;
}

.blog-card--featured .blog-card__title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    margin-bottom: 0.85rem;
    min-height: 0;
    -webkit-line-clamp: unset;
}

.blog-card--featured .blog-card__excerpt {
    font-size: 1rem;
    -webkit-line-clamp: 4;
    min-height: 0;
}

.blog-card--featured .blog-card__link {
    margin-top: 1.25rem;
    padding-top: 0;
    border-top: none;
}

/* Feed rows (listing + related) */
.blog-feed {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.blog-card--feed {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.blog-card--feed:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.blog-card--feed .blog-card__media {
    height: 100%;
    min-height: 200px;
}

.blog-card--feed .blog-card__body {
    padding: 1.5rem 1.75rem;
}

.blog-card--feed .blog-card__title {
    font-size: 1.125rem;
    min-height: 0;
    -webkit-line-clamp: 2;
}

.blog-card--feed .blog-card__excerpt {
    -webkit-line-clamp: 2;
    min-height: 0;
}

.blog-card--feed .blog-card__link {
    margin-top: 0.85rem;
    padding-top: 0;
    border-top: none;
}

/* Shared card parts */
.blog-card {
    position: relative;
}

.blog-card__media-link {
    display: block;
    height: 100%;
    text-decoration: none;
}

.blog-card__media {
    position: relative;
    overflow: hidden;
    background: var(--color-surface-muted);
    height: 100%;
}

.blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.blog-card:hover .blog-card__media img {
    transform: scale(1.04);
}

.blog-card__trending {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 1;
    padding: 0.35rem 0.7rem;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--color-accent), #f97316);
    border-radius: 6px;
    line-height: 1.2;
}

.blog-card__category {
    position: absolute;
    bottom: 0.85rem;
    left: 0.85rem;
    z-index: 1;
    padding: 0.3rem 0.65rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(1, 43, 91, 0.92);
    border-radius: 6px;
    line-height: 1.2;
}

.blog-card__body {
    display: flex;
    flex-direction: column;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 0.55rem;
}

.blog-card__meta time {
    color: var(--color-accent);
}

.blog-card__dot {
    opacity: 0.45;
}

.blog-card__title {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 0.55rem;
}

.blog-card__title a {
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: color var(--transition);
}

.blog-card__title a:hover {
    color: var(--color-primary);
}

.blog-card__excerpt {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--color-text-muted);
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    transition: gap var(--transition), color var(--transition);
}

.blog-card__link:hover {
    color: var(--color-accent);
    gap: 0.6rem;
}

.blog-card__link-arrow {
    transition: transform var(--transition);
}

.blog-card__link:hover .blog-card__link-arrow {
    transform: translateX(3px);
}

/* Single post: sidebar + article */
.blog-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-sidebar {
    position: sticky;
    top: 7rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.blog-sidebar__back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition), gap var(--transition);
}

.blog-sidebar__back:hover {
    color: var(--color-accent);
    gap: 0.55rem;
}

.blog-sidebar__panel {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.15rem 1.25rem;
    box-shadow: var(--shadow-sm);
}

.blog-sidebar__heading {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-primary-dark);
    margin: 0 0 0.85rem;
}

.blog-sidebar__meta-list {
    margin: 0;
}

.blog-sidebar__meta-list > div {
    margin-bottom: 0.75rem;
}

.blog-sidebar__meta-list > div:last-child {
    margin-bottom: 0;
}

.blog-sidebar__meta-list dt {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 0.15rem;
}

.blog-sidebar__meta-list dd {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary-dark);
}

.blog-sidebar__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-sidebar__links li + li {
    margin-top: 0.65rem;
    padding-top: 0.65rem;
    border-top: 1px solid var(--color-border);
}

.blog-sidebar__links a {
    display: block;
    text-decoration: none;
    transition: opacity var(--transition);
}

.blog-sidebar__links a:hover {
    opacity: 0.85;
}

.blog-sidebar__link-title {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-primary-dark);
    margin-bottom: 0.2rem;
}

.blog-sidebar__link-date {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.blog-article {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.blog-article__figure {
    margin: 0;
}

.blog-article__hero-img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 7;
    object-fit: cover;
}

.blog-article__content {
    padding: 2rem 2.25rem 0.5rem;
    font-size: 1.0625rem;
    line-height: 1.78;
    color: var(--color-text);
}

.blog-article__content p {
    margin: 0 0 1.25rem;
}

.blog-article__content h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin: 2rem 0 0.75rem;
    padding-left: 0.85rem;
    border-left: 3px solid var(--color-accent);
    line-height: 1.35;
}

.blog-article__footer {
    padding: 1.5rem 2.25rem 2rem;
    border-top: 1px solid var(--color-border);
}

@media (max-width: 992px) {
    .blog-grid--row {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .blog-card--grid .blog-card__title,
    .blog-card--grid .blog-card__excerpt {
        min-height: 0;
    }

    .blog-card--featured {
        grid-template-columns: 1fr;
    }

    .blog-card--featured .blog-card__media {
        min-height: 220px;
    }

    .blog-card--feed {
        grid-template-columns: 1fr;
    }

    .blog-card--feed .blog-card__media {
        min-height: 200px;
    }

    .blog-layout {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .blog-sidebar {
        position: static;
        order: 2;
    }

    .blog-article {
        order: 1;
    }

    .blog-sidebar__panel--links {
        display: none;
    }
}

@media (max-width: 576px) {
    .blog-card--featured .blog-card__body,
    .blog-card--feed .blog-card__body {
        padding: 1.25rem 1.35rem;
    }

    .blog-article__content,
    .blog-article__footer {
        padding-left: 1.35rem;
        padding-right: 1.35rem;
    }
}

/* Product pages */
.page-hero--product,
.page-hero--product-detail {
    padding: 3rem 0;
}

.page-hero--product-detail {
    text-align: left;
    padding-bottom: 2.5rem;
}

.page-hero--product-detail .container {
    max-width: 960px;
}

.product-hero__line {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    margin-bottom: 0.85rem;
}

.product-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.35rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.75rem;
    max-width: 48rem;
}

.product-hero__lead {
    margin: 0;
    max-width: 42rem;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.92;
}

.product-page {
    background: var(--color-surface-alt);
}

.product-page--detail {
    padding: 2.5rem 0 3rem;
}

.product-not-found {
    text-align: center;
    max-width: 28rem;
    margin: 0 auto;
}

.product-not-found p {
    margin-bottom: 1.25rem;
    color: var(--color-text-muted);
}

.product-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
    max-width: 1140px;
    margin: 0 auto;
}

.product-sidebar {
    position: sticky;
    top: 7rem;
}

.product-sidebar__card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    padding-bottom: 1.25rem;
}

.product-sidebar__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-surface-muted);
}

.product-sidebar__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-sidebar__facts {
    margin: 1rem 1.15rem;
    padding: 0;
}

.product-sidebar__facts > div {
    margin-bottom: 0.75rem;
}

.product-sidebar__facts > div:last-child {
    margin-bottom: 0;
}

.product-sidebar__facts dt {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 0.15rem;
}

.product-sidebar__facts dd {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    line-height: 1.4;
}

.product-sidebar__cta {
    display: block;
    width: calc(100% - 2.3rem);
    margin: 0 1.15rem 0.75rem;
    text-align: center;
}

.product-sidebar__back {
    display: block;
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

.product-sidebar__back:hover {
    color: var(--color-accent);
}

.product-detail {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem 2.25rem;
    box-shadow: var(--shadow-sm);
}

.product-block + .product-block {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.product-block__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin: 0 0 1rem;
    padding-left: 0.85rem;
    border-left: 3px solid var(--color-accent);
}

.product-block__text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text);
}

.product-block__note {
    margin: 1rem 0 0;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    font-style: italic;
}

.product-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-list li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.65rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text);
}

.product-list--checks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.product-list--dots li::before {
    content: '';
    position: absolute;
    left: 0.35rem;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
}

.product-specs-wrap {
    overflow-x: auto;
    border: 1px solid var(--color-border);
    border-radius: 10px;
}

.product-specs {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.product-specs th,
.product-specs td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.product-specs tr:last-child th,
.product-specs tr:last-child td {
    border-bottom: none;
}

.product-specs th {
    width: 38%;
    font-weight: 700;
    color: var(--color-primary-dark);
    background: var(--color-surface-alt);
}

.product-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.product-page__related {
    padding-bottom: 4rem;
}

.product-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}

.product-related-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform 0.25s ease;
}

.product-related-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.product-related-card__media {
    display: block;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: var(--color-surface-muted);
}

.product-related-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-related-card__body {
    padding: 1rem 1.1rem 1.15rem;
}

.product-related-card__cat {
    display: block;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.35rem;
}

.product-related-card__title {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 0 0.45rem;
    line-height: 1.35;
}

.product-related-card__title a {
    color: var(--color-primary-dark);
    text-decoration: none;
}

.product-related-card__title a:hover {
    color: var(--color-primary);
}

.product-related-card__desc {
    margin: 0 0 0.65rem;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--color-text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-related-card__link {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

.product-related-card__link:hover {
    color: var(--color-accent);
}

@media (max-width: 992px) {
    .product-layout {
        grid-template-columns: 1fr;
    }

    .product-sidebar {
        position: static;
    }
}

@media (max-width: 576px) {
    .product-detail {
        padding: 1.35rem 1.25rem;
    }

    .product-detail__actions {
        flex-direction: column;
    }

    .product-detail__actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* Contact page */
.page-hero--contact {
    padding: 3.5rem 0;
}

.contact-page {
    background: var(--color-surface-alt);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-info__title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    font-weight: 700;
    color: var(--color-primary-dark);
    margin: 0 0 0.75rem;
}

.contact-info__intro {
    margin: 0 0 1.75rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 26rem;
}

.contact-info__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-info__item:first-child {
    padding-top: 0;
}

.contact-info__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.contact-info__item h3 {
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-primary-dark);
    margin: 0 0 0.35rem;
}

.contact-info__item p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text);
}

.contact-info__item a {
    color: var(--color-primary);
    font-weight: 600;
    transition: color var(--transition);
}

.contact-info__item a:hover {
    color: var(--color-accent);
}

.contact-form-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem 2.25rem;
    box-shadow: var(--shadow-md);
}

.contact-form-card__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin: 0 0 0.4rem;
}

.contact-form-card__desc {
    margin: 0 0 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.contact-alert {
    padding: 1rem 1.15rem;
    border-radius: 10px;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.5;
}

.contact-alert--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1.15rem;
}

.contact-form label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 0.4rem;
}

.form-optional {
    font-weight: 500;
    color: var(--color-text-muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-text);
    background: var(--color-surface-alt);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(30, 73, 118, 0.12);
    background: var(--color-surface);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235c6b7a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form__submit {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.85rem 1.5rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-card {
        padding: 1.5rem 1.35rem;
    }
}

@media (max-width: 576px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Site footer */
.site-footer {
    margin-top: auto;
    background: var(--color-primary-dark);
    color: #cbd5e1;
}

.site-footer__top {
    padding: 3.5rem 0 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr 1fr;
    gap: 2.5rem 2rem;
    align-items: start;
}

.footer-brand__desc {
    margin: 0 0 1.25rem;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #94a3b8;
    max-width: 22rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.footer-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e0f2fe;
    transition: background var(--transition), color var(--transition), transform 0.2s ease;
}

.footer-social__link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 1.15rem;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid var(--color-accent);
    display: inline-block;
}

.footer-links__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links__list li {
    margin-bottom: 0.55rem;
}

.footer-links__list a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #cbd5e1;
    transition: color var(--transition), padding-left var(--transition);
}

.footer-links__list a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-contact__list {
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
}

.footer-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #cbd5e1;
}

.footer-contact__item:last-child {
    margin-bottom: 0;
}

.footer-contact__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-accent);
}

.footer-contact__item a {
    color: #e0f2fe;
    font-weight: 600;
    transition: color var(--transition);
}

.footer-contact__item a:hover {
    color: #fff;
}

.footer-contact__cta {
    display: inline-block;
    font-size: 0.875rem;
    padding: 0.65rem 1.25rem;
}

.site-footer__bottom {
    padding: 1.15rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1.5rem;
}

.footer-bottom__copy,
.footer-bottom__tag {
    margin: 0;
    font-size: 0.8125rem;
    color: #94a3b8;
}

.footer-bottom__tag {
    font-weight: 500;
}

/* CTA band (above footer on inner pages) */
.cta-band {
    background: var(--gradient-brand);
    color: #fff;
    text-align: center;
    padding: 3rem 0;
}

.cta-band h2 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.cta-band p {
    margin: 0 auto 1.25rem;
    max-width: 32rem;
    font-size: 1rem;
    opacity: 0.92;
    line-height: 1.6;
}

.cta-band .btn--primary {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .site-footer__top {
        padding: 2.5rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact__cta {
        width: 100%;
        text-align: center;
    }
}

/* ========== FLOATING ACTION BUTTONS ========== */
.float-actions {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 999;
    pointer-events: none;
}

.float-btn {
    position: fixed;
    bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.22);
    cursor: pointer;
    pointer-events: auto;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition), visibility var(--transition);
}

.float-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.28);
}

.float-btn--whatsapp {
    left: 1.5rem;
    background: #25d366;
}

.float-btn--whatsapp:hover {
    color: #fff;
    background: #1ebe57;
}

.float-btn--top {
    right: 1.5rem;
    background: var(--header-navy);
    opacity: 0;
    visibility: hidden;
}

.float-btn--top.is-visible {
    opacity: 1;
    visibility: visible;
}

.float-btn--top:hover {
    background: var(--header-navy-dark, #122648);
}

@media (max-width: 576px) {
    .float-btn {
        bottom: 1rem;
        width: 46px;
        height: 46px;
    }

    .float-btn--whatsapp {
        left: 1rem;
    }

    .float-btn--top {
        right: 1rem;
    }

    .float-btn--whatsapp svg {
        width: 24px;
        height: 24px;
    }
}

/* ----- Scroll reveal — top-to-bottom (site-wide) ----- */
.scroll-reveal,
.pdp-reveal,
.scroll-reveal-item,
[data-scroll-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.site-js .scroll-reveal.is-visible,
.site-js .pdp-reveal.is-visible,
.site-js .scroll-reveal-item.is-visible,
.site-js [data-scroll-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.scroll-reveal.is-visible .scroll-reveal-stagger > *,
.pdp-reveal.is-visible .scroll-reveal-stagger > *,
.scroll-reveal-item.is-visible .scroll-reveal-stagger > * {
    animation: scrollRevealDown 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.scroll-reveal.is-visible .scroll-reveal-stagger > *:nth-child(1),
.pdp-reveal.is-visible .scroll-reveal-stagger > *:nth-child(1),
.scroll-reveal-item.is-visible .scroll-reveal-stagger > *:nth-child(1) { animation-delay: 0.05s; }
.scroll-reveal.is-visible .scroll-reveal-stagger > *:nth-child(2),
.pdp-reveal.is-visible .scroll-reveal-stagger > *:nth-child(2),
.scroll-reveal-item.is-visible .scroll-reveal-stagger > *:nth-child(2) { animation-delay: 0.12s; }
.scroll-reveal.is-visible .scroll-reveal-stagger > *:nth-child(3),
.pdp-reveal.is-visible .scroll-reveal-stagger > *:nth-child(3),
.scroll-reveal-item.is-visible .scroll-reveal-stagger > *:nth-child(3) { animation-delay: 0.19s; }
.scroll-reveal.is-visible .scroll-reveal-stagger > *:nth-child(4),
.pdp-reveal.is-visible .scroll-reveal-stagger > *:nth-child(4),
.scroll-reveal-item.is-visible .scroll-reveal-stagger > *:nth-child(4) { animation-delay: 0.26s; }
.scroll-reveal.is-visible .scroll-reveal-stagger > *:nth-child(5),
.pdp-reveal.is-visible .scroll-reveal-stagger > *:nth-child(5),
.scroll-reveal-item.is-visible .scroll-reveal-stagger > *:nth-child(5) { animation-delay: 0.33s; }
.scroll-reveal.is-visible .scroll-reveal-stagger > *:nth-child(6),
.pdp-reveal.is-visible .scroll-reveal-stagger > *:nth-child(6),
.scroll-reveal-item.is-visible .scroll-reveal-stagger > *:nth-child(6) { animation-delay: 0.4s; }
.scroll-reveal.is-visible .scroll-reveal-stagger > *:nth-child(7),
.pdp-reveal.is-visible .scroll-reveal-stagger > *:nth-child(7),
.scroll-reveal-item.is-visible .scroll-reveal-stagger > *:nth-child(7) { animation-delay: 0.47s; }
.scroll-reveal.is-visible .scroll-reveal-stagger > *:nth-child(8),
.pdp-reveal.is-visible .scroll-reveal-stagger > *:nth-child(8),
.scroll-reveal-item.is-visible .scroll-reveal-stagger > *:nth-child(8) { animation-delay: 0.54s; }
.scroll-reveal.is-visible .scroll-reveal-stagger > *:nth-child(9),
.pdp-reveal.is-visible .scroll-reveal-stagger > *:nth-child(9),
.scroll-reveal-item.is-visible .scroll-reveal-stagger > *:nth-child(9) { animation-delay: 0.61s; }
.scroll-reveal.is-visible .scroll-reveal-stagger > *:nth-child(10),
.pdp-reveal.is-visible .scroll-reveal-stagger > *:nth-child(10),
.scroll-reveal-item.is-visible .scroll-reveal-stagger > *:nth-child(10) { animation-delay: 0.68s; }
.scroll-reveal.is-visible .scroll-reveal-stagger > *:nth-child(11),
.pdp-reveal.is-visible .scroll-reveal-stagger > *:nth-child(11),
.scroll-reveal-item.is-visible .scroll-reveal-stagger > *:nth-child(11) { animation-delay: 0.75s; }
.scroll-reveal.is-visible .scroll-reveal-stagger > *:nth-child(12),
.pdp-reveal.is-visible .scroll-reveal-stagger > *:nth-child(12),
.scroll-reveal-item.is-visible .scroll-reveal-stagger > *:nth-child(12) { animation-delay: 0.82s; }
.scroll-reveal.is-visible .scroll-reveal-stagger > *:nth-child(n+13),
.pdp-reveal.is-visible .scroll-reveal-stagger > *:nth-child(n+13),
.scroll-reveal-item.is-visible .scroll-reveal-stagger > *:nth-child(n+13) { animation-delay: 0.9s; }

.scroll-reveal-stagger > * {
    opacity: 0;
    transform: translateY(28px);
}

@keyframes scrollRevealDown {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal,
    .pdp-reveal,
    .scroll-reveal-item,
    [data-scroll-reveal],
    .scroll-reveal-stagger > * {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none;
    }
}
