:root {
    --green:       #1a3a2a;
    --green-mid:   #2d5a42;
    --green-light: #3d7a5a;
    --green-deep:  #102418;
    --beige:       #c8a97a;
    --beige-light: #e2d0b0;
    --beige-pale:  #f5efe4;
    --white:       #ffffff;
    --text:        #1a2e20;
    --text-muted:  #6b7c6e;
    --border:      #d4c9b0;

    /* Surfaces modernes */
    --surface:        #fbfaf6;
    --surface-soft:   #f3f0e7;

    /* Dégradés */
    --grad-green:  linear-gradient(135deg, #1a3a2a 0%, #2d5a42 55%, #3d7a5a 100%);
    --grad-beige:  linear-gradient(135deg, #c8a97a 0%, #e2d0b0 100%);
    --grad-soft:   linear-gradient(180deg, #ffffff 0%, #f5efe4 100%);

    /* Rayons */
    --radius-xl: 32px;
    --radius:    22px;
    --radius-sm: 14px;

    /* Ombres */
    --shadow-soft:  0 10px 30px -18px rgba(26,58,42,0.30);
    --shadow-card:  0 24px 60px -32px rgba(26,58,42,0.40);
    --shadow-hover: 0 40px 80px -36px rgba(26,58,42,0.55);

    /* Transitions */
    --ease:  cubic-bezier(0.22, 1, 0.36, 1);
    --t:     0.45s var(--ease);

    /* Tailles */
    --fs-body:     15px;
    --fs-small:    13px;
    --fs-label:    11px;
    --fs-btn:      12px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', 'DM Sans', sans-serif;
    font-size: var(--fs-body);
    line-height: 1.6;
    color: var(--text);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; }

/* Reveal au scroll */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
    will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.10s; }
.reveal[data-delay="2"] { transition-delay: 0.20s; }
.reveal[data-delay="3"] { transition-delay: 0.30s; }
.reveal[data-delay="4"] { transition-delay: 0.40s; }

/* =====================
   HERO SLIDER
   ===================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 94vh;
    min-height: 600px;
    overflow: hidden;
    border-bottom-left-radius: var(--radius-xl);
    border-bottom-right-radius: var(--radius-xl);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.1s var(--ease), transform 6s ease-out;
    display: flex;
    align-items: center;
    pointer-events: none;
}
.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
    pointer-events: auto;
}

/* Fond de chaque slide */
.slide-1 { background: linear-gradient(125deg, #102418 0%, #1a3a2a 45%, #2d5a42 100%); }
.slide-2 { background: linear-gradient(125deg, #14271a 0%, #28432d 50%, #3d7a5a 100%); }
.slide-3 { background: linear-gradient(125deg, #0f221a 0%, #1e3f2c 55%, #355f3f 100%); }

/* Halos lumineux modernes */
.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 78% 18%, rgba(200,169,122,0.22), transparent 60%),
        radial-gradient(ellipse 45% 55% at 12% 88%, rgba(61,122,90,0.35), transparent 60%);
    pointer-events: none;
}
/* Grain/texture subtile */
.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.slide-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: var(--fs-label);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--beige-light);
    font-weight: 400;
    margin-bottom: 26px;
    padding: 9px 18px;
    border: 1px solid rgba(226,208,176,0.25);
    border-radius: 100px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
}
.slide-tag::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--beige);
    box-shadow: 0 0 12px var(--beige);
}

.slide.active .slide-title,
.slide.active .slide-sub,
.slide.active .slide-cta,
.slide.active .slide-tag { animation: heroUp 1s var(--ease) both; }
.slide.active .slide-sub { animation-delay: 0.12s; }
.slide.active .slide-cta { animation-delay: 0.22s; }
@keyframes heroUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: none; }
}

.slide-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(3rem, 6.5vw, 5.6rem);
    color: var(--white);
    letter-spacing: 0.01em;
    line-height: 1.05;
    margin-bottom: 22px;
}
.slide-title em {
    font-style: italic;
    background: var(--grad-beige);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-sub {
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 42px;
    max-width: 470px;
    line-height: 1.85;
}

.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--grad-beige);
    color: var(--green-deep);
    font-family: 'Jost', sans-serif;
    font-size: var(--fs-btn);
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 17px 38px;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 18px 40px -18px rgba(200,169,122,0.8);
    transition: transform var(--t), box-shadow var(--t);
}
.slide-cta::after { content: '→'; font-size: 15px; transition: transform var(--t); }
.slide-cta:hover { box-shadow: 0 28px 50px -18px rgba(200,169,122,0.9); }

/* Décor à droite */
.slide-deco {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.3;
}
.slide-deco-line { width: 1px; height: 90px; background: linear-gradient(var(--beige), transparent); }
.slide-deco-diamond {
    width: 9px; height: 9px;
    border: 1px solid var(--beige);
    border-radius: 2px;
    transform: rotate(45deg);
}

