/* HOT WATER LANDING PAGE - Flows with AquaCore design system */

:root {
    --hw-black: #0a0a0a;
    --hw-white: #ffffff;
    --hw-grey-950: #0d0d0d;
    --hw-grey-900: #171717;
    --hw-grey-800: #262626;
    --hw-grey-700: #404040;
    --hw-grey-600: #525252;
    --hw-grey-500: #737373;
    --hw-grey-400: #a3a3a3;
    --hw-grey-300: #d4d4d4;
    --hw-grey-200: #e5e5e5;
    --hw-grey-100: #f5f5f5;
    --hw-grey-50: #fafafa;
    --hw-accent: #c9a227;
    --hw-accent-dark: #b08d1f;
    --hw-warm-50: #faf8f5;
    --hw-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --hw-transition: all 0.3s ease;
}

/* BASE */
.hw-page {
    font-family: var(--hw-font);
    color: var(--hw-grey-700);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

    .hw-page h1, .hw-page h2, .hw-page h3 {
        font-family: var(--hw-font);
        font-weight: 600;
        letter-spacing: -0.02em;
        line-height: 1.15;
        color: var(--hw-grey-900);
    }

    .hw-page p {
        font-size: 1rem;
        line-height: 1.7;
    }

.hw-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--hw-accent);
    margin-bottom: 1rem;
}

.hw-eyebrow-light {
    color: rgba(255,255,255,0.6);
}

.hw-large {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--hw-grey-600);
}

/* HERO */
.hw-hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--hw-black);
}

.hw-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

    .hw-hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.5;
    }

.hw-hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.hw-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.hw-hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--hw-accent);
    margin-bottom: 1.5rem;
}

.hw-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: var(--hw-white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hw-hero-lead {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hw-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hw-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

    .hw-hero-scroll span {
        font-size: 0.6875rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: rgba(255,255,255,0.4);
    }

.hw-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, transparent 100%);
    animation: hw-scroll 2s ease-in-out infinite;
}

@keyframes hw-scroll {
    0%, 100% {
        transform: scaleY(1);
        opacity: 0.5;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 1;
    }
}

/* BUTTONS */
.hw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid transparent;
    transition: var(--hw-transition);
    cursor: pointer;
}

    .hw-btn i {
        font-size: 0.75rem;
    }

.hw-btn-light {
    background: var(--hw-white);
    color: var(--hw-grey-900);
}

    .hw-btn-light:hover {
        background: var(--hw-accent);
        color: var(--hw-black);
        text-decoration: none;
    }

.hw-btn-ghost {
    background: transparent;
    color: var(--hw-white);
    border-color: rgba(255,255,255,0.3);
}

    .hw-btn-ghost:hover {
        background: rgba(255,255,255,0.1);
        border-color: rgba(255,255,255,0.5);
        color: var(--hw-white);
        text-decoration: none;
    }

.hw-btn-accent {
    background: var(--hw-accent);
    color: var(--hw-black);
    font-weight: 600;
}

    .hw-btn-accent:hover {
        background: var(--hw-black);
        color: var(--hw-white);
        text-decoration: none;
    }

.hw-btn-outline-dark {
    background: transparent;
    color: var(--hw-black);
    border-color: var(--hw-grey-400);
}

.hw-btn-outline-light {
    background: transparent;
    color: var(--hw-white);
    border-color: rgba(255,255,255,0.3);
}

    .hw-btn-outline-light:hover {
        background: var(--hw-white);
        color: var(--hw-grey-900);
        text-decoration: none;
    }

.hw-btn-dark {
    background: var(--hw-grey-900);
    color: var(--hw-white);
}

    .hw-btn-dark:hover {
        background: var(--hw-black);
        text-decoration: none;
    }

.hw-btn-outline {
    background: transparent;
    color: var(--hw-grey-700);
    border-color: var(--hw-grey-300);
}

    .hw-btn-outline:hover {
        background: var(--hw-grey-100);
        border-color: var(--hw-grey-400);
        text-decoration: none;
    }

.hw-btn-small {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
}

/* SECTIONS */
.hw-section {
    padding: 5rem 0;
}

