:root {
    --ac-black: #0a0a0a;
    --ac-white: #ffffff;
    --ac-grey-950: #0f0f0f;
    --ac-grey-900: #171717;
    --ac-grey-800: #262626;
    --ac-grey-700: #404040;
    --ac-grey-600: #525252;
    --ac-grey-500: #737373;
    --ac-grey-400: #a3a3a3;
    --ac-grey-300: #d4d4d4;
    --ac-grey-200: #e5e5e5;
    --ac-grey-100: #f5f5f5;
    --ac-grey-50: #fafafa;
    --ac-warm-50: #faf9f7;
    --ac-accent: #c9a227;
    --ac-accent-text: #b8941f;
    --ac-success: #22c55e;
    --ac-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ac-transition: 0.3s ease;
    --ac-header-offset: 60px;
}

/* Base */
.ac-page {
    font-family: var(--ac-font);
    color: var(--ac-grey-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

    .ac-page h1, .ac-page h2, .ac-page h3, .ac-page h4 {
        font-family: var(--ac-font);
        font-weight: 600;
        letter-spacing: -0.02em;
        line-height: 1.15;
        color: var(--ac-grey-900);
    }

    .ac-page p {
        font-size: 1.0625rem;
        line-height: 1.75;
        color: var(--ac-grey-300);
    }

#savings p, .ac-split p, .ac-section p {
    color: var(--ac-grey-700);
}

.ac-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ac-accent-text);
    margin-bottom: 1rem;
}

.ac-eyebrow-light {
    color: rgba(255,255,255,0.7);
}

/* Hero */
.ac-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--ac-black);
}

.ac-hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

    .ac-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.7;
    }

.ac-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.3) 100%);
}

.ac-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 140px 0 100px;
}

.ac-hero-text {
    max-width: 600px;
}

.ac-hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ac-accent);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .ac-hero-eyebrow::before {
        content: '';
        width: 40px;
        height: 1px;
        background: var(--ac-accent);
    }

.ac-hero h1 {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--ac-white);
    margin-bottom: 1.5rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.ac-hero-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.ac-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ac-hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

    .ac-hero-scroll a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        color: rgba(255,255,255,0.5);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        text-decoration: none;
    }

    .ac-hero-scroll span {
        width: 1px;
        height: 60px;
        background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
        animation: ac-scroll 2s ease-in-out infinite;
    }

@keyframes ac-scroll {
    0%, 100% {
        transform: scaleY(1);
        opacity: 0.5;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 1;
    }
}

/* Buttons */
.ac-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--ac-transition);
    border: 1px solid transparent;
    cursor: pointer;
}

    .ac-btn i {
        font-size: 0.875rem;
    }

.ac-btn-primary {
    background: var(--ac-white);
    color: var(--ac-grey-900);
    border-color: var(--ac-grey-900);
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

    .ac-btn-primary:hover {
        background: var(--ac-accent);
        border-color: var(--ac-accent);
        color: var(--ac-white);
    }

.ac-btn-secondary {
    background: transparent;
    color: var(--ac-white);
    border-color: rgba(255,255,255,0.3);
}

    .ac-btn-secondary:hover {
        border-color: var(--ac-white);
        background: rgba(255,255,255,0.1);
    }

.ac-btn-dark {
    background: var(--ac-grey-900);
    color: var(--ac-white);
    border-color: var(--ac-grey-900);
}

    .ac-btn-dark:hover {
        background: var(--ac-black);
        transform: translateY(-2px);
    }

.ac-btn-outline {
    background: transparent;
    color: var(--ac-grey-900);
    border-color: var(--ac-grey-300);
}

    .ac-btn-outline:hover {
        border-color: var(--ac-grey-900);
        background: var(--ac-grey-900);
        color: var(--ac-white);
    }

.ac-btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

/* Stats Bar */
.ac-stats-bar {
    background: var(--ac-grey-900);
    border-top: 1px solid var(--ac-grey-800);
}

.ac-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.ac-stat {
    text-align: center;
    padding: 2.5rem 1rem;
    border-right: 1px solid var(--ac-grey-800);
    border-bottom: 1px solid var(--ac-grey-800);
}

.ac-stat-value {
    display: block;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--ac-white);
    letter-spacing: -0.02em;
}

.ac-stat-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--ac-grey-400);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Jump Nav */
.nav-container {
    max-width: 100%;
}

.ac-jump-nav {
    background: var(--ac-white);
    border-bottom: 1px solid var(--ac-grey-200);
    position: relative;
    z-index: 100;
    transition: box-shadow var(--ac-transition);
}

    .ac-jump-nav.ac-jump-nav-sticky {
        position: fixed;
        top: var(--ac-header-offset);
        left: 0;
        right: 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

.ac-jump-nav-placeholder {
    display: none;
    height: 0;
}

    .ac-jump-nav-placeholder.ac-active {
        display: block;
    }

.ac-jump-nav-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
}

    .ac-jump-nav-inner::-webkit-scrollbar {
        display: none;
    }

