/* ============================================
   POINT FORT FICHET DÉPANNAGE
   Couleurs : vert olive #b4bd38 + orange #ff7530
   Police : Open Sans (avec Roboto pour titres)
   ============================================ */

:root {
    --color-green: #b4bd38;
    --color-green-dark: #9ca42d;
    --color-orange: #ff7530;
    --color-orange-dark: #e85f1c;
    --color-black: #000000;
    --color-dark: #1f1f1f;
    --color-text: #333333;
    --color-text-light: #5e5e5e;
    --color-white: #ffffff;
    --color-bg-alt: #f7f7f7;
    --color-border: #e1e1e1;
    --color-border-light: #919ec6;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 6px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 18px 50px rgba(0,0,0,0.20);
    --radius: 6px;
    --radius-lg: 15px;
    --transition: all 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', 'Open Sans', sans-serif;
    color: var(--color-dark);
    font-weight: 700;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.location, .location-inline {
    font-style: italic;
    color: inherit;
}

/* ============ HEADER ============ */
#top {
    background: var(--color-white);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 14px rgba(0,0,0,0.08);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
#logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-dark);
}
.logo-img {
    height: 56px;
    width: auto;
    display: block;
}
.intro-img-wrap.intro-logo {
    width: 260px;
    height: 150px;
    max-width: none;
    border-radius: 14px;
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.intro-logo-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    display: block;
}
.green-logo-img,
.footer-logo-img {
    height: 64px;
    width: auto;
    display: block;
}
.logo-mark {
    width: 50px;
    height: 50px;
    background: var(--color-green);
    color: var(--color-white);
    font-weight: 900;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
}
.logo-mark-lg { width: 60px; height: 60px; font-size: 36px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 19px;
    letter-spacing: 0.5px;
    color: var(--color-dark);
}
.logo-sub {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--color-green-dark);
    letter-spacing: 4px;
    margin-top: 2px;
}
.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-orange);
    color: var(--color-white);
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 17px;
    transition: var(--transition);
}
.header-phone:hover {
    background: var(--color-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.burger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--color-dark);
    border-radius: 3px;
}

/* ============ HERO BANNER VERT ============ */
.hero-banner {
    background: var(--color-green);
    color: var(--color-white);
    text-align: center;
    padding: 22px 0;
}
.hero-banner h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2;
    color: var(--color-white);
}
.hero-banner h1 strong {
    font-weight: 900;
}

/* ============ HERO SPLIT (texte gauche / photo droite) ============ */
.hero-split {
    background: var(--color-white);
    padding: 70px 0;
    border-bottom: 1px solid var(--color-border);
}
.hero-split-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-split-text {
    color: var(--color-dark);
}
.hero-badge-15 {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    background: var(--color-green);
    color: var(--color-dark);
    padding: 12px 22px;
    border-radius: 50px;
    margin-bottom: 26px;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 8px 24px rgba(180,189,56,0.35);
}
.hero-badge-num {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}
.hero-badge-unit {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
}
.hero-badge-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    margin-left: 6px;
    border-left: 2px solid rgba(0,0,0,0.25);
    padding-left: 12px;
}
.hero-split-title {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: 18px;
    letter-spacing: -1px;
}
.hero-split-title strong {
    color: var(--color-orange);
    font-weight: 900;
}
.hero-split-sub {
    font-size: 17px;
    color: var(--color-text-light);
    margin-bottom: 26px;
    max-width: 520px;
    line-height: 1.6;
}
.hero-split-list {
    list-style: none;
    margin-bottom: 32px;
}
.hero-split-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    font-weight: 600;
    color: var(--color-dark);
    font-size: 15px;
}
.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: var(--color-green);
    color: var(--color-white);
    border-radius: 50%;
    font-weight: 900;
    font-size: 14px;
    flex-shrink: 0;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-split-photo {
    position: relative;
    background:
        radial-gradient(circle at center, #ffffff 0%, #f3f3f3 65%, #e8e8e8 100%);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.10);
    min-height: 520px;
    overflow: hidden;
}
.hero-split-photo::before {
    content: '';
    position: absolute;
    inset: auto -20% -25% -20%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(180,189,56,0.18) 0%, rgba(180,189,56,0) 70%);
    z-index: 1;
    pointer-events: none;
}
.hero-split-photo img {
    position: relative;
    z-index: 2;
    max-height: 580px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 25px 30px rgba(0,0,0,0.25));
}

