    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Autonation Regular';
    }

    /* Notification Banner */
    .notification-banner {
        background: var(--grayscale-900);
        text-align: center;
        padding: 10px;
        font-size: 16px;
        color: #fff;
    }

    .notification-banner a {
        color: #fff;
        text-decoration: underline;
        font-weight: 500;
    }

    /* Hero Section */
    .hero {
        padding: 80px;
        display: flex;
        align-items: center;
        gap: 80px;
        background: var(--grayscale-50);
    }

    .hero-content {
        flex: 1;
        max-width: 480px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .hero-content h1 {
        font-size: 60px;
        font-weight: 500;
        line-height: 120%;
        margin-bottom: 8px;
        color: var(--grayscale-950);
        font-family: 'Autonation Bold';
        font-style: normal;
        margin: 0px;
    }

    .hero-content h1 .gradient-text {
        background: linear-gradient(135deg, var(--pink-600), #8e1277);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-family: 'Autonation Bold';
    }

    .hero-content p {
        font-size: 20px;
        color: var(--grayscale-700);
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
    }

    .hero-image {
        flex: 1;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-image img {
        width: 700px;
        height: 374px;
    }

    /* Tab Navigation */
    .tab-nav {
        background: #fff;
        border-top: 1px solid var(--grayscale-200);
        border-bottom: 1px solid var(--grayscale-200);
        padding: 24px 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .tab-nav-label {
        font-size: 16px;
        font-weight: 500;
        color: var(--grayscale-950);
        white-space: nowrap;
        font-family: 'Autonation Bold';
        line-height: 120%;
    }

    .tab-nav-items {
        display: flex;
        gap: 24px;
    }

    .tab-nav-items a {
        padding: 8px 16px;
        border-radius: 360px !important;
        text-decoration: none;
        font-size: 16px;
        color: var(--grayscale-950);
        transition: all 0.2s;
        text-wrap: nowrap;
        cursor: pointer;
        background: var(--grayscale-100);
        border-color: var(--grayscale-100);
    }

    .tab-nav-items a.active,
    .tab-nav-items a:hover {
        background: var(--grayscale-950);
        color: #fff;
        border-color: var(--grayscale-950);
    }

    /* Sections */
    .section {
        padding: 64px 80px;
        background: var(--grayscale-50);
    }

    .section-alt {
        background: #fff;
    }

    .section-alt .icon-card {
        background: var(--grayscale-50);
    }

    .section-container {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 24px
    }

    /* Brand logos */
    .section-brand-logo img {
        height: 100%;
    }

    /* Titles */
    .section-title {
        font-size: 40px;
        font-weight: 500;
        font-family: 'Autonation Bold';
        line-height: 120%;
        color: var(--grayscale-950);
        letter-spacing: -0.8px;
        margin: 0px;
    }

    .section-subtitle {
        color: var(--grayscale-700);
        font-family: 'Autonation Regular';
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        margin-top: 4px;
        /* 24px */
    }

    /* Two Column Coverage */
    .coverage-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .coverage-col {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .coverage-col h3 {
        color: var(--grayscale-950);
        font-family: 'Autonation Bold';
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
        /* 24px */
        letter-spacing: -0.4px;
        margin: 0px;
    }

    .coverage-col p {
        color: var(--grayscale-700);
        font-family: 'Autonation Regular';
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
    }

    /* Icon Cards Grid */
    .cards-label {
        color: var(--grayscale-950);
        font-family: 'Autonation Bold';
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        letter-spacing: -0.4px;
        margin-bottom: 16px;
        margin-top: 0px;
    }

    .icon-cards {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 24px;
    }

    .icon-card {
        background: #fff;
        border-radius: 12px;
        padding: 24px 16px;
        text-align: left;
    }

    .icon-card .icon {
        width: 44px;
        height: 44px;
        background: var(--grayscale-50);
        border-radius: 50%;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .section-alt .icon-card .icon {
        background: #fff;
    }

    .icon-card .icon img {
        width: 28px;
        height: 28px;
        object-fit: contain;
    }

    .icon-card .label {
        color: var(--grayscale-950);
        font-family: 'Autonation Bold';
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
        text-align: left;
        display: flex;
        white-space: normal;
        padding: 0px;
    }

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 12px 32px;
        border-radius: 360px !important;
        font-size: 16px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.2s;
        cursor: pointer;
        border: none;
        text-transform: none !important;
    }

    .btn-primary {
        background: var(--grayscale-800) !important;
        color: #fff !important;
        border-radius: 360px !important;
        width: fit-content;
    }

    .btn-secondary {
        background: #fff !important;
        color: var(--grayscale-800) !important;
        border: 1px solid var(--grayscale-800);
        width: fit-content;
    }

    .btn-roadside {
        background: linear-gradient(135deg, var(--pink-600), #c2185b);
        color: #fff;
    }

    .btn-roadside:hover {
        background: linear-gradient(135deg, #c2185b, #a01050);
    }

    .btn-group {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    /* Plan Cards */
    .plan-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .plan-card {
        border-radius: 16px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        border: 1px solid #F6E7F3;
    }

    .plan-card-2 {
        border: 1px solid #DBF3FE;
    }

    .plan-card .plan-icon {
        height: 56px;
        width: 56px;
    }

    .plan-card h4 {
        color: #5F0C4F;
        font-family: 'Autonation Bold';
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        /* 38.4px */
        letter-spacing: -0.64px;
        margin-bottom: 4px;
    }

    .plan-card .h4-p2 {
        color: #004C57;
    }

    .plan-card .plan-desc {
        color: var(--grayscale-700);
        font-family: 'Autonation Regular';
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 24px */
        margin-bottom: 8px;
    }

    .plan-features {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .plan-li {
        color: var(--grayscale-700);
        font-family: 'Autonation Regular';
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
    }

    .plan-li-sec {
        display: flex;
        gap: 8px;
    }

    /* Covered Parts Grid */
    .parts-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 6px 24px;
    }

    .part-item-col {
        display: flex;
        gap: 8px;
    }

    .part-item {
        color: var(--grayscale-700);
        font-family: 'Autonation Regular';
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 21px */
    }

    /* Disclaimers */
    .disclaimers {
        background: var(--grayscale-900);
        padding: 24px 40px;
    }

    .disclaimers p {
        font-size: 12px;
        color: #fff;
        font-family: 'Autonation Regular';
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 18px */
    }

    /* Mobile/Desktop title and element visibility */
    .title-mobile {
        display: none;
    }

    .btn-roadside {
        display: none;
    }

    .btn-view-warranty .btn-text-mobile {
        display: none;
    }

    .btn-view-warranty .btn-text-desktop {
        display: inline;
    }

    .banner-mobile {
        display: none;
    }

    .additional-terms-mobile {
        display: none;
    }

    /* ===== RESPONSIVE ===== */

    /* MD Devices (1024px - 1439px): 12 columns, 24px gutter, 40px margin, full width */
    @media (max-width: 1439px) {
        .hero {
            padding: 64px 40px;
            gap: 40px;
        }

        .hero-content h1 {
            font-size: 48px;
        }

        .tab-nav {
            padding: 24px 40px;
        }

        .section {
            padding: 48px 40px;
        }

        .cards-label {
            font-size: 16px;
        }

        .icon-cards {
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .plan-cards {
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .parts-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 6px 24px;
        }
    }

    /* SM Devices (768px - 1023px): 12 columns, 24px gutter, 40px margin, full width */
    @media (max-width: 1023px) {
        .hero {
            padding: 48px 40px;
            gap: 40px;
            flex-direction: column;
            text-align: center;
        }

        .hero-content {
            max-width: 100%;
            order: 1
        }

        .hero-content h1 {
            font-size: 48px;
        }

        .hero-image {
            width: 100%;
            order: 0
        }

        .hero-image img {
            width: 374px;
            height: 200px;
        }

        .tab-nav {
            padding: 24px 40px;
            justify-content: flex-start;
        }

        .section {
            padding: 48px 40px;
        }

        .section-title {
            font-size: 32px;
        }

        .coverage-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .icon-cards {
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .plan-cards {
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .parts-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 6px 24px;
        }
    }

    /* XS Devices (320px - 767px): 6 columns, 16px gutter, 16px margin, full width */
    @media (max-width: 767px) {
        .hero {
            padding: 40px 16px;
            flex-direction: column;
            gap: 24px;
            text-align: center;
        }

        .hero-content {
            max-width: 100%;
        }

        .hero-content h1 {
            font-size: 24px;
            letter-spacing: -0.5px;
        }

        .hero-content p {
            font-size: 16px;
        }

        .hero-image {
            width: 100%;
        }

        .hero-image img {
            border-radius: 8px;
            width: 343px;
            height: 183px;
        }

        .tab-nav {
            padding: 24px 16px 12px 16px;
            overflow-x: auto;
            justify-content: flex-start;
            gap: 16px;
            flex-direction: column;
            align-items: flex-start;
        }

        .tab-nav-label {
            font-size: 14px;
            display: block;
            margin-bottom: 8px;
        }

        .tab-nav-items {
            gap: 8px;
        }

        .section {
            padding: 24px 16px;
        }

        .section-container {
            gap: 16px
        }

        .section-title {
            font-size: 20px;
        }

        .section-subtitle {
            font-size: 14px;
        }

        .coverage-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .coverage-col h3 {
            font-size: 16px;
        }

        .coverage-col-mob {
            gap: 4px;
        }

        .coverage-col p {
            font-size: 14px;
        }

        .plan-card .plan-icon {
            height: 40px;
            width: 40px;
        }

        /* Icon cards become list layout */
        .icon-cards {
            grid-template-columns: 1fr;
            gap: 0;
            background: transparent;
        }

        .icon-card {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 16px;
            background: transparent;
            border-radius: 0;
            padding: 12px 0;
        }

        .section-alt .icon-card {
            background: transparent;
        }

        .icon-card:last-child {
            border-bottom: none;
        }

        .icon-card .icon {
            width: 36px;
            height: 36px;
            margin-bottom: 0;
            flex-shrink: 0;
        }

        .icon-card .icon img {
            width: 22px;
            height: 22px;
        }

        .icon-card .label {
            font-size: 14px;
        }

        /* Plan cards single column */
        .plan-cards {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .plan-card {
            padding: 24px;
            background: #fff;
        }

        .plan-card h4 {
            font-size: 20px;
        }

        .plan-card .plan-desc {
            font-size: 14px;
        }

        .plan-li {
            font-size: 14px;
        }

        /* Parts grid single column */
        .parts-grid {
            grid-template-columns: 1fr;
            gap: 4px;
        }

        /* Full width buttons */
        .btn {
            display: block;
            width: 100%;
            text-align: center;
            padding: 14px 28px;
            font-size: 14px;
        }

        .btn-group {
            flex-direction: column;
            gap: 16px;
        }

        .btn-group .btn {
            width: 100%;
            text-align: center;
        }

        .disclaimers {
            padding: 16px;
        }

        .disclaimers p {
            font-size: 10px;
        }

        .notification-banner {
            font-size: 12px;
            padding: 8px;
        }

        /* Section brand logo larger on mobile */
        #bg .section-brand-logo,
        #pennzoil .section-brand-logo {
            display: none;
        }

        .repair-cards-label {
            display: none;
        }

        /* Repair section reorder for XS: What's covered → icons → What's not covered → button */
        #repair .section-container {
            display: flex;
            flex-direction: column;
        }

        #repair .section-brand-text {
            order: 1;
        }

        #repair .section-title {
            order: 2;
        }

        #repair .coverage-grid {
            order: 3;
            display: contents;
        }

        #repair .coverage-grid .coverage-col:first-child {
            order: 3;
        }

        #repair .cards-section {
            order: 4;
        }

        #repair .coverage-grid .coverage-col:last-child {
            order: 5;
        }

        #repair .additional-terms-mobile {
            display: block;
            order: 6;
            margin-top: -20px;
        }

        #repair .additional-terms-desktop {
            display: none;
        }

        #repair .btn-view-warranty {
            order: 7;
        }

        /* Show mobile elements */
        .title-mobile {
            display: inline;
            color: var(--grayscale-950);
            font-family: 'Autonation Bold';
            font-size: 20px;
            font-style: normal;
            font-weight: 500;
            line-height: 120%;
            letter-spacing: -0.4px;
        }

        .title-desktop {
            display: none;
        }

        .btn-roadside {
            display: block;
        }

        .btn-view-warranty .btn-text-desktop {
            display: none;
        }

        .btn-view-warranty .btn-text-mobile {
            display: inline;
        }

        .banner-desktop {
            display: none;
        }

        .banner-mobile {
            display: inline;
        }
    }