.ac-jump-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: var(--ac-grey-500);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-bottom: 2px solid transparent;
    transition: all var(--ac-transition);
    white-space: nowrap;
}

    .ac-jump-link i {
        font-size: 1rem;
    }

    .ac-jump-link:hover {
        color: var(--ac-grey-900);
        border-color: var(--ac-grey-300);
        text-decoration: none;
    }

    .ac-jump-link.ac-active {
        color: var(--ac-grey-900);
        border-bottom-color: var(--ac-accent);
        background: linear-gradient(to bottom, transparent 0%, rgba(201,162,39,0.05) 100%);
    }

        .ac-jump-link.ac-active i {
            color: var(--ac-accent);
        }

    .ac-jump-link.ac-jump-cta {
        background: var(--ac-grey-900);
        color: var(--ac-white);
        border-bottom-color: var(--ac-grey-900);
        margin-left: auto;
    }

        .ac-jump-link.ac-jump-cta:hover {
            background: var(--ac-black);
        }

/* Mobile Jump Nav */
.ac-jump-nav-mobile {
    display: none;
    position: relative;
}

.ac-jump-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--ac-white);
    border: none;
    cursor: pointer;
    font-family: var(--ac-font);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ac-grey-900);
    text-align: left;
}

.ac-jump-nav-toggle-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .ac-jump-nav-toggle-content i {
        color: var(--ac-accent);
        font-size: 1rem;
    }

.ac-jump-nav-toggle-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ac-grey-400);
    margin-right: 0.5rem;
}

.ac-jump-nav-toggle-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--ac-grey-100);
    border-radius: 4px;
    transition: all var(--ac-transition);
}

    .ac-jump-nav-toggle-arrow i {
        font-size: 0.75rem;
        color: var(--ac-grey-600);
        transition: transform var(--ac-transition);
    }

.ac-jump-nav-toggle[aria-expanded="true"] .ac-jump-nav-toggle-arrow {
    background: var(--ac-grey-900);
}

    .ac-jump-nav-toggle[aria-expanded="true"] .ac-jump-nav-toggle-arrow i {
        color: var(--ac-white);
        transform: rotate(180deg);
    }

.ac-jump-nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ac-white);
    border-top: 1px solid var(--ac-grey-200);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all var(--ac-transition);
    z-index: 200;
}

    .ac-jump-nav-dropdown.ac-open {
        max-height: 400px;
        opacity: 1;
        visibility: visible;
    }

    .ac-jump-nav-dropdown .ac-jump-link {
        padding: 0.875rem 1.25rem;
        border-bottom: none;
        border-left: 3px solid transparent;
    }

        .ac-jump-nav-dropdown .ac-jump-link:hover {
            background: var(--ac-grey-50);
        }

        .ac-jump-nav-dropdown .ac-jump-link.ac-active {
            background: rgba(201,162,39,0.08);
            border-left-color: var(--ac-accent);
        }

        .ac-jump-nav-dropdown .ac-jump-link.ac-jump-cta {
            margin: 0.5rem 1rem 0.75rem;
            border-radius: 6px;
            justify-content: center;
            border-left: none;
        }

/* Sections */
.ac-section {
    padding: 2rem 0;
}

.ac-section-dark {
    background: var(--ac-grey-950);
}

    .ac-section-dark h2, .ac-section-dark h3 {
        color: var(--ac-white);
    }

    .ac-section-dark p {
        color: var(--ac-grey-400);
    }

.ac-section-warm {
    background: var(--ac-warm-50);
}

.ac-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.ac-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.ac-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

    .ac-intro h2 {
        font-size: clamp(1.75rem, 3vw, 2.25rem);
        font-weight: 500;
        line-height: 1.4;
        color: var(--ac-grey-800);
    }

.ac-large {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--ac-grey-600);
}

.system {
    max-width: 350px;
}
/* Image Sections */
.ac-image-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ac-image-section-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

    .ac-image-section-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.ac-image-section-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.ac-image-section-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 6rem 0;
}

.ac-image-section.ac-align-left .ac-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%);
}

.ac-image-section.ac-align-left .ac-text-block,
.ac-image-section.ac-align-right .ac-text-block {
    max-width: 550px;
}

.ac-image-section.ac-align-right .ac-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%);
}

.ac-image-section.ac-align-right .ac-text-block {
    margin-left: auto;
}

.ac-image-section.ac-align-center .ac-image-section-overlay {
    background: rgba(0,0,0,0.7);
}

.ac-image-section.ac-align-center .ac-text-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.ac-text-block h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ac-white);
    margin-bottom: 1.5rem;
}

.ac-text-block p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.ac-text-block span {
    color: var(--ac-grey-300);
}

.ac-text-block p:last-of-type {
    margin-bottom: 1rem;
}

.ac-inline-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 2rem;
}

.ac-inline-stat strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ac-accent);
    line-height: 1;
}

.ac-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;
}

/* Product Logos */
.ac-product-lockup {
    margin: 2rem 0 1rem;
}

.ac-product-logo-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.ac-product-logo.primary {
    max-width: 220px;
    width: 100%;
}

.ac-product-logo.secondary {
    max-width: 350px;
    width: 100%;
}