/* ============ KEYS SECTION ============ */
.keys-section {
    padding: 90px 0;
    background: var(--color-bg-alt);
}
.keys-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.keys-tag {
    display: inline-block;
    color: var(--color-green-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 14px;
}
.keys-header h2 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 14px;
    color: var(--color-dark);
}
.keys-header h2 em {
    font-style: normal;
    color: var(--color-orange);
}
.keys-header p {
    font-size: 17px;
    color: var(--color-text-light);
}
.keys-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.key-card {
    background: var(--color-white);
    padding: 30px 24px 26px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.key-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    border-color: var(--color-green);
}
.key-img {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: var(--radius);
    margin-bottom: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.key-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}
.key-card:hover .key-img img {
    transform: scale(1.08) rotate(-3deg);
}
.key-card h4 {
    font-size: 19px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 8px;
}
.key-card p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* ============ BOUTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: 'Open Sans', inherit;
    line-height: 1.2;
}
.btn-orange {
    background: var(--color-orange);
    color: var(--color-white);
}
.btn-orange:hover {
    background: var(--color-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-black {
    background: var(--color-black);
    color: var(--color-white);
}
.btn-black:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-green {
    background: var(--color-orange);
    color: var(--color-white);
}
.btn-green:hover {
    background: var(--color-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-black-outline {
    background: var(--color-black);
    color: var(--color-white);
}
.btn-black-outline:hover {
    background: #333;
    transform: translateY(-2px);
}
.btn-outline-dark {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
    padding: 16px 30px;
}
.btn-outline-dark:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-3px); }
    20%, 40%, 60%, 80% { transform: translateX(3px); }
}
.shake { animation: shake 2.5s ease-in-out infinite; }

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.pulse { animation: pulse 2s ease-in-out infinite; }

/* ============ INTRO SECTION ============ */
.intro-section {
    padding: 70px 0;
    background: var(--color-white);
}
.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 50px;
    line-height: 1.3;
}
.section-title strong {
    color: var(--color-orange);
    font-weight: 900;
}
.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 280px));
    gap: 40px;
    margin-bottom: 50px;
    justify-content: center;
}
.intro-card {
    text-align: center;
    padding: 10px;
}
.intro-img-wrap {
    width: 150px;
    height: 150px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
}
.intro-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.intro-card h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-dark);
}
.brand-mini {
    width: 100%;
    height: 100%;
    background: var(--color-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    border-radius: 50%;
}
.brand-mini-f {
    font-family: 'Roboto', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
}
.brand-mini-text {
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-top: 4px;
}
.artisan-badge {
    width: 100%;
    height: 100%;
    background: var(--color-white);
    border: 3px solid var(--color-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    gap: 6px;
}
.artisan-flag {
    width: 50px;
    height: 30px;
    background: linear-gradient(to right, #002395 33.3%, #fff 33.3%, #fff 66.6%, #ed2939 66.6%);
    border-radius: 2px;
}
.artisan-text {
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    color: var(--color-dark);
    letter-spacing: 1px;
    line-height: 1.2;
}
.artisan-text strong { font-weight: 900; }

.intro-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============ SERVICES SECTION ============ */
.services-section {
    background: var(--color-white);
    padding: 0;
    border-top: 1px solid var(--color-border-light);
}
.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--color-border-light);
}
.services-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
}
.services-title em {
    font-style: normal;
    color: var(--color-orange);
}
.services-subtitle {
    font-size: 18px;
    font-weight: 400;
    max-width: 400px;
    color: var(--color-text-light);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.service-block {
    padding: 44px 28px;
}
.service-block + .service-block {
    border-left: 1px solid var(--color-border-light);
}
.service-bordered {
    border-left: 1px solid var(--color-border-light);
}
.service-block h3 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 18px;
    font-weight: 800;
}
.service-block p {
    text-align: justify;
    color: var(--color-text);
    margin-bottom: 24px;
}
.service-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
    transition: var(--transition);
}
.service-img:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0,0,0,0.25);
}
.service-img img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

