/* ==========================================================================
   Orbis Web France — stylesheet
   Modern SaaS / MSP style. Poppins, blue/orange accents.
   ========================================================================== */

:root {
    --blue: #1786E8;
    --blue-dark: #1268b8;
    --orange: #F26A1B;
    --orange-hover: #d95a0f;
    --green: #2FBF5B;
    --dark: #0D1117;
    --text: #374151;
    --muted: #6B7280;
    --border: #E5E7EB;
    --bg: #FFFFFF;
    --bg-soft: #F9FAFB;
    --bg-blue-soft: #EFF6FF;
    --bg-orange-soft: #FFF4EC;

    --radius-xl: 0.75rem;   /* buttons */
    --radius-2xl: 1rem;     /* cards */
    --radius-3xl: 1.5rem;

    --shadow-sm: 0 1px 2px rgba(13, 17, 23, 0.05);
    --shadow: 0 4px 16px rgba(13, 17, 23, 0.06);
    --shadow-lg: 0 18px 48px rgba(13, 17, 23, 0.12);
    --shadow-blue: 0 14px 36px rgba(23, 134, 232, 0.22);
    --shadow-orange: 0 12px 30px rgba(242, 106, 27, 0.28);

    --container: 1180px;
    --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--blue-dark); }
h1, h2, h3, h4 { color: var(--dark); line-height: 1.2; font-weight: 700; letter-spacing: -0.02em; }
ul { list-style: none; padding: 0; }
.icon { width: 24px; height: 24px; flex: none; }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 1000;
    background: var(--dark); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5.5rem 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--dark); color: #cbd5e1; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }

.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.eyebrow {
    display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .08em;
    text-transform: uppercase; color: var(--blue); background: var(--bg-blue-soft);
    padding: .4rem .9rem; border-radius: 999px; margin-bottom: 1rem;
}
.eyebrow.orange { color: var(--orange); background: var(--bg-orange-soft); }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.2rem; }
.lead { font-size: 1.125rem; color: var(--muted); }
.section-head .lead { margin-top: .75rem; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font-weight: 600; font-size: .98rem; font-family: inherit; cursor: pointer;
    padding: .85rem 1.5rem; border-radius: var(--radius-xl); border: 2px solid transparent;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    text-align: center; line-height: 1.1;
}
.btn:active { transform: translateY(1px); }
.btn .icon { width: 18px; height: 18px; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-orange); }
.btn-primary:hover { background: var(--orange-hover); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--dark); }
.btn-light:hover { background: #f1f5f9; color: var(--dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--dark); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-sm { padding: .55rem 1rem; font-size: .875rem; }
.btn-lg { padding: 1rem 1.9rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
    backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--border);
    transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--dark); }
.brand:hover { color: var(--dark); }
.brand-logo { height: 46px; width: auto; display: block; }
.brand-footer .brand-logo { height: 52px; }

