/* =========================================================================
   ALIEX - Corporate & Professional Theme
   ========================================================================= */

/* --- Variables --- */
:root {
    --bg-primary: #ffffff;
    --bg-gray: #f8fafc;
    --bg-dark: #0f172a;
    
    --primary: #E51937; /* AliEx Red */
    --primary-hover: #c4122d;
    --primary-light: rgba(229, 25, 55, 0.08); /* Subtle background for icons */
    
    --text-main: #1e293b; /* Slate dark */
    --text-muted: #64748b; /* Slate gray */
    
    --border-color: #e2e8f0;
    
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    
    --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Resets & Global --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none; /* Fluid Custom Cursor */
}

/* =========================================================================
   CUSTOM MAGNETIC CURSOR
   ========================================================================= */
.cursor-dot {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    transition: width 0.2s cubic-bezier(0.19, 1, 0.22, 1), height 0.2s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.2s;
}

.cursor-ring {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(229, 25, 55, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1), height 0.3s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.3s, background-color 0.3s;
}

.cursor-ring.hovered {
    width: 60px;
    height: 60px;
    background-color: rgba(229, 25, 55, 0.08); /* AliEx Red transparent */
    border-color: var(--primary);
}
.cursor-dot.hovered {
    width: 0px;
    height: 0px;
    opacity: 0;
}

@media (max-width: 768px) {
    .cursor-dot, .cursor-ring { display: none; }
    body, a, button, .cursor-pointer { cursor: auto !important; }
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
    cursor: none;
}

ul { list-style: none; }

/* --- Preloader Splash Screen --- */
.preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: #ffffff; /* Pour coller au ton corporate clair */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader.hide {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.05); /* Effet d'ouverture douce */
}

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

.splash-logo-stage {
    width: clamp(360px, 42vw, 640px);
    max-width: 90vw;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.86) translateY(18px);
    filter: drop-shadow(0 16px 28px rgba(17, 17, 17, 0.14));
    animation: popSplash 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s forwards, floatSplash 2.5s ease-in-out infinite 1.4s;
}

.splash-logo-exact {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    clip-path: inset(0 100% 0 0);
    animation: revealLogo 1.25s cubic-bezier(0.8, 0, 0.2, 1) 0.15s forwards;
}

.splash-animated-logo {
    width: 520px;
    height: auto;
    max-width: 90vw;
    margin: 0 auto;
    filter: drop-shadow(0 12px 24px rgba(17, 17, 17, 0.12));
}

.splash-hex-outer {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawSplash 2s cubic-bezier(0.8, 0, 0.2, 1) forwards;
}

.splash-hex-inner {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawSplash 1.5s cubic-bezier(0.8, 0, 0.2, 1) 0.3s forwards;
}

.splash-speed {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawSplash 0.5s ease-out 1.3s forwards;
}

.splash-text-anim {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    animation: popSplash 1s cubic-bezier(0.8, 0, 0.2, 1) 1.2s forwards;
}

.splash-box {
    opacity: 0;
    transform: scale(0.5) translateY(20px);
    transform-box: fill-box;
    transform-origin: center;
    animation: popSplash 1s cubic-bezier(0.34, 1.56, 0.64, 1) 1s forwards, floatSplash 2.5s ease-in-out infinite 2s;
}

.preloader-text {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #111111;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: pulseText 1s infinite alternate;
}

