/* ============================================
   ACONOQ — Brightly-Inspired Design System
   ============================================ */

/* === CSS VARIABLES === */
:root {
    --acq-900: #0f7140;
    --acq-800: #0a4b2a;
    --acq-700: #0e6f2e;
    --acq-600: #1a8a3c;
    --acq-light: #eaf4ef;
    --lime: #c5e84a;
    --lime-dark: #a8c93a;
    --gold: #f5c908;
    --gold-weak: rgba(245, 201, 8, .14);
    --red: #c61b17;
    --cream: #f7f8f3;
    --white: #ffffff;
    --text: #4a5a4c;
    --text-light: #7c8f7e;
    --text-dark: #0a1f0a;
    --border: rgba(15, 113, 64, .1);
    --border-light: #e5e9e0;
    --border-dark: rgba(255, 255, 255, .1);
    --shadow-sm: 0 6px 18px rgba(15, 113, 64, .07);
    --shadow-md: 0 18px 46px rgba(15, 113, 64, .14);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, .08);
    --shadow-glow: 0 14px 30px rgba(15, 113, 64, .35);
    --shadow-glow-gold: 0 14px 30px rgba(245, 201, 8, .35);
    --radius: 18px;
    --radius-lg: 28px;
    --radius-pill: 50px;
    --radius-sm: 12px;
    --section-py: 96px;
    --container-max: 1320px;
    --container-px: 92%;
    --header-h: 80px;
    --font: "Inter", system-ui, -apple-system, sans-serif;
}

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    font-weight: 400;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    color: var(--text-dark);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -.03em;
}
h1 { font-size: clamp(42px, 6vw, 76px); letter-spacing: -.05em; line-height: 1.05; }
h2 { font-size: clamp(32px, 4vw, 46px); }
h3 { font-size: 22px; }
h4 { font-size: 20px; font-weight: 600; }
h5 { font-size: 17px; font-weight: 600; }
h6 { font-size: 15px; font-weight: 500; }

/* === CONTAINER === */
.container {
    width: min(var(--container-max), var(--container-px));
    margin-inline: auto;
}

/* === SECTION === */
.section { padding: var(--section-py) 0; }
.section--about { padding-top: 24px; }
.section--services { padding-top: 28px; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--dark { background: var(--acq-900); color: var(--cream); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }

/* === SECTION HEADER === */
.sec-head { max-width: 680px; margin-bottom: 56px; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--acq-700);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.sec-tag::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--lime);
    display: inline-block;
}
.sec-head--center .sec-tag::after {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--lime);
    display: inline-block;
}
.sec-title {
    font-weight: 700;
    letter-spacing: -.03em;
    color: var(--text-dark);
}
.sec-title strong { font-weight: 800; }
.sec-title em { font-style: normal; color: var(--acq-900); }
.section--dark .sec-title { color: var(--white); }
.sec-desc {
    color: var(--text);
    font-size: 16.5px;
    margin-top: 16px;
    line-height: 1.7;
}
.sec-head--center .sec-desc { margin-inline: auto; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 5px;
    border-radius: var(--radius-pill);
    background: var(--lime);
    font-weight: 600;
    font-size: 15px;
    border: none;
    transition: all .3s ease;
    position: relative;
    text-decoration: none;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 232, 74, .4);
}
.btn-inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--acq-900);
    color: var(--white);
    padding: 13px 24px;
    border-radius: var(--radius-pill);
    transition: all .3s ease;
    white-space: nowrap;
}
.btn:hover .btn-inner {
    background: var(--white);
    color: var(--acq-900);
}
.btn-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--acq-900);
    font-size: 16px;
    transition: all .3s ease;
}
.btn:hover .btn-arrow { color: var(--acq-900); }

/* Button --dark */
.btn--dark { background: var(--acq-900); }
.btn--dark .btn-inner { background: var(--lime); color: var(--acq-900); }
.btn--dark:hover .btn-inner { background: var(--white); }

/* Button --outline */
.btn--outline {
    background: transparent;
    padding: 5px;
}
.btn--outline .btn-inner {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--border-light);
}
.btn--outline:hover .btn-inner {
    background: var(--lime);
    color: var(--acq-900);
    border-color: var(--lime);
}

/* Button --white (on dark bg) */
.btn--white {
    background: var(--white);
}
.btn--white .btn-inner {
    background: var(--acq-900);
    color: var(--white);
}
.btn--white:hover .btn-inner {
    background: var(--lime);
    color: var(--acq-900);
}