.main-nav { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-link {
    display: inline-flex; align-items: center; gap: .25rem; color: var(--text);
    font-weight: 500; padding: .55rem .85rem; border-radius: 10px; font-size: .95rem;
}
.nav-link:hover, .nav-link.active { color: var(--blue); background: var(--bg-blue-soft); }
.caret { width: 14px; height: 14px; transform: rotate(90deg); opacity: .6; }

.has-dropdown { position: relative; }
.dropdown {
    position: absolute; top: calc(100% + 8px); left: 0; min-width: 270px; background: #fff;
    border: 1px solid var(--border); border-radius: var(--radius-2xl); box-shadow: var(--shadow-lg);
    padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all .18s ease; z-index: 50;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a {
    display: block; padding: .6rem .85rem; border-radius: 10px; color: var(--text); font-size: .92rem; font-weight: 500;
}
.dropdown li a:hover { background: var(--bg-blue-soft); color: var(--blue); }

.nav-cta { white-space: nowrap; }
.nav-cta-mobile { display: none; }

/* Country / region switcher */
.country-switch { position: relative; flex: none; }
.country-toggle {
    display: inline-flex; align-items: center; gap: .4rem; cursor: pointer;
    background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: .38rem .55rem;
    transition: border-color .15s ease, background .15s ease;
}
.country-toggle:hover { background: var(--bg-blue-soft); border-color: var(--blue); }
.country-toggle .flag { width: 26px; height: 18px; border-radius: 3px; object-fit: cover; display: block; box-shadow: 0 0 0 1px rgba(0,0,0,.06); }
.country-toggle .caret { width: 14px; height: 14px; transform: rotate(90deg); opacity: .55; transition: transform .18s ease; }
.country-toggle[aria-expanded="true"] .caret { transform: rotate(-90deg); }

.country-menu {
    position: absolute; top: calc(100% + 8px); right: 0; min-width: 290px; background: #fff;
    border: 1px solid var(--border); border-radius: var(--radius-2xl); box-shadow: var(--shadow-lg);
    padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all .18s ease; z-index: 60;
}
.country-switch.open .country-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.country-item {
    display: flex; align-items: center; gap: .8rem; padding: .6rem .7rem; border-radius: 12px;
    color: var(--text); text-decoration: none;
}
a.country-item:hover { background: var(--bg-blue-soft); }
.country-item .flag { width: 32px; height: 22px; border-radius: 4px; object-fit: cover; flex: none; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.country-name { font-weight: 700; font-size: .95rem; color: var(--dark); line-height: 1.15; }
.country-url { margin-left: auto; font-size: .85rem; color: var(--muted); white-space: nowrap; }
.country-here { margin-left: auto; font-size: .82rem; font-weight: 700; color: var(--orange); white-space: nowrap; }
.country-item.is-current { background: rgba(242, 106, 27, .08); }

/* Mobile-only "Our Group Sites" card grid (inside slide-out menu) */
.nav-group-sites { display: none; }
.nav-group-title {
    display: block; font-size: .75rem; font-weight: 800; letter-spacing: .08em;
    text-transform: uppercase; color: var(--muted); margin: .35rem 0 .85rem;
}
.group-sites-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; }
.group-site {
    display: flex; flex-direction: column; align-items: center; gap: .55rem; text-align: center;
    padding: .85rem .4rem; border: 1px solid var(--border); border-radius: 14px;
    background: #fff; color: var(--dark); text-decoration: none;
}
a.group-site:hover { border-color: var(--blue); background: var(--bg-blue-soft); }
.group-site .flag {
    width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex: none;
    box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}
.group-site-name { font-weight: 700; font-size: .9rem; line-height: 1.1; }
.group-site.is-current { border-color: var(--orange); background: rgba(242, 106, 27, .08); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px; background: none; border: none;
    cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative; padding: 5rem 0 5.5rem; overflow: hidden;
    background:
        radial-gradient(900px 500px at 85% -10%, rgba(23,134,232,.14), transparent 60%),
        radial-gradient(700px 500px at -5% 110%, rgba(242,106,27,.10), transparent 55%),
        var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.5rem; align-items: center; }
.hero h1 { margin-bottom: 1.25rem; }
.hero .lead { font-size: 1.18rem; margin-bottom: 2rem; max-width: 560px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2.25rem; }
.pill {
    display: inline-flex; align-items: center; gap: .45rem; font-size: .85rem; font-weight: 500;
    color: var(--text); background: #fff; border: 1px solid var(--border); padding: .5rem .85rem;
    border-radius: 999px; box-shadow: var(--shadow-sm);
}
.pill .icon { width: 16px; height: 16px; color: var(--green); }

/* hero card visual */
.hero-visual { position: relative; }
.hero-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-lg); padding: 1.75rem;
}
.hero-card-top { display: flex; align-items: center; gap: .75rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.hero-card-top .dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.r { background: #ff5f57; } .dot.y { background: #febc2e; } .dot.g { background: #28c840; }
.hero-card-title { margin-left: auto; font-size: .82rem; color: var(--muted); }
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.25rem; }
.hero-stat { background: var(--bg-soft); border-radius: var(--radius-2xl); padding: 1.1rem; border: 1px solid var(--border); }
.hero-stat .num { font-size: 1.6rem; font-weight: 800; color: var(--blue); }
.hero-stat.orange .num { color: var(--orange); }
.hero-stat .lbl { font-size: .82rem; color: var(--muted); }
.hero-float {
    position: absolute; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg); padding: .75rem 1rem; display: flex; align-items: center; gap: .6rem; font-weight: 600; font-size: .9rem;
}
.hero-float .icon { width: 20px; height: 20px; }
.hero-float.one { top: -18px; right: -10px; color: var(--green); }
.hero-float.two { bottom: -20px; left: -18px; color: var(--blue); }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--dark); color: #94a3b8; padding: 1.1rem 0; }
.trust-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 2.2rem; text-align: center; }
.trust-inner span { font-weight: 500; font-size: .95rem; display: inline-flex; align-items: center; gap: .5rem; }
.trust-inner .icon { width: 18px; height: 18px; color: var(--green); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-2xl);
    padding: 1.75rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #d4e6fb; }