.ac-product-visual {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.ac-product-image {
    max-width: 360px;
    width: 100%;
}

/* Split Sections */
.ac-split {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 70vh;
}

.ac-split-image {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

    .ac-split-image img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.ac-split-content {
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    background: var(--ac-white);
}

.ac-split-content-inner {
    max-width: 520px;
}

.ac-split-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.ac-split-dark .ac-split-content {
    background: var(--ac-grey-950);
}

    .ac-split-dark .ac-split-content h2 {
        color: var(--ac-white);
    }

    .ac-split-dark .ac-split-content p {
        color: var(--ac-grey-400);
    }

    .ac-split-dark .ac-split-content span {
        color: var(--ac-grey-300);
    }
/* Features List */
.ac-features-list {
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

    .ac-features-list li {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem 0;
        border-bottom: 1px solid var(--ac-grey-200);
        font-size: 1rem;
        color: var(--ac-grey-400);
    }

.ac-split .ac-features-list li {
    color: var(--ac-grey-700);
}

#performance .ac-features-list li {
    color: var(--ac-grey-300);
}

.ac-features-list li:last-child {
    border-bottom: none;
}

.ac-features-list li::before {
    content: '\2713';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--ac-grey-900);
    color: var(--ac-white);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.ac-split-dark .ac-features-list li {
    border-color: var(--ac-grey-800);
    color: var(--ac-grey-300);
}

    .ac-split-dark .ac-features-list li::before {
        background: var(--ac-accent);
        color: var(--ac-black);
    }

/* Comparison */
.ac-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--ac-grey-200);
    border: 1px solid var(--ac-grey-200);
}

.ac-comparison-col {
    padding: 3rem;
    background: var(--ac-white);
}

    .ac-comparison-col h3 {
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid var(--ac-grey-200);
    }

    .ac-comparison-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .ac-comparison-col li {
        position: relative;
        padding: 1rem 0 1rem 2rem;
        font-size: 0.9375rem;
        line-height: 1.6;
        border-bottom: 1px solid var(--ac-grey-100);
        color: var(--ac-grey-600);
    }

        .ac-comparison-col li:last-child {
            border-bottom: none;
        }

        .ac-comparison-col li::before {
            position: absolute;
            left: 0;
            top: 1rem;
            font-weight: 600;
        }

.ac-comparison-other h3 {
    border-color: var(--ac-grey-400);
}

.ac-comparison-other li::before {
    content: '\2717';
    color: #dc2626;
}

.ac-comparison-aquacore {
    background: var(--ac-grey-900);
}

    .ac-comparison-aquacore h3 {
        color: var(--ac-white);
        border-color: var(--ac-accent);
    }

    .ac-comparison-aquacore li {
        color: var(--ac-grey-300);
        border-color: var(--ac-grey-800);
    }

        .ac-comparison-aquacore li::before {
            content: '\2713';
            color: var(--ac-success);
        }

/* Highlight Box */
.ac-highlight-box {
    background: var(--ac-grey-900);
    color: var(--ac-white);
    padding: 2rem;
    margin: 2rem 0;
}

    .ac-highlight-box h3 {
        color: var(--ac-accent);
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .ac-highlight-box p {
        color: rgba(255,255,255,0.85);
        margin: 0;
    }

/* Benefit Tags */
.ac-benefit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem 0;
}

    .ac-benefit-tags span {
        padding: 0.75rem 1.25rem;
        background: var(--ac-grey-100);
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--ac-grey-700);
    }

.ac-section-dark .ac-benefit-tags span {
    background: var(--ac-grey-800);
    color: var(--ac-grey-300);
}

/* Savings Cards */
.ac-savings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.ac-savings-card {
    background: var(--ac-white);
    padding: 3rem 2rem;
    text-align: center;
    transition: background var(--ac-transition);
}

    .ac-savings-card:hover {
        background: var(--ac-grey-50);
    }

.ac-savings-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--ac-grey-900);
    line-height: 1;
    letter-spacing: -0.02em;
}

.ac-savings-label {
    display: block;
    font-size: 1rem;
    color: var(--ac-grey-600);
    margin-top: 1rem;
    line-height: 1.5;
}

.ac-savings-period {
    display: block;
    font-size: 0.8125rem;
    color: var(--ac-grey-400);
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ac-savings-featured {
    background: var(--ac-grey-900);
}

    .ac-savings-featured:hover {
        background: var(--ac-black);
    }

    .ac-savings-featured .ac-savings-value {
        color: var(--ac-accent);
    }

    .ac-savings-featured .ac-savings-label {
        color: var(--ac-grey-300);
    }

    .ac-savings-featured .ac-savings-period {
        color: var(--ac-grey-500);
    }

/* recapture settintgs*/
.recaptcha-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0 2rem;
}

.ac-field-error-msg {
    color: #dc2626;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

.ac-field-invalid {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220,38,38,0.12) !important;
}

#ac-recaptcha.ac-recaptcha-invalid .g-recaptcha {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
    border-radius: 3px;
}


/* Steps */
.ac-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.ac-step {
    text-align: center;
    padding: 2rem;
}