/* Button --lime (bright CTA) */
.btn--lime {
    background: var(--lime);
    padding: 5px;
}
.btn--lime .btn-inner {
    background: var(--acq-900);
    color: var(--white);
    padding: 13px 28px;
}
.btn--lime:hover .btn-inner {
    background: var(--white);
    color: var(--acq-900);
}
.btn--lime:hover {
    box-shadow: 0 8px 24px rgba(197, 232, 74, .45);
}

/* Header CTA: no visible border or spacing ring */
.navbar .btn--lime {
    padding: 0 !important;
    border: 0 !important;
}
.navbar .btn--lime .btn-inner {
    border: 0 !important;
}

/* Button --red */
.btn--red { background: var(--red); }
.btn--red .btn-inner { background: var(--white); color: var(--red); }
.btn--red .btn-arrow { color: var(--red); }
.btn--red:hover { box-shadow: 0 14px 30px rgba(198, 27, 23, .35); }
.btn--red:hover .btn-inner { background: var(--acq-900); color: var(--white); }

/* Button --white-outline (on hero image bg) */
.btn--hero-outline .btn-inner {
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, .3);
}
.btn--hero-outline:hover .btn-inner {
    background: var(--white);
    color: var(--acq-900);
    border-color: var(--white);
}

/* === CARDS === */
.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 34px 28px;
    border: 1px solid var(--border);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.feature-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.02em;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.feature-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.65;
}

/* Card icon */
.feature-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--acq-light);
    color: var(--acq-700);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    transition: all .35s ease;
    font-size: 22px;
}
.feature-card:hover .feature-icon {
    background: var(--lime);
    color: var(--acq-900);
}

/* Ghost number */
.card-num {
    position: absolute;
    top: 12px; right: 16px;
    font-size: 72px;
    font-weight: 900;
    color: rgba(15, 113, 64, .04);
    line-height: 1;
    pointer-events: none;
}

/* === PAGE HERO (internal pages) === */
.page-hero {
    background: linear-gradient(135deg, var(--acq-900) 0%, var(--acq-800) 60%, var(--acq-700) 100%);
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 28px 28px;
    -webkit-mask-image: radial-gradient(circle at 50% 0%, black, transparent 80%);
    mask-image: radial-gradient(circle at 50% 0%, black, transparent 80%);
    pointer-events: none;
}
.page-hero > * { position: relative; z-index: 2; }
.page-hero h3 {
    color: var(--white);
    font-weight: 800;
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: -.04em;
    line-height: 1.1;
    margin-bottom: 12px;
}
.page-hero h3 em { font-style: normal; color: var(--lime); }
.page-hero p {
    color: rgba(255,255,255,.8);
    font-size: 16.5px;
    max-width: 560px;
    margin-inline: auto;
    line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13px;
    color: rgba(255,255,255,.6);
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--lime); transition: color .2s; }
.breadcrumb a:hover { color: var(--white); }

/* === HERO (Home — Brightly style) === */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--cream);
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg,
        rgba(247, 248, 243, .97) 0%,
        rgba(247, 248, 243, .92) 25%,
        rgba(247, 248, 243, .7) 45%,
        rgba(247, 248, 243, .25) 65%,
        transparent 80%
    );
    pointer-events: none;
}
.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}
.hero-content { max-width: 600px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 113, 64, .08);
    color: var(--acq-900);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 999px;
    margin-bottom: 28px;
    border: 1px solid rgba(15, 113, 64, .12);
}
.hero-badge i { color: var(--acq-700); font-size: 12px; }
.hero-title {
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.05;
    letter-spacing: -.05em;
    margin-bottom: 24px;
}
.hero-title .accent { color: var(--acq-900); }
.hero-desc {
    color: var(--text);
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-right {
    position: relative;
    display: flex;
    justify-content: flex-end;
}
.hero-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
}
.hero-img-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* Hero carousel dots */
.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none;
    cursor: pointer;
    transition: all .3s;
}
.hero-dot.active { background: #fff; transform: scale(1.3); }

/* Hero arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all .3s;
}
.hero-arrow:hover { background: var(--acq-900); border-color: var(--acq-900); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* Hero slides (for carousel overlay) */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.8s ease;
}
.hero-slide.active {
    opacity: 1;
    animation: heroZoom 9s ease-out forwards;
}

