/* ===== VARIABLES ===== */
:root {
    --primary-red: #cf2e2e;
    --primary-red-hover: #b52727;
    --black: #000000;
    --header-dark: #1a1a1a;
    --footer-dark: #111111;
    --white: #ffffff;
    --bg-light: #f5f5f5;
    --text-dark: #333333;
    --text-gray: #666666;
    --text-light: #ffffff;
    --btn-dark: #32373c;
    --btn-dark-hover: #23272b;
    --accent-yellow: #fcb900;
    --border-light: #e0e0e0;
    --max-width: 1200px;
    --header-height: 120px;
    --transition: 0.3s ease;
    --radius-pill: 9999px;
    --radius-card: 8px;
    --shadow-card: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-red-hover);
}

ul, ol {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
}

h1 {
    font-size: 2.75rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.section-heading {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* .section-heading-dark removed — unused */

/* ===== LAYOUT UTILITIES ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-light {
    background-color: var(--bg-light);
}

.section-dark {
    background-color: var(--header-dark);
    color: var(--text-light);
}

.section-dark p {
    color: #ccc;
}

.section-dark .section-label {
    color: var(--primary-red);
}

.section-dark .section-heading {
    color: var(--primary-red);
}

.text-center {
    text-align: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.grid-6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.75em 2em;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    text-decoration: none;
    line-height: 1.4;
}

.btn-red {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.btn-red:hover {
    background-color: var(--primary-red-hover);
    border-color: var(--primary-red-hover);
    color: var(--white);
}

.btn-dark {
    background-color: var(--btn-dark);
    color: var(--white);
    border-color: var(--btn-dark);
}

.btn-dark:hover {
    background-color: var(--btn-dark-hover);
    border-color: var(--btn-dark-hover);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--header-dark);
}

.btn-outline-red {
    background-color: transparent;
    color: var(--primary-red);
    border-color: var(--primary-red);
}

.btn-outline-red:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
}

.read-more {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.read-more:hover {
    color: var(--primary-red-hover);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-top {
    background-color: var(--header-dark);
    padding: 0.75rem 0;
}

.header-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 45px;
    width: auto;
}

.header-cta {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.5em 1.2em;
}

@media (min-width: 768px) {
    .header-cta {
        font-size: 0.9rem;
        padding: 0.65em 1.8em;
    }
}

.header-nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-light);
}

.header-nav .container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: var(--white);
    position: absolute;
    top: 100%;
    left: 0;
    border-bottom: 2px solid var(--primary-red);
    z-index: 999;
}

.nav-links.active {
    display: flex;
}

.nav-links a {
    display: block;
    padding: 0.85rem 1.5rem;
    color: var(--black);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition);
    border-bottom: 1px solid var(--bg-light);
    text-align: center;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-red);
}

.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--black);
    cursor: pointer;
    padding: 0.85rem 1.5rem;
    width: auto;
    margin-left: auto;
}

/* ===== HERO ===== */
.hero {
    background-color: var(--header-dark);
    color: var(--white);
    padding: 10rem 0 6rem;
    margin-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-image {
    display: none;
}

@media (min-width: 768px) {
    .hero-image {
        position: absolute;
        top: 0;
        right: -5%;
        width: 50%;
        height: 100%;
        z-index: 1;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .hero-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 150px;
        height: 100%;
        background: linear-gradient(to right, var(--header-dark), transparent);
        z-index: 2;
    }

    .hero-content {
        max-width: 50%;
    }
}

.hero-logo {
    max-width: 200px;
    margin-bottom: 2rem;
}

.hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.hero p {
    color: #ccc;
    font-size: 1.15rem;
    max-width: 600px;
    margin-bottom: 0.5rem;
}

.hero-tagline {
    color: var(--primary-red) !important;
    font-weight: 700;
    font-size: 1.1rem !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem !important;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hero-updated {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #888;
}

.hero-updated time {
    color: #999;
}

/* ===== STATS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    border-top: 3px solid var(--primary-red);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* ===== BRANDS (removed unused .brands-row/.brand-box — using image now) ===== */

/* ===== EQUIPMENT CARDS ===== */
.equipment-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    border-top: 3px solid var(--primary-red);
    transition: all var(--transition);
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.equipment-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
}

.equipment-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform var(--transition);
}

.equipment-card:hover .equipment-img img {
    transform: scale(1.05);
}

.equipment-card h3 {
    margin-bottom: 0.5rem;
}

.equipment-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* ===== SPEC TABLE ===== */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.spec-table th {
    background-color: var(--header-dark);
    color: var(--white);
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
}

.spec-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-light);
}

.spec-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

/* ===== HOW IT WORKS ===== */
.steps-list {
    counter-reset: step-counter;
    max-width: 700px;
    margin: 2rem auto 0;
}

.step-item {
    counter-increment: step-counter;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
}

.step-content h3 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* ===== PRICING ===== */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    text-align: center;
    position: relative;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border: 2px solid var(--primary-red);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom-left-radius: var(--radius-card);
}