@keyframes drawSplash { to { stroke-dashoffset: 0; } }
@keyframes popSplash { to { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes floatSplash { 0%, 100% { transform: scale(1) translateY(0); } 50% { transform: scale(1) translateY(-8px); } }
@keyframes revealLogo { to { clip-path: inset(0 0 0 0); } }
@keyframes pulseText { from { opacity: 0.3; } to { opacity: 1; } }

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding { padding: 6rem 0; }

.bg-gray { background-color: var(--bg-gray); }
.bg-red-light { background-color: var(--primary-light); }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.mt-2 { margin-top: 1rem; }

.shadow-sm { box-shadow: 0 2px 4px rgba(0,0,0,0.02), 0 4px 12px rgba(0,0,0,0.04); }
.shadow-md { box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.shadow-lg { box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

.border-radius-lg { border-radius: 12px; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.7rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.btn-primary { background-color: var(--primary); color: #fff; }
.btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-2px); }

.btn-outline-dark { background: transparent; border-color: var(--border-color); color: var(--text-main); }
.btn-outline-dark:hover { border-color: var(--text-main); }

.btn-light { background-color: #ffffff; color: var(--primary); font-weight: 600; }
.btn-light:hover { background-color: #f8fafc; transform: translateY(-2px); }

.btn-outline-light { border-color: rgba(255,255,255,0.4); color: #ffffff; }
.btn-outline-light:hover { border-color: #ffffff; background: rgba(255,255,255,0.1); }

/* --- Header / Nav --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 1.5rem 0;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

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

.logo-real-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply; /* Removes white bg if logo is dark, or dark bg if inverted */
}

.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--text-main); }
.nav-links a:hover { color: var(--primary); }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 102;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--text-main);
    transition: 0.3s;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.mobile-nav-overlay.active { opacity: 1; visibility: visible; }
.mobile-links { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.mobile-links a { font-size: 1.3rem; font-weight: 600; color: var(--text-main); }

/* --- Hero Section --- */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: var(--text-main);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions { display: flex; gap: 1rem; }

/* Corporate Visual in Hero */
.hero-visual {
    flex: 1;
    position: relative;
    z-index: 2; /* S'assure que le visuel est devant le background animé */
}

/* Background Animations Corporate */
.corporate-bg-anim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.circle-anim {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 25, 55, 0.03) 0%, rgba(255,255,255,0) 70%);
    animation: drift 15s infinite alternate ease-in-out;
}

.c1 { width: 600px; height: 600px; top: -100px; right: -100px; }
.c2 { width: 400px; height: 400px; bottom: 10%; left: -50px; animation-duration: 20s; animation-direction: alternate-reverse; }

.grid-anim {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: rotate(-15deg);
    animation: panGrid 40s linear infinite;
}

@keyframes drift {
    from { transform: translate(0, 0); }
    to { transform: translate(-30px, 50px); }
}

@keyframes panGrid {
    from { transform: rotate(-15deg) translateY(0); }
    to { transform: rotate(-15deg) translateY(40px); }
}

.corporate-visual {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.hero-main-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

.floating-stat-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    border: 1px solid var(--border-color);
    animation: smoothFloat 4s ease-in-out infinite;
}

@keyframes smoothFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-text strong { font-weight: 700; font-size: 0.95rem; color: var(--text-main); }
.stat-text span { font-size: 0.8rem; color: var(--text-muted); }

/* --- Stats Section --- */
.stats {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: inline-block;
    letter-spacing: -1px;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 700;
    vertical-align: top;
}

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

.stat-divider { width: 1px; background: var(--border-color); }

/* --- Services Section --- */
.section-header { margin-bottom: 3.5rem; }
.section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.5px; }
.section-desc { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

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

.service-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.service-icon svg { 
    width: 30px; 
    height: 30px; 
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-icon svg {
    transform: scale(1.15) rotate(-5deg);
}
.service-title { font-size: 1.3rem; margin-bottom: 0.8rem; font-weight: 700; }
.service-desc { color: var(--text-muted); font-size: 0.95rem; }

/* --- Network Section --- */
.network-container {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.network-content { flex: 1; }

.feature-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
}

.network-visual { flex: 1; }

.image-grid { width: 100%; border-radius: 12px; overflow: hidden; }
.grid-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.image-grid:hover .grid-img { transform: scale(1.02); }

/* --- CTA Section --- */
.cta-box {
    padding: 5rem 3rem;
    background: var(--primary);
    background-image: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent);
    border-radius: 16px;
    color: #ffffff;
}

.cta-box h2 { font-size: 2.5rem; margin-bottom: 1rem; font-weight: 800; letter-spacing: -0.5px; }
.cta-box p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; }

/* =========================================================================
   NOUVELLES SECTIONS (Processus & Intégrations)
   ========================================================================= */

/* Hero Geometric Grid */
.hero-grid-svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

/* Process Timeline */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 4rem;
    position: relative;
    gap: 2rem;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(229, 25, 55, 0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Orbitron', var(--font-main);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: -45px auto 1.5rem auto;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.process-step h4 { margin-bottom: 1rem; color: var(--text-main); font-size: 1.1rem; }
.process-step p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; }

.process-line {
    flex: 0 0 40px;
    height: 2px;
    background: var(--border-color);
    margin-top: 25px;
}

@media (max-width: 992px) {
    .process-steps { flex-direction: column; align-items: center; gap: 3rem; }
    .process-line { display: none; }
    .process-step { width: 100%; max-width: 400px; }
}

/* Integrations section */
.integrations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.integration-badge {
    padding: 1rem 2rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    cursor: pointer;
}

.integration-badge:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(229, 25, 55, 0.1);
}

/* Contact Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column !important;
        gap: 2rem !important;
    }
    .contact-form {
        width: 100%;
        padding: 2rem !important;
    }
}

/* --- Footer --- */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    background: var(--bg-dark);
    color: #f1f5f9;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand { max-width: 300px; }
.footer-desc { color: #94a3b8; font-size: 0.95rem; }

.footer-links { display: flex; gap: 4rem; flex-wrap: wrap; }
.link-col { display: flex; flex-direction: column; gap: 0.8rem; }
.link-col h4 { font-size: 1rem; margin-bottom: 0.5rem; font-weight: 600; color: #ffffff; }
.link-col a { color: #cbd5e1; font-size: 0.9rem; }
.link-col a:hover { color: #ffffff; text-decoration: underline; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.85rem;
}

/* --- Animations & Utilities --- */
.reveal-up { opacity: 0; transform: translateY(30px); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-scale { opacity: 0; transform: scale(0.95); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }

.reveal-up.active, .reveal-scale.active, .reveal-left.active, .reveal-right.active {
    opacity: 1; transform: translateY(0) scale(1) translateX(0);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-title { font-size: 2.8rem; }
    .hero-container { flex-direction: column; text-align: center; gap: 4rem; padding-top: 2rem; }
    .hero-actions { justify-content: center; }
    .floating-stat-card { display: none; } /* Hide complex visual overlapping on small tablets */
    
    .stats-grid { flex-direction: column; gap: 2rem; }
    .stat-divider { width: 100%; height: 1px; }
    
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .network-container { flex-direction: column; gap: 3rem; text-align: center; }
    .feature-list li { justify-content: center; }
}

@media (max-width: 768px) {
    .nav-links, #nav-cta { display: none; }
    .mobile-menu-btn { display: flex; }
    .mobile-menu-btn span { background: var(--text-main); }
    
    .hero-title { font-size: 2.3rem; }
    .services-grid { grid-template-columns: 1fr; }
    
    .cta-box { padding: 3rem 1.5rem; }
    .cta-actions { flex-direction: column; }
    .section-padding { padding: 4rem 0; }
}

/* =========================================================================
   TEMPLATE MATCH - HEADER + HERO
   ========================================================================= */
:root {
    --template-red: #b80f12;
    --template-red-dark: #9f080a;
    --template-gold: #c89b2f;
    --template-black: #050505;
    --template-muted: #1d1d1f;
    --template-border: #ece7dc;
}

body {
    cursor: auto;
    color: var(--template-black);
    background: #ffffff;
}

a,
button,
.cursor-pointer {
    cursor: pointer;
}

.cursor-dot,
.cursor-ring {
    display: none !important;
}

.header {
    position: sticky;
    top: 0;
    height: 58px;
    padding: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    height: 58px;
    padding: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.header .container,
.hero .container,
.ship-strip .container {
    width: 100%;
    max-width: none;
    padding-left: clamp(58px, 7.45vw, 128px);
    padding-right: clamp(58px, 7.45vw, 128px);
}

.header .container {
    padding-right: clamp(24px, 3vw, 54px);
}

.header-inner {
    height: 58px;
    gap: clamp(12px, 2vw, 28px);
}

.logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo-real-img {
    width: auto;
    height: clamp(40px, 3vw, 48px);
    max-height: none;
    object-fit: contain;
    mix-blend-mode: normal;
}

.nav-links {
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
    gap: clamp(18px, 2.45vw, 44px);
    min-width: 0;
}

.nav-links a {
    position: relative;
    color: #111111;
    font-size: clamp(0.68rem, 0.86vw, 1rem);
    font-weight: 650;
    line-height: 1;
    white-space: nowrap;
}

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

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -16px;
    width: 22px;
    height: 2px;
    background: var(--template-gold);
    transform: translateX(-50%);
}

.nav-caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 4px;
    vertical-align: 2px;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid currentColor;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    height: clamp(32px, 3.8vw, 46px);
    min-width: clamp(142px, 14.8vw, 244px);
    padding: 0 clamp(14px, 1.7vw, 28px);
    gap: 9px;
    color: #ffffff;
    background: linear-gradient(180deg, #c31619 0%, #9f080a 100%);
    border-radius: 6px;
    box-shadow: 0 8px 18px rgba(184, 15, 18, 0.25);
    font-size: clamp(0.7rem, 0.95vw, 1.08rem);
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
}

.header-phone svg {
    width: clamp(13px, 1.5vw, 20px);
    height: clamp(13px, 1.5vw, 20px);
    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero {
    min-height: 342px;
    height: clamp(342px, 44vw, 560px);
    padding-top: 0;
    align-items: stretch;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg,
            #ffffff 0%,
            #ffffff 35%,
            rgba(255, 255, 255, 0.94) 45%,
            rgba(255, 255, 255, 0.68) 54%,
            rgba(255, 255, 255, 0.08) 66%,
            rgba(255, 255, 255, 0) 100%);
}

.hero-photo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 39.6%;
    z-index: 1;
    overflow: hidden;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.hero-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
}

.hero-content {
    flex: 0 0 auto;
    width: min(42vw, 620px);
    max-width: 620px;
    padding-top: clamp(44px, 6.15vw, 84px);
}

.hero-title {
    margin: 0 0 14px;
    max-width: 620px;
    color: #000000;
    font-size: clamp(1.62rem, 3.2vw, 3.86rem);
    line-height: 1.1;
    font-weight: 820;
    letter-spacing: 0;
}

.hero-title .title-line {
    display: block;
    color: #000000;
    white-space: nowrap;
}

.hero-title .title-red {
    display: block;
    color: var(--template-red);
}

.hero-desc {
    max-width: 430px;
    margin: 0 0 18px;
    color: #111111;
    font-size: clamp(0.65rem, 1.02vw, 1.08rem);
    line-height: 1.58;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: clamp(16px, 1.55vw, 26px);
}

.btn {
    min-height: clamp(38px, 2.85vw, 48px);
    padding: 0 clamp(24px, 1.95vw, 34px);
    border-radius: 6px;
    font-size: clamp(0.72rem, 0.9vw, 1.02rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
}

.hero-actions .btn-primary {
    min-width: clamp(196px, 15.7vw, 268px);
}

.hero-actions .btn-outline-dark {
    min-width: clamp(168px, 12.7vw, 218px);
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(180deg, #c51a1c 0%, var(--template-red-dark) 100%);
    border-color: transparent;
    box-shadow: 0 9px 19px rgba(184, 15, 18, 0.24);
}

.btn-primary:hover {
    background: linear-gradient(180deg, #bd1518 0%, #910708 100%);
    transform: none;
}

.btn-outline-dark {
    color: #0c0c0c;
    background: rgba(255, 255, 255, 0.9);
    border-color: #e8e2d7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.btn-outline-dark:hover {
    border-color: #d8cdbc;
}

.btn span {
    margin-left: 11px;
    font-size: 1.3em;
    line-height: 0;
}

.btn svg {
    width: 13px;
    height: 13px;
    margin-left: 10px;
    fill: none;
    stroke: var(--template-red);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-points {
    display: flex;
    align-items: flex-start;
    gap: clamp(10px, 1.45vw, 26px);
    margin-top: clamp(36px, 4.8vw, 74px);
}

.hero-point {
    display: grid;
    grid-template-columns: clamp(24px, 3.1vw, 36px) minmax(0, 68px);
    align-items: center;
    gap: 7px;
    color: #111111;
}

.hero-point span {
    display: grid;
    place-items: center;
    width: clamp(24px, 3.1vw, 36px);
    height: clamp(24px, 3.1vw, 36px);
    border: 1px solid rgba(200, 155, 47, 0.45);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
}

.hero-point svg {
    width: 58%;
    height: 58%;
    fill: none;
    stroke: var(--template-gold);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-point p {
    margin: 0;
    font-size: clamp(0.49rem, 0.68vw, 0.78rem);
    line-height: 1.28;
    font-weight: 500;
}

.hero-point strong {
    display: block;
    font-weight: 850;
}

.ship-strip {
    height: clamp(76px, 5.5vw, 92px);
    display: flex;
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid var(--template-border);
    border-top: 1px solid rgba(236, 231, 220, 0.65);
}

.ship-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(28px, 4vw, 72px);
    width: 100%;
}

.ship-strip-copy {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: clamp(18px, 1.8vw, 30px);
    flex: 1 1 auto;
}

.ship-strip-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: clamp(52px, 4.2vw, 70px);
    height: clamp(52px, 4.2vw, 70px);
    color: #ffffff;
    background: linear-gradient(145deg, #d5ad45 0%, #b8891d 100%);
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(184, 138, 29, 0.18);
}

.ship-strip-icon svg {
    width: 52%;
    height: 52%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ship-strip h2 {
    margin: 0 0 4px;
    color: #111111;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.1;
    font-weight: 850;
}

.ship-strip p {
    margin: 0;
    color: #111111;
    font-size: clamp(0.76rem, 1.05vw, 1.05rem);
    line-height: 1.35;
    font-weight: 500;
}

.ship-strip .btn {
    flex: 0 0 auto;
    min-width: clamp(230px, 18.8vw, 330px);
    min-height: clamp(44px, 3.1vw, 54px);
}

@media (max-width: 992px) {
    .header-inner {
        justify-content: space-between;
    }

    .nav-links {
        display: flex;
    }

    .hero-container {
        flex-direction: row;
        text-align: left;
        padding-top: 0;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .hero-content {
        width: 45vw;
    }
}

@media (max-width: 768px) {
    .header {
        height: 62px;
    }

    .header-inner {
        height: 62px;
    }

    .nav-links,
    .header-phone {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .logo-real-img {
        width: auto;
        height: 42px;
    }

    .hero {
        height: auto;
        min-height: 0;
        padding: 34px 0 26px;
    }

    .hero::before {
        background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.92) 48%, rgba(255,255,255,0.4) 100%);
    }

    .hero-photo {
        left: 0;
        height: 100%;
        opacity: 0.38;
    }

    .hero-photo img {
        object-position: 58% center;
    }

    .hero-container {
        display: block;
    }

    .hero-content {
        width: 100%;
        max-width: 420px;
        padding-top: 0;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-desc {
        max-width: 360px;
        font-size: 0.88rem;
    }

    .hero-actions {
        flex-wrap: wrap;
    }

    .hero-points {
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .hero-point {
        grid-template-columns: 30px minmax(0, 92px);
    }

    .ship-strip {
        height: auto;
        padding: 16px 0;
    }

    .ship-strip-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
}

/* =========================================================================
   TEMPLATE FULL PAGE SECTIONS
   ========================================================================= */
.template-main {
    background: #ffffff;
}

.template-container {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding-left: clamp(58px, 7.45vw, 128px);
    padding-right: clamp(58px, 7.45vw, 128px);
}

.template-section {
    position: relative;
    border-bottom: 1px solid #ece7dc;
}

.template-heading {
    text-align: center;
    margin-bottom: clamp(28px, 3.2vw, 44px);
}

.template-heading h2 {
    margin: 0;
    color: #080808;
    font-size: clamp(1.8rem, 2.6vw, 2.75rem);
    line-height: 1.12;
    font-weight: 850;
    letter-spacing: 0;
}

.template-heading span {
    display: block;
    width: 44px;
    height: 3px;
    margin: 12px auto 0;
    background: var(--template-gold);
    border-radius: 999px;
}

.template-heading.compact {
    margin-bottom: 22px;
}

.template-card {
    background: #ffffff;
    border: 1px solid #e9e2d7;
    border-radius: 10px;
    box-shadow: 0 9px 22px rgba(20, 15, 10, 0.05);
}

.line-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--template-gold);
}

.line-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.line-icon.red { color: var(--template-red); }
.line-icon.gold { color: var(--template-gold); }
.line-icon.white { color: #ffffff; }
.line-icon.mini { width: 52px; height: 52px; }
.line-icon.small { width: 58px; height: 58px; }
.line-icon.tiny { width: 42px; height: 42px; }

.services-template {
    padding: clamp(30px, 2.9vw, 42px) 0 clamp(42px, 4.4vw, 66px);
}

.service-template-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(22px, 2.2vw, 32px);
}

.service-template-card {
    min-height: clamp(168px, 13.5vw, 214px);
    padding: clamp(26px, 2.5vw, 36px) 22px 24px;
    text-align: center;
}

.service-template-card .line-icon {
    width: clamp(58px, 5.4vw, 82px);
    height: clamp(58px, 5.4vw, 82px);
    margin-bottom: 20px;
}

.service-template-card h3 {
    margin: 0 0 10px;
    color: #080808;
    font-size: clamp(1.02rem, 1.25vw, 1.3rem);
    font-weight: 850;
}

.service-template-card p {
    max-width: 220px;
    margin: 0 auto;
    color: #181818;
    font-size: clamp(0.78rem, 0.86vw, 0.95rem);
    line-height: 1.62;
}

.coverage-template {
    overflow: hidden;
    padding: clamp(54px, 6vw, 86px) 0 clamp(36px, 5vw, 68px);
    background:
        linear-gradient(90deg, #ffffff 0%, #ffffff 34%, rgba(232, 247, 255, 0.78) 67%, #ffffff 100%);
}

.coverage-grid {
    display: grid;
    grid-template-columns: minmax(310px, 0.72fr) minmax(500px, 1.28fr);
    align-items: center;
    gap: clamp(24px, 4vw, 72px);
}

.coverage-copy h2 {
    margin: 0 0 24px;
    color: var(--template-red);
    font-size: clamp(1.8rem, 2.5vw, 2.65rem);
    font-weight: 850;
    line-height: 1.15;
}

.coverage-copy p {
    max-width: 430px;
    margin: 0 0 22px;
    color: #111111;
    font-size: clamp(0.92rem, 1.05vw, 1.08rem);
    line-height: 1.55;
}

.coverage-copy .lead {
    font-size: clamp(1.02rem, 1.25vw, 1.26rem);
}

.coverage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 2.8vw, 46px);
    margin-top: clamp(34px, 4.2vw, 62px);
}

.coverage-stats div {
    color: var(--template-red);
}

.coverage-stats strong {
    display: block;
    margin-bottom: 4px;
    font-size: clamp(1.45rem, 2vw, 2.15rem);
    line-height: 1;
    font-weight: 900;
}

.coverage-stats span {
    display: block;
    max-width: 100px;
    color: #111111;
    font-size: clamp(0.68rem, 0.78vw, 0.82rem);
    line-height: 1.25;
}

.coverage-map-wrap {
    position: relative;
    min-height: clamp(360px, 34vw, 520px);
}

.coverage-map-wrap img {
    width: 100%;
    height: clamp(360px, 34vw, 520px);
    display: block;
    object-fit: contain;
    object-position: center right;
    filter: drop-shadow(0 16px 24px rgba(80, 60, 30, 0.08));
}

.coverage-note {
    position: absolute;
    right: 0;
    bottom: 4%;
    display: flex;
    align-items: center;
    gap: 16px;
    width: clamp(270px, 23vw, 360px);
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(200, 155, 47, 0.75);
    border-radius: 9px;
    box-shadow: 0 14px 28px rgba(80, 60, 30, 0.07);
}

.coverage-note p {
    margin: 0;
    color: #111111;
    font-size: clamp(0.86rem, 1vw, 1rem);
    line-height: 1.35;
}

.coverage-note strong {
    color: var(--template-red);
}

.trust-template {
    padding: clamp(28px, 3.8vw, 52px) 0 clamp(30px, 3.7vw, 54px);
}

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

.trust-grid article {
    min-height: 155px;
    padding: 4px clamp(20px, 2.2vw, 36px);
    text-align: center;
}

.trust-grid article + article {
    border-left: 1px solid #e5ded4;
}

.trust-grid h3,
.difference-grid h3 {
    margin: 10px 0 8px;
    color: #090909;
    font-size: clamp(0.94rem, 1.05vw, 1.12rem);
    font-weight: 850;
}

.trust-grid p,
.difference-grid p {
    margin: 0 auto;
    max-width: 190px;
    color: #111111;
    font-size: clamp(0.7rem, 0.78vw, 0.83rem);
    line-height: 1.42;
}

.difference-template {
    padding: clamp(22px, 3vw, 42px) 0;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.difference-grid article {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px clamp(16px, 2vw, 30px);
}

.difference-grid article + article {
    border-left: 1px solid #e5ded4;
}

.fleet-template {
    padding: clamp(28px, 4vw, 58px) 0 clamp(26px, 4vw, 56px);
}

.fleet-grid {
    display: grid;
    grid-template-columns: minmax(440px, 1fr) minmax(440px, 0.94fr);
    gap: clamp(28px, 4vw, 62px);
    align-items: center;
}

.fleet-main-img {
    overflow: hidden;
    height: clamp(300px, 28vw, 430px);
    border-radius: 8px;
    box-shadow: 0 14px 26px rgba(30, 20, 10, 0.12);
}

.fleet-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.fleet-copy h2 {
    max-width: 520px;
    margin: 0 0 22px;
    color: #080808;
    font-size: clamp(1.55rem, 2.2vw, 2.35rem);
    line-height: 1.17;
    font-weight: 850;
}

.fleet-copy ul {
    display: grid;
    gap: 13px;
    margin: 0 0 26px;
    padding: 0;
}

.fleet-copy li {
    position: relative;
    padding-left: 28px;
    color: #101010;
    font-size: clamp(0.9rem, 1vw, 1.04rem);
    line-height: 1.45;
}

.fleet-copy li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    place-items: center;
    width: 17px;
    height: 17px;
    color: var(--template-gold);
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
}

.fleet-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(12px, 1.4vw, 20px);
}

.fleet-thumbs img {
    width: 100%;
    aspect-ratio: 1.35;
    object-fit: cover;
    display: block;
    border-radius: 7px;
    border: 1px solid #e8e1d5;
}

.testimonials-template {
    padding: 0 0 clamp(28px, 3.6vw, 54px);
    border-bottom: 1px solid #ece7dc;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1.08fr repeat(3, 1fr);
    gap: clamp(16px, 1.6vw, 24px);
}

.satisfaction-card,
.review-card {
    min-height: clamp(230px, 19vw, 300px);
    border-radius: 9px;
}

.satisfaction-card {
    padding: clamp(24px, 2.5vw, 38px);
    color: #ffffff;
    text-align: center;
    background: linear-gradient(145deg, #d4aa3c 0%, #be8e1f 100%);
}

.satisfaction-card h3 {
    margin: 12px 0 8px;
    font-size: clamp(1.25rem, 1.6vw, 1.8rem);
    line-height: 1.12;
    font-weight: 700;
}

.satisfaction-card strong {
    display: block;
    font-size: clamp(3.2rem, 5vw, 5rem);
    line-height: 0.95;
    font-weight: 900;
}

.satisfaction-card p,
.satisfaction-card small {
    display: block;
    margin: 5px 0;
    color: #ffffff;
    font-weight: 700;
}

.review-card {
    padding: clamp(24px, 2.2vw, 34px);
    background: #ffffff;
    border: 1px solid #e7dfd4;
    box-shadow: 0 9px 20px rgba(20, 15, 10, 0.05);
}

.review-card > span {
    display: block;
    color: var(--template-gold);
    font-size: 2.7rem;
    line-height: 0.6;
    font-weight: 900;
}

.review-card p {
    margin: 18px 0 20px;
    color: #111111;
    font-size: clamp(0.86rem, 0.92vw, 1rem);
    line-height: 1.55;
}

.review-card strong,
.review-card small {
    display: block;
    color: #111111;
    font-size: 0.82rem;
}

.review-card small {
    color: #555;
    margin: 3px 0 18px;
}

.review-card div,
.satisfaction-card div {
    color: var(--template-gold);
    letter-spacing: 3px;
    font-size: 1.1rem;
}

.faq-contact-template {
    padding: clamp(26px, 4vw, 58px) 0;
}

.faq-contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.15fr;
    gap: clamp(34px, 5vw, 82px);
}

.faq-block h2,
.contact-block h2 {
    margin: 0 0 22px;
    color: #080808;
    font-size: clamp(1.55rem, 2.1vw, 2.25rem);
    line-height: 1.15;
    font-weight: 850;
}

.faq-block details {
    border: 1px solid #e6ded2;
    border-radius: 6px;
    background: #ffffff;
    margin-bottom: 10px;
}

.faq-block summary {
    cursor: pointer;
    list-style: none;
    padding: 14px 18px;
    color: #111111;
    font-size: 0.92rem;
    font-weight: 700;
}

.faq-block summary::after {
    content: "+";
    float: right;
    font-size: 1.1rem;
    font-weight: 800;
}

.faq-block details[open] summary::after {
    content: "-";
}

.faq-block details p {
    margin: 0;
    padding: 0 18px 15px;
    color: #333;
    font-size: 0.85rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: clamp(20px, 2vw, 30px);
}

.template-form {
    display: grid;
    gap: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.template-form input,
.template-form textarea {
    width: 100%;
    border: 1px solid #e3dbcf;
    border-radius: 6px;
    padding: 13px 16px;
    color: #111111;
    font: inherit;
    font-size: 0.9rem;
    outline: none;
}

.template-form textarea {
    min-height: 100px;
    resize: vertical;
}

.template-form .btn {
    justify-self: start;
    min-width: 220px;
}

.contact-card {
    display: grid;
    align-content: center;
    gap: 18px;
    padding: 28px 24px;
    border-radius: 8px;
    background: linear-gradient(145deg, #f8f1e3 0%, #fff9ed 100%);
    color: #111111;
}

.contact-card p {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
}

.contact-card strong {
    display: inline-block;
    width: 26px;
    color: var(--template-gold);
}

.template-footer {
    color: #ffffff;
    background: radial-gradient(circle at 22% 0%, rgba(255, 255, 255, 0.08), transparent 34%), #121416;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.8fr 0.8fr 0.9fr;
    gap: clamp(34px, 5vw, 78px);
    padding-top: clamp(34px, 4.5vw, 64px);
    padding-bottom: clamp(24px, 3.6vw, 48px);
}

.footer-logo-crop {
    display: block;
    width: 170px;
    height: 74px;
    overflow: hidden;
    margin-bottom: 18px;
}

.footer-logo-crop img {
    width: auto;
    height: 74px;
    display: block;
    filter: brightness(0) invert(1);
    transform: none;
}

.template-footer p,
.template-footer a {
    display: block;
    margin: 0 0 9px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.92rem;
    line-height: 1.48;
}

.template-footer h3 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 850;
}

.socials {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.socials span {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
}

.footer-bottom-template {
    padding: 18px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
    font-size: 0.86rem;
}

@media (max-width: 1100px) {
    .service-template-grid,
    .trust-grid,
    .difference-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .coverage-grid,
    .fleet-grid,
    .faq-contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid article + article,
    .difference-grid article + article {
        border-left: 0;
    }
}

@media (max-width: 768px) {
    .template-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .service-template-grid,
    .trust-grid,
    .difference-grid,
    .testimonial-grid,
    .contact-layout,
    .form-row {
        grid-template-columns: 1fr;
    }

    .coverage-map-wrap img {
        height: auto;
    }
}