/* === HERO FEATURES (overlapping cards) === */
.hero-features {
    position: relative;
    z-index: 10;
    max-width: var(--container-max);
    width: var(--container-px);
    margin: -60px auto 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    padding-bottom: 20px;
}
.hero-feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 20px;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all .35s;
    border: 1px solid transparent;
}
.hero-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--acq-light);
}
.hero-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--acq-light);
    color: var(--acq-700);
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    font-size: 20px;
    transition: all .3s;
}
.hero-feature-card:hover .hero-feature-icon {
    background: var(--lime);
    color: var(--acq-900);
}
.hero-feature-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: -.01em;
}
.hero-feature-card p {
    font-size: 12.5px;
    color: var(--text-light);
    line-height: 1.55;
}
.hero-feature-card .stat-big {
    font-size: 36px;
    font-weight: 800;
    color: var(--acq-900);
    line-height: 1;
    margin-bottom: 4px;
}
.hero-feature-card .stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.hero-feature-card .stat-desc {
    font-size: 11.5px;
    color: var(--text-light);
    line-height: 1.5;
}

/* === TRUST BAR === */
.trust-bar {
    max-width: var(--container-max);
    width: var(--container-px);
    margin: 0 auto;
    padding: 24px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.trust-avatars {
    display: flex;
    align-items: center;
}
.trust-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: var(--acq-light);
    color: var(--acq-900);
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
    margin-left: -8px;
    position: relative;
}
.trust-avatar:first-child { margin-left: 0; }
.trust-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}
.trust-text span { font-weight: 400; color: var(--text); }
.trust-sep {
    width: 1px;
    height: 20px;
    background: var(--border-light);
    flex-shrink: 0;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text);
}
.trust-badge i {
    color: var(--acq-700);
    font-size: 14px;
}

/* === ROUTE CARD (image bg) === */
.route-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background-size: cover;
    background-position: center;
    transition: all .4s ease;
    border: none;
}
.route-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,113,64,.92) 0%, rgba(15,113,64,.5) 50%, rgba(15,113,64,.15) 100%);
    z-index: 1;
    transition: all .4s ease;
}
.route-card:hover::before {
    background: linear-gradient(to top, rgba(15,113,64,.95) 0%, rgba(15,113,64,.6) 50%, rgba(15,113,64,.25) 100%);
}
.route-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}
.route-card > * { position: relative; z-index: 2; }
.route-card .route-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,.15); backdrop-filter: blur(4px);
    color: var(--lime); display: grid; place-items: center; font-size: 20px;
    margin-bottom: 16px; transition: all .35s ease;
}
.route-card:hover .route-icon { background: var(--lime); color: var(--acq-900); }
.route-card h3 { color: var(--white); font-size: 20px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.02em; }
.route-card p { color: rgba(255,255,255,.8); font-size: 14px; line-height: 1.65; }

/* === FEATURES GRID === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* === PROCESS STEPS (with connecting lines) === */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}
.process-steps::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: var(--border-light);
    z-index: 0;
}
.process-step-item {
    text-align: center;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.process-step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--acq-900);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all .35s;
}
.process-step-item:hover .process-step-num {
    background: var(--lime);
    color: var(--acq-900);
    transform: scale(1.1);
}
.process-step-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.process-step-item p { font-size: 13.5px; color: var(--text); line-height: 1.6; }

/* === PROCESS (grid variant) === */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.process-step {
    position: relative;
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all .35s;
}
.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.process-num {
    font-size: 80px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--acq-700);
    line-height: 1;
    margin-bottom: 16px;
    opacity: .5;
}
.process-icon {
    width: 68px;
    height: 68px;
    margin: 18px auto 20px;
    border-radius: 50%;
    background: var(--acq-light);
    color: var(--acq-900);
    display: grid;
    place-items: center;
    font-size: 24px;
    transition: all .35s;
}
.process-step:hover .process-icon { background: var(--lime); color: var(--acq-900); }
.process-step h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; letter-spacing: -.02em; }
.process-step p { font-size: 14px; color: var(--text); line-height: 1.6; }
.process-list { display: grid; gap: 7px; text-align: left; }
.process-list li {
    font-size: 13.5px;
    color: var(--acq-900);
    display: flex;
    gap: 8px;
    align-items: center;
}
.process-list li i { font-size: 14px; flex-shrink: 0; }