/* ============ GREEN BANNER ============ */
.green-banner {
    background: var(--color-green);
    color: var(--color-white);
    padding: 50px 0;
    text-align: center;
}
.green-banner-sm { padding: 40px 0; }
.green-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--color-white);
}
.green-logo .logo-title { color: var(--color-white); }
.green-logo .logo-sub { color: var(--color-white); opacity: 0.85; }
.green-logo .logo-mark {
    background: var(--color-white);
    color: var(--color-green);
}
.green-banner h5 {
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
    color: var(--color-white);
    margin-bottom: 12px;
    font-weight: 700;
}
.green-banner h5 a {
    color: var(--color-white);
    text-decoration: none;
}
.green-banner h5 a:hover { text-decoration: underline; }
.green-banner p {
    font-size: 16px;
    margin-bottom: 24px;
    opacity: 0.95;
}
.scrolling-marquee {
    background: var(--color-orange);
    border-radius: 10px;
    padding: 18px 0;
    overflow: hidden;
    margin: 30px 0 0;
}
.marquee-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}
.marquee-item {
    color: var(--color-white);
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============ BRAND SECTION (MARQUE PRÉFÉRÉE) ============ */
.brand-section {
    padding: 90px 0;
    background: var(--color-white);
}
.brand-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.brand-img-inner {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 60px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}
.brand-trophy {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.trophy-icon { font-size: 64px; line-height: 1; }
.trophy-text { display: flex; flex-direction: column; line-height: 1.2; }
.trophy-year {
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--color-orange);
}
.trophy-label {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 1px;
}
.brand-content h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 22px;
    font-weight: 800;
}
.brand-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: justify;
}
.cta-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-black);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}
.cta-arrow .cta-circle {
    width: 32px;
    height: 32px;
    background: var(--color-black);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.cta-arrow:hover .cta-circle {
    background: var(--color-orange);
    transform: translateX(4px);
}

/* ============ TECHNICIEN SECTION ============ */
.technician-section {
    padding: 0;
    background: var(--color-white);
}
.technician-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 540px;
}
.technician-photo {
    overflow: hidden;
    background: linear-gradient(135deg, #2a2a2a, #555);
}
.technician-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 540px;
}
.technician-content {
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-white);
}
.technician-content h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 22px;
    font-weight: 800;
}
.technician-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: justify;
}
.technician-content .btn { align-self: flex-start; }

/* ============ FOOTER ORANGE ============ */
.orange-footer {
    background: var(--color-orange);
    color: var(--color-white);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    align-items: center;
}
.footer-logo-col { text-align: center; }
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
}
.footer-logo .logo-title { color: var(--color-white); }
.footer-logo .logo-sub { color: var(--color-white); opacity: 0.9; }
.footer-logo .logo-mark {
    background: var(--color-white);
    color: var(--color-orange);
}
.footer-text-col p {
    font-size: 10px;
    line-height: 1.5;
    text-align: justify;
    color: var(--color-white);
    opacity: 0.95;
}
.footer-text-col strong { font-weight: 700; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.25);
    padding: 18px 0;
    text-align: center;
    font-size: 13px;
    opacity: 0.9;
}