.ac-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--ac-grey-900);
    color: var(--ac-white);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.ac-step-image {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

    .ac-step-image img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }

.ac-step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.ac-step p {
    font-size: 0.9375rem;
    color: var(--ac-grey-500);
    margin: 0;
}

/* Smart List */
.ac-smart-list {
    margin: 2rem 0;
}

.ac-smart-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--ac-grey-200);
}

    .ac-smart-item:last-child {
        border-bottom: none;
    }

    .ac-smart-item i {
        color: var(--ac-accent);
        font-size: 1.5rem;
        align-self: flex-start;
        margin-top: 0;
    }

    .ac-smart-item span {
        font-size: 1rem;
        color: var(--ac-grey-700);
        line-height: 1.6;
    }

/* CTA Section */
.ac-cta-section {
    background: var(--ac-black);
    padding: 6rem 0;
    text-align: center;
}

    .ac-cta-section h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--ac-white);
        margin-bottom: 1rem;
    }

    .ac-cta-section > .container > p {
        font-size: 1.125rem;
        color: var(--ac-grey-400);
        max-width: 500px;
        margin: 0 auto 2.5rem;
    }

.ac-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.ac-cta-phone {
    font-size: 0.9375rem;
    color: var(--ac-grey-500);
}

    .ac-cta-phone a {
        color: var(--ac-white);
        font-weight: 600;
        text-decoration: none;
    }

        .ac-cta-phone a:hover {
            text-decoration: underline;
        }

/* Downloads */
.ac-download-card {
    background: var(--ac-white);
    border: 1px solid var(--ac-grey-200);
    padding: 2rem;
    height: 100%;
}

    .ac-download-card h3 {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--ac-grey-200);
    }

/* Banner */
.ac-banner-link {
    display: block;
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

    .ac-banner-link:hover .ac-banner-bg img {
        transform: scale(1.03);
    }

.ac-banner-bg {
    aspect-ratio: 16 / 6;
    overflow: hidden;
}

    .ac-banner-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        transition: transform 0.6s ease;
    }

.ac-banner-content {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    padding: 2rem;
}

    .ac-banner-content h2 {
        color: var(--ac-white);
        font-size: clamp(1.5rem, 3vw, 2rem);
        margin-bottom: 0.5rem;
    }

    .ac-banner-content p {
        color: rgba(255,255,255,0.7);
        margin-bottom: 1.5rem;
    }

/* Modals */
.ac-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--ac-transition);
    backdrop-filter: blur(8px);
}

    .ac-modal-overlay.ac-modal-active {
        opacity: 1;
        visibility: visible;
    }

.ac-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    z-index: 2001;
    background: var(--ac-white);
    max-width: 900px;
    width: calc(100% - 2rem);
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all var(--ac-transition);
}

    .ac-modal.ac-modal-active {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%) scale(1);
    }

.ac-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border: 1px solid var(--ac-grey-200);
    background: var(--ac-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--ac-grey-600);
    transition: all var(--ac-transition);
    z-index: 10;
}

    .ac-modal-close:hover {
        background: var(--ac-grey-900);
        border-color: var(--ac-grey-900);
        color: var(--ac-white);
    }

.ac-modal-content {
    padding: 3rem;
}

    .ac-modal-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        padding-right: 2rem;
    }

    .ac-modal-content h4 {
        font-size: 1.125rem;
        color: var(--ac-grey-900);
        margin-top: 2rem;
        margin-bottom: 0.75rem;
    }

    .ac-modal-content p {
        color: var(--ac-grey-600);
        line-height: 1.8;
        margin-bottom: 1rem;
    }

    .ac-modal-content ul {
        margin: 1rem 0;
        padding-left: 1.25rem;
    }

        .ac-modal-content ul li {
            color: var(--ac-grey-600);
            margin-bottom: 0.5rem;
        }

.ac-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 0.875rem 1.5rem;
    background: transparent;
    border: 2px solid var(--ac-grey-300);
    color: var(--ac-grey-900);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--ac-transition);
}

    .ac-learn-more i {
        font-size: 0.75rem;
        transition: transform var(--ac-transition);
    }

    .ac-learn-more:hover {
        background: var(--ac-grey-900);
        border-color: var(--ac-grey-900);
        color: var(--ac-white);
        text-decoration: none;
    }

.ac-section-dark .ac-learn-more,
.ac-split-dark .ac-learn-more {
    border-color: var(--ac-grey-600);
    color: var(--ac-grey-300);
}

    .ac-section-dark .ac-learn-more:hover,
    .ac-split-dark .ac-learn-more:hover {
        background: var(--ac-accent);
        border-color: var(--ac-accent);
        color: var(--ac-black);
    }

.ac-image-section .ac-learn-more,
.ac-text-block .ac-learn-more {
    border-color: rgba(255,255,255,0.4);
    color: var(--ac-white);
}

    .ac-image-section .ac-learn-more:hover,
    .ac-text-block .ac-learn-more:hover {
        background: var(--ac-white);
        border-color: var(--ac-white);
        color: var(--ac-grey-900);
    }