/* === STATS === */
.stats { background: transparent; }
.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
    flex-wrap: nowrap;
}
.stat-item { text-align: center; }
.stat-value {
    font-weight: 800;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -.03em;
    color: var(--acq-900);
}
.stat-label {
    font-size: 14px;
    color: var(--text);
    margin-top: 8px;
}

/* === STATS BAR (dark strip) === */
.stats-bar {
    background: var(--acq-900);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}
.stats-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.stats-bar .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stats-bar .stat-item { padding: 16px; }
.stats-bar .stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: var(--lime);
    display: grid;
    place-items: center;
    font-size: 22px;
    margin: 0 auto 14px;
}
.stats-bar .stat-number {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -.03em;
}
.stats-bar .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    margin-top: 6px;
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--acq-900), var(--acq-800) 55%, var(--acq-700));
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.cta-section::before {
    content: "";
    position: absolute;
    top: -60%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 232, 74, .15), transparent 65%);
    pointer-events: none;
}
.cta-section > * { position: relative; z-index: 2; }

/* === CTA FULL WIDTH === */
.cta-full {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    text-align: center;
}
.cta-full-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.cta-full-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 113, 64, .92), rgba(10, 75, 42, .95));
}
.cta-full > * { position: relative; z-index: 2; }
.cta-full h2 { color: var(--white); margin-bottom: 16px; }
.cta-full p { color: rgba(255, 255, 255, .8); max-width: 560px; margin-inline: auto; margin-bottom: 32px; font-size: 16px; line-height: 1.7; }

/* === CTA BANNER === */
.cta-banner {
    background: linear-gradient(135deg, var(--acq-900), var(--acq-800) 55%, var(--acq-700));
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: "";
    position: absolute;
    top: -60%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 232, 74, .15), transparent 65%);
    pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 16px; line-height: 1.7; }
.cta-banner .cta-right { text-align: right; flex-shrink: 0; }

/* === NEWSLETTER === */
.newsletter {
    background: var(--acq-900);
    position: relative;
    overflow: hidden;
}
.newsletter::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(circle at 50% 30%, black, transparent 75%);
    mask-image: radial-gradient(circle at 50% 30%, black, transparent 75%);
    pointer-events: none;
}
.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* === FAQ === */
.faq-wrap { max-width: 820px; margin-inline: auto; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: box-shadow .3s;
}
.faq-item.open {
    box-shadow: var(--shadow-sm);
    border-color: rgba(197, 232, 74, .7);
}
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    transition: all .2s;
}
.faq-q:hover { color: var(--acq-900); }
.faq-q i {
    transition: transform .3s;
    color: var(--lime);
    font-size: 14px;
}
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
}

/* === CONTACT FORM === */
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text-dark);
    font: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--acq-900);
    box-shadow: 0 0 0 4px rgba(15, 113, 64, .08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { height: 44px; }

/* === TEAM === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(165px, 200px));
    justify-content: center;
    gap: 20px;
}
.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all .35s;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.team-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform .6s;
}
.team-card:hover img { transform: scale(1.06); }
.team-card-info { padding: 16px; text-align: center; }
.team-card-info h4 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.team-card-info p { font-size: 12px; color: var(--text-light); }

/* === TESTIMONIALS === */
.testimonials-section { overflow: hidden; }
.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform .5s ease;
}
.testimonial-card {
    min-width: calc(33.333% - 16px);
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--border);
    flex-shrink: 0;
    transition: all .35s;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.testimonial-stars {
    color: var(--lime);
    font-size: 14px;
    margin-bottom: 16px;
}
.testimonial-card blockquote {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--acq-light);
    color: var(--acq-900);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.testimonial-author-info h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.testimonial-author-info p {
    font-size: 12px;
    color: var(--text-light);
}

/* === PERSON CARD === */
.person-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 48px 40px;
}
.person-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--acq-900);
}

/* === LINK-MORE === */
.link-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--acq-700);
    font-weight: 600;
    font-size: 14.5px;
    text-decoration: none;
    transition: gap .3s ease;
}
.link-more:hover { gap: 14px; color: var(--acq-900); }
.link-more i { font-size: 12px; transition: transform .3s ease; }
.link-more:hover i { transform: translateX(4px); }

/* === SECTION TAG (center variant) === */
.sec-head--center .sec-tag { justify-content: center; }