/* Indicateurs */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.slider-dot {
    width: 26px; height: 3px;
    border-radius: 100px;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: all var(--t);
    border: none;
    padding: 0;
}
.slider-dot.active { background: var(--beige); width: 46px; }

/* Flèches */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.7);
    width: 50px; height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all var(--t);
    display: flex; align-items: center; justify-content: center;
    font-family: serif;
}
.slider-arrow:hover { background: var(--beige); border-color: var(--beige); color: var(--green-deep); }
.slider-arrow.prev { left: 28px; }
.slider-arrow.next { right: 28px; }

/* Numéro de slide */
.slider-counter {
    position: absolute;
    bottom: 42px;
    right: 60px;
    font-size: var(--fs-label);
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.3);
    z-index: 10;
}
.slider-counter span { color: var(--beige); }

/* =====================
   EN-TÊTE DE SECTION
   ===================== */
.home-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 50px 40px;
}

.sec-head {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 36px;
}
.sec-head-text { flex: 1; }
.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-label);
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--green-light);
    font-weight: 500;
    margin-bottom: 14px;
}
.sec-label::before {
    content: '';
    width: 22px; height: 1px;
    background: var(--beige);
}
.sec-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 2.9rem);
    color: var(--green);
    letter-spacing: 0.01em;
    line-height: 1.1;
}
.sec-title em { font-style: italic; color: var(--beige); }
.sec-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--border), transparent); }
.sec-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-btn);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-mid);
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    padding: 11px 22px;
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: all var(--t);
    flex-shrink: 0;
}
.sec-link:hover { background: var(--green); color: var(--white); border-color: var(--green); }

/* =====================
   SERVICES
   ===================== */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.svc-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.svc-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}
.svc-thumb {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
}
.svc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.96) saturate(0.97);
    transition: transform 0.7s ease;
}
.svc-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,58,42,0.35), transparent 55%);
    pointer-events: none;
}
.svc-card-body {
    padding: 30px 30px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.svc-cat {
    position: absolute;
    top: 16px; left: 16px;
    z-index: 2;
    display: inline-block;
    font-size: var(--fs-label);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green-deep);
    font-weight: 500;
    padding: 7px 14px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    border-radius: 100px;
    box-shadow: 0 6px 16px -8px rgba(26,58,42,0.5);
}
.svc-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.55rem;
    color: var(--green);
    letter-spacing: 0.01em;
    line-height: 1.2;
    margin-bottom: 14px;
}
.svc-desc {
    font-size: var(--fs-small);
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    flex: 1;
    margin-bottom: 28px;
}
.svc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}
.svc-meta { display: flex; flex-direction: column; gap: 4px; }
.svc-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--green);
    line-height: 1;
}
.svc-price small {
    font-size: 0.55em;
    color: var(--beige);
    font-family: 'Jost', sans-serif;
    letter-spacing: 0.1em;
}
.svc-duration {
    font-size: var(--fs-label);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 400;
}
.svc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-btn);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--green);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 22px;
    border-radius: 100px;
    transition: all var(--t);
    white-space: nowrap;
}
.svc-btn:hover { background: var(--green-light); }

/* =====================
   À PROPOS
   ===================== */
.about-strip {
    background: var(--grad-green);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    max-width: 1300px;
    margin: 0 auto;
}
.about-strip::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,169,122,0.25), transparent 70%);
    pointer-events: none;
}
.about-inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 50px 60px;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
}
.about-img { position: relative; }
.about-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
    filter: brightness(0.92) saturate(0.95);
    box-shadow: var(--shadow-card);
}
.about-img::after {
    content: '';
    position: absolute;
    bottom: -16px; right: -16px;
    width: 60%; height: 60%;
    border: 1px solid rgba(200,169,122,0.4);
    border-radius: var(--radius);
    pointer-events: none;
}
.about-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-label);
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--beige-light);
    font-weight: 500;
    margin-bottom: 20px;
}
.about-label::before { content: ''; width: 22px; height: 1px; background: var(--beige); }
.about-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--white);
    letter-spacing: 0.01em;
    line-height: 1.1;
    margin-bottom: 24px;
}
.about-title em {
    font-style: italic;
    background: var(--grad-beige);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about-text {
    font-size: 14.5px;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255,255,255,0.62);
    margin-bottom: 16px;
}
.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    font-size: var(--fs-btn);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-deep);
    background: var(--grad-beige);
    text-decoration: none;
    font-weight: 500;
    padding: 15px 32px;
    border-radius: 100px;
    transition: transform var(--t), box-shadow var(--t);
    box-shadow: 0 16px 36px -18px rgba(200,169,122,0.8);
}
.about-cta:hover { box-shadow: 0 26px 46px -18px rgba(200,169,122,0.9); }