.card-icon {
    width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
    background: var(--bg-blue-soft); color: var(--blue); margin-bottom: 1.1rem;
}
.card-icon.orange { background: var(--bg-orange-soft); color: var(--orange); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .96rem; }
.card-link { display: inline-flex; align-items: center; gap: .35rem; margin-top: 1rem; font-weight: 600; font-size: .9rem; }
.card-link .icon { width: 16px; height: 16px; transition: transform .2s ease; }
.card:hover .card-link .icon { transform: translateX(4px); }

/* feature list */
.feature-list { display: grid; gap: .9rem; }
.feature-list li { display: flex; gap: .75rem; align-items: flex-start; }
.feature-list .tick {
    width: 26px; height: 26px; border-radius: 50%; background: rgba(47,191,91,.12); color: var(--green);
    display: grid; place-items: center; flex: none; margin-top: 1px;
}
.feature-list .tick .icon { width: 16px; height: 16px; }
.feature-list strong { color: var(--dark); display: block; }
.feature-list span.ft-desc { color: var(--muted); font-size: .92rem; }

/* split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media {
    background: linear-gradient(150deg, var(--bg-blue-soft), #fff);
    border: 1px solid var(--border); border-radius: var(--radius-3xl); padding: 2rem; box-shadow: var(--shadow);
}

/* tag chips */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip {
    display: inline-flex; align-items: center; gap: .45rem; background: #fff; border: 1px solid var(--border);
    border-radius: 999px; padding: .55rem 1rem; font-weight: 500; font-size: .92rem; box-shadow: var(--shadow-sm);
}
.chip .icon { width: 16px; height: 16px; color: var(--blue); }

/* ---------- CTA banner ---------- */
.cta-banner {
    background: linear-gradient(135deg, var(--blue), #0f6fcf);
    border-radius: var(--radius-3xl); padding: 3.5rem; text-align: center; color: #fff;
    position: relative; overflow: hidden; box-shadow: var(--shadow-blue);
}
.cta-banner::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(500px 300px at 90% 10%, rgba(255,255,255,.18), transparent 60%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.9); max-width: 600px; margin: 0 auto 2rem; font-size: 1.1rem; }
.cta-banner .btn-row { justify-content: center; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
    padding: 4rem 0; text-align: center;
    background:
        radial-gradient(700px 360px at 80% -20%, rgba(23,134,232,.12), transparent 60%),
        var(--bg-soft);
    border-bottom: 1px solid var(--border);
}
.page-hero .lead { max-width: 680px; margin: 1rem auto 0; }
.breadcrumb { display: flex; justify-content: center; gap: .5rem; font-size: .85rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--blue); }