.ac-section-dark .ac-learn-more {
    color: var(--ac-grey-300);
}

    .ac-section-dark .ac-learn-more:hover {
        color: var(--ac-accent);
    }

/* Animations */
.ac-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .ac-fade-up.ac-visible {
        opacity: 1;
        transform: translateY(0);
    }

.ac-stagger .ac-fade-up:nth-child(1) {
    transition-delay: 0s;
}

.ac-stagger .ac-fade-up:nth-child(2) {
    transition-delay: 0.1s;
}

.ac-stagger .ac-fade-up:nth-child(3) {
    transition-delay: 0.2s;
}

.ac-mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1500;
    display: none;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255,255,255,0.95);
    border-top: 1px solid var(--ac-grey-200);
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

/* Form */
.ac-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--ac-white);
    border: 1px solid var(--ac-grey-200);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 2.5rem;
}

.ac-form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--ac-grey-200);
}

    .ac-form-section:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .ac-form-section h3 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--ac-grey-900);
        margin-bottom: 1.25rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

.ac-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.ac-form-group {
    display: flex;
    flex-direction: column;
}

    .ac-form-group label {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--ac-grey-700);
        margin-bottom: 0.5rem;
    }

.ac-required {
    color: var(--ac-accent);
}

.ac-form-group input,
.ac-form-group select,
.ac-form-group textarea {
    padding: 0.875rem 1rem;
    background: var(--ac-grey-50);
    border: 1px solid var(--ac-grey-300);
    color: var(--ac-grey-900);
    font-size: 1rem;
    font-family: var(--ac-font);
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

    .ac-form-group input:focus,
    .ac-form-group select:focus,
    .ac-form-group textarea:focus {
        outline: none;
        border-color: var(--ac-accent);
        background: var(--ac-white);
    }

    .ac-form-group input::placeholder,
    .ac-form-group textarea::placeholder {
        color: var(--ac-grey-400);
    }

.ac-form-group 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 12 12'%3E%3Cpath fill='%23a3a3a3' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

    .ac-form-group select option {
        background: var(--ac-white);
        color: var(--ac-grey-900);
    }

.ac-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.ac-form-full {
    grid-column: 1 / -1;
}

.ac-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--ac-grey-600);
}

    .ac-checkbox input {
        width: 18px;
        height: 18px;
        margin-top: 2px;
        accent-color: var(--ac-accent);
        cursor: pointer;
    }

    .ac-checkbox span {
        line-height: 1.5;
    }

.ac-form-privacy {
    font-size: 0.8125rem;
    color: var(--ac-grey-500);
    margin: 1rem 0 1.5rem;
    line-height: 1.6;
}

    .ac-form-privacy a {
        color: var(--ac-grey-700);
        text-decoration: underline;
    }

        .ac-form-privacy a:hover {
            color: var(--ac-accent-text);
        }

.ac-form-submit {
    text-align: center;
}

    .ac-form-submit .ac-btn {
        min-width: 200px;
    }

/*address*/
.ac-address-search-wrapper {
    position: relative;
}

    .ac-address-search-wrapper input {
        padding-right: 40px;
    }

.addressSearch {
    width: 100%;
}

#addressSearchIcon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    pointer-events: none;
}

    #addressSearchIcon.success {
        color: #22c55e;
    }

    #addressSearchIcon.danger {
        color: #dc2626;
    }

#addressData_wrapper {
    display: none;
    background: #fff;
    border: 1px solid var(--ac-grey-200);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-height: 250px;
    overflow-y: auto;
    z-index: 100;
    width: 100%;
}

#addressData {
    width: 100% !important;
}

    #addressData tbody tr {
        cursor: pointer;
    }

        #addressData tbody tr:hover {
            background: var(--ac-grey-50);
        }

    #addressData tbody td {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--ac-grey-100);
        font-size: 0.875rem;
    }

#addressData_filter,
#addressData_info,
#addressData_paginate,
.dataTables_empty {
    display: none !important;
}


/* ============================================
   SUBPAGE STYLES (buywhere, casestudies, news)
   Add to end of bdt.bs.aquacore.css
   ============================================ */

.ac-hero-mini {
    min-height: 50vh;
}

    .ac-hero-mini .ac-hero-content {
        padding: 100px 0 60px;
    }

    .ac-hero-mini h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .ac-hero-mini .ac-hero-lead {
        font-size: 1.125rem;
        max-width: 600px;
    }