.hw-section-dark {
    background: var(--hw-grey-950);
}

    .hw-section-dark h2, .hw-section-dark h3 {
        color: var(--hw-white);
    }

    .hw-section-dark p {
        color: var(--hw-grey-400);
    }

.hw-section-warm {
    background: var(--hw-warm-50);
}

.hw-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.hw-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

    .hw-section-header h2 {
        font-size: clamp(1.5rem, 3vw, 2rem);
        margin-bottom: 0.5rem;
    }

    .hw-section-header p {
        font-size: 1rem;
        color: var(--hw-grey-500);
        margin: 0;
    }

.hw-section-header-light h2 {
    color: var(--hw-white);
}

.hw-section-header-light p {
    color: rgba(255,255,255,0.6);
}

/* SPLIT SECTIONS - image/content side by side */
.hw-split {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 70vh;
}

.hw-split-image {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

    .hw-split-image img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hw-split-content {
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    background: var(--hw-white);
}

.hw-split-content-inner {
    max-width: 520px;
}

.hw-split-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.hw-split-content p {
    margin-bottom: 1rem;
}

.hw-split-dark .hw-split-content {
    background: var(--hw-grey-950);
}

    .hw-split-dark .hw-split-content h2 {
        color: var(--hw-white);
    }

    .hw-split-dark .hw-split-content p {
        color: var(--hw-grey-400);
    }

/* IMAGE SECTIONS - full bleed with overlay */
.hw-image-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hw-image-section-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

    .hw-image-section-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hw-image-section-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hw-image-section-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 6rem 0;
}

.hw-image-section.hw-align-left .hw-image-section-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.4) 60%, transparent 100%);
}

.hw-image-section.hw-align-left .hw-text-block,
.hw-image-section.hw-align-right .hw-text-block {
    max-width: 550px;
}

.hw-image-section.hw-align-right .hw-image-section-overlay {
    background: linear-gradient(270deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.4) 60%, transparent 100%);
}

.hw-image-section.hw-align-right .hw-text-block {
    margin-left: auto;
}

.hw-image-section.hw-align-center .hw-image-section-overlay {
    background: rgba(0,0,0,0.7);
}

.hw-image-section.hw-align-center .hw-text-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hw-text-block h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--hw-white);
    margin-bottom: 1.5rem;
}

.hw-text-block p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

    .hw-text-block p:last-of-type {
        margin-bottom: 2rem;
    }

.hw-inline-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 2rem;
}

.hw-inline-stat strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--hw-accent);
    line-height: 1;
}

.hw-inline-stat span {
    display: block;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* FEATURES LIST */
.hw-features-list {
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

    .hw-features-list li {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem 0;
        border-bottom: 1px solid var(--hw-grey-200);
        font-size: 1rem;
        color: var(--hw-grey-700);
    }

.hw-split-dark .hw-features-list li {
    border-bottom-color: rgba(255,255,255,0.1);
    color: var(--hw-grey-300);
}

.hw-image-section .hw-features-list li {
    border-bottom-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
}

.hw-features-list li:last-child {
    border-bottom: none;
}

.hw-features-list li::before {
    content: '\2713';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--hw-accent);
    color: var(--hw-black);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* WHY SECTION */
.hw-why-section {
    padding: 5rem 0;
    background: var(--hw-white);
}

.hw-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.hw-why-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1.25rem;
}

.hw-why-content .hw-lead {
    font-size: 1.0625rem;
    color: var(--hw-grey-600);
    margin-bottom: 1rem;
}

.hw-why-content p {
    font-size: 0.9375rem;
    color: var(--hw-grey-600);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.hw-why-stats {
    display: grid;
    gap: 1rem;
}

.hw-stat-card {
    background: var(--hw-grey-50);
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--hw-accent);
}

.hw-stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--hw-grey-900);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hw-stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--hw-grey-500);
    margin-top: 0.375rem;
}

/* FEATURED PRODUCT */
.hw-featured-section {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--hw-grey-900);
}

.hw-featured-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

    .hw-featured-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
    }

.hw-featured-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.5) 100%);
}

.hw-featured-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 5rem 0;
}

.hw-featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hw-featured-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: var(--hw-accent);
    color: var(--hw-black);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.hw-featured-logos {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

    .hw-featured-logos img:first-child {
        height: 110px;
        width: auto;
    }

.hw-featured-text h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--hw-white);
    margin-bottom: 1rem;
}

