/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 10 mai 2026, 03:12:35
    Author     : Mathias keita <openwebarts.com>
*/

/* ═══════════════════════════════════════════
    DESIGN TOKENS — identiques à bs-accueil
═══════════════════════════════════════════ */
:root {
    --c:          #22B3C1;   /* primary */
    --c-d:        #1a8f9b;   /* primary dark */
    --c-dd:       #116b75;   /* primary deeper */
    --c-p:        #eaf8fa;   /* primary pale */
    --c-m:        #b8edf2;   /* primary mid */

    /* domain accent colours */
    --etudes:     #519cff;
    --immo:       #ec8a56;
    --emplois:    #438f40;
    --voyages:    #162a4f;

    --ink:        #0b1a22;
    --ink-2:      #1c3040;
    --slate:      #546e7a;
    --mist:       #8fa8b2;
    --silver:     #eef3f5;
    --line:       #d6e4e8;
    --white:      #ffffff;

    --f:          'Inter', 'Roboto', sans-serif;
    --r:          12px;
    --r-lg:       20px;
    --sh:         0 2px 12px rgba(11,26,34,.07);
    --sh-m:       0 8px 32px rgba(11,26,34,.10);
    --sh-l:       0 20px 64px rgba(11,26,34,.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--f); color: var(--ink); background: var(--white); overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ════════════════════════════════════════════
    TOP BAR
════════════════════════════════════════════ */
.topbar { background: var(--c); padding: .38rem 0; font-size: .73rem; color: var(--white); letter-spacing: .01em; }
.tb-wrap { max-width: 1280px; margin: auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.tb-left { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.tb-left a { display: flex; align-items: center; gap: .35rem; color: inherit; transition: color .2s; }
.tb-left a:hover { color: var(--c); }
.tb-right { display: flex; gap: .8rem; align-items: center; }
.tb-lang { display: flex; gap: .25rem; }
.tb-lang a { font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.35); padding: .15rem .4rem; border-radius: 3px; transition: .2s; }
.tb-lang a.on, .tb-lang a:hover { color: #fff; background: rgba(34,179,193,.25); }
.tb-soc { display: flex; gap: .35rem; }
.tb-soc a { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--c-m); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.38); font-size: .62rem; transition: .2s; }
.tb-soc a:hover { background: var(--c); border-color: var(--white); color: #fff; }

/* ════════════════════════════════════════════
    NAVBAR
════════════════════════════════════════════ */
.nav { background: var(--white); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 300; box-shadow: var(--sh); }
.nav-wrap { max-width: 1280px; margin: auto; padding: 0 2rem; height: 66px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: .7rem; }
.nav-logo-mark { display: flex; align-items: center; justify-content: center; }
.nav-logo-mark svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.nav-logo-text strong { display: block; font-size: 1.05rem; font-weight: 700; color: var(--ink); letter-spacing: -.01em; line-height: 1.1; }
.nav-logo-text span { font-size: .62rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); }
.nav-links { display: flex; gap: .1rem; list-style: none; align-items: center; }
.nav-links a { display: block; padding: .45rem .88rem; font-size: .84rem; font-weight: 500; color: var(--slate); border-radius: 8px; transition: .2s; }
.nav-links a:hover { color: var(--c); background: var(--c-p); }
.nav-links a.active { color: var(--c); background: var(--c-p); font-weight: 600; }
.nav-links .nav-cta { background: var(--c) !important; color: #fff !important; margin-left: .35rem; box-shadow: 0 3px 10px rgba(34,179,193,.3); font-weight: 600; }
.nav-links .nav-cta:hover { background: var(--c-d) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; border-radius: 8px; transition: background .2s; z-index: 400; }
.hamburger:hover { background: var(--c-p); }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay + drawer */
.mob-overlay { display: none; position: fixed; inset: 0; background: rgba(11,26,34,.5); z-index: 340; backdrop-filter: blur(2px); }
.mob-overlay.on { display: block; }
.mob-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 88vw); background: var(--white); z-index: 360; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .34s cubic-bezier(.4,0,.2,1); box-shadow: -8px 0 40px rgba(11,26,34,.15); overflow-y: auto; }
.mob-drawer.on { transform: translateX(0); }
.mob-head { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--line); }
.mob-close { background: var(--silver); border: none; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; color: var(--slate); display: flex; align-items: center; justify-content: center; transition: .2s; }
.mob-close:hover { background: var(--c); color: #fff; }
.mob-links { list-style: none; padding: 1rem 0; flex: 1; }
.mob-links li a { display: flex; align-items: center; gap: .75rem; padding: .85rem 1.5rem; font-size: .95rem; font-weight: 500; color: var(--ink); transition: .2s; border-left: 3px solid transparent; }
.mob-links li a:hover, .mob-links li a.active { background: var(--c-p); color: var(--c); border-left-color: var(--c); }
.mob-links .mob-divider { height: 1px; background: var(--line); margin: .5rem 1.5rem; }
.mob-footer { padding: 1.2rem 1.5rem; border-top: 1px solid var(--line); }
.mob-cta { display: block; background: var(--c); color: #fff; text-align: center; padding: .85rem; border-radius: 10px; font-weight: 600; font-size: .92rem; margin-bottom: 1rem; transition: .2s; }
.mob-cta-btn { display: block; background: var(--c); color: #fff; text-align: center; padding: .85rem; border-radius: 10px; font-weight: 600; font-size: .92rem; margin-bottom: 1rem; transition: .2s; }
.mob-cta:hover { background: var(--c-d); }
.mob-cta-btn:hover { background: var(--c-d); }
.mob-contacts { display: flex; flex-direction: column; gap: .5rem; }
.mob-contacts a { font-size: .8rem; color: var(--slate); display: flex; align-items: center; gap: .5rem; }
.mob-contacts a:hover { color: var(--c); }

/* ═══════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════ */
.phero { background: linear-gradient(110deg, var(--ink) 0%, var(--ink-2) 100%); padding: 4.5rem 0 5.5rem; position: relative; overflow: hidden; }
.phero::before { content: ''; position: absolute; top: -60px; right: -60px; width: 380px; height: 380px; border-radius: 50%; background: rgba(34,179,193,.06); }
.phero::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 65px; background: var(--silver); clip-path: polygon(0 100%, 100% 15%, 100% 100%); z-index: 1; }
.phero-inner { position: relative; z-index: 2; max-width: 1280px; margin: auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
.phero-pill { display: inline-flex; align-items: center; gap: .5rem; background: rgba(34,179,193,.18); border: 1px solid rgba(34,179,193,.3); color: var(--c-m); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: .3rem .9rem; border-radius: 20px; margin-bottom: 1.1rem; backdrop-filter: blur(6px); }
.phero-pill span { width: 6px; height: 6px; border-radius: 50%; background: var(--c); display: block; }
.phero-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; line-height: 1.12; letter-spacing: -.025em; margin-bottom: .9rem; }
.phero-sub { font-size: .95rem; color: rgba(255,255,255,.65); max-width: 500px; line-height: 1.7; }
.phero-kpis { display: flex; flex-direction: column; gap: .7rem; flex-shrink: 0; }
.pkpi { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(10px); border-radius: 12px; padding: .85rem 1.4rem; min-width: 145px; text-align: right; }
.pkpi-n { font-size: 1.5rem; font-weight: 800; color: var(--c-m); letter-spacing: -.03em; line-height: 1; }
.pkpi-l { font-size: .7rem; color: rgba(255,255,255,.5); margin-top: .25rem; }

/* ═══════════════════════════════════════════
    CONTACT CHANNELS
═══════════════════════════════════════════ */
.channels-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: -2.5rem; position: relative; z-index: 10; }
.channel-card { background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--line); padding: 1.8rem 1.4rem; text-align: center; box-shadow: var(--sh-m); transition: transform .25s, box-shadow .25s, border-color .25s; position: relative; overflow: hidden; }
.channel-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--c); transform: scaleX(0); transition: transform .3s; transform-origin: left; }
.channel-card:hover { transform: translateY(-5px); box-shadow: var(--sh-l); border-color: var(--c); }
.channel-card:hover::before { transform: scaleX(1); }
.channel-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.4rem; border:1px solid var(--c) }
.ci-teal  { background: var(--c-p); }
.ci-green { background: #e8f5e9; }
.ci-blue  { background: #e3f2fd; }
.ci-gold  { background: #fdf8ee; }
.channel-label { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--mist); margin-bottom: .45rem; }
.channel-value { font-size: 1rem; font-weight: 700; color: var(--ink); letter-spacing: -.01em; margin-bottom: .55rem; line-height: 1.3; }
.channel-action { display: inline-flex; align-items: center; gap: .35rem; font-size: .78rem; font-weight: 600; color: var(--c); border: 1.5px solid var(--c-m); padding: .35rem .9rem; border-radius: 20px; transition: .2s; }
.channel-action:hover { background: var(--c); color: #fff; border-color: var(--c); }
.channel-action svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; }

/* ═══════════════════════════════════════════
    HELPERS
═══════════════════════════════════════════ */
.wrap { max-width: 1280px; margin: auto; padding: 0 2rem; }
.sec-label { display: inline-block; font-size: .67rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--c); background: var(--c-p); padding: .25rem .85rem; border-radius: 20px; margin-bottom: .85rem; }
.sec-title { font-size: clamp(1.6rem, 2.8vw, 2.1rem); font-weight: 800; color: var(--ink); line-height: 1.2; letter-spacing: -.02em; }
.sec-sub { font-size: .9rem; color: var(--slate); line-height: 1.7; margin-top: .6rem; }
.sec-rule { width: 36px; height: 3px; background: var(--c); border-radius: 2px; margin-top: .9rem; }

/* ═══════════════════════════════════════════
    PAGE BODY : FORM + MAP / SIDEBAR
═══════════════════════════════════════════ */
.page-grid { display: grid; grid-template-columns: 1fr 400px; gap: 3rem; align-items: start; padding: 4.5rem 0 5.5rem; }
.form-section { background: linear-gradient(110deg, var(--ink) 0%, var(--ink-2) 100%); border-radius: var(--r-lg); padding: 2.8rem; position: relative; overflow: hidden; }
.form-section::before { content: ''; position: absolute; top: -50px; right: -50px; width: 220px; height: 220px; border-radius: 50%; background: rgba(34,179,193,.07); }
.form-section::after  { content: ''; position: absolute; bottom: -60px; left: -40px; width: 180px; height: 180px; border-radius: 50%; background: rgba(34,179,193,.04); }
.form-inner { position: relative; z-index: 1; }
.form-hd { margin-bottom: 2rem; }
.flabel { display: inline-block; font-size: .67rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--c-m); background: rgba(34,179,193,.18); border: 1px solid rgba(34,179,193,.25); padding: .25rem .85rem; border-radius: 20px; margin-bottom: .8rem; }
.form-hd h2 { font-size: 1.55rem; font-weight: 800; color: #fff; line-height: 1.2; letter-spacing: -.02em; margin-bottom: .5rem; }
.form-hd p { font-size: .86rem; color: rgba(255,255,255,.6); line-height: 1.65; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; }
.fg { display: flex; flex-direction: column; gap: .38rem; margin-bottom: .9rem; }
.fg.full { grid-column: 1 / -1; }
.fg label { font-size: .75rem; font-weight: 600; letter-spacing: .03em; color: rgba(255,255,255,.6); }
.fg label span { color: var(--c); margin-left: .1rem; }
.fg input, .fg select, .fg textarea { background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.13); border-radius: 10px; padding: .75rem 1rem; font-size: .88rem; font-family: var(--f); color: #fff; outline: none; transition: .2s; appearance: none; }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.28); }
.fg select { color: rgba(255,255,255,.75); }
.fg select option { color: var(--ink); background: var(--white); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--c); background: rgba(34,179,193,.1); box-shadow: 0 0 0 3px rgba(34,179,193,.15); }
.fg textarea { resize: vertical; min-height: 120px; }
.antispam-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.3rem; }
.antispam-q { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: .7rem 1.1rem; font-size: .86rem; color: rgba(255,255,255,.75); display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.antispam-q strong { color: var(--c); font-size: 1rem; font-weight: 700; }
.antispam-inp { width: 90px; background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.13); border-radius: 10px; padding: .72rem 1rem; font-size: .88rem; font-family: var(--f); color: #fff; outline: none; transition: .2s; }
.antispam-inp:focus { border-color: var(--c); background: rgba(34,179,193,.1); box-shadow: 0 0 0 3px rgba(34,179,193,.15); }
.antispam-hint { font-size: .74rem; color: rgba(255,255,255,.38); }
.form-error { display: none; background: rgba(192,57,43,.18); border: 1px solid rgba(192,57,43,.3); border-radius: 9px; padding: .75rem 1rem; margin-bottom: 1rem; font-size: .82rem; color: #fcc; }
.form-ok { display: none; text-align: center; padding: 2.5rem 1rem; }
.form-ok-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-ok h3 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.form-ok p { font-size: .86rem; color: rgba(255,255,255,.6); line-height: 1.65; }
.btn-submit { width: 100%; background: var(--c); color: #fff; border: none; border-radius: 11px; padding: .95rem; font-size: .95rem; font-weight: 700; font-family: var(--f); cursor: pointer; transition: .2s; box-shadow: 0 6px 20px rgba(34,179,193,.35); display: flex; align-items: center; justify-content: center; gap: .5rem; }
.btn-submit:hover { background: var(--c-d); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(34,179,193,.42); }
.btn-submit svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
/* MAP */
.map-section { margin-top: 2.5rem; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh); }
.map-head { padding: 1rem 1.4rem; background: var(--white); border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: .55rem; }
.map-head h3 { font-size: .9rem; font-weight: 700; color: var(--ink); }
.map-head p { font-size: .78rem; color: var(--slate); margin-top: .1rem; }
.map-section iframe { width: 100%; height: 260px; border: none; display: block; }
/* ── SIDEBAR ── */
.sidebar { display: flex; flex-direction: column; gap: 1.4rem; }
/* Horaires */
.sc-hours { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--sh); }
.sc-hours h4 { font-size: .88rem; font-weight: 700; color: var(--ink); margin-bottom: 1.1rem; display: flex; align-items: center; gap: .5rem; }
.hours-grid { display: flex; flex-direction: column; gap: .45rem; }
.hour-row { display: flex; justify-content: space-between; align-items: center; font-size: .83rem; padding: .45rem 0; border-bottom: 1px solid var(--line); }
.hour-row:last-child { border: none; }
.hour-day { color: var(--slate); font-weight: 500; }
.hour-time { font-weight: 600; color: var(--ink); }
.hour-closed { color: var(--mist); font-weight: 500; }
.badge-open { display: inline-flex; align-items: center; gap: .3rem; background: #e8f5e9; color: #2e7d32; font-size: .68rem; font-weight: 700; padding: .18rem .6rem; border-radius: 20px; }
.badge-open::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4caf50; display: block; }
/* Réseaux sociaux */
.sc-social { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem; box-shadow: var(--sh); }
.sc-social h4 { font-size: .88rem; font-weight: 700; color: var(--ink); margin-bottom: 1rem; }
.social-links { display: flex; flex-direction: column; gap: .55rem; }
.social-link { display: flex; align-items: center; gap: .8rem; padding: .65rem .9rem; border-radius: 10px; border: 1px solid var(--line); font-size: .84rem; font-weight: 500; color: var(--ink-2); transition: .2s; }
.social-link:hover { border-color: var(--c); background: var(--c-p); color: var(--c); }
.social-link-icon { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; }
.social-link span { font-size: .74rem; color: var(--slate); margin-left: auto; }
/* Services rapides */
.sc-services { background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%); border-radius: var(--r-lg); padding: 1.6rem; position: relative; overflow: hidden; }
.sc-services::before { content: ''; position: absolute; top: -18px; right: -18px; width: 90px; height: 90px; border-radius: 50%; background: rgba(34,179,193,.12); }
.sc-services h4 { font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: 1rem; position: relative; z-index: 1; }
.srv-quick { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; position: relative; z-index: 1; }
.srv-q-link { display: flex; flex-direction: column; align-items: center; gap: .35rem; padding: .9rem .5rem; border-radius: 10px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); font-size: .74rem; font-weight: 600; color: rgba(255,255,255,.8); text-align: center; transition: .2s; }
.srv-q-link:hover { background: rgba(34,179,193,.2); border-color: rgba(34,179,193,.4); color: #fff; }
.srv-q-icon { font-size: 1.3rem; }
.sc-services .sc-msg { display: block; margin-top: 1rem; text-align: center; background: var(--c); color: #fff; font-size: .82rem; font-weight: 600; padding: .62rem; border-radius: 9px; transition: .2s; position: relative; z-index: 1; }
.sc-services .sc-msg:hover { background: var(--c-d); }

/* ════════════════════════════════════════════
    STATS BAND
════════════════════════════════════════════ */
.stats-band { background: linear-gradient(110deg, var(--ink) 0%, var(--ink-2) 100%); padding: 3.5rem 0; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 1.4rem 1rem; border-right: 1px solid rgba(255,255,255,.07); }
.stat:last-child { border: none; }
.stat-n { font-size: 2.4rem; font-weight: 800; color: var(--c); letter-spacing: -.03em; line-height: 1; }
.stat-l { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: .4rem; }

/* ════════════════════════════════════════════
    TESTIMONIALS
════════════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }
.testi { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 1.8rem; position: relative; transition: box-shadow .25s; }
.testi:hover { box-shadow: var(--sh-m); }
.tq { position: absolute; top: .8rem; right: 1.3rem; font-size: 4.5rem; line-height: 1; color: var(--c-p); font-weight: 800; pointer-events: none; }
.testi-stars { color: #f59e0b; font-size: .82rem; margin-bottom: .65rem; }
.testi-txt { font-size: .86rem; color: var(--slate); line-height: 1.72; margin-bottom: 1.2rem; }
.testi-foot { display: flex; align-items: center; gap: .7rem; }
.tav { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--c), var(--c-d)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .88rem; flex-shrink: 0; }
.tname { font-weight: 600; font-size: .86rem; color: var(--ink); }
.trole { font-size: .74rem; color: var(--slate); }

/* ════════════════════════════════════════════
    PARTNERS
════════════════════════════════════════════ */
.partners-lbl { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--mist); text-align: center; margin-bottom: 2rem; }
.partners-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.2rem 2.5rem; }
.p-logo { height: 44px; max-width: 110px; object-fit: contain; filter: grayscale(1); opacity: .5; transition: .25s; }
.p-logo:hover { filter: none; opacity: 1; transform: scale(1.06); }