.ac-jump-nav-dark {
    background: var(--ac-grey-900);
    border-bottom: 1px solid var(--ac-grey-800);
}

    .ac-jump-nav-dark .ac-jump-link {
        color: rgba(255,255,255,0.7);
        border-bottom-color: transparent;
    }

        .ac-jump-nav-dark .ac-jump-link:hover {
            color: var(--ac-white);
            border-bottom-color: rgba(255,255,255,0.3);
            background: rgba(255,255,255,0.05);
        }

        .ac-jump-nav-dark .ac-jump-link.ac-active {
            color: var(--ac-white);
            border-bottom-color: var(--ac-accent);
            background: rgba(201,162,39,0.1);
        }

            .ac-jump-nav-dark .ac-jump-link.ac-active i {
                color: var(--ac-accent);
            }

        .ac-jump-nav-dark .ac-jump-link.ac-jump-cta {
            background: var(--ac-accent);
            color: var(--ac-black);
            border-bottom-color: var(--ac-accent);
        }

            .ac-jump-nav-dark .ac-jump-link.ac-jump-cta:hover {
                background: #d4ad2c;
            }

    .ac-jump-nav-dark .ac-jump-nav-toggle {
        background: var(--ac-grey-900);
        color: var(--ac-white);
    }

    .ac-jump-nav-dark .ac-jump-nav-toggle-label {
        color: rgba(255,255,255,0.5);
    }

    .ac-jump-nav-dark .ac-jump-nav-toggle-arrow {
        background: var(--ac-grey-800);
    }

        .ac-jump-nav-dark .ac-jump-nav-toggle-arrow i {
            color: rgba(255,255,255,0.7);
        }

    .ac-jump-nav-dark .ac-jump-nav-dropdown {
        background: var(--ac-grey-900);
        border-top-color: var(--ac-grey-800);
    }

        .ac-jump-nav-dark .ac-jump-nav-dropdown .ac-jump-link {
            color: rgba(255,255,255,0.7);
            border-left-color: transparent;
        }

            .ac-jump-nav-dark .ac-jump-nav-dropdown .ac-jump-link:hover {
                background: rgba(255,255,255,0.05);
                color: var(--ac-white);
            }

            .ac-jump-nav-dark .ac-jump-nav-dropdown .ac-jump-link.ac-active {
                background: rgba(201,162,39,0.15);
                border-left-color: var(--ac-accent);
                color: var(--ac-white);
            }

.ac-form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--ac-grey-200);
}

    .ac-form-section:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .ac-form-section h3 {
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--ac-grey-800);
        margin-bottom: 1rem;
    }

.ac-form-error ul {
    list-style-type: disc;
}

.ac-form-error li {
    margin-bottom: 0.25rem;
}

.ac-required {
    color: #dc2626;
    font-weight: 600;
}

.ac-form-group textarea {
    padding: 0.875rem 1rem;
    background: var(--ac-grey-50);
    border: 1px solid var(--ac-grey-300);
    color: var(--ac-grey-900);
    font-size: 1rem;
    font-family: var(--ac-font);
    transition: border-color 0.2s ease, background-color 0.2s ease;
    resize: vertical;
    min-height: 100px;
    width: 100%;
}

    .ac-form-group textarea:focus {
        outline: none;
        border-color: var(--ac-accent);
        background: var(--ac-white);
    }

    .ac-form-group textarea::placeholder {
        color: var(--ac-grey-400);
    }

.ac-form-submit .ac-btn i {
    margin-right: 0.5rem;
}

.ac-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.14);
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #c9a227;
}

.ac-icon-left-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 1.25rem 0;
}

