:root {
    --black: #080808;
    --black-soft: #111111;
    --dark: #171717;
    --dark-light: #222222;
    --red: #c91522;
    --red-dark: #8f0d16;
    --red-deep: #68090f;
    --red-light: #e22632;
    --white: #ffffff;
    --light: #f6f6f6;
    --light-gray: #eeeeee;
    --text: #242424;
    --muted: #666666;
    --border: #dddddd;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    background: #ffffff;
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font: inherit;
}


/* =========================================================
   HEADER
========================================================= */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.header-container {
    width: min(1180px, calc(100% - 42px));
    min-height: 92px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container a {
    display: flex;
    align-items: center;
}

.mobile-brand-name {
    display: none;
}

.logo-container img {
    width: 96px;
    height: 82px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--black);
    font-weight: 700;
}

.main-nav a {
    position: relative;
    padding: 34px 0;
    transition: color 0.25s ease;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: 25px;
    left: 0;
    height: 3px;
    border-radius: 5px;
    background: var(--red);
    content: "";
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--red);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.header-call-button {
    padding: 13px 23px !important;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    color: #ffffff !important;
    box-shadow: 0 8px 22px rgba(201, 21, 34, 0.26);
    transition: all 0.25s ease;
}

.header-call-button:hover {
    background: linear-gradient(135deg, var(--red), var(--red-light));
    transform: translateY(-2px);
}

.header-call-button::after {
    display: none;
}

.mobile-menu-button {
    display: none;
    width: 45px;
    height: 42px;
    border: 0;
    border-radius: 8px;
    background: var(--black);
    cursor: pointer;
}

.menu-line {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: #ffffff;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: #080808;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url("../images/BACK.png");
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.98) 0%,
            rgba(5, 5, 5, 0.95) 28%,
            rgba(5, 5, 5, 0.82) 43%,
            rgba(5, 5, 5, 0.42) 58%,
            rgba(5, 5, 5, 0.10) 76%,
            rgba(5, 5, 5, 0.03) 100%
        );
}

.hero-slider {
    position: relative;
    z-index: 3;
    min-height: 720px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-content {
    width: min(1180px, calc(100% - 42px));
    margin: auto;
}

.hero-copy {
    width: 58%;
    max-width: 700px;
}

.hero-small-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--red-light);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
}

.hero-small-title::before {
    width: 38px;
    height: 3px;
    border-radius: 5px;
    background: var(--red);
    content: "";
}

.hero-copy h1 {
    max-width: 700px;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: clamp(48px, 5vw, 74px);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1.02;
    text-wrap: balance;
}

.hero-copy h1 span {
    display: block;
    margin-top: 10px;
    color: var(--red-light);
    font-size: 0.62em;
    letter-spacing: -1.4px;
    line-height: 1.08;
    text-wrap: balance;
}

.hero-copy p {
    max-width: 625px;
    margin-bottom: 32px;
    color: #dddddd;
    font-size: 18px;
    line-height: 1.72;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-button,
.section-button,
.light-button,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 8px;
    font-weight: 800;
    transition: all 0.25s ease;
}

.primary-button,
.section-button {
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(201, 21, 34, 0.28);
}

.primary-button:hover,
.section-button:hover {
    background: linear-gradient(135deg, var(--red), var(--red-light));
}

.secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    backdrop-filter: blur(5px);
}

.secondary-button:hover {
    background: #ffffff;
    color: var(--black);
}

.hero-button:hover,
.section-button:hover,
.light-button:hover,
.cta-button:hover {
    transform: translateY(-3px);
}

.hero-dots {
    position: absolute;
    z-index: 10;
    right: 0;
    bottom: 28px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.40);
    cursor: pointer;
    transition: all 0.25s ease;
}

.hero-dot.active {
    width: 30px;
    border-radius: 20px;
    background: var(--red);
}


/* =========================================================
   INFORMATION STRIP
========================================================= */

.information-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--border);
    background: #ffffff;
}

.information-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 132px;
    padding: 22px;
    border-right: 1px solid var(--border);
}

