/* ═══════════════════════════════════════════════════════════
   DADIS ÉLECTRICIEN — LUSIGNAN (86)
   Template CSS — Design Pro, Carré, Moderne
   ═══════════════════════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
    /* Couleurs principales */
    --primary: #3B82F6;
    --primary-dark: #2563EB;
    --primary-light: rgba(59,130,246,0.12);
    --accent: #F59E0B;
    --accent-dark: #D97706;

    /* Neutres — Dark palette */
    --dark: #F1F5F9;
    --dark-700: #E2E8F0;
    --dark-500: #CBD5E1;
    --gray-600: #94A3B8;
    --gray-400: #64748B;
    --gray-200: #334155;
    --gray-100: #1E293B;
    --gray-50: #0F172A;
    --white: #1E293B;

    /* Surfaces */
    --surface-0: #0B1120;
    --surface-1: #0F172A;
    --surface-2: #1E293B;
    --surface-3: #334155;
    --border: #1E293B;
    --border-hover: #3B82F6;

    /* Feedback */
    --success: #10B981;
    --danger: #EF4444;

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --h1: clamp(2.25rem, 5vw, 3.5rem);
    --h2: clamp(1.75rem, 3.5vw, 2.5rem);
    --h3: clamp(1.125rem, 2vw, 1.375rem);
    --body: 1rem;
    --small: 0.875rem;

    /* Spacing */
    --section-pad: clamp(5rem, 10vw, 8rem);
    --container-max: 1280px;

    /* Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.6);

    /* Glow */
    --glow-primary: 0 0 30px rgba(59,130,246,0.15);
    --glow-accent: 0 0 20px rgba(245,158,11,0.1);

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── GRAIN OVERLAY ─── */
.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

/* ─── CURSOR SPOTLIGHT ─── */
.cursor-spotlight {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s;
    opacity: 0;
}

.cursor-spotlight.active {
    opacity: 1;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    font-size: var(--body);
    line-height: 1.7;
    color: #94A3B8;
    background: var(--surface-0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    color: #F1F5F9;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }

strong {
    color: var(--accent);
}

/* ─── SVG ICONS ─── */
svg.icon {
    width: 1.1em;
    height: 1.1em;
    vertical-align: -0.15em;
    flex-shrink: 0;
}

svg.icon-sm {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    color: var(--primary);
}

svg.icon-inline {
    width: 1.1em;
    height: 1.1em;
    vertical-align: -0.2em;
    display: inline;
    color: var(--primary);
}

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

/* ─── SECTION GENERIQUE ─── */
.section {
    padding: var(--section-pad) 0;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #818CF8);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-header p {
    margin-top: 1.25rem;
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.8;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(59,130,246,0.06);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1.1rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(59,130,246,0.12);
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font);
    font-weight: 600;
    font-size: var(--body);
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: skewX(-20deg);
    transition: none;
}

.btn:hover::after {
    animation: shimmer 0.8s ease forwards;
}

@keyframes shimmer {
    to { left: 120%; }
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #6366F1 100%);
    color: #F1F5F9;
    border-color: transparent;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59,130,246,0.35);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #F1F5F9;
    transform: translateY(-2px);
}

.btn-white {
    background: rgba(255,255,255,0.1);
    color: #F1F5F9;
    border-color: rgba(255,255,255,0.2);
}
.btn-white:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: #F1F5F9;
    border-color: rgba(255,255,255,0.2);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    color: #F1F5F9;
}

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

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
}

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

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11,17,32,0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: var(--transition);
}

.navbar.scrolled {
    border-bottom-color: rgba(59,130,246,0.1);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
    background: rgba(11,17,32,0.92);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.3rem;
    color: #F1F5F9;
}

.nav-logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

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

.nav-links a {
    padding: 0.5rem 0.85rem;
    font-size: var(--small);
    font-weight: 500;
    color: #94A3B8;
    border-radius: var(--radius-sm);
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(59,130,246,0.1);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary), #818CF8) !important;
    color: #F1F5F9 !important;
    padding: 0.55rem 1.25rem !important;
    border-radius: var(--radius) !important;
    margin-left: 0.5rem;
}