.ac-icon-left-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--ac-grey-100);
}

    .ac-icon-left-item:first-child {
        padding-top: 0;
    }

    .ac-icon-left-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .ac-icon-left-item .ac-icon-circle {
        font-size: 1.25rem;
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .ac-icon-left-item span {
        flex: 1;
    }

.ac-split-dark .ac-icon-left-item {
    color: var(--ac-grey-300);
    border-bottom-color: var(--ac-grey-900);
}

.ac-image-section .ac-icon-left-item {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

@keyframes successPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* MEDIA QUERIES */
/* Desktop */
@media (min-width: 992px) {
    .ac-split {
        grid-template-columns: 1fr 1fr;
    }

        .ac-split.ac-split-reverse .ac-split-image {
            order: 2;
        }

        .ac-split.ac-split-reverse .ac-split-content {
            order: 1;
        }

    .ac-split-content {
        padding: 3rem;
    }

    .ac-jump-nav-inner {
        display: flex;
    }

    .ac-jump-nav-mobile {
        display: none;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .ac-split-content {
        padding: 4rem;
    }
}

/* Tablet & Up */
@media (min-width: 768px) {
    .ac-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .ac-stat {
        border-bottom: none;
    }

        .ac-stat:last-child {
            border-right: none;
        }

    .ac-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ac-form-wrapper {
        padding: 3rem;
    }

    .ac-comparison {
        grid-template-columns: 1fr 1fr;
    }

    .ac-savings-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ac-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .ac-step {
        border-right: 1px solid var(--ac-grey-200);
    }

        .ac-step:last-child {
            border-right: none;
        }

    .system {
        max-width: 400px;
    }
}

/* Tablet Only */
@media (min-width: 768px) and (max-width: 991.98px) {
    .ac-hero-content {
        padding: 100px 0 60px;
    }

    .ac-split-content {
        padding: 2.5rem 1.5rem;
    }

    .ac-modal-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    :root {
        --ac-header-offset: 56px;
    }

    .ac-jump-nav-inner {
        display: none;
    }

    .ac-jump-nav-mobile {
        display: block;
    }

    .ac-page {
        padding-bottom: 70px;
    }

        .ac-page p {
            font-size: 0.9375rem;
            line-height: 1.6;
        }

    .ac-eyebrow {
        margin-bottom: 0.5rem;
        font-size: 0.7rem;
    }

    .ac-hero {
        min-height: auto;
    }

    .ac-hero-content {
        padding: 65px 0 2rem;
    }

    .ac-hero-text {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .ac-hero-eyebrow {
        font-size: 0.7rem;
        margin-bottom: 0;
    }

    .ac-hero h1 {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
        line-height: 1.1;
        margin-bottom: 0;
    }

    .ac-hero-cta {
        margin-top: 2rem;
        padding-top: 0;
    }

    .ac-text-block p:last-of-type {
        margin-bottom: 0px;
    }

    .ac-hero-scroll {
        display: none;
    }

    .ac-btn {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .ac-btn-small {
        padding: 0.6rem 0.875rem;
        font-size: 0.8125rem;
    }

    .ac-section {
        padding: 2.5rem 0;
    }

    .ac-section-header {
        margin: 0 auto 1.5rem;
        padding: 0;
    }

    .ac-section h2 {
        font-size: clamp(1.35rem, 5.5vw, 1.75rem);
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }

    .ac-intro {
        text-align: left;
        padding: 0;
    }

        .ac-intro h2 {
            font-size: clamp(1.25rem, 5vw, 1.5rem);
            line-height: 1.3;
            margin-bottom: 0.75rem;
        }

    .ac-large {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .ac-stat {
        padding: 1.25rem 0.5rem;
    }

    .ac-stat-value {
        font-size: 1.75rem;
    }

    .ac-stat-label {
        font-size: 0.65rem;
        margin-top: 0.25rem;
    }

    /* 2-col grid: remove border bleed on right column and last row */
    .ac-stat:nth-child(even) {
        border-right: none;
    }

    .ac-stat:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .ac-jump-nav.ac-jump-nav-sticky {
        top: var(--ac-header-offset);
    }

    .ac-jump-link {
        padding: 0.75rem;
        font-size: 0.75rem;
    }

        .ac-jump-link i {
            font-size: 1rem;
        }

    .ac-jump-nav-toggle {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .ac-split {
        min-height: auto;
    }

    .ac-split-content {
        padding: 2rem 1rem;
    }

        .ac-split-content h2 {
            font-size: clamp(1.25rem, 5vw, 1.5rem);
            margin-bottom: 0.75rem;
        }

    #why .container {
        padding: 0px;
    }

        #why .container .ac-highlight-box {
            margin: 0;
            padding: 1.5rem 1rem;
        }

    .ac-icon-left-item span {
        font-size: 0.9rem;
    }

    /* Image Sections - Stacked */
    .ac-image-section {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .ac-image-section-bg {
        position: relative;
        inset: auto;
        width: 100%;
        aspect-ratio: 16 / 10;
        flex-shrink: 0;
    }

        .ac-image-section-bg img {
            position: absolute;
            inset: 0;
        }

    .ac-image-section-overlay {
        display: none;
    }

    .ac-image-section-content {
        position: relative;
        padding: 2rem 0;
        background: var(--ac-grey-900);
    }

    .ac-image-section.ac-align-left .ac-text-block,
    .ac-image-section.ac-align-right .ac-text-block,
    .ac-image-section.ac-align-center .ac-text-block {
        max-width: 100%;
        margin: 0;
        text-align: left;
    }

    .ac-text-block h2 {
        font-size: clamp(1.35rem, 5.5vw, 1.75rem);
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .ac-text-block p {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .ac-text-block > div > img {
        max-width: 100%;
        height: auto;
        margin: 0rem;
    }

    .ac-inline-stats {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .ac-inline-stat {
        text-align: center;
    }

        .ac-inline-stat strong {
            font-size: 2rem;
        }

        .ac-inline-stat span {
            font-size: 0.75rem;
            margin-top: 0.25rem;
        }

    .ac-image-section .ac-features-list {
        margin: 1.5rem 0;
    }

        .ac-image-section .ac-features-list li {
            border-color: var(--ac-grey-700);
        }

    .ac-features-list {
        margin: 1rem 0;
    }

        .ac-features-list li {
            padding: 0.6rem 0;
            font-size: 0.875rem;
            gap: 0.75rem;
        }

            .ac-features-list li::before {
                width: 18px;
                height: 18px;
                font-size: 0.6rem;
            }

    .ac-comparison-col {
        padding: 1.5rem 1rem;
    }

        .ac-comparison-col h3 {
            padding-bottom: 0.5rem;
            font-size: 1rem;
        }

    .ac-highlight-box {
        padding: 0.5rem;
        margin: 0.5rem;
    }

    .ac-comparison-col li {
        padding: 0.6rem 0 0.6rem 1.5rem;
        font-size: 0.85rem;
    }

    .ac-highlight-box h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .ac-highlight-box p {
        font-size: 0.875rem;
    }

    .ac-benefit-tags {
        gap: 0.375rem;
        margin: 1.5rem 0;
    }

        .ac-benefit-tags span {
            padding: 0.5rem 0.75rem;
            font-size: 0.75rem;
        }

    .ac-savings-card {
        padding: 1.5rem 1rem;
    }

    .ac-savings-value {
        font-size: 2.5rem;
    }

    .ac-savings-label {
        font-size: 0.85rem;
        margin-top: 0.5rem;
        line-height: 1.4;
    }

    .ac-savings-period {
        margin-top: 0.75rem;
        font-size: 0.65rem;
    }

    .ac-step {
        padding: 1.25rem 0.75rem;
    }

    .ac-step-number {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .ac-step-image {
        height: 90px;
        margin-bottom: 0.75rem;
    }

    .ac-step h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .ac-step p {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    .ac-smart-list {
        margin: 1rem 0;
    }

    .ac-smart-item {
        padding: 0.75rem 0;
        gap: 0.75rem;
    }

        .ac-smart-item i {
            font-size: 1rem;
        }

        .ac-smart-item span {
            font-size: 0.875rem;
            line-height: 1.5;
        }

    .ac-modal-content {
        padding: 1.25rem 1rem;
    }

        .ac-modal-content h3 {
            font-size: 1.125rem;
            margin-bottom: 0.75rem;
        }

        .ac-modal-content h4 {
            font-size: 0.95rem;
            margin-top: 1rem;
        }

        .ac-modal-content p {
            font-size: 0.875rem;
            line-height: 1.6;
            margin-bottom: 0.75rem;
        }

    .ac-modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 36px;
        height: 36px;
    }

    .ac-banner-bg {
        height: 400px;
    }

    .ac-banner-content {
        padding: 1.25rem 1rem;
    }

        .ac-banner-content h2 {
            font-size: 1.25rem;
        }

        .ac-banner-content p {
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

    .ac-cta-section {
        padding: 3rem 0;
    }

        .ac-cta-section h2 {
            font-size: 1.5rem;
        }

    .ac-cta-buttons {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .ac-cta-phone {
        font-size: 0.85rem;
    }

    .ac-download-card {
        padding: 1.25rem 1rem;
    }

        .ac-download-card h3 {
            font-size: 1rem;
            margin-bottom: 1rem;
            padding-bottom: 0.75rem;
        }

    .ac-learn-more {
        margin-top: 1.25rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        justify-content: center;
    }

    .ac-form-wrapper {
        padding: 1.5rem;
        margin: 0 -1rem;
        border-left: none;
        border-right: none;
    }

    .ac-form-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

        .ac-form-section h3 {
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

    .ac-form-group input, .ac-form-group select, .ac-form-group textarea {
        padding: 0.75rem;
        font-size: 16px;
    }

    .ac-form-submit .ac-btn {
        width: 100%;
    }

    .ac-mobile-cta.ac-mobile-cta-visible {
        display: flex;
        transform: translateY(0);
    }

    .ac-page.ac-mobile-cta-active {
        padding-bottom: 70px;
    }

    .ac-mobile-cta {
        display: flex;
        padding: 0.5rem;
        gap: 0.5rem;
    }

        .ac-mobile-cta .ac-btn {
            flex: 1;
            padding: 0.7rem 0.75rem;
            font-size: 0.85rem;
        }

    .ac-hero-mini {
        min-height: auto;
    }

        .ac-hero-mini .ac-hero-content {
            padding: 80px 0 40px;
        }

        .ac-hero-mini h1 {
            font-size: 1.5rem;
        }

        .ac-hero-mini .ac-hero-lead {
            font-size: 0.9375rem;
        }


    .ac-form-section h3 {
        font-size: 1rem;
    }

    .ac-form-error {
        padding: 0.75rem 1rem;
    }

        .ac-form-error ul {
            padding-left: 1rem;
        }
}


@media (min-width: 2400px) {
    .ac-content-wrap {
        max-width: 1820px;
        margin: 0 auto;
        overflow: hidden;
    }
}

.ac-roi-graph-wrap {
    position: absolute;
    inset: 0;
}

    .ac-roi-graph-wrap picture {
        display: block;
    }


.ac-roi-pulse {
    position: absolute;
    width: 14px;
    height: 14px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

    .ac-roi-pulse::before,
    .ac-roi-pulse::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 2px solid var(--ac-accent);
        animation: ac-pulse-ring 2.2s ease-out infinite;
    }

    .ac-roi-pulse::after {
        animation-delay: 1.1s;
    }

    .ac-roi-pulse:nth-child(2) {
        animation-delay: 0.15s;
    }

    .ac-roi-pulse:nth-child(3) {
        animation-delay: 0.3s;
    }

    .ac-roi-pulse:nth-child(4) {
        animation-delay: 0.45s;
    }

    .ac-roi-pulse:nth-child(5) {
        animation-delay: 0.6s;
    }

    .ac-roi-pulse:nth-child(6) {
        animation-delay: 0.75s;
    }

    .ac-roi-pulse:nth-child(7) {
        animation-delay: 0.9s;
    }

    .ac-roi-pulse:nth-child(8) {
        animation-delay: 1.05s;
    }

@keyframes ac-pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.85;
    }

    100% {
        transform: scale(3.2);
        opacity: 0;
    }
}