/* === BACK TO TOP === */
.btn--back-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--acq-900);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-md);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.btn--back-top:hover {
    background: var(--lime);
    color: var(--acq-900);
    transform: translateY(-2px);
}

/* === REVEAL ON SCROLL === */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* === ANIMATIONS === */
@keyframes heroZoom {
    0% { transform: scale(1.08); }
    100% { transform: scale(1); }
}
@keyframes pulse-lime {
    0%, 100% { box-shadow: 0 0 0 0 rgba(197, 232, 74, .5); }
    50% { box-shadow: 0 0 0 14px rgba(197, 232, 74, 0); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === FOOTER === */
.footer {
    background: var(--red);
    color: rgba(255,255,255,.65);
    padding-top: 20px;
    border-top: 1px solid var(--border-dark);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 56px;
}
.footer h4 {
    color: var(--white);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 22px;
}
.footer a {
    color: rgba(255,255,255,.65);
    transition: all .3s;
    font-size: 14px;
}
.footer a:hover { color: var(--lime); }
.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255,255,255,.4);
}


/* === STANDARD INTERNAL PAGES === */
.acq-standard-shell { display:grid; grid-template-columns:minmax(0,1fr) 280px; gap:32px; align-items:start; background:var(--cream); padding:0 max(4%, calc((100vw - 1320px)/2)) 64px; }
.acq-standard-content { min-width:0; }
.acq-standard-content > .acq-section { padding:0; margin-top:40px; }
.acq-standard-content > .acq-section { background:transparent !important; }
.acq-page-sidebar { position:sticky !important; top:225px; z-index:1000; background:#fff; border-radius:18px; padding:22px; box-shadow:var(--shadow-sm); }
.acq-page-sidebar h2 { font-size:17px; font-weight:700; color:var(--text-dark); margin-bottom:14px; }
.acq-page-sidebar a { display:flex; align-items:center; gap:10px; padding:11px 10px; border-radius:9px; color:var(--text); font-size:13px; transition:all .2s; }
.acq-page-sidebar a:hover, .acq-page-sidebar a.active { color:var(--acq-900); background:var(--acq-light); }
.acq-page-sidebar a i { width:16px; color:var(--acq-900); }
@media (max-width:900px) { .acq-standard-shell { grid-template-columns:1fr; padding:40px 5%; } .acq-page-sidebar { position:static; order:-1; } }
/* === NAVIGATION === */

#main-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 200;
}
#main-header.header-inner {
    background: white;
    border-bottom: none;
}
.navbar {
    position: relative;
    z-index: 200;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: transparent;
    border-bottom: none;
    transition: all .3s ease;
}
.navbar--scrolled {
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    border-bottom-color: var(--border-light);
}
.nav-link {
    font-size: 13px;
    font-weight: 200;
    padding: 8px 14px;
    border-radius: 30px;
    color: #000;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.nav-link:hover {
    color: #000;
    background: rgba(255, 255, 255, .14);
}
.navbar--scrolled .nav-link {
    color: var(--text-dark);
}
.navbar--scrolled .nav-link:hover {
    color: var(--acq-900);
    background: rgba(15, 113, 64, .06);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
    z-index: 100;
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .12);
    border: 1px solid var(--border-light);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .3s ease;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown-menu a {
    display: block;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--text);
    border-radius: 8px;
    transition: all .2s;
}
.nav-dropdown-menu a:hover {
    background: var(--acq-light);
    color: var(--acq-900);
}

/* Mobile menu */
.nav-mobile-btn {
    display: none;
    background: none;
    border: none;
    color: #000;
    font-size: 22px;
    padding: 8px;
}
.navbar--scrolled .nav-mobile-btn {
    color: var(--text-dark);
}

/* === DOT PATTERN === */
.dot-pattern { position: relative; }
.dot-pattern::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15, 113, 64, .04) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
}

/* === UTILITIES === */
.text-lime { color: var(--lime); }
.text-white { color: var(--white); }
.bg-cream { background: var(--cream); }
.bg-dark { background: var(--acq-900); }
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.max-w-2xl { max-width: 672px; margin-inline: auto; }

/* ============================================
   ACQ-* ALIASES (bridge HTML ↔ CSS)
   ============================================ */