.information-box:last-child {
    border-right: 0;
}

.information-icon,
.service-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 16px;
    background: #fbe9ea;
    color: var(--red);
    font-size: 24px;
    font-weight: 900;
}

.information-box h3 {
    margin-bottom: 4px;
    color: var(--black);
    font-size: 16px;
}

.information-box p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   GENERAL
========================================================= */

.section-container {
    width: min(1180px, calc(100% - 42px));
    margin: auto;
}

.section-label {
    margin-bottom: 15px;
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
}

.section-heading {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading h2,
.about-content h2,
.parts-content h2 {
    color: var(--black);
    font-size: clamp(34px, 4vw, 54px);
    letter-spacing: -2px;
    line-height: 1.08;
}

.section-heading h2 span,
.about-content h2 span,
.parts-content h2 span {
    color: var(--red);
}

.section-heading p {
    margin-top: 20px;
    color: var(--muted);
    font-size: 17px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-section .section-container {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    align-items: center;
    gap: 80px;
}

.about-content p {
    max-width: 650px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 17px;
}

.about-list {
    margin: 27px 0 30px;
    padding: 0;
    list-style: none;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 13px 0;
    font-weight: 700;
}

.about-list li::before {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    border-radius: 50%;
    background: var(--red);
    color: #ffffff;
    content: "✓";
    font-size: 14px;
}

.about-card {
    position: relative;
    overflow: hidden;
    padding: 45px 35px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 80% 90%, rgba(226, 38, 50, 0.34), transparent 34%),
        linear-gradient(145deg, #070707, #181818 62%, #25070a);
    box-shadow: var(--shadow);
    text-align: center;
}

.about-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-light));
    content: "";
}

.about-card::after {
    position: absolute;
    right: -80px;
    bottom: -100px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;
    box-shadow:
        0 0 0 35px rgba(255, 255, 255, 0.025),
        0 0 0 70px rgba(255, 255, 255, 0.012);
    content: "";
}

.about-card-logo,
.about-card h3,
.about-card p,
.location-badge {
    position: relative;
    z-index: 2;
}

.about-card-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    padding: 9px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.30);
}

.about-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-card h3 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 25px;
}

.about-card p {
    color: #d5d5d5;
}

.location-badge {
    display: inline-block;
    margin-top: 24px;
    padding: 9px 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 30px;
    background: rgba(201, 21, 34, 0.16);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   SERVICES
========================================================= */

.services-preview {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f8f8, #eeeeee);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    min-height: 310px;
    overflow: hidden;
    padding: 34px 30px;
    border: 1px solid #dddddd;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.25s ease;
}

.service-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-light));
    content: "";
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(201, 21, 34, 0.34);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.13);
}

.service-card:hover .service-icon {
    background: var(--red);
    color: #ffffff;
    transform: scale(1.05);
}

.service-icon {
    transition: all 0.25s ease;
}

.service-card h3 {
    margin: 22px 0 12px;
    color: var(--black);
    font-size: 21px;
}

.service-card p {
    margin-bottom: 22px;
    color: var(--muted);
}

.service-card a {
    color: var(--red);
    font-weight: 800;
}

.service-card a:hover {
    color: var(--red-dark);
}


/* =========================================================
   FREE ESTIMATE SECTION
========================================================= */

.parts-section {
    padding: 95px 0;
    background:
        radial-gradient(circle at 85% 45%, rgba(201, 21, 34, 0.25), transparent 30%),
        linear-gradient(135deg, #050505, #121212 58%, #24070a);
}

.parts-container {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

.section-label-light {
    color: var(--red-light);
}

.parts-content h2 {
    color: #ffffff;
}

.parts-content h2 span {
    display: block;
    color: var(--red-light);
}

.parts-content p {
    max-width: 620px;
    margin: 24px 0 31px;
    color: #d0d0d0;
    font-size: 17px;
}

.light-button {
    background: #ffffff;
    color: var(--black);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
}

.light-button:hover {
    background: var(--red);
    color: #ffffff;
}

.parts-steps {
    display: grid;
    gap: 18px;
}

.parts-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 23px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(4px);
}

.step-number {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    background: var(--red);
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 7px 18px rgba(201, 21, 34, 0.28);
}

.parts-step h3 {
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 17px;
}

.parts-step p {
    color: #c8c8c8;
    font-size: 14px;
}


/* =========================================================
   CTA
========================================================= */

.call-to-action {
    padding: 58px 0;
    background: linear-gradient(120deg, var(--red-deep), var(--red-dark), var(--red));
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.cta-container h2 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 42px);
}