/* ============ FLOATING CALL (mobile) ============ */
.floating-call {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-green);
    color: var(--color-white);
    padding: 16px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 99;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-banner h1 { font-size: 26px; }
    .hero-split { padding: 50px 0; }
    .hero-split-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-split-title { font-size: 38px; }
    .hero-split-sub { font-size: 16px; }
    .hero-split-photo { min-height: 460px; padding: 24px; }
    .hero-split-photo img { max-height: 460px; }
    .keys-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .keys-header h2 { font-size: 32px; }
    .intro-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
    .services-header { grid-template-columns: 1fr; text-align: center; gap: 20px; padding: 50px 0 30px; }
    .services-title { font-size: 32px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-block { padding: 40px 30px; }
    .service-block + .service-block { border-left: none; }
    .service-block:nth-child(odd) + .service-block { border-left: 1px solid var(--color-border-light); }
    .service-block:nth-child(n+3) { border-top: 1px solid var(--color-border-light); }
    .brand-grid, .technician-grid { grid-template-columns: 1fr; gap: 40px; }
    .technician-photo img { min-height: 360px; }
    .technician-content { padding: 50px 30px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-logo-col { margin-bottom: 20px; }
}

@media (max-width: 768px) {
    .header-phone {
        font-size: 14px;
        padding: 10px 14px;
    }
    .header-phone span:not(.phone-icon) {
        display: none;
    }
    .header-phone .phone-icon { display: inline-flex; }
    .logo-title { font-size: 15px; }
    .logo-sub { font-size: 10px; letter-spacing: 3px; }
    .logo-mark { width: 42px; height: 42px; font-size: 24px; }

    .hero-banner { padding: 18px 0; }
    .hero-banner h1 { font-size: 22px; padding: 0 10px; }

    .hero-split { padding: 35px 0; }
    .hero-split-title { font-size: 28px; }
    .hero-split-sub { font-size: 14px; margin-bottom: 20px; }
    .hero-split-photo { min-height: 360px; padding: 18px; }
    .hero-split-photo img { max-height: 360px; }
    .hero-badge-15 { padding: 10px 18px; }
    .hero-badge-num { font-size: 28px; }
    .hero-badge-unit { font-size: 15px; }
    .hero-badge-label { font-size: 11px; letter-spacing: 2px; padding-left: 10px; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; justify-content: center; }

    .keys-section { padding: 50px 0; }
    .keys-header { margin-bottom: 35px; }
    .keys-header h2 { font-size: 24px; }
    .keys-header p { font-size: 14px; }
    .keys-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .key-card { padding: 20px 14px; }
    .key-card h4 { font-size: 16px; }
    .key-card p { font-size: 12px; }

    .intro-section { padding: 50px 0; }
    .section-title { font-size: 22px; margin-bottom: 35px; }
    .intro-grid { grid-template-columns: 1fr; gap: 30px; }
    .intro-cta { flex-direction: column; }
    .intro-cta .btn { width: 100%; justify-content: center; }

    .services-grid { grid-template-columns: 1fr; }
    .service-block { padding: 40px 24px; border-left: none !important; border-top: 1px solid var(--color-border-light) !important; }
    .service-block:first-child { border-top: none !important; }
    .service-block h3 { font-size: 22px; }

    .green-banner { padding: 40px 0; }
    .green-banner h5 { font-size: 19px; }
    .marquee-item { font-size: 18px; }

    .brand-section { padding: 50px 0; }
    .brand-img-inner { padding: 30px; aspect-ratio: 4/3; }
    .trophy-icon { font-size: 48px; }
    .brand-content h2, .technician-content h2 { font-size: 24px; }

    .technician-content { padding: 40px 24px; }

    .footer-grid { padding-bottom: 80px; }

    .floating-call { display: flex; }
    body { padding-bottom: 64px; }
}

@media (max-width: 480px) {
    .header-inner { gap: 10px; }
    .header-phone span:not(.phone-icon) { display: inline; font-size: 13px; }
}