.hw-featured-lead {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1em;
    line-height: 1.6;
}

.hw-featured-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

    .hw-featured-list li {
        display: flex;
        align-items: baseline;
        gap: 0.75rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        color: rgba(255,255,255,0.8);
        font-size: 0.9375rem;
        line-height: 1.5;
    }

        .hw-featured-list li:last-child {
            border-bottom: none;
        }

        .hw-featured-list li i {
            color: var(--hw-accent);
            font-size: 0.75rem;
            flex-shrink: 0;
        }

        .hw-featured-list li strong {
            color: var(--hw-white);
        }

.hw-featured-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hw-product-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
}

.hw-showcase-indoor {
    max-height: 320px;
    width: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
}

.hw-showcase-outdoor {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    max-height: 150px;
    width: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
}

/* PRODUCT RANGE */
.hw-range-section {
    padding: 5rem 0;
    background: var(--hw-grey-50);
}

.hw-range-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.hw-range-card {
    display: flex;
    flex-direction: column;
    background: var(--hw-white);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: var(--hw-transition);
}

    .hw-range-card:hover {
        text-decoration: none;
        color: inherit;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        transform: translateY(-4px);
    }

.hw-range-image {
    height: 200px;
    overflow: hidden;
}

    .hw-range-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.hw-range-card:hover .hw-range-image img {
    transform: scale(1.05);
}

.hw-range-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hw-range-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

    .hw-range-brand img {
        height: 24px;
        width: auto;
    }

.hw-range-brand-product {
    height: 24px;
}

.hw-range-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--hw-grey-900);
}

.hw-range-content p {
    font-size: 0.875rem;
    color: var(--hw-grey-500);
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

.hw-range-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--hw-accent-dark);
    margin-top: 1rem;
}

    .hw-range-link i {
        font-size: 0.75rem;
    }

/* DEALER SECTION */
.hw-dealer-section {
    padding: 4rem 0;
    background: var(--hw-grey-100);
}

.hw-dealer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.hw-dealer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgb(255 255 255 / 50%);
    border: 1px solid #52525257;
    text-decoration: none;
    transition: var(--hw-transition);
}

    .hw-dealer-card:hover {
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(0,0,0,0.3);
        text-decoration: none;
    }

.hw-dealer-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    margin-bottom: 0.85rem;
    font-size: 1.25rem;
    color: var(--hw-grey-400);
    transition: var(--hw-transition);
}

.hw-dealer-card:hover .hw-dealer-icon {
    background: var(--hw-accent);
    color: var(--hw-black);
}

.hw-dealer-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--hw-black);
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.hw-dealer-card p {
    font-size: 0.75rem;
    color: var(--hw-grey-500);
    margin: 0;
    line-height: 1.4;
}

/* LOGIN SECTION */
.hw-login-section {
    padding: 3rem 0;
    background: var(--hw-grey-100);
}

.hw-login-card {
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--hw-white);
    border: 1px solid var(--hw-grey-200);
}

.hw-login-card-warning {
    border-left: 3px solid #f59e0b;
}

    .hw-login-card-warning .hw-login-content i {
        color: #f59e0b;
    }

.hw-login-content i {
    font-size: 2rem;
    color: var(--hw-grey-300);
    margin-bottom: 1.25rem;
    display: block;
}

.hw-login-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.hw-login-content p {
    font-size: 0.9375rem;
    color: var(--hw-grey-500);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

    .hw-login-content p a {
        color: var(--hw-accent-dark);
        text-decoration: underline;
    }

/* BROCHURES */
.hw-brochures-section {
    padding: 4rem 0;
    background: var(--hw-white);
}

/* LEGACY */
.hw-legacy-section {
    background: var(--hw-grey-100);
    border-top: 1px solid var(--hw-grey-200);
}

.hw-legacy-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hw-legacy-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hw-legacy-label {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--hw-grey-500);
    padding: 0.25rem 0.5rem;
    background: var(--hw-grey-200);
}

.hw-legacy-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--hw-grey-700);
}

.hw-legacy-desc {
    color: var(--hw-grey-500);
    font-size: 0.8125rem;
}