.cta-container p {
    color: #f7d9dc;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex: 0 0 auto;
}

.cta-button {
    background: #ffffff;
    color: var(--black);
}

.cta-button-outline {
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(0, 0, 0, 0.16);
    color: #ffffff;
}

.cta-button-outline:hover {
    background: #ffffff;
    color: var(--black);
}


/* =========================================================
   FOOTER
========================================================= */

.main-footer {
    padding: 65px 0 0;
    background: #070707;
    color: #bcbcbc;
}

.footer-container {
    width: min(1180px, calc(100% - 42px));
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.65fr 0.75fr 1.4fr;
    gap: 45px;
}

.footer-column {
    min-width: 0;
}

.footer-brand img {
    width: 125px;
    height: 125px;
    object-fit: contain;
    margin-bottom: 20px;
    padding: 7px;
    border-radius: 50%;
    background: #ffffff;
}

.footer-brand p {
    max-width: 330px;
}

.footer-column h3 {
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column a {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 9px;
    color: #bcbcbc;
    overflow-wrap: normal;
    word-break: normal;
    transition: color 0.25s ease;
}

.footer-column a:hover {
    color: var(--red-light);
}

.footer-column p {
    margin-bottom: 14px;
    line-height: 1.8;
}

.footer-column:last-child a {
    white-space: nowrap;
}

.footer-bottom {
    width: min(1180px, calc(100% - 42px));
    margin: 50px auto 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #888888;
    font-size: 13px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .main-nav {
        gap: 18px;
    }

    .information-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .information-box:nth-child(2) {
        border-right: 0;
    }

    .information-box:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-column:last-child a {
        white-space: normal;
        overflow-wrap: anywhere;
    }

}


/* =========================================================
   TABLET SMALL
========================================================= */

@media (max-width: 820px) {

    .header-container {
        min-height: 76px;
    }

    .logo-container img {
        width: 80px;
        height: 68px;
    }

    .mobile-menu-button {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 76px;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 22px 22px;
        border-bottom: 1px solid var(--border);
        background: #ffffff;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.14);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 13px 4px;
    }

    .main-nav a::after {
        display: none;
    }

    .header-call-button {
        margin-top: 8px;
        text-align: center;
    }

    .hero-section,
    .hero-slider {
        min-height: 690px;
    }

    .hero-background {
        background-position: 68% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5, 5, 5, 0.99) 0%,
                rgba(5, 5, 5, 0.96) 55%,
                rgba(5, 5, 5, 0.56) 100%
            );
    }

    .hero-copy {
        width: 72%;
    }

    .hero-copy h1 {
        font-size: 52px;
    }

    .about-section .section-container,
    .parts-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-container {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .header-container,
    .hero-content,
    .section-container,
    .footer-container,
    .footer-bottom {
        width: calc(100% - 28px);
    }

    /* =========================
       HEADER
    ========================= */
    .header-container {
        min-height: 58px;
        gap: 12px;
    }

    .logo-container img {
        width: 50px;
        height: 46px;
    }

    .mobile-menu-button {
        display: block;
        width: 40px;
        height: 38px;
        border-radius: 8px;
    }

    .menu-line {
        width: 20px;
        margin: 4px auto;
    }

    .main-nav {
        top: 58px;
        padding: 10px 14px 16px;
    }

    .main-nav a {
        padding: 10px 3px;
        font-size: 14px;
    }

    .header-call-button {
        min-height: 42px;
        margin-top: 6px;
        padding: 0 16px !important;
    }

    /* =========================
       HERO
    ========================= */
    .hero-section,
    .hero-slider {
        min-height: 555px;
    }

    .hero-background {
        background-position: 64% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4, 4, 4, 0.98) 0%,
                rgba(4, 4, 4, 0.92) 46%,
                rgba(4, 4, 4, 0.62) 74%,
                rgba(4, 4, 4, 0.34) 100%
            );
    }

    .hero-slide {
        align-items: center;
    }

    .hero-copy {
        width: 100%;
        max-width: 340px;
        padding: 10px 0 34px;
    }

    .hero-small-title {
        gap: 8px;
        margin-bottom: 13px;
        font-size: 8.5px;
        letter-spacing: 1px;
        line-height: 1.3;
    }

    .hero-small-title::before {
        width: 26px;
        height: 2px;
    }

    .hero-copy h1 {
        max-width: 330px;
        margin-bottom: 14px;
        font-size: 34px;
        letter-spacing: -1.4px;
        line-height: 0.98;
    }

    .hero-copy h1 span {
        margin-top: 7px;
        font-size: 0.64em;
        letter-spacing: -0.5px;
        line-height: 1.08;
    }

    .hero-copy p {
        max-width: 335px;
        margin-bottom: 18px;
        font-size: 13.5px;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .hero-button,
    .section-button,
    .light-button,
    .cta-button {
        width: 100%;
        min-height: 44px;
        padding: 0 16px;
        border-radius: 7px;
        font-size: 14px;
    }

    .hero-dots {
        bottom: 14px;
        gap: 6px;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }

    .hero-dot.active {
        width: 24px;
    }

    /* =========================
       INFORMATION STRIP
       2 x 2 instead of one long column
    ========================= */
    .information-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .information-box,
    .information-box:nth-child(2) {
        min-height: 112px;
        padding: 14px 10px;
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: center;
    }

    .information-box:nth-child(2n) {
        border-right: 0;
    }

    .information-box:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .information-icon,
    .service-icon {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        border-radius: 12px;
        font-size: 19px;
    }

    .information-box h3 {
        margin-bottom: 1px;
        font-size: 13px;
        line-height: 1.25;
    }

    .information-box p {
        font-size: 11px;
        line-height: 1.35;
    }

    /* =========================
       GENERAL
    ========================= */
    .about-section,
    .services-preview,
    .parts-section {
        padding: 52px 0;
    }

    .section-heading {
        margin-bottom: 28px;
    }

    .section-label {
        margin-bottom: 9px;
        font-size: 10px;
        letter-spacing: 1.4px;
    }

    .section-heading h2,
    .about-content h2,
    .parts-content h2 {
        font-size: 30px;
        letter-spacing: -1px;
        line-height: 1.05;
    }

    .section-heading p,
    .about-content p,
    .parts-content p {
        font-size: 14px;
        line-height: 1.58;
    }

    /* =========================
       ABOUT
    ========================= */
    .about-section .section-container,
    .parts-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-list {
        margin: 20px 0 24px;
    }

    .about-list li {
        margin: 9px 0;
        gap: 9px;
        font-size: 13.5px;
    }

    .about-list li::before {
        width: 22px;
        height: 22px;
        flex-basis: 22px;
        font-size: 12px;
    }

    .about-card {
        padding: 28px 18px;
        border-radius: 20px;
    }

    .about-card-logo {
        width: 96px;
        height: 96px;
        margin-bottom: 16px;
    }

    .about-card h3 {
        margin-bottom: 7px;
        font-size: 20px;
    }

    .about-card p {
        font-size: 13px;
        line-height: 1.55;
    }

    .location-badge {
        margin-top: 17px;
        padding: 7px 13px;
        font-size: 11.5px;
    }

    /* =========================
       SERVICES
    ========================= */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card {
        min-height: 0;
        padding: 24px 20px;
        border-radius: 14px;
    }

    .service-card h3 {
        margin: 15px 0 7px;
        font-size: 18px;
    }

    .service-card p {
        margin-bottom: 14px;
        font-size: 13.5px;
        line-height: 1.55;
    }

    .service-card a {
        font-size: 13.5px;
    }

    /* =========================
       FREE ESTIMATE
    ========================= */
    .parts-content p {
        margin: 18px 0 22px;
    }

    .parts-steps {
        gap: 12px;
    }

    .parts-step {
        gap: 12px;
        padding: 15px;
        border-radius: 11px;
    }

    .step-number {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        font-size: 13px;
    }

    .parts-step h3 {
        font-size: 15px;
    }

    .parts-step p {
        font-size: 12.5px;
        line-height: 1.5;
    }

    /* =========================
       CTA
    ========================= */
    .call-to-action {
        padding: 38px 0;
    }

    .cta-container {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .cta-container h2 {
        margin-bottom: 6px;
        font-size: 27px;
        line-height: 1.08;
    }

    .cta-container p {
        font-size: 13.5px;
        line-height: 1.5;
    }

    .cta-buttons {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }

    /* =========================
       FOOTER
       compact + professional
    ========================= */
    .main-footer {
        padding: 34px 0 0;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 24px 18px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 68px 1fr;
        align-items: center;
        gap: 14px;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(255,255,255,0.10);
    }

    .footer-brand img {
        width: 68px;
        height: 68px;
        margin: 0;
        padding: 4px;
    }

    .footer-brand p {
        max-width: none;
        margin: 0;
        font-size: 12px;
        line-height: 1.5;
    }

    .footer-column h3 {
        margin-bottom: 10px;
        font-size: 15px;
    }

    .footer-column a {
        margin-bottom: 5px;
        font-size: 12.5px;
        line-height: 1.35;
    }

    .footer-column p {
        margin-bottom: 6px;
        font-size: 12.5px;
        line-height: 1.45;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
        padding-top: 16px;
        border-top: 1px solid rgba(255,255,255,0.10);
    }

    .footer-column:last-child a {
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .footer-bottom {
        margin-top: 26px;
        padding: 14px 0 17px;
        align-items: center;
        flex-direction: column;
        gap: 4px;
        font-size: 10.5px;
        line-height: 1.45;
        text-align: center;
    }

    .footer-container {
        text-align: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column a {
        width: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-brand {
        justify-items: center;
        text-align: left;
    }

    .footer-column:last-child {
        text-align: center;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .header-container,
    .hero-content,
    .section-container,
    .footer-container,
    .footer-bottom {
        width: calc(100% - 24px);
    }

    .hero-section,
    .hero-slider {
        min-height: 535px;
    }

    .hero-copy {
        max-width: 315px;
    }

    .hero-copy h1 {
        font-size: 31px;
    }

    .hero-copy p {
        font-size: 13px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-brand {
        grid-template-columns: 62px 1fr;
        gap: 12px;
    }

    .footer-brand img {
        width: 62px;
        height: 62px;
    }

}


/* =========================================================
   MOBILE HEADER BRAND TEST
   Only affects phones
========================================================= */
@media (max-width: 600px) {

    .header-container {
        min-height: 70px;
        gap: 12px;
    }

    .logo-container {
        min-width: 0;
        flex: 1 1 auto;
    }

    .logo-container a {
        display: flex;
        align-items: center;
        min-width: 0;
        gap: 10px;
    }

    .logo-container img {
        width: 78px;
        height: 68px;
        flex: 0 0 78px;
    }

    .mobile-brand-name {
        display: block;
        max-width: none;
        color: var(--black);
        font-size: 14px;
        font-weight: 900;
        line-height: 1;
        white-space: nowrap;
    }

    .mobile-menu-button {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        border-radius: 9px;
    }

    .main-nav {
        top: 70px;
    }

}

@media (max-width: 380px) {

    .logo-container img {
        width: 70px;
        height: 62px;
        flex-basis: 70px;
    }

    .mobile-brand-name {
        max-width: none;
        font-size: 12.5px;
        white-space: nowrap;
    }

}