.nav-cta:hover {
    filter: brightness(1.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(59,130,246,0.3);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #E2E8F0;
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--surface-0);
    overflow: hidden;
    padding-top: 72px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(59,130,246,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(99,102,241,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(245,158,11,0.05) 0%, transparent 40%);
    pointer-events: none;
    animation: gradient-shift 12s ease-in-out infinite alternate;
}

@keyframes gradient-shift {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1) translateX(2%); }
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
    pointer-events: none;
    animation: hero-pulse 8s ease-in-out infinite;
}

@keyframes hero-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 3rem 0;
}

.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59,130,246,0.08);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    border: 1px solid rgba(59,130,246,0.15);
    backdrop-filter: blur(8px);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

.hero h1 {
    color: #F1F5F9;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    font-weight: 800;
    line-height: 1.1;
}

.hero h1 strong {
    background: linear-gradient(135deg, var(--primary) 0%, #818CF8 50%, var(--accent) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    animation: gradient-text 4s ease-in-out infinite alternate;
}

@keyframes gradient-text {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.hero-subtitle {
    color: #94A3B8;
    font-size: clamp(1.05rem, 1.5vw, 1.15rem);
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-ctas .btn-outline {
    color: #CBD5E1;
    border-color: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
}
.hero-ctas .btn-outline:hover {
    background: rgba(255,255,255,0.08);
    color: #F1F5F9;
    border-color: rgba(255,255,255,0.3);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.hero-image-wrapper img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 60px rgba(59,130,246,0.08);
    aspect-ratio: 3/4;
    object-fit: cover;
    border: 1px solid rgba(59,130,246,0.1);
    transition: box-shadow 0.5s;
}

.hero-image-wrapper:hover img {
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 80px rgba(59,130,246,0.15);
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    background: rgba(15,23,42,0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: var(--radius);
    color: #E2E8F0;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.hero-float-card svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.hero-float-1 {
    top: 12%;
    right: -1rem;
    color: var(--success);
    animation-delay: 0s;
}

.hero-float-1 svg { color: var(--success); }

.hero-float-2 {
    bottom: 15%;
    left: -1.5rem;
    animation-delay: 2s;
}

.hero-float-2 svg { color: var(--accent); }

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

/* Trust bar dans hero */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.25rem 1.75rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
}

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

.trust-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #F1F5F9;
    letter-spacing: -0.02em;
}

.trust-label {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════════════════════════
   TRUST BANNER
   ═══════════════════════════════════════════════════════════ */
.trust-banner {
    background: var(--surface-1);
    border-bottom: 1px solid rgba(59,130,246,0.08);
    padding: 1.25rem 0;
    overflow: hidden;
}

.trust-marquee {
    display: flex;
    animation: marquee 25s linear infinite;
    width: max-content;
    gap: 0;
}

.trust-marquee:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.trust-grid {
    display: flex;
    gap: 3rem;
    padding: 0 1.5rem;
    flex-shrink: 0;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.trust-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-2);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    color: var(--primary);
    border: 1px solid rgba(59,130,246,0.1);
}

.trust-card-icon svg {
    width: 24px;
    height: 24px;
}

.trust-card-text strong {
    display: block;
    font-size: var(--small);
    color: #E2E8F0;
}

.trust-card-text span {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════ */
.services {
    background: var(--surface-0);
}

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

.service-card {
    position: relative;
    background: var(--surface-1);
    border: 1px solid rgba(59,130,246,0.06);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1.5px;
    background: conic-gradient(from var(--card-angle, 0deg), var(--primary), #818CF8, var(--accent), #818CF8, var(--primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(59,130,246,0.12);
    transform: translateY(-6px);
}

.service-card:hover::before {
    opacity: 1;
    animation: rotate-border 3s linear infinite;
}

@keyframes rotate-border {
    to { --card-angle: 360deg; }
}

@property --card-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.service-card.featured {
    border-color: transparent;
    background: linear-gradient(180deg, rgba(59,130,246,0.08) 0%, var(--surface-1) 40%);
}

.service-card.featured::before {
    opacity: 1;
    animation: rotate-border 4s linear infinite;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: #0B1120;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    text-transform: uppercase;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59,130,246,0.1);
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    color: var(--primary);
    border: 1px solid rgba(59,130,246,0.15);
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    background: rgba(59,130,246,0.18);
    box-shadow: 0 0 20px rgba(59,130,246,0.2);
    transform: scale(1.05);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-list {
    margin-bottom: 1.5rem;
}

.service-list li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: var(--small);
    color: var(--dark-500);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.service-link {
    font-weight: 600;
    color: var(--primary);
    font-size: var(--small);
}

.service-link:hover {
    color: var(--primary-dark);
}

/* ═══════════════════════════════════════════════════════════
   STORY / ABOUT
   ═══════════════════════════════════════════════════════════ */
.story {
    background: var(--surface-1);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: center;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
    aspect-ratio: 4/5;
    object-fit: cover;
    border: 1px solid rgba(59,130,246,0.08);
}

.story-image::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, rgba(59,130,246,0.2) 0%, transparent 50%, rgba(99,102,241,0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.story-experience {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--primary);
    color: #F1F5F9;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.exp-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    opacity: 0.9;
    display: block;
    margin-top: 0.25rem;
}

.story-content .section-tag {
    display: inline-block;
}

.story-content h2 {
    margin-bottom: 1.5rem;
}

.story-text p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

.story-text p strong {
    color: #E2E8F0;
}

.story-values {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-icon {
    width: 32px;
    height: 32px;
    background: var(--success);
    color: #F1F5F9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.value-item strong {
    display: block;
    color: #E2E8F0;
    font-size: 0.95rem;
}

.value-item span {
    font-size: var(--small);
    color: var(--gray-600);
}

/* ═══════════════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════════════ */
.process {
    background: var(--surface-0);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 56px;
    right: 56px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), #818CF8, var(--accent), #818CF8, var(--primary));
    background-size: 200% 100%;
    animation: line-flow 3s linear infinite;
    opacity: 0.3;
    z-index: 0;
}

@keyframes line-flow {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

.process-step {
    background: var(--surface-1);
    border: 1px solid rgba(59,130,246,0.06);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.process-step::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(59,130,246,0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.process-step:hover {
    border-color: rgba(59,130,246,0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(59,130,246,0.08);
}

.process-step:hover::after {
    opacity: 1;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), #818CF8);
    color: #F1F5F9;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: var(--radius);
    flex-shrink: 0;
}

.step-line {
    height: 2px;
    flex: 1;
    background: linear-gradient(90deg, rgba(59,130,246,0.2), transparent);
}

.process-step h3 {
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.process-step p {
    font-size: var(--small);
    color: var(--gray-600);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   RÉALISATIONS + AVIS (Chantier rows)
   ═══════════════════════════════════════════════════════════ */
.realisations {
    background: var(--surface-1);
}

/* Chantier Row — photo + avis côte à côte */
.chantier-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.chantier-row.reverse {
    direction: rtl;
}

.chantier-row.reverse > * {
    direction: ltr;
}

/* Ligne de connexion entre photo et avis */
.chantier-row::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 2px;
    background: var(--primary);
    opacity: 0.2;
    z-index: 1;
}

/* Photo du chantier */
.chantier-photo {
    background: var(--surface-2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(59,130,246,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chantier-photo:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(59,130,246,0.1);
    transform: translateY(-6px);
    border-color: rgba(59,130,246,0.15);
}

.chantier-image {
    height: 300px;
    overflow: hidden;
}

.chantier-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.chantier-photo:hover .chantier-image img {
    transform: scale(1.05);
}

.chantier-details {
    padding: 1.5rem;
}

.chantier-details h3 {
    margin-bottom: 0.5rem;
}

.chantier-details p {
    font-size: var(--small);
    color: var(--gray-600);
}

/* Avis associé au chantier */
.chantier-avis {
    display: flex;
    align-items: center;
}

.chantier-avis .avis-card {
    width: 100%;
    position: relative;
}

/* Flèche de connexion */
.chantier-avis .avis-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -1rem;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid rgba(59,130,246,0.15);
    transform: translateY(-50%);
}

.chantier-row.reverse .chantier-avis .avis-card::before {
    left: auto;
    right: -1rem;
    border-right: none;
    border-left: 10px solid rgba(59,130,246,0.15);
}

.realisations-cta {
    text-align: center;
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(59,130,246,0.08);
}

.realisations-cta p {
    font-size: 1.1rem;
    color: #CBD5E1;
    margin-bottom: 1rem;
    font-weight: 500;
}

.realisations-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid rgba(59,130,246,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    border-color: rgba(59,130,246,0.2);
    box-shadow: 0 16px 50px rgba(0,0,0,0.4), 0 0 30px rgba(59,130,246,0.08);
    transform: translateY(-4px);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 1rem 1rem;
    background: linear-gradient(to top, rgba(11,17,32,0.9) 0%, transparent 100%);
    color: #E2E8F0;
    font-size: 0.8rem;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   AVIS CLIENTS (inside chantier rows)
   ═══════════════════════════════════════════════════════════ */

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.google-stars {
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 2px;
}

.google-stars svg {
    width: 22px;
    height: 22px;
}

.google-score {
    font-weight: 700;
    color: #E2E8F0;
}

.avis-card {
    background: var(--surface-2);
    border: 1px solid rgba(59,130,246,0.06);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.avis-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.avis-card:hover::after {
    opacity: 1;
}

.avis-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(245,158,11,0.06);
    border-color: rgba(245,158,11,0.15);
}

.avis-stars {
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 1rem;
}

.avis-stars svg {
    width: 18px;
    height: 18px;
}

.avis-text {
    font-size: 0.95rem;
    color: var(--dark-500);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    border: none;
    padding: 0;
    margin-top: 0;
}

.avis-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.avis-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #F1F5F9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.avis-author strong {
    display: block;
    color: #E2E8F0;
    font-size: 0.95rem;
}

.avis-author span {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.avis-google-badge {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(59,130,246,0.08);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.avis-google-badge svg {
    color: var(--primary);
    flex-shrink: 0;
}

.avis-google-badge a {
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 500;
}

.avis-google-badge a:hover {
    color: var(--primary);
}

/* Placeholder images */
.placeholder-image {
    background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface-3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.placeholder-icon {
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.5;
    color: var(--gray-400);
}

.placeholder-icon svg {
    width: 48px;
    height: 48px;
    margin: 0 auto;
}

.placeholder-text {
    font-size: var(--small);
    color: var(--gray-400);
    font-style: italic;
}

.realisation-tag {
    display: inline-block;
    background: rgba(59,130,246,0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    border: 1px solid rgba(59,130,246,0.15);
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.cta-section {
    position: relative;
    background: var(--surface-1);
    border-top: 1px solid rgba(59,130,246,0.06);
    border-bottom: 1px solid rgba(59,130,246,0.06);
    padding: 5rem 0;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59,130,246,0.04) 0%, transparent 50%, rgba(99,102,241,0.04) 100%);
    animation: cta-glow 6s ease-in-out infinite alternate;
}

@keyframes cta-glow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.cta-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: hero-pulse 6s ease-in-out infinite;
}

.cta-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: #F1F5F9;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    font-size: var(--h2);
}

.cta-content p {
    color: #94A3B8;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   ZONE D'INTERVENTION
   ═══════════════════════════════════════════════════════════ */
.zone {
    background: var(--surface-1);
}

.zone-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.map-placeholder {
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(59,130,246,0.08);
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at center, rgba(59,130,246,0.06) 0%, transparent 70%);
}

.map-center {
    text-align: center;
    position: relative;
    z-index: 1;
}

.map-pin {
    display: block;
    margin-bottom: 0.5rem;
    animation: bounce 2s ease infinite;
    color: var(--primary);
}

.map-pin svg {
    width: 48px;
    height: 48px;
    margin: 0 auto;
}

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

.map-center span:last-child {
    font-weight: 700;
    color: var(--primary-dark);
}

.city-group {
    margin-bottom: 2rem;
}

.city-group h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.city-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.city-tag {
    display: inline-block;
    background: var(--surface-2);
    border: 1px solid rgba(59,130,246,0.1);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: var(--small);
    font-weight: 500;
    color: #94A3B8;
    transition: var(--transition);
}

.city-tag:hover {
    background: var(--primary);
    color: #F1F5F9;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59,130,246,0.3);
}

.city-tag.primary {
    background: rgba(59,130,246,0.12);
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
}

.city-tag.primary:hover {
    background: var(--primary);
    color: #F1F5F9;
}

.zone-note {
    background: var(--surface-2);
    border: 1px solid rgba(59,130,246,0.08);
    border-radius: var(--radius);
    padding: 1.25rem;
    font-size: var(--small);
}

.zone-note strong {
    color: #E2E8F0;
}

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq {
    background: var(--surface-0);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(59,130,246,0.06);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--surface-1);
}

.faq-item:hover {
    border-color: rgba(59,130,246,0.12);
}

.faq-item[open] {
    border-color: rgba(59,130,246,0.2);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 20px rgba(59,130,246,0.06);
    background: linear-gradient(180deg, rgba(59,130,246,0.04) 0%, var(--surface-1) 30%);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: #E2E8F0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    list-style: none;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact {
    background: var(--surface-1);
}

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

.contact-form {
    background: var(--surface-1);
    border: 1px solid rgba(59,130,246,0.06);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

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

.form-group label {
    display: block;
    font-size: var(--small);
    font-weight: 600;
    color: #E2E8F0;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    font-family: var(--font);
    font-size: var(--body);
    border: 1.5px solid rgba(59,130,246,0.08);
    border-radius: var(--radius);
    background: var(--surface-0);
    color: #E2E8F0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--surface-0);
    box-shadow: 0 0 0 4px rgba(59,130,246,0.1), 0 0 20px rgba(59,130,246,0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    background: var(--surface-1);
    border: 1px solid rgba(59,130,246,0.06);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), #818CF8);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    border-color: rgba(59,130,246,0.12);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.info-card.urgence {
    background: linear-gradient(135deg, rgba(239,68,68,0.06) 0%, var(--surface-2) 100%);
    border-color: rgba(239,68,68,0.3);
}

.info-icon {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-card.urgence .info-icon {
    color: var(--danger);
}

.info-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.info-value {
    display: block;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.urgence-tel {
    color: var(--danger) !important;
}

.info-detail {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
    background: var(--surface-0);
    color: #64748B;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(59,130,246,0.04);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.footer-brand h3 {
    color: #F1F5F9;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: var(--small);
    line-height: 1.7;
}

.footer-links h4 {
    color: #E2E8F0;
    font-size: var(--small);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

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

.footer-links a {
    font-size: var(--small);
    color: #64748B;
}

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

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

.footer-legal {
    margin-top: 0.5rem;
}

.footer-legal a {
    color: #64748B;
}

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

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS (Scroll Reveal)
   ═══════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(6px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* Tablette */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
    }

    .hero-image-wrapper {
        max-width: 320px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-float-card {
        display: none;
    }

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

    .services-grid .service-card.featured {
        grid-row: auto;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .story-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .process-grid::before {
        display: none;
    }

    .chantier-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .chantier-row.reverse {
        direction: ltr;
    }

    .chantier-row::after {
        display: none;
    }

    .chantier-avis .avis-card::before,
    .chantier-row.reverse .chantier-avis .avis-card::before {
        display: none;
    }

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

    .zone-content {
        grid-template-columns: 1fr;
    }

    .map-placeholder {
        height: 250px;
    }

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

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

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--surface-0);
        flex-direction: column;
        padding: 2rem;
        gap: 0.25rem;
        z-index: 999;
        overflow-y: auto;
    }

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

    .nav-links a {
        width: 100%;
        padding: 0.85rem;
        font-size: 1rem;
        border-radius: var(--radius);
    }

    .nav-cta {
        margin-left: 0 !important;
        margin-top: 1rem;
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        padding: 1rem 0;
    }

    .hero-visual {
        display: none;
    }

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

    .hero-trust {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }

    .trust-divider {
        width: 40px;
        height: 1px;
    }

    .trust-grid {
        gap: 2.5rem;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .hero-ctas {
        flex-direction: column;
    }

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

/* Small mobile */
@media (max-width: 400px) {
    .trust-grid {
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}