.hw-legacy-link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--hw-grey-600);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

    .hw-legacy-link:hover {
        color: var(--hw-accent-dark);
    }

    .hw-legacy-link i {
        font-size: 0.625rem;
    }

/* CTA SECTION */
.hw-cta-section {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--hw-black);
}

.hw-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

    .hw-cta-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.4;
    }

.hw-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0,0,0,0.6);
}

.hw-cta-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 4rem 0;
}

.hw-cta-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

    .hw-cta-inner h2 {
        font-size: clamp(1.5rem, 3vw, 2rem);
        color: var(--hw-white);
        margin-bottom: 0.5rem;
    }

    .hw-cta-inner > p {
        font-size: 1rem;
        color: rgba(255,255,255,0.7);
        margin-bottom: 1.5rem;
    }

.hw-cta-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ANIMATIONS */
.hw-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .hw-animate.hw-visible {
        opacity: 1;
        transform: translateY(0);
    }

.hw-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .hw-fade-up.hw-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* RESPONSIVE - Tablet */
@media (min-width: 576px) {
    .hw-dealer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .hw-range-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 992px) {
    .hw-why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .hw-featured-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .hw-dealer-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .hw-split {
        grid-template-columns: 1fr 1fr;
    }

        .hw-split.hw-split-reverse .hw-split-image {
            order: 2;
        }

        .hw-split.hw-split-reverse .hw-split-content {
            order: 1;
        }

    .hw-split-content {
        padding: 3rem;
    }
}

@media (min-width: 1200px) {
    .hw-split-content {
        padding: 4rem;
    }
}

/* RESPONSIVE - Mobile */
@media (max-width: 767.98px) {
    .hw-hero {
        height: 85vh;
        min-height: 450px;
    }

        .hw-hero h1 {
            font-size: 2rem;
        }

    .hw-hero-lead {
        font-size: 1rem;
    }

    .hw-hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hw-hero-scroll {
        display: none;
    }

        .hw-featured-logos img:first-child {
            height: 80px;
        }
        .hw-why-section,
        .hw-range-section,
        .hw-brochures-section {
            padding: 3.5rem 0;
        }

    .hw-stat-value {
        font-size: 2rem;
    }

    .hw-featured-content {
        padding: 3.5rem 0;
    }

    .hw-featured-actions {
        flex-direction: column;
    }

    .hw-showcase-indoor {
        max-height: 220px;
    }

    .hw-showcase-outdoor {
        max-height: 100px;
    }

    .hw-dealer-section {
        padding: 3rem 0;
    }

    .hw-dealer-card p {
        display: none;
    }

    .hw-legacy-bar {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 0;
    }

    .hw-legacy-text {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hw-cta-content {
        padding: 3rem 0;
    }

    .hw-cta-actions {
        flex-direction: column;
        max-width: 280px;
        margin: 0 auto;
    }

    .hw-split {
        min-height: auto;
    }

    .hw-split-content {
        padding: 2rem 1rem;
    }

        .hw-split-content h2 {
            font-size: clamp(1.25rem, 5vw, 1.5rem);
            margin-bottom: 0.75rem;
        }

    .hw-image-section {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .hw-image-section-bg {
        position: relative;
        inset: auto;
        width: 100%;
        aspect-ratio: 16 / 10;
        flex-shrink: 0;
    }

        .hw-image-section-bg img {
            position: absolute;
            inset: 0;
        }

    .hw-image-section-overlay {
        display: none;
    }

    .hw-image-section-content {
        position: relative;
        padding: 2rem 0;
        background: var(--hw-grey-900);
    }

    .hw-image-section.hw-align-left .hw-text-block,
    .hw-image-section.hw-align-right .hw-text-block,
    .hw-image-section.hw-align-center .hw-text-block {
        max-width: 100%;
        margin: 0;
        text-align: left;
    }

    .hw-text-block {
        padding: 0 1rem;
    }

        .hw-text-block h2 {
            font-size: clamp(1.35rem, 5.5vw, 1.75rem);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hw-text-block p {
            font-size: 0.9375rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

    .hw-inline-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hw-inline-stat strong {
        font-size: 2rem;
    }

    .hw-btn {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .hw-features-list li {
        font-size: 0.9375rem;
        padding: 0.75rem 0;
    }
}