/* Page Hero */
.acq-page-hero { background: linear-gradient(135deg, var(--acq-900) 0%, var(--acq-800) 60%, var(--acq-700) 100%); padding: 60px 0 50px; text-align: center; position: relative; overflow: hidden; }
.acq-page-hero::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px); background-size: 28px 28px; -webkit-mask-image: radial-gradient(circle at 50% 0%, black, transparent 80%); mask-image: radial-gradient(circle at 50% 0%, black, transparent 80%); pointer-events: none; }
.acq-page-hero > * { position: relative; z-index: 2; }
.acq-page-hero h4 { font-size:clamp(24px,3vw,34px); text-align:left; color:var(--white); }
.acq-page-hero h4 em { color:var(--white); }
.acq-page-hero h3, .acq-page-hero h4 { color: var(--white); font-weight: 800; font-size: clamp(36px, 5vw, 56px); letter-spacing: -.04em; line-height: 1.1; margin-bottom: 12px; }
.acq-page-hero h3 em, .acq-page-hero h4 em { font-style: normal; color: var(--lime); }
.acq-page-hero p { color: rgba(255,255,255,.8); font-size: 16.5px; max-width: 560px; margin-inline: auto; line-height: 1.7; }

/* Breadcrumb */
.acq-breadcrumb { display: flex; justify-content: center; gap: 8px; margin-bottom: 16px; font-size: 13px; color: rgba(255,255,255,.6); flex-wrap: wrap; }
.acq-breadcrumb a { color: var(--lime); transition: color .2s; }
.acq-breadcrumb a:hover { color: var(--white); }

/* Container */
.acq-container { width: min(var(--container-max), var(--container-px)); margin-inline: auto; }

/* Section */
.acq-section { padding: var(--section-py) 0; }
.acq-section--cream { background: var(--cream); }
.acq-section--white { background: var(--white); }
.acq-section--dark { background: var(--acq-900); color: var(--cream); }
.acq-section--dot { position: relative; }
.acq-section--dot::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(15,113,64,.04) 1px, transparent 1px); background-size: 26px 26px; pointer-events: none; }

/* Section Header */
.acq-tag { display: inline-flex; align-items: center; gap: 10px; color: var(--acq-700); font-size: 14px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px; }
.acq-tag::before { content: ""; width: 34px; height: 2px; background: var(--lime); display: inline-block; }
.acq-tag--center { justify-content: center; }
.acq-tag--center::after { content: ""; width: 34px; height: 2px; background: var(--lime); display: inline-block; }

.acq-title { font-weight: 700; letter-spacing: -.03em; color: var(--text-dark); font-size: clamp(32px, 4vw, 46px); }
.acq-title strong { font-weight: 800; }
.acq-title em { font-style: normal; color: var(--acq-900); }
.acq-title--white { color: var(--white); }

.acq-desc { color: var(--text); font-size: 16.5px; margin-top: 16px; line-height: 1.7; }
.acq-desc--center { margin-inline: auto; text-align: center; max-width: 680px; }

/* Buttons */
.acq-btn { display: inline-flex; align-items: center; gap: 0; padding: 5px; border-radius: var(--radius-pill); background: var(--lime); font-weight: 600; font-size: 15px; border: none; transition: all .3s ease; position: relative; text-decoration: none; }
.acq-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(197, 232, 74, .4); }
.acq-btn__inner { display: inline-flex; align-items: center; gap: 10px; background: var(--acq-900); color: var(--white); padding: 13px 24px; border-radius: var(--radius-pill); transition: all .3s ease; }
.acq-btn:hover .acq-btn__inner { background: var(--white); color: var(--acq-900); }
.acq-btn__arrow { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: var(--acq-900); font-size: 16px; transition: all .3s ease; }
.acq-btn:hover .acq-btn__arrow { color: var(--acq-900); }
.acq-btn--dark { background: var(--acq-900); }
.acq-btn--dark .acq-btn__inner { background: var(--lime); color: var(--acq-900); }
.acq-btn--dark:hover .acq-btn__inner { background: var(--white); }
.acq-btn--outline { background: transparent; padding: 5px; }
.acq-btn--outline .acq-btn__inner { background: transparent; color: var(--text-dark); border: 1.5px solid var(--border-light); }
.acq-btn--outline:hover .acq-btn__inner { background: var(--lime); color: var(--acq-900); border-color: var(--lime); }
.acq-btn--white { background: var(--white); }
.acq-btn--white .acq-btn__inner { background: var(--acq-900); color: var(--white); }
.acq-btn--white:hover .acq-btn__inner { background: var(--lime); color: var(--acq-900); }

