/* ============================================
   2AP Peças e Lubrificantes — Website Styles
   Design: Digital+Mente
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
    /* Brand Colors */
    --primary: #AAFF00;
    --primary-dark: #8ad600;
    --primary-light: #c4ff4d;
    --primary-50: rgba(170, 255, 0, 0.08);
    --primary-100: rgba(170, 255, 0, 0.15);

    --dark: #2D2D2D;
    --dark-deep: #1a1a1a;
    --dark-light: #3d3d3d;

    --text: #2D2D2D;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-light: #F5F5F5;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;

    --whatsapp: #25d366;

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Layout */
    --container: 1140px;
    --section-py: 5rem;

    /* Design System */
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;

    /* Motion */
    --transition: 0.3s ease;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-accent: 0 4px 20px rgba(170, 255, 0, 0.25);

    /* Header */
    --header-h: 72px;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
    list-style: none;
}

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---- Typography ---- */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 3rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.text-accent {
    color: var(--primary-dark);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn i, .btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn--lg {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

.btn--accent {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 2px 8px rgba(170, 255, 0, 0.3);
}

.btn--accent:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-accent);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-1px);
}

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

.btn--whatsapp:hover {
    background: #1fb855;
    transform: translateY(-1px);
}

/* ---- Scroll Animations ---- */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--dark);
    height: var(--header-h);
    transition: all var(--transition);
    border-bottom: 1px solid rgba(170, 255, 0, 0.1);
}

.header--scrolled {
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    height: 60px;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 1rem;
}

.header__logo {
    flex-shrink: 0;
}

.header__logo-img {
    height: 48px;
    width: auto;
    border-radius: 6px;
    transition: height var(--transition);
}

.header--scrolled .header__logo-img {
    height: 38px;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.header__link {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.header__link:hover,
.header__link.active {
    color: var(--primary);
}

.header__cta {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

.header__cta span {
    display: inline;
}

/* Hamburger */
.header__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1200;
}

.header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.header__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active span:nth-child(2) {
    opacity: 0;
}

.header__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark-deep);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.6) 0%,
        rgba(26, 26, 26, 0.3) 50%,
        rgba(26, 26, 26, 0.8) 100%
    );
}

.hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 8rem 0 4rem;
}

.hero__logo {
    width: 160px;
    height: auto;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.hero__title {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.hero__title-accent {
    color: var(--primary);
}

.hero__badges {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1.2rem;
    background: rgba(170, 255, 0, 0.12);
    border: 1px solid rgba(170, 255, 0, 0.4);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.hero__ctas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero__partner {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(4px);
}

.hero__partner-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.15rem;
}

.hero__partner-brand {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.05em;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: var(--section-py) 0;
    background: var(--white);
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about__lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.about__text p {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    line-height: 1.7;
}

.about__image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about__highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.highlight-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.highlight-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.highlight-card__icon i {
    width: 26px;
    height: 26px;
    color: var(--primary-dark);
}

.highlight-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.highlight-card__desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   SEGMENTS
   ============================================ */
.segments {
    padding: var(--section-py) 0;
    background: var(--gray-light);
}

.segments__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.segment-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.segment-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.segment-card--featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-accent);
    position: relative;
}

.segment-card--featured::before {
    content: 'Destaque';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.segment-card__icon {
    width: 72px;
    height: 72px;
    margin-bottom: 1.25rem;
    color: var(--primary-dark);
}

.segment-card__icon svg {
    width: 100%;
    height: 100%;
}

.segment-card__title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    color: var(--dark);
}

.segment-card__list {
    text-align: left;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.segment-card__list li {
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
    position: relative;
    padding-left: 1.25rem;
}

.segment-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateY(-50%);
}

/* ============================================
   BRANDS
   ============================================ */
.brands {
    padding: var(--section-py) 0;
    background: var(--dark);
}

.brands .section-title {
    color: var(--white);
}

.brands .text-accent {
    color: var(--primary);
}

.brands__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.brand-card {
    background: var(--dark-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition);
}

.brand-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.brand-card--featured {
    grid-column: 1 / -1;
    background: rgba(170, 255, 0, 0.08);
    border-color: rgba(170, 255, 0, 0.3);
    padding: 2rem;
}

.brand-card--featured:hover {
    background: rgba(170, 255, 0, 0.12);
}

.brand-card__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
}

.brand-card--featured .brand-card__name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--primary);
}