/* ════════════════════════════════════════════
    CTA BAND
════════════════════════════════════════════ */
.cta-band { background: linear-gradient(108deg, var(--ink) 0%, var(--ink-2) 100%); padding: 4.5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -80px; right: -80px; width: 360px; height: 360px; border-radius: 50%; background: rgba(255,255,255,.05); }
.cta-band::after  { content: ''; position: absolute; bottom: -80px; left: -40px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,.04); }
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 800; color: #fff; margin-bottom: .8rem; letter-spacing: -.02em; }
.cta-inner p { font-size: .92rem; color: rgba(255,255,255,.78); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.68; }
.cta-btns { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--c-dd); font-weight: 700; padding: .82rem 1.9rem; border-radius: 9px; font-size: .9rem; transition: .2s; box-shadow: 0 4px 16px rgba(0,0,0,.1); display: inline-flex; align-items: center; gap: .5rem; }
.btn-white:hover { background: var(--c); color: #fff; }
.btn-outline-w { border: 2px solid rgba(255,255,255,.45); color: #fff; font-weight: 600; padding: .82rem 1.9rem; border-radius: 9px; font-size: .9rem; transition: .2s; display: inline-flex; align-items: center; gap: .5rem; }
.btn-outline-w:hover { background: var(--c); border-color: rgba(255,255,255,.7); }

/* ════════════════════════════════════════════
    FOOTER
════════════════════════════════════════════ */
footer { background: var(--c); color: rgba(255,255,255,.6); padding: 4.5rem 0 0; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; }
.foot-about { font-size: .83rem; line-height: 1.75; color: var(--white); margin: .9rem 0 1.2rem; }
.foot-contacts { display: flex; flex-direction: column; gap: .5rem; }
.foot-contacts a { font-size: .8rem; color: var(--white); display: flex; align-items: center; gap: .4rem; transition: .2s; }
.foot-contacts a:hover { color: var(--c-m); }
.foot-soc { display: flex; gap: .45rem; margin-top: 1.1rem; }
.foot-soc a { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--c-m); color: rgba(255,255,255,.4); font-size: .7rem; display: flex; align-items: center; justify-content: center; transition: .2s; }
.foot-soc a:hover { background: var(--c); border-color: var(--white); color: #fff; }
.foot-col h4 { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.88); margin-bottom: 1.1rem; padding-bottom: .55rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.foot-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.foot-links a { color: var(--white); font-size: .82rem; display: flex; align-items: center; gap: .4rem; transition: .2s; }
.foot-links a::before { content: '›'; color: var(--c); font-size: 1rem; }
.foot-links a:hover { color: var(--c-m); padding-left: .25rem; }
.nl p { font-size: .81rem; color: var(--white); line-height: 1.65; margin-bottom: .75rem; }
.nl-row { display: flex; gap: .5rem; }
.nl-row input { flex: 1; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.09); border-radius: 8px; padding: .65rem .9rem; color: #fff; font-size: .82rem; font-family: var(--f); outline: none; transition: .2s; min-width: 0; }
.nl-row input::placeholder { color: rgba(255,255,255,.22); }
.nl-row input:focus { border-color: var(--c); }
.nl-row button { background: var(--white); color: var(--c); border: none; border-radius: 8px; padding: .65rem 1.1rem; font-size: .82rem; font-weight: 600; cursor: pointer; font-family: var(--f); transition: .2s; white-space: nowrap; }
.nl-row button:hover { background: var(--c-d); color: var(--white);border:1px solid var(--c-m)}
.foot-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 1.2rem 0; display: flex; justify-content: space-between; font-size: .73rem; color: var(--white); flex-wrap: wrap; gap: .5rem; align-items: center; }
.foot-bottom a { color: var(--white); }
.foot-bottom a:hover { color: var(--c-m); }
.foot-bl { display: flex; gap: 1.4rem; }

/* scroll top */
#toTop { position: fixed; bottom: 1.8rem; right: 1.8rem; width: 40px; height: 40px; background: var(--c); color: #fff; border: none; border-radius: 50%; cursor: pointer; z-index: 999; box-shadow: 0 4px 14px rgba(34,179,193,.4); display: none; align-items: center; justify-content: center; font-size: .9rem; transition: .2s; }
#toTop:hover { background: var(--c-d); transform: translateY(-2px); }
#toTop.on { display: flex; }

/* Floating Social Bar */
.icon-bar {
    position: fixed;
    top: 55%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 50;
}

/* Floating Social Bar */
.icon-bar a {
    display: block;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
}

.icon-bar a:hover {
    background-color: #000;
}

.facebook {
    background: #3B5998;
    color: white;
}

.twitter {
    background: #55ACEE;
    color: white;
}

.google {
  background: #dd4b39;
  color: white;
}

.instagram {
  background: #9E3CA3;
  color: white;
}

.linkedin {
  background: #007bb5;
  color: white;
}

.youtube {
  background: #bb0000;
  color: white;
}

.whatsapp {
  background: green;
  color: white;
}

.wa-float { position: fixed; bottom: 1.8rem; left: 1.8rem; width: 48px; height: 48px; background: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 999; box-shadow: 0 4px 16px rgba(37,211,102,.4); transition: .2s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 24px; height: 24px; fill: #fff; }

 /* ── RESPONSIVE ── */
 @media (max-width: 1024px) {
   .nav-links { display: none; }
   .hamburger { display: flex; }
   .channels-grid { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
   .page-grid { grid-template-columns: 1fr; gap: 2.5rem; }
   .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
   .sc-social, .sc-faq { grid-column: 1 / -1; }
   .foot-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
   .phero-inner { grid-template-columns: 1fr; }
   .phero-kpis { flex-direction: row; flex-wrap: wrap; gap: .6rem; }
   .pkpi { min-width: 0; flex: 1; text-align: center; }
   .tb-left a:last-child { display: none; }
 }
 @media (max-width: 768px) {
   .channels-grid { grid-template-columns: 1fr 1fr; }
   .sidebar { grid-template-columns: 1fr; }
   .fgrid { grid-template-columns: 1fr; }
   .srv-quick { grid-template-columns: repeat(4, 1fr); }
   .antispam-row { flex-direction: column; align-items: flex-start; }
   .cta-btns { flex-direction: column; align-items: center; }
   .btn-white, .btn-outline-w { width: 100%; max-width: 280px; text-align: center; justify-content: center; }
   .foot-grid { grid-template-columns: 1fr; gap: 1.8rem; }
   .nl-row { flex-direction: column; }
   .foot-bottom { flex-direction: column; text-align: center; }
   .foot-bl { justify-content: center; }
   .tb-soc { display: none; }
 }
 @media (max-width: 480px) {
   .wrap { padding: 0 1.2rem; }
   .tb-wrap, .nav-wrap { padding: 0 1.2rem; }
   .channels-grid { grid-template-columns: 1fr; }
   .srv-quick { grid-template-columns: repeat(2, 1fr); }
   .phero-title { font-size: 1.8rem; }
 }