/* ---------- Pricing ---------- */
.price-card { display: flex; flex-direction: column; position: relative; }
.price-card.featured { border-color: var(--blue); box-shadow: var(--shadow-blue); transform: translateY(-6px); }
.price-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--orange); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .05em;
    text-transform: uppercase; padding: .35rem .85rem; border-radius: 999px;
}
.price-card .price-name { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
.price-card .price { font-size: 1.9rem; font-weight: 800; color: var(--blue); margin: .35rem 0 .25rem; }
.price-card .price-desc { color: var(--muted); font-size: .92rem; min-height: 2.6em; }
.price-card .feature-list { margin: 1.25rem 0 1.5rem; }
.price-card .btn { margin-top: auto; }

.price-note {
    background: var(--bg-orange-soft); border: 1px dashed #f6c39c; border-radius: var(--radius-2xl);
    padding: 1.25rem 1.5rem; text-align: center; color: #92400e; font-weight: 500; margin-top: 2.5rem;
}

/* ---------- Stats strip ---------- */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat .stat-num { font-size: 2.4rem; font-weight: 800; color: var(--blue); }
.stat .stat-lbl { color: var(--muted); font-weight: 500; }

/* ---------- Blog ---------- */
.post-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.post-thumb { height: 170px; position: relative; display: grid; place-items: center; }
.post-thumb .icon { width: 54px; height: 54px; color: #fff; opacity: .92; }
.post-cat {
    position: absolute; top: 1rem; left: 1rem; background: rgba(255,255,255,.92); color: var(--blue);
    font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: .3rem .7rem; border-radius: 999px;
}
.post-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-date { font-size: .82rem; color: var(--muted); margin-bottom: .5rem; }
.post-card h3 { margin-bottom: .6rem; font-size: 1.12rem; }
.post-card p { color: var(--muted); font-size: .94rem; flex: 1; }
.post-card .card-link { margin-top: 1rem; }

/* article */
.article { max-width: 760px; margin: 0 auto; }
.article p { margin-bottom: 1.25rem; color: var(--text); }
.article h2 { margin: 2.25rem 0 1rem; }
.article h3 { margin: 1.75rem 0 .75rem; }
.article ul.bullets { margin: 0 0 1.5rem; display: grid; gap: .65rem; }
.article ul.bullets li { display: flex; gap: .6rem; }
.article ul.bullets .icon { width: 20px; height: 20px; color: var(--green); flex: none; margin-top: 3px; }
.article-meta { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }
.article-cta { margin-top: 2.5rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: start; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; color: var(--dark); }
.required { color: var(--orange); }
input, select, textarea {
    width: 100%; font-family: inherit; font-size: .98rem; color: var(--text);
    padding: .8rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-xl);
    background: #fff; transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, select:focus, textarea:focus {
    outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(23,134,232,.15);
}
textarea { resize: vertical; min-height: 140px; }
.field-error { color: #dc2626; font-size: .82rem; margin-top: .35rem; display: none; }
.form-group.invalid input, .form-group.invalid textarea, .form-group.invalid select { border-color: #dc2626; }
.form-group.invalid .field-error { display: block; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 1rem; }
.form-alert { padding: 1rem 1.25rem; border-radius: var(--radius-xl); margin-bottom: 1.5rem; font-weight: 500; }
.form-alert.success { background: rgba(47,191,91,.12); color: #166534; border: 1px solid rgba(47,191,91,.3); }
.form-alert.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.contact-aside .card { margin-bottom: 1.5rem; }
.contact-line { display: flex; gap: .85rem; align-items: flex-start; margin-bottom: 1rem; }
.contact-line:last-child { margin-bottom: 0; }
.contact-line .ci {
    width: 42px; height: 42px; border-radius: 12px; background: var(--bg-blue-soft); color: var(--blue);
    display: grid; place-items: center; flex: none;
}
.contact-line .ci .icon { width: 20px; height: 20px; }
.contact-line .ci-whatsapp { background: rgba(37, 211, 102, .12); color: #25D366; }
.contact-line .cl-label { font-size: .8rem; color: var(--muted); }
.contact-line .cl-value { font-weight: 600; color: var(--dark); }

/* ---------- Click-to-reveal contact ---------- */
.reveal-contact {
    display: inline-flex; align-items: center; gap: .4rem;
    background: none; border: 0; padding: 0; margin: 0;
    font: inherit; color: inherit; cursor: pointer;
    border-bottom: 1px dashed currentColor; line-height: 1.3;
}
.reveal-contact::before {
    content: ""; width: 14px; height: 14px; flex: none;
    background: currentColor;
    -webkit-mask: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
    mask: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
}
.reveal-contact:hover { opacity: .8; }
.reveal-contact:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 2px; }
.contact-line .cl-value.reveal-contact { font-weight: 600; color: var(--dark); }
.footer-contact .reveal-contact { color: #cbd5e1; }
.footer-contact .reveal-contact:hover { color: #fff; opacity: 1; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #94a3b8; padding-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-text { font-size: .92rem; line-height: 1.7; margin-top: 1rem; }
.footer-areas { margin-top: 1.25rem; font-size: .85rem; }
.footer-areas strong { color: #e2e8f0; }
.footer-heading { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; }
.footer-links li, .footer-contact li { margin-bottom: .65rem; }
.footer-links a { color: #94a3b8; font-size: .92rem; }
.footer-links a:hover { color: var(--blue); }
.footer-contact li { display: flex; align-items: center; gap: .6rem; font-size: .92rem; }
.footer-contact a { color: #cbd5e1; }
.footer-contact a:hover { color: #fff; }
.fc-icon { width: 18px; height: 18px; color: var(--orange); flex: none; }
.fc-icon-whatsapp { color: #25D366; }
.footer-cta { margin-top: 1.25rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: .85rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: #94a3b8; }
.footer-legal a:hover { color: #fff; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
    position: fixed; bottom: 1.25rem; left: 1.25rem; right: 1.25rem; max-width: 640px; margin: 0 auto;
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-2xl); box-shadow: var(--shadow-lg);
    padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1.25rem; z-index: 200; flex-wrap: wrap;
}
.cookie-banner[hidden] { display: none; }
.cookie-text { font-size: .9rem; color: var(--text); flex: 1; min-width: 220px; }
.cookie-actions { display: flex; gap: .65rem; }

/* ---------- Back to top ---------- */
.back-to-top {
    position: fixed; bottom: 1.5rem; right: 1.5rem; width: 46px; height: 46px; border-radius: 50%;
    background: var(--blue); color: #fff; border: none; cursor: pointer; display: grid; place-items: center;
    box-shadow: var(--shadow-blue); opacity: 0; visibility: hidden; transform: translateY(12px); transition: .25s; z-index: 90;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top .icon { width: 20px; height: 20px; transform: rotate(-90deg); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; }
.maxw { max-width: 720px; }
.muted { color: var(--muted); }

/* ---------- Photos / media ---------- */
.media-photo {
    width: 100%; border-radius: var(--radius-2xl); box-shadow: var(--shadow);
    object-fit: cover; display: block;
}
.split-media .media-photo { aspect-ratio: 4 / 3; }

.hero-photo { position: relative; }
.hero-photo img {
    width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
    border-radius: var(--radius-3xl); box-shadow: var(--shadow-lg);
}

.page-hero-media { max-width: 920px; margin: 2.5rem auto 0; }
.page-hero-media img {
    width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
    border-radius: var(--radius-3xl); box-shadow: var(--shadow-lg);
}

/* service cards with photo header */
.service-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.service-card .card-photo { overflow: hidden; }
.service-card .card-photo img {
    width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block;
    transition: transform .4s ease;
}
.service-card:hover .card-photo img { transform: scale(1.06); }
.service-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.service-card .card-icon {
    margin: -3.1rem 0 1rem; position: relative; z-index: 1;
    background: #fff; box-shadow: var(--shadow);
}
.service-card .card-link { margin-top: auto; padding-top: 1rem; }

/* blog post thumbnails with photo */
.post-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.post-thumb::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(13,17,23,0) 45%, rgba(13,17,23,.30));
}
.post-card .post-cat { z-index: 2; }

/* article feature image */
.article-hero { max-width: 820px; margin: -1rem auto 0; }
.article-hero img {
    width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
    border-radius: var(--radius-3xl); box-shadow: var(--shadow-lg);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
    .split.reverse .split-media { order: 0; }
    .hero-visual { max-width: 480px; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 860px) {
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed; inset: var(--header-h) 0 auto 0; background: #fff; flex-direction: column;
        align-items: stretch; gap: 0; padding: 1rem 1.5rem 1.5rem; border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg); transform: translateY(-120%); transition: transform .3s ease; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    }
    .nav-menu.open { transform: translateY(0); }
    .nav-link { padding: .85rem .5rem; font-size: 1.02rem; border-bottom: 1px solid var(--border); border-radius: 0; }
    .nav-item:last-child .nav-link { border-bottom: none; }
    .dropdown {
        position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none;
        padding: 0 0 .5rem 1rem; min-width: 0; display: none;
    }
    .has-dropdown.open .dropdown { display: block; }
    .caret { transform: rotate(90deg); margin-left: auto; }
    .has-dropdown.open .caret { transform: rotate(-90deg); }
    .nav-cta-mobile { display: block; margin-top: 1rem; }
    .nav-cta-mobile .btn { width: 100%; }
    .country-switch { display: none; }
    .nav-group-sites { display: block; padding: 1.1rem 0 .25rem; border-top: 1px solid var(--border); margin-top: .5rem; }
}
@media (max-width: 620px) {
    .section { padding: 3.5rem 0; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cta-banner { padding: 2.25rem 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .hero-float { display: none; }
    .price-card.featured { transform: none; }
}