/* =====================
   PROCESS
   ===================== */
.process-bg {
    background: var(--grad-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.process-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 50px 40px;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.process-step {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px 34px;
    text-align: left;
    box-shadow: var(--shadow-soft);
    transition: transform var(--t), box-shadow var(--t);
    overflow: hidden;
}
.process-step:hover { box-shadow: var(--shadow-hover); }
.process-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
    background: var(--grad-green);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 22px;
    display: block;
}
.process-icon {
    position: absolute;
    top: 36px; right: 30px;
    width: 50px; height: 50px;
    border-radius: 14px;
    background: var(--beige-pale);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-mid);
    transition: background var(--t), color var(--t), transform var(--t);
}
.process-icon svg { width: 26px; height: 26px; }
.process-step:hover .process-icon {
    background: var(--grad-green);
    color: var(--beige-light);
}
.process-step h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--green);
    letter-spacing: 0.01em;
    margin-bottom: 12px;
}
.process-step p {
    font-size: var(--fs-small);
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
}

/* =====================
   STATS
   ===================== */
.stats-strip {
    background: var(--green-deep);
    position: relative;
    overflow: hidden;
}
.stats-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 80% at 15% 50%, rgba(61,122,90,0.4), transparent 60%),
        radial-gradient(ellipse 40% 80% at 85% 50%, rgba(200,169,122,0.14), transparent 60%);
}
.stats-inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 50px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-item {
    text-align: center;
    padding: 18px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 4.5vw, 3.6rem);
    font-weight: 400;
    background: var(--grad-beige);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 12px;
}
.stat-lbl {
    font-size: var(--fs-label);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
}

/* =====================
   VALEURS
   ===================== */
.values-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 50px 40px;
}
.val-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.val-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px 34px;
    box-shadow: var(--shadow-soft);
    transition: transform var(--t), box-shadow var(--t);
}
.val-card:hover { box-shadow: var(--shadow-hover); }
.val-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--grad-green);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 26px;
    box-shadow: 0 14px 28px -14px rgba(26,58,42,0.6);
}
.val-icon-dot {
    width: 14px; height: 14px;
    background: var(--grad-beige);
    border-radius: 3px;
    transform: rotate(45deg);
}
.val-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--green);
    letter-spacing: 0.01em;
    margin-bottom: 12px;
}
.val-text {
    font-size: var(--fs-small);
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
}

/* =====================
   ENGAGEMENT
   ===================== */
.engage-section {
    background: var(--surface-soft);
    border-top: 1px solid var(--border);
}
.engage-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 50px 40px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: center;
}
.engage-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-label);
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--green-light);
    font-weight: 500;
    margin-bottom: 20px;
}
.engage-label::before { content: ''; width: 22px; height: 1px; background: var(--beige); }
.engage-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--green);
    letter-spacing: 0.01em;
    line-height: 1.1;
    margin-bottom: 24px;
}
.engage-title em { font-style: italic; color: var(--beige); }
.engage-text {
    font-size: 14.5px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.engage-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    background: var(--green);
    color: var(--white);
    font-size: var(--fs-btn);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 16px 34px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    transition: transform var(--t), box-shadow var(--t), background var(--t);
    box-shadow: 0 16px 36px -18px rgba(26,58,42,0.7);
}
.engage-cta::after { content: '→'; transition: transform var(--t); }
.engage-cta:hover { background: var(--green-light); }
.engage-img { position: relative; }
.engage-img img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    filter: brightness(0.95) saturate(0.9);
}
.engage-img::before {
    content: '';
    position: absolute;
    top: -16px; left: -16px;
    width: 60%; height: 60%;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    pointer-events: none;
    z-index: -1;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 980px) {
    .svc-grid, .val-grid, .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
    .svc-grid, .val-grid, .process-steps { grid-template-columns: 1fr; }
    .about-inner  { grid-template-columns: 1fr; gap: 48px; }
    .engage-inner { grid-template-columns: 1fr; gap: 48px; }
    .stats-inner  { grid-template-columns: 1fr 1fr; gap: 14px; }
    .stat-item    { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 22px; }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; }
    .home-section { padding: 40px 22px; }
    .about-strip  { border-radius: var(--radius); }
    .about-inner, .engage-inner, .process-inner, .values-inner { padding: 40px 24px; }
    .sec-head { flex-wrap: wrap; gap: 16px; }
    .sec-line { display: none; }
    .slide-inner  { padding: 0 30px; }
    .slide-deco   { display: none; }
}
@media (max-width: 540px) {
    .hero-slider  { height: 100vh; border-radius: 0; }
    .slide-title  { font-size: clamp(2.4rem, 11vw, 3.2rem); }
    .stats-inner  { grid-template-columns: 1fr 1fr; }
    .slider-counter, .slider-arrow { display: none; }
    .about-inner img, .engage-img img { height: 320px; }
}