/* Cards */
.acq-card { background: var(--white); border-radius: var(--radius); padding: 34px 28px; border: 1px solid var(--border); transition: all .35s ease; position: relative; overflow: hidden; height: 100%; }
.acq-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.acq-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.acq-card:hover::before { transform: scaleX(1); }

/* CTA Banner */
.acq-cta-banner { background: linear-gradient(135deg, var(--acq-900), var(--acq-800) 55%, var(--acq-700)); border-radius: var(--radius-lg); padding: 48px 44px; display: flex; align-items: center; justify-content: space-between; gap: 32px; position: relative; overflow: hidden; }
.acq-cta-banner::before { content: ""; position: absolute; top: -60%; right: -20%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(197, 232, 74, .15), transparent 65%); pointer-events: none; }
.acq-cta-banner > * { position: relative; z-index: 2; }

/* Person */
.acq-person-img { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; border: 4px solid var(--acq-900); }

/* Form */
.acq-form label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.acq-form input, .acq-form textarea, .acq-form select { width: 100%; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: var(--white); color: var(--text-dark); font: inherit; font-size: 14px; outline: none; transition: border-color .25s ease, box-shadow .25s ease; }
.acq-form input:focus, .acq-form textarea:focus, .acq-form select:focus { border-color: var(--acq-900); box-shadow: 0 0 0 4px rgba(15,113,64,.08); }
.acq-form textarea { resize: vertical; min-height: 120px; }
.acq-form select { height: 44px; }

/* Reveal */
.acq-reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.acq-reveal.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .hero-features { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .process-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1080px) {
    .hero-layout { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero { min-height: auto; padding: 80px 0 60px; }
    .hero-gradient { background: linear-gradient(180deg, rgba(247,248,243,.97) 0%, rgba(247,248,243,.85) 100%); }
    .hero-features { grid-template-columns: repeat(3, 1fr); margin-top: 40px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    :root { --section-py: 68px; }
    .hero-features { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hero-feature-card { padding: 20px 16px; }
    .features-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; gap: 32px; }
    .process-steps::before { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .stats-grid { flex-wrap: wrap; gap: 24px; }
    .stats-bar .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: clamp(32px, 8vw, 48px); }
    .hero-ctas { flex-direction: column; align-items: flex-start; }
    .sec-head--center { text-align: left; }
    .sec-head--center .sec-tag::after { display: none; }
    .nav-mobile-btn { display: block; }
    .hero-arrow { display: none; }
    .testimonial-card { min-width: calc(100% - 16px); }
    .trust-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 640px) {
    .page-hero h3 { font-size: clamp(28px, 8vw, 38px); }
    .hero-features { grid-template-columns: 1fr; }
    .hero { padding: 60px 0 40px; }
}
@media (max-width: 768px) {
    .nav-links-desktop { display: none !important; }
}

.acq-page-hero h4 { font-size:clamp(24px,3vw,34px) !important; text-align:left; color:var(--white); }
.acq-page-hero h4 em { color:var(--white) !important; }

.acq-page-hero h4 { font-size:clamp(20px,2.4vw,28px) !important; }

.header-inner .navbar, .header-inner .navbar--scrolled { background:transparent !important; box-shadow:none !important; border-bottom-color:rgba(15,113,64,.12); }

/* Style commun inspiré de la section Activités */
#dynamic-sections > .acq-section { background:transparent !important; padding:0; margin-top:40px; }
#dynamic-sections > .acq-section:first-child { margin-top:0; }
#dynamic-sections .bg-gray-50 { background:transparent !important; }
#dynamic-sections .acq-container { width:min(var(--container-max), var(--container-px)); }
#dynamic-sections { padding-top:30px; }

.acq-page-hero h3, .acq-page-hero h4, .page-hero h3 { font-size:clamp(20px,2.4vw,28px) !important; text-align:left; color:var(--white) !important; margin-top:60px; }
.acq-page-hero h3 em, .acq-page-hero h4 em, .page-hero h3 em { color:var(--white) !important; }

.director-photo { object-position:center top; }


.contact-page .section--cream { background:transparent; padding:40px 0; }
.contact-page .dot-pattern::before { display:none; }
.contact-page .section--cream .container { max-width:1320px; }

.contact-page .cta-full h2, .contact-page .cta-full p { color:#000 !important; }