.pricing-header {
    background: var(--header-dark);
    color: var(--white);
    padding: 2rem 1.5rem;
}

.pricing-header h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
}

.pricing-price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: #ccc;
}

.pricing-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-body .btn {
    margin-top: auto;
}

.pricing-features {
    text-align: left;
    margin-bottom: 1.5rem;
    flex: 1;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--bg-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li i {
    color: var(--primary-red);
    font-size: 0.85rem;
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.comparison-table th {
    background-color: var(--header-dark);
    color: var(--white);
    padding: 0.75rem 1rem;
    text-align: center;
    font-weight: 600;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: 0.75rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

/* ===== TESTIMONIALS ===== */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.testimonial-track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease;
    width: 100%;
}

.testimonial-card {
    flex: 0 0 100%;
    min-width: 0;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

.testimonial-inner {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--primary-red);
}

.testimonial-stars {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    color: var(--black);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-red);
    background: none;
    color: var(--primary-red);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    font-size: 1rem;
}

.carousel-btn:hover {
    background: var(--primary-red);
    color: var(--white);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    border: none;
    cursor: pointer;
    transition: background var(--transition);
}

.carousel-dot.active {
    background: var(--primary-red);
}

/* ===== FAQ ===== */
/* FAQ - details/summary format */
.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-card);
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--white);
}

details.faq-item > summary {
    list-style: none;
}

details.faq-item > summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--black);
    text-align: left;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--primary-red);
}

.faq-question i {
    color: var(--primary-red);
    font-size: 0.9rem;
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

details.faq-item[open] .faq-question i {
    transform: rotate(45deg);
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border: 1px solid #444;
    border-radius: 4px;
    background: #2d2d2d;
    color: var(--white);
    font-family: inherit;
    transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form select {
    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='%23cf2e2e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}

.form-message {
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #0a3d0a;
    color: #4caf50;
    border: 1px solid #1b5e20;
    display: block;
}

.form-message.error {
    background: #3d0a0a;
    color: #ef5350;
    border: 1px solid #b71c1c;
    display: block;
}

.contact-info-card {
    margin-bottom: 1.5rem;
}

.contact-info-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info-card h3 i {
    color: var(--primary-red);
}

.contact-info-card p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contact-info-card a {
    color: #ddd;
}

.contact-info-card a:hover {
    color: var(--primary-red);
}

.contact-hours {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
}

.contact-hours h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-hours p {
    color: #ccc;
    font-size: 0.9rem;
}

/* ===== MAP ===== */
.map-section {
    position: relative;
}

.map-container {
    width: 100%;
    height: 400px;
    position: relative;
    z-index: 1;
}

#branchMap {
    z-index: 1;
}

.leaflet-top,
.leaflet-bottom {
    z-index: 2 !important;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--footer-dark);
    color: #bbb;
    border-top: 3px solid var(--primary-red);
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-red);
}

.footer-logo {
    max-width: 130px;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.6;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--primary-red);
    margin-top: 0.2rem;
    width: 16px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #222;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--primary-red);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.footer-bottom a {
    color: #666;
}

.footer-bottom a:hover {
    color: var(--primary-red);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 900;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-red-hover);
    transform: translateY(-3px);
}

/* ===== USE CASES ALIGNMENT ===== */
@media (min-width: 768px) {
    .use-cases-grid {
        align-items: start;
    }
    .use-cases-grid > div:last-child {
        padding-top: 9.5rem;
    }
}

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MEDIA QUERIES ===== */

/* Small mobile */
@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    #branchMap {
        height: 300px !important;
    }

    .stat-card {
        padding: 1.25rem 0.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Tablet */
@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    .section-heading { font-size: 2.25rem; }

    .grid-2 { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-6 { grid-template-columns: repeat(2, 1fr); }

    .stats-grid { grid-template-columns: repeat(4, 1fr); }

    .header-cta { display: inline-block; }

    .contact-grid { grid-template-columns: 1.2fr 1fr; }

    .footer-grid { grid-template-columns: repeat(2, 1fr); }

    .testimonial-card { flex: 0 0 50%; }

    .hero h1 { font-size: 2.75rem; }

    .hero-image { display: block; }
}

/* Desktop */
@media (min-width: 1024px) {
    :root {
        --header-height: 110px;
    }

    h1 { font-size: 3.25rem; }

    .grid-6 { grid-template-columns: repeat(3, 1fr); }

    .mobile-toggle { display: none; }

    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        border: none;
        gap: 0;
        width: auto;
        justify-content: center;
        margin: 0 auto;
    }

    .nav-links a {
        padding: 1rem 1.25rem;
        border-bottom: 3px solid transparent;
        text-align: center;
    }

    .nav-links a:hover,
    .nav-links a.active {
        border-bottom-color: var(--primary-red);
    }

    .hero { padding: 12rem 0 7rem; }
    .hero h1 { font-size: 3rem; }

    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }

    .testimonial-card { flex: 0 0 33.333%; }
}

/* Large Desktop */
@media (min-width: 1280px) {
    .grid-6 { grid-template-columns: repeat(3, 1fr); }
}