.brand-card__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-top: 0.25rem;
}

.brand-card--featured .brand-card__label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: var(--section-py) 0;
    background: var(--white);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    padding: 2rem;
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-100);
}

.service-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.service-card__icon i {
    width: 24px;
    height: 24px;
    color: var(--primary-dark);
}

.service-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   LOCATION
   ============================================ */
.location {
    padding: var(--section-py) 0;
    background: var(--gray-light);
}

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

.location__map iframe {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.location__card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.location__card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.location__card h3 i {
    width: 20px;
    height: 20px;
    color: var(--primary-dark);
}

.location__card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.location__hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.location__hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9rem;
}

.location__hour-row:last-child {
    border-bottom: none;
}

.location__hour-row span {
    color: var(--text-light);
}

.location__hour-row strong {
    color: var(--dark);
    font-weight: 600;
}

.location__hour-row--closed strong {
    color: #dc2626;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: var(--section-py) 0;
    background: var(--dark);
}

.contact .section-title {
    color: var(--white);
}

.contact .text-accent {
    color: var(--primary);
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.contact__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--dark-light);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    border-color: rgba(170, 255, 0, 0.2);
}

.contact-card--whatsapp {
    border-color: rgba(37, 211, 102, 0.3);
    background: rgba(37, 211, 102, 0.08);
}

.contact-card--whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.5);
}

.contact-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.contact-card__icon i {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.contact-card--whatsapp .contact-card__icon {
    background: rgba(37, 211, 102, 0.15);
}

.contact-card--whatsapp .contact-card__icon i {
    color: var(--whatsapp);
}

.contact-card__title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    margin-bottom: 0.35rem;
}

.contact-card__value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    word-break: break-all;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-deep);
    padding-top: 3rem;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr auto;
    gap: 2rem;
    align-items: start;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    width: 64px;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.footer__tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.footer__segments {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.footer__info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.footer__info i {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    transition: all var(--transition);
}

.footer__social-link i {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.footer__social-link:hover {
    background: var(--primary);
}

.footer__social-link:hover i {
    color: var(--dark);
}

.footer__bottom {
    padding: 1.25rem 0;
}

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

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__credit a {
    color: var(--primary);
    font-weight: 500;
}

.footer__credit a:hover {
    text-decoration: underline;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: all var(--transition);
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
    animation: none;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
}

/* ============================================
   RESPONSIVE — Tablet (1024px)
   ============================================ */
@media (max-width: 1024px) {
    .about__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .segments__grid .segment-card:last-child {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
    }

    .location__inner {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   RESPONSIVE — Mobile (768px)
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-py: 3.5rem;
        --header-h: 60px;
    }

    /* Mobile menu overlay */
    .header__menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 26, 26, 0.97);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        opacity: 0;
        visibility: hidden;
        z-index: 1100;
        transition: all 0.3s ease;
    }

    .header__menu.active {
        opacity: 1;
        visibility: visible;
    }

    .header__menu .header__link {
        font-size: 1.25rem;
        padding: 0.75rem 1.5rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .header__menu .header__link.active {
        color: var(--primary);
    }

    .header__toggle {
        display: flex;
    }

    .header__cta {
        display: none;
    }

    /* Hero */
    .hero {
        min-height: 85vh;
    }

    .hero__logo {
        width: 120px;
    }

    .hero__ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero__ctas .btn {
        width: 100%;
        max-width: 280px;
    }

    /* About */
    .about__highlights {
        grid-template-columns: 1fr;
    }

    /* Segments */
    .segments__grid {
        grid-template-columns: 1fr;
    }

    .segments__grid .segment-card:last-child {
        max-width: 100%;
    }

    /* Brands */
    .brands__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-card--featured {
        grid-column: 1 / -1;
    }

    /* Services */
    .services__grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Location map height */
    .location__map iframe {
        height: 300px;
    }

    /* Footer */
    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__info p {
        justify-content: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__bottom .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* ============================================
   RESPONSIVE — Small Mobile (480px)
   ============================================ */
@media (max-width: 480px) {
    .hero__badges {
        gap: 0.5rem;
    }

    .hero__badge {
        padding: 0.3rem 0.9rem;
        font-size: 0.75rem;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .brands__grid {
        grid-template-columns: 1fr;
    }

    .brand-card--featured {
        grid-column: auto;
    }

    .highlight-card {
        padding: 1.5rem 1rem;
    }
}
