/* ================================================
   KAURYX GROUP – Premium Corporate Stylesheet v2
   ================================================ */

/* ─── CSS VARIABLES ──────────────────────────── */
:root {
    --primary:        #07111f;
    --primary-mid:    #0d1e35;
    --primary-light:  #122540;
    --accent:         #00c4ff;
    --accent-2:       #0066ff;
    --accent-glow:    rgba(0, 196, 255, 0.18);
    --gold:           #c9a227;
    --gold-light:     #e8c147;
    --gold-glow:      rgba(201, 162, 39, 0.22);
    --white:          #ffffff;
    --off-white:      #f5f8fc;
    --light-gray:     #e4ecf5;
    --text-main:      #1a2a44;
    --text-light:     #5a6e8c;
    --font-h:         'Montserrat', sans-serif;
    --font-b:         'Inter', sans-serif;
    --r-sm:  8px;
    --r-md:  16px;
    --r-lg:  24px;
    --r-xl:  32px;
    --r-2xl: 48px;
    --shadow-sm:  0 2px 10px rgba(7,17,31,.06);
    --shadow-md:  0 8px 28px rgba(7,17,31,.10);
    --shadow-lg:  0 20px 60px rgba(7,17,31,.16);
    --t: .3s ease;
    --t-slow: .65s cubic-bezier(.4,0,.2,1);
}

/* ─── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-b); color: var(--text-main); background: var(--white); overflow-x: hidden; line-height: 1.65; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; }

/* ─── UTILITIES ──────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-gradient-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,196,255,.08);
    border: 1px solid rgba(0,196,255,.2);
    color: var(--accent); padding: 6px 18px; border-radius: 100px;
    font-size: 11.5px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; margin-bottom: 18px;
}
.section-tag.light-tag { background: rgba(0,196,255,.1); border-color: rgba(0,196,255,.25); }

.section-title {
    font-family: var(--font-h); font-size: clamp(28px, 4vw, 46px);
    font-weight: 900; line-height: 1.1; color: var(--primary); margin-bottom: 18px;
}
.section-title.light { color: var(--white); }
.section-desc { font-size: 16.5px; color: var(--text-light); max-width: 620px; margin: 0 auto; line-height: 1.85; }
.section-desc.light { color: rgba(255,255,255,.6); }

/* Buttons */
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--white); padding: 15px 32px; border-radius: 100px;
    font-family: var(--font-h); font-weight: 700; font-size: 14.5px;
    transition: var(--t); box-shadow: 0 8px 28px rgba(0,196,255,.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,196,255,.42); }

.btn-gold {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary); padding: 15px 32px; border-radius: 100px;
    font-family: var(--font-h); font-weight: 700; font-size: 14.5px;
    transition: var(--t); box-shadow: 0 8px 28px var(--gold-glow);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(201,162,39,.45); }

/* ─── AOS (custom inline) ────────────────────── */
[data-aos] { opacity: 0; transition: opacity .7s ease, transform .7s ease; }
[data-aos="fade-up"]    { transform: translateY(32px); }
[data-aos="fade-right"] { transform: translateX(-36px); }
[data-aos="fade-left"]  { transform: translateX(36px); }
[data-aos="zoom-in"]    { transform: scale(.9); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* ─── PRELOADER ──────────────────────────────── */
#preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .7s ease, visibility .7s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-ring {
    position: relative; width: 90px; height: 90px;
    margin: 0 auto 18px;
}
.preloader-ring svg { width: 100%; height: 100%; animation: rotate 2s linear infinite; }
.ring-progress { animation: dash 1.8s ease-in-out forwards; }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes dash   { to { stroke-dashoffset: 0; } }
.preloader-k {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-h); font-size: 34px; font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.preloader-brand {
    font-family: var(--font-h); font-size: 13px; font-weight: 800;
    letter-spacing: 6px; color: var(--white); margin-bottom: 6px;
}
.preloader-tagline { font-size: 11px; color: rgba(255,255,255,.35); letter-spacing: 2px; }

/* ─── NAVBAR ─────────────────────────────────── */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 18px 0; transition: all .4s ease;
}
#navbar.scrolled {
    background: rgba(7,17,31,.97); backdrop-filter: blur(24px);
    padding: 12px 0; box-shadow: 0 4px 32px rgba(0,0,0,.22);
}
.nav-container {
    max-width: 1240px; margin: 0 auto; padding: 0 28px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 11px; }

/* Logo image navbar SPA — version blanche (kauryx-logo-white.svg) */
.nav-logo-img {
    display: block;
    height: 44px;
    width: auto;
    /* Pas de filtre : le SVG white est déjà adapté aux fonds sombres */
    transition: opacity .25s ease;
}
.nav-logo-img:hover { opacity: .85; }
.logo-icon {
    position: relative; width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-h); font-size: 20px; font-weight: 900; color: var(--white);
}
.logo-icon-glow {
    position: absolute; inset: -3px; border-radius: 13px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    opacity: 0; filter: blur(8px); z-index: -1; transition: opacity .3s;
}
.nav-logo:hover .logo-icon-glow { opacity: .5; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-family: var(--font-h); font-size: 15px; font-weight: 900; color: var(--white); letter-spacing: 2.5px; }
.logo-sub  { font-size: 8.5px; font-weight: 600; color: var(--accent); letter-spacing: 3.5px; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-link {
    color: rgba(255,255,255,.72); font-size: 13.5px; font-weight: 500;
    padding: 8px 13px; border-radius: var(--r-sm); transition: var(--t);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link-drop { display: flex; align-items: center; gap: 5px; }
.nav-arrow { font-size: 10px; transition: transform .3s; }
.nav-cta {
    display: flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--white); padding: 10px 20px; border-radius: 100px;
    font-family: var(--font-h); font-size: 13px; font-weight: 700;
    box-shadow: 0 4px 16px rgba(0,196,255,.28); transition: var(--t); margin-left: 8px;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,196,255,.44); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    position: absolute; top: calc(100% + 12px); left: 0;
    background: rgba(10,22,40,.98); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-md); padding: 10px; min-width: 220px;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all .25s ease; z-index: 100;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: none; }
.nav-dropdown:hover .nav-arrow { transform: rotate(180deg); }
.nav-dropdown-menu a {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,.7); font-size: 13.5px; padding: 10px 14px;
    border-radius: var(--r-sm); transition: var(--t);
}
.nav-dropdown-menu a:hover { background: rgba(0,196,255,.1); color: var(--accent); }
.nav-dropdown-menu a i { width: 16px; color: var(--accent); font-size: 13px; }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-burger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--t); }
.nav-overlay { display: none; }

/* ─── HERO ───────────────────────────────────── */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    background: var(--primary); overflow: hidden;
}
#heroCanvas { position: absolute; inset: 0; z-index: 0; }
.hero-bg-gradient {
    position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0,196,255,.1) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(0,102,255,.08) 0%, transparent 55%),
        linear-gradient(180deg, rgba(7,17,31,0) 0%, var(--primary) 100%);
}

/* Grid lines */
.hero-grid-lines { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.grid-line { position: absolute; background: rgba(0,196,255,.04); }
.gl-v1 { width: 1px; height: 100%; left: 25%; animation: glide-v 8s ease-in-out infinite; }
.gl-v2 { width: 1px; height: 100%; right: 25%; animation: glide-v 8s ease-in-out 4s infinite reverse; }
.gl-h1 { height: 1px; width: 100%; top: 35%; animation: glide-h 10s ease-in-out infinite; }
.gl-h2 { height: 1px; width: 100%; bottom: 30%; animation: glide-h 10s ease-in-out 5s infinite reverse; }
@keyframes glide-v { 0%,100%{opacity:.3} 50%{opacity:.08} }
@keyframes glide-h { 0%,100%{opacity:.3} 50%{opacity:.06} }

.hero-content {
    position: relative; z-index: 2; padding: 120px 28px 60px;
    max-width: 760px; margin-left: auto; margin-right: 0;
    padding-right: 0; padding-left: calc((100vw - 1240px)/2 + 28px);
}
@media (max-width: 1240px) { .hero-content { padding-left: 28px; } }

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(0,196,255,.08); border: 1px solid rgba(0,196,255,.22);
    color: var(--accent); padding: 8px 18px; border-radius: 100px;
    font-size: 12.5px; font-weight: 600; letter-spacing: 1px; margin-bottom: 28px;
}
.badge-dot {
    width: 7px; height: 7px; background: var(--accent); border-radius: 50%;
    animation: blink 2s infinite;
}
.badge-line { width: 20px; height: 1px; background: rgba(0,196,255,.4); }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

.hero-title {
    font-family: var(--font-h); font-size: clamp(40px, 6vw, 76px);
    font-weight: 900; line-height: 1.05; color: var(--white);
    letter-spacing: -1.5px; margin-bottom: 24px;
}
.hero-gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 50%, #8b5cf6 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-subtitle {
    font-size: clamp(15px, 1.8vw, 17.5px); color: rgba(255,255,255,.65);
    line-height: 1.85; margin-bottom: 40px; max-width: 580px;
}
.text-tech { color: var(--accent); font-weight: 600; }
.text-gold { color: var(--gold-light); font-weight: 600; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--white); padding: 15px 20px 15px 28px; border-radius: 100px;
    font-family: var(--font-h); font-weight: 700; font-size: 14.5px;
    transition: var(--t); box-shadow: 0 8px 28px rgba(0,196,255,.3);
    overflow: hidden; position: relative;
}
.btn-hero-primary span { margin-right: 14px; }
.btn-arrow {
    width: 32px; height: 32px; background: rgba(255,255,255,.2);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 13px; transition: var(--t);
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,196,255,.44); }
.btn-hero-primary:hover .btn-arrow { background: rgba(255,255,255,.35); transform: translateX(3px); }

.btn-hero-outline {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1.5px solid rgba(255,255,255,.28); color: rgba(255,255,255,.85);
    padding: 15px 28px; border-radius: 100px;
    font-family: var(--font-h); font-weight: 600; font-size: 14.5px;
    transition: var(--t); backdrop-filter: blur(8px);
}
.btn-hero-outline:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.07); }

.hero-poles {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.hero-pole-chip {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 10px 18px; border-radius: 100px;
    font-size: 13.5px; font-weight: 600; font-family: var(--font-h);
    transition: var(--t);
}
.chip-tech {
    background: rgba(0,196,255,.1); border: 1px solid rgba(0,196,255,.22); color: var(--accent);
}
.chip-tech:hover { background: rgba(0,196,255,.18); }
.chip-gold {
    background: rgba(201,162,39,.1); border: 1px solid rgba(201,162,39,.22); color: var(--gold-light);
}
.chip-gold:hover { background: rgba(201,162,39,.18); }
.chip-arrow { font-size: 10px; transition: transform .3s; }
.hero-pole-chip:hover .chip-arrow { transform: translateX(4px); }
.hero-pole-sep { color: rgba(255,255,255,.2); font-size: 20px; font-weight: 300; }

/* Stats panel */
.hero-stats-panel {
    position: absolute; right: 28px; bottom: 60px; z-index: 2;
    display: flex; flex-direction: column; gap: 0;
    background: rgba(255,255,255,.04); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-xl);
    overflow: hidden;
}
.hsp-item { padding: 20px 28px; text-align: center; }
.hsp-num {
    font-family: var(--font-h); font-size: 32px; font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1; margin-bottom: 5px;
}
.hsp-num::after { content: '+'; font-size: 20px; }
.hsp-label { font-size: 11px; color: rgba(255,255,255,.45); line-height: 1.4; }
.hsp-sep { height: 1px; background: rgba(255,255,255,.06); margin: 0 10px; flex-shrink: 0; }

.hero-scroll-cue {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,.35); font-size: 10px; letter-spacing: 2px;
    z-index: 2;
}
.scroll-mouse {
    width: 22px; height: 34px; border: 1.5px solid rgba(255,255,255,.2);
    border-radius: 12px; display: flex; justify-content: center; padding-top: 5px;
    animation: bounce-y 2.5s infinite;
}
.scroll-wheel {
    width: 3px; height: 6px; background: var(--accent); border-radius: 2px;
    animation: scroll-down 2.5s infinite;
}
@keyframes scroll-down { 0%{transform:translateY(0);opacity:1} 70%{transform:translateY(12px);opacity:0} 100%{transform:translateY(0);opacity:0} }
@keyframes bounce-y { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

/* ─── POLES CARDS SECTION ────────────────────── */
.poles-cards-section { padding: 100px 0; background: var(--off-white); }
.poles-intro { text-align: center; margin-bottom: 64px; }
.poles-grid {
    display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch;
}
.pole-card {
    background: var(--white); border-radius: var(--r-xl);
    padding: 44px 36px; position: relative; overflow: hidden;
    border: 1px solid var(--light-gray);
    transition: transform .4s ease, box-shadow .4s ease;
}
.pole-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pole-card-shine {
    position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
    background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,.06) 50%, transparent 80%);
    transition: left .7s ease;
}
.pole-card:hover .pole-card-shine { left: 140%; }

.pole-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; }
.pole-icon-wrap {
    width: 68px; height: 68px; border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; position: relative;
}
.tech-wrap { background: rgba(0,196,255,.08); border: 1px solid rgba(0,196,255,.2); color: var(--accent); }
.gold-wrap { background: rgba(201,162,39,.08); border: 1px solid rgba(201,162,39,.2); color: var(--gold); }
.pole-icon-ring {
    position: absolute; inset: -6px; border-radius: 22px;
    border: 1px solid rgba(0,196,255,.12); animation: ring-pulse 3s ease-in-out infinite;
}
.gold-ring { border-color: rgba(201,162,39,.12); }
@keyframes ring-pulse { 0%,100%{transform:scale(1);opacity:.6} 50%{transform:scale(1.06);opacity:.2} }

.pole-num { font-family: var(--font-h); font-size: 48px; font-weight: 900; color: rgba(0,196,255,.08); letter-spacing: -2px; }
.gold-num { color: rgba(201,162,39,.1); }

.pole-label { font-size: 10.5px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.tech-label { color: var(--accent); }
.gold-label  { color: var(--gold); }

.pole-card-title { font-family: var(--font-h); font-size: 30px; font-weight: 900; color: var(--primary); margin-bottom: 14px; }
.pole-card-desc  { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 28px; }
.pole-card-list  { margin-bottom: 36px; }
.pole-card-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--text-main); padding: 8px 0; border-bottom: 1px solid var(--light-gray); }
.pole-card-list li:last-child { border: none; }
.pole-tech .pole-card-list li i { color: var(--accent); }
.pole-patrimoine .pole-card-list li i { color: var(--gold); }

.pole-cta {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px; border-radius: var(--r-md);
    font-family: var(--font-h); font-size: 14px; font-weight: 700; transition: var(--t);
}
.tech-cta { background: rgba(0,196,255,.06); color: var(--accent); border: 1px solid rgba(0,196,255,.18); }
.tech-cta:hover { background: rgba(0,196,255,.12); }
.gold-cta { background: rgba(201,162,39,.06); color: var(--gold); border: 1px solid rgba(201,162,39,.18); }
.gold-cta:hover { background: rgba(201,162,39,.12); }
.pole-cta-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; transition: transform .3s; }
.tech-cta .pole-cta-icon { background: rgba(0,196,255,.15); color: var(--accent); }
.gold-cta .pole-cta-icon { background: rgba(201,162,39,.15); color: var(--gold); }
.pole-cta:hover .pole-cta-icon { transform: translateX(4px); }
.gold-icon { background: rgba(201,162,39,.15) !important; color: var(--gold) !important; }

/* Poles center divider */
.poles-center { display: flex; align-items: center; }
.poles-divider {
    width: 100px; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
    position: relative;
}
.poles-divider::before {
    content: ''; position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 1px; background: linear-gradient(to bottom, transparent, var(--light-gray), transparent);
}
.poles-divider-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--primary-mid));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--light-gray); position: relative; z-index: 1;
    box-shadow: var(--shadow-md);
}
.big-k { font-family: var(--font-h); font-size: 32px; font-weight: 900; background: linear-gradient(135deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.poles-divider-label { font-family: var(--font-h); font-size: 9px; font-weight: 800; letter-spacing: 2.5px; color: var(--text-light); text-align: center; position: relative; z-index: 1; }

/* ─── KAURYX TECH SECTION ────────────────────── */
.tech-section { padding: 100px 0; background: var(--primary); position: relative; overflow: hidden; }
.tech-bg-fx {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 55% 50% at 0% 50%, rgba(0,196,255,.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 100% 20%, rgba(0,102,255,.07) 0%, transparent 55%);
}
.pole-section-header { text-align: center; margin-bottom: 64px; }
.pole-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 20px; border-radius: 100px;
    font-size: 11.5px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px;
}
.tech-tag { background: rgba(0,196,255,.1); border: 1px solid rgba(0,196,255,.25); color: var(--accent); }
.patrimoine-tag { background: rgba(201,162,39,.1); border: 1px solid rgba(201,162,39,.25); color: var(--gold); }

/* Tech services grid */
.tech-services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 80px;
}
.tech-service-card {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--r-lg); padding: 32px 26px;
    transition: transform .3s, border-color .3s, background .3s;
}
.tech-service-card:hover { transform: translateY(-6px); border-color: rgba(0,196,255,.25); background: rgba(0,196,255,.05); }
.tsc-icon {
    width: 52px; height: 52px; background: rgba(0,196,255,.1); border: 1px solid rgba(0,196,255,.2);
    border-radius: 13px; display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--accent); margin-bottom: 18px;
}
.tech-service-card h4 { font-family: var(--font-h); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.tech-service-card p { font-size: 13.5px; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 16px; }
.tsc-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tsc-tags span {
    background: rgba(0,196,255,.08); border: 1px solid rgba(0,196,255,.15);
    color: var(--accent); font-size: 10.5px; font-weight: 600; padding: 3px 10px; border-radius: 100px;
}

/* Software block */
.software-block { position: relative; z-index: 1; }
.software-block-header { text-align: center; margin-bottom: 48px; }
.software-block-title { font-family: var(--font-h); font-size: clamp(24px, 3.5vw, 38px); font-weight: 900; color: var(--white); margin-bottom: 14px; line-height: 1.15; }
.software-block-header p { font-size: 15.5px; color: rgba(255,255,255,.5); max-width: 580px; margin: 0 auto; line-height: 1.8; }
.software-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.sw-card {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-xl); padding: 36px 28px; position: relative;
    transition: transform .3s, border-color .3s;
}
.sw-card:hover { transform: translateY(-6px); border-color: rgba(0,196,255,.25); }
.sw-featured { border-color: rgba(0,196,255,.3); background: rgba(0,196,255,.05); box-shadow: 0 0 60px rgba(0,196,255,.07); }
.sw-ribbon {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--white); font-size: 10.5px; font-weight: 700;
    padding: 5px 18px; border-radius: 100px; letter-spacing: 1px; white-space: nowrap;
}
.sw-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.sw-logo {
    width: 52px; height: 52px; background: rgba(0,196,255,.12); border: 1px solid rgba(0,196,255,.2);
    border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--accent);
}
.sw-logo-alt { background: rgba(201,162,39,.1); border-color: rgba(201,162,39,.2); color: var(--gold); }
.sw-logo-custom { background: rgba(139,92,246,.1); border-color: rgba(139,92,246,.2); color: #a78bfa; }
.sw-card-title-block h4 { font-family: var(--font-h); font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 3px; }
.sw-version { font-size: 10.5px; font-weight: 600; color: rgba(255,255,255,.35); letter-spacing: 1px; }
.sw-desc { font-size: 13.5px; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 22px; }
.sw-modules { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 28px; }
.sw-module { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: rgba(255,255,255,.6); }
.sw-module i { color: var(--accent); font-size: 11px; width: 14px; }
.sw-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: rgba(0,196,255,.1); border: 1px solid rgba(0,196,255,.25);
    color: var(--accent); padding: 13px; border-radius: 100px;
    font-family: var(--font-h); font-size: 13.5px; font-weight: 700; transition: var(--t);
}
.sw-btn:hover { background: rgba(0,196,255,.2); }
.sw-btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--white); border: none;
    box-shadow: 0 6px 20px rgba(0,196,255,.28);
}
.sw-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,196,255,.4); }

/* ─── METRICS SECTION ────────────────────────── */
.metrics-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--primary-mid) 0%, var(--primary) 100%);
    position: relative; overflow: hidden;
}
.metrics-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,196,255,.05) 0%, transparent 70%);
}
.metrics-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
    position: relative; z-index: 1;
}
.metric-item {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 32px 20px; text-align: center;
    border-right: 1px solid rgba(255,255,255,.06);
    transition: background .3s;
}
.metric-item:last-child { border-right: none; }
.metric-item:hover { background: rgba(255,255,255,.02); }
.metric-icon {
    width: 44px; height: 44px; background: rgba(201,162,39,.1); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gold); margin-bottom: 16px;
}
.metric-icon.tech-metric { background: rgba(0,196,255,.1); color: var(--accent); }
.metric-num {
    font-family: var(--font-h); font-size: 40px; font-weight: 900;
    background: linear-gradient(135deg, var(--white), rgba(255,255,255,.75));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1; margin-bottom: 8px;
}
.metric-num::after { content: '+'; font-size: 24px; }
.metric-label { font-size: 12px; color: rgba(255,255,255,.4); font-weight: 500; }

/* ─── KAURYX PATRIMOINE ──────────────────────── */
.patrimoine-section { padding: 100px 0; background: var(--white); position: relative; overflow: hidden; }
.patrimoine-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 40% 50% at 95% 20%, rgba(201,162,39,.04) 0%, transparent 60%),
        radial-gradient(ellipse 30% 40% at 5% 80%, rgba(201,162,39,.03) 0%, transparent 55%);
}
.patri-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 64px; position: relative; z-index: 1; }
.patri-card {
    background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--r-xl);
    padding: 32px; display: flex; flex-direction: column; gap: 0;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.patri-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(201,162,39,.25); }
.patri-card-icon {
    width: 54px; height: 54px; background: rgba(201,162,39,.08); border: 1px solid rgba(201,162,39,.18);
    border-radius: 13px; display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--gold); margin-bottom: 18px; transition: var(--t);
}
.patri-card:hover .patri-card-icon { background: rgba(201,162,39,.14); }
.patri-card-content { flex: 1; }
.patri-card-content h4 { font-family: var(--font-h); font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.patri-card-content p { font-size: 13.5px; color: var(--text-light); line-height: 1.75; margin-bottom: 16px; }
.patri-card-list { margin-bottom: 24px; }
.patri-card-list li { font-size: 12.5px; color: var(--text-light); padding: 5px 0; border-bottom: 1px solid var(--light-gray); }
.patri-card-list li::before { content: '✦ '; color: var(--gold); font-size: 9px; }
.patri-card-list li:last-child { border: none; }
.patri-card-link { display: inline-flex; align-items: center; gap: 7px; color: var(--gold); font-weight: 700; font-size: 13.5px; font-family: var(--font-h); transition: gap .3s; margin-top: auto; }
.patri-card-link:hover { gap: 12px; }

/* CTA Patrimoine */
.patri-cta-block {
    position: relative; z-index: 1; border-radius: var(--r-xl); overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
}
.patri-cta-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,162,39,.12) 0%, transparent 65%);
}
.patri-cta-content {
    position: relative; z-index: 1; display: flex; align-items: center; gap: 32px;
    padding: 48px 52px; flex-wrap: wrap;
}
.patri-cta-icon { font-size: 36px; color: var(--gold); opacity: .8; }
.patri-cta-text { flex: 1; }
.patri-cta-text h3 { font-family: var(--font-h); font-size: 26px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.patri-cta-text p { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.75; }

/* ─── WHY SECTION ────────────────────────────── */
.why-section { padding: 100px 0; background: var(--off-white); }
.why-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-left .section-tag { margin-bottom: 18px; }
.why-left .section-title { text-align: left; margin-bottom: 16px; }
.why-intro { font-size: 16px; color: var(--text-light); line-height: 1.85; margin-bottom: 40px; }
.why-values { display: flex; flex-direction: column; gap: 18px; }
.val-item { display: flex; gap: 16px; align-items: flex-start; }
.val-icon {
    width: 44px; height: 44px; min-width: 44px; border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--white); box-shadow: 0 4px 16px rgba(0,196,255,.22);
}
.val-body h5 { font-family: var(--font-h); font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.val-body p  { font-size: 13.5px; color: var(--text-light); line-height: 1.65; }

.why-right { display: flex; justify-content: center; }
.why-visual-box {
    position: relative; width: 380px; height: 380px;
    display: flex; align-items: center; justify-content: center;
}
.wvb-ring {
    position: absolute; border-radius: 50%; border: 1px solid;
    animation: ring-spin 20s linear infinite;
}
.wvb-ring-1 { inset: 0; border-color: rgba(0,196,255,.1); }
.wvb-ring-2 { inset: 30px; border-color: rgba(0,196,255,.07); animation-duration: 28s; animation-direction: reverse; }
.wvb-ring-3 { inset: 60px; border-color: rgba(0,196,255,.05); animation-duration: 36s; }
@keyframes ring-spin { to { transform: rotate(360deg); } }
.wvb-center {
    width: 130px; height: 130px; background: linear-gradient(135deg, var(--primary), var(--primary-mid));
    border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center;
    box-shadow: 0 0 60px rgba(0,196,255,.12), 0 20px 60px rgba(7,17,31,.25);
    border: 1px solid rgba(0,196,255,.15); z-index: 2;
}
.wvb-k { font-family: var(--font-h); font-size: 52px; font-weight: 900; background: linear-gradient(135deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.wvb-label { font-size: 9px; font-weight: 700; color: rgba(255,255,255,.4); letter-spacing: 3px; margin-top: 2px; }
.wvb-node {
    position: absolute; display: flex; flex-direction: column; align-items: center; gap: 5px;
    background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--r-md);
    padding: 10px 14px; font-size: 11.5px; font-weight: 700; color: var(--primary);
    box-shadow: var(--shadow-md); animation: float-node 5s ease-in-out infinite; z-index: 3;
}
.wvb-node i { font-size: 18px; }
.node-n1 { top: 8px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.node-n1 i { color: var(--accent); }
.node-n2 { right: 8px; top: 50%; transform: translateY(-50%); animation-delay: 1.25s; }
.node-n2 i { color: var(--gold); }
.node-n3 { bottom: 8px; left: 50%; transform: translateX(-50%); animation-delay: 2.5s; }
.node-n3 i { color: #4caf50; }
.node-n4 { left: 8px; top: 50%; transform: translateY(-50%); animation-delay: 3.75s; }
.node-n4 i { color: #8b5cf6; }
@keyframes float-node { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-9px)} }
.node-n2 { animation: float-node-x 5s ease-in-out 1.25s infinite; }
@keyframes float-node-x { 0%,100%{transform:translateY(-50%) translateX(0)} 50%{transform:translateY(-50%) translateX(-9px)} }
.node-n3 { animation: float-node-b 5s ease-in-out 2.5s infinite; }
@keyframes float-node-b { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(9px)} }
.node-n4 { animation: float-node-l 5s ease-in-out 3.75s infinite; }
@keyframes float-node-l { 0%,100%{transform:translateY(-50%) translateX(0)} 50%{transform:translateY(-50%) translateX(9px)} }

/* ─── ABOUT SECTION ──────────────────────────── */
.about-section { padding: 100px 0; background: var(--primary); position: relative; overflow: hidden; }
.about-bg-fx {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(0,196,255,.05) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 50%, rgba(0,102,255,.05) 0%, transparent 50%);
}
.about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.about-visual-card {
    position: relative; height: 440px;
    background: linear-gradient(135deg, rgba(0,196,255,.08), rgba(0,102,255,.04));
    border: 1px solid rgba(0,196,255,.12); border-radius: var(--r-xl); overflow: hidden;
}
.avc-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(0,196,255,.06) 1px, transparent 1px);
    background-size: 28px 28px;
}
.avc-lines { position: absolute; inset: 0; overflow: hidden; }
.avc-line { position: absolute; background: linear-gradient(90deg, transparent, rgba(0,196,255,.15), transparent); height: 1px; width: 100%; animation: slide-line 4s ease-in-out infinite; }
.avc-line-1 { top: 30%; animation-delay: 0s; }
.avc-line-2 { top: 55%; animation-delay: 1.3s; }
.avc-line-3 { top: 75%; animation-delay: 2.6s; }
@keyframes slide-line { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }
.avc-center-logo {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    text-align: center;
}
.acl-icon { font-family: var(--font-h); font-size: 80px; font-weight: 900; background: linear-gradient(135deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; opacity: .4; }
.acl-text { font-family: var(--font-h); font-size: 11px; font-weight: 800; letter-spacing: 5px; color: rgba(255,255,255,.25); margin-top: 6px; }
.avc-stat-card {
    position: absolute; bottom: 28px; left: 28px;
    background: rgba(255,255,255,.06); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md);
    padding: 16px 22px;
}
.avc-stat-card-2 { bottom: 28px; left: auto; right: 28px; }
.asc-num { font-family: var(--font-h); font-size: 36px; font-weight: 900; background: linear-gradient(135deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.asc-label { font-size: 11.5px; color: rgba(255,255,255,.5); margin-top: 4px; }

.about-right .section-tag { margin-bottom: 18px; }
.about-right .section-title { text-align: left; color: var(--white); margin-bottom: 18px; }
.about-lead { font-size: 17px; color: rgba(255,255,255,.8); font-weight: 500; line-height: 1.8; margin-bottom: 16px; }
.about-body { font-size: 14.5px; color: rgba(255,255,255,.5); line-height: 1.85; margin-bottom: 36px; }

.about-dna { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.dna-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.dna-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--white); }
.dna-tech { background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.dna-patri { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.dna-group { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.dna-label { font-size: 11.5px; color: rgba(255,255,255,.5); font-weight: 600; text-align: center; }
.dna-connector { display: flex; align-items: center; gap: 6px; }
.dna-line { width: 18px; height: 1px; background: rgba(255,255,255,.15); }
.dna-plus, .dna-equals { font-size: 22px; font-weight: 300; color: rgba(255,255,255,.2); }

/* ─── TESTIMONIALS ───────────────────────────── */
.testi-section { padding: 100px 0; background: var(--off-white); }
.testi-track-wrapper { position: relative; }
.testi-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; transition: none; }

.testi-card {
    background: var(--white); border: 1px solid var(--light-gray); border-radius: var(--r-xl);
    padding: 32px; transition: transform .3s, box-shadow .3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.testi-qmark { font-size: 24px; color: var(--accent); opacity: .5; }
.testi-stars { color: var(--gold); font-size: 12px; display: flex; gap: 2px; }
.testi-text { font-size: 14.5px; color: var(--text-light); line-height: 1.82; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.testi-av { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-size: 13px; font-weight: 800; color: var(--white); flex-shrink: 0; }
.av-blue { background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.av-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.testi-info { flex: 1; }
.testi-name { font-weight: 700; font-size: 14px; color: var(--primary); }
.testi-role { font-size: 12px; color: var(--text-light); }
.testi-pole-badge {
    font-size: 10.5px; font-weight: 700; padding: 4px 10px; border-radius: 100px;
    display: flex; align-items: center; gap: 5px;
}
.tech-badge  { background: rgba(0,196,255,.08);  border: 1px solid rgba(0,196,255,.2);  color: var(--accent); }
.patri-badge { background: rgba(201,162,39,.08); border: 1px solid rgba(201,162,39,.2); color: var(--gold); }

.testi-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.testi-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--white); border: 1.5px solid var(--light-gray);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-main); font-size: 14px; transition: var(--t);
    cursor: pointer;
}
.testi-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.testi-dots-wrap { display: flex; gap: 7px; align-items: center; }
.testi-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--light-gray);
    transition: all .3s; cursor: pointer;
}
.testi-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* Slider mode (≤960px) */
@media (max-width: 960px) {
    .testi-track { grid-template-columns: 1fr; display: block; }
    .testi-card { display: none; }
    .testi-card.t-active { display: block; animation: testi-in .4s ease; }
    @keyframes testi-in { from{opacity:0;transform:translateX(20px)} to{opacity:1;transform:none} }
}

/* ─── CONTACT SECTION ────────────────────────── */
.contact-section { display: grid; grid-template-columns: 1fr 1.1fr; min-height: 700px; }
.contact-left-panel {
    background: var(--primary); padding: 90px 60px;
    display: flex; align-items: flex-start; justify-content: flex-end;
    position: relative; overflow: hidden;
}
.contact-left-panel::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 60%, rgba(0,196,255,.08) 0%, transparent 55%);
}
.clp-content { max-width: 420px; position: relative; z-index: 1; }
.clp-content .section-title { text-align: left; margin-bottom: 16px; }
.contact-intro { font-size: 15.5px; color: rgba(255,255,255,.55); line-height: 1.85; margin-bottom: 36px; }
.contact-info-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.cil-item { display: flex; align-items: center; gap: 14px; }
.cil-icon { width: 42px; height: 42px; min-width: 42px; background: rgba(0,196,255,.1); border: 1px solid rgba(0,196,255,.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 15px; }
.cil-body { display: flex; flex-direction: column; }
.cil-label { font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.35); }
.cil-val { font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,.8); }
.contact-pole-links { display: flex; flex-direction: column; gap: 10px; }
.cpl-btn {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 18px; border-radius: var(--r-md); transition: var(--t); cursor: pointer;
}
.cpl-tech { background: rgba(0,196,255,.07); border: 1px solid rgba(0,196,255,.18); }
.cpl-patri { background: rgba(201,162,39,.07); border: 1px solid rgba(201,162,39,.18); }
.cpl-tech:hover { background: rgba(0,196,255,.14); }
.cpl-patri:hover { background: rgba(201,162,39,.12); }
.cpl-btn > i { font-size: 20px; }
.cpl-tech > i { color: var(--accent); }
.cpl-patri > i { color: var(--gold); }
.cpl-btn div { display: flex; flex-direction: column; }
.cpl-btn strong { font-size: 14px; font-weight: 700; color: var(--white); }
.cpl-btn small { font-size: 12px; color: rgba(255,255,255,.4); }

.contact-right-panel { background: var(--off-white); padding: 90px 60px; display: flex; align-items: flex-start; }
.contact-form-card { width: 100%; max-width: 500px; }
.cfc-header { margin-bottom: 32px; }
.cfc-header h3 { font-family: var(--font-h); font-size: 24px; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.cfc-header p { font-size: 14px; color: var(--text-light); }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.cf-row { display: flex; gap: 16px; }
.cf-row-1 { flex-direction: column; }
.cf-row-2 { flex-direction: row; }
.cf-group { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.cf-group label { font-size: 13px; font-weight: 700; color: var(--text-main); }
.cf-group label span { color: var(--accent); }
.cf-input-wrap {
    position: relative; display: flex; align-items: center;
}
.cf-input-wrap > i {
    position: absolute; left: 14px; color: var(--text-light); font-size: 14px;
    pointer-events: none; z-index: 1; transition: color .3s;
}
.cf-input-wrap input,
.cf-input-wrap select {
    width: 100%; padding: 13px 14px 13px 42px;
    border: 1.5px solid var(--light-gray); border-radius: var(--r-sm);
    font-family: var(--font-b); font-size: 14px; color: var(--text-main);
    background: var(--white); transition: border-color .3s, box-shadow .3s; outline: none;
    appearance: none;
}
.cf-input-wrap input:focus,
.cf-input-wrap select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,196,255,.1); }
.cf-input-wrap:focus-within > i { color: var(--accent); }
.cf-select-wrap { position: relative; }
.cf-select-arrow { position: absolute; right: 14px; pointer-events: none; font-size: 11px; color: var(--text-light); }
.cf-group textarea {
    padding: 13px 16px; border: 1.5px solid var(--light-gray); border-radius: var(--r-sm);
    font-family: var(--font-b); font-size: 14px; color: var(--text-main);
    background: var(--white); resize: vertical; min-height: 130px;
    transition: border-color .3s, box-shadow .3s; outline: none;
}
.cf-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,196,255,.1); }
.cf-submit {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--white); padding: 16px; border-radius: 100px;
    font-family: var(--font-h); font-size: 15px; font-weight: 700;
    box-shadow: 0 8px 24px rgba(0,196,255,.28); transition: var(--t); cursor: pointer; border: none;
}
.cf-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,196,255,.42); }
.cf-success {
    display: none; align-items: flex-start; gap: 12px;
    background: rgba(76,175,80,.08); border: 1px solid rgba(76,175,80,.25);
    padding: 16px 18px; border-radius: var(--r-sm);
}
.cf-success i { font-size: 20px; color: #4caf50; flex-shrink: 0; }
.cf-success strong { display: block; font-size: 14px; color: #2e7d32; margin-bottom: 3px; }
.cf-success span { font-size: 13px; color: #4e7a50; }
.cf-error {
    display: none; align-items: center; gap: 10px;
    background: rgba(244,67,54,.07); border: 1px solid rgba(244,67,54,.2);
    padding: 13px 16px; border-radius: var(--r-sm); font-size: 13.5px; color: #c62828;
}
.cf-error i { font-size: 16px; }

/* ─── FOOTER ─────────────────────────────────── */
.footer { background: var(--primary); }
.footer-main { padding: 80px 0 60px; border-bottom: 1px solid rgba(255,255,255,.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }

/* Logo image footer — version blanche (kauryx-logo-white.svg) */
.footer-logo-img {
    display: block;
    height: 48px;
    width: auto;
    /* Pas de filtre : SVG white adapté aux fonds sombres */
    opacity: .92;
}
.footer-logo-img:hover { opacity: 1; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.75; max-width: 260px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 9px; }
.fsoc {
    width: 36px; height: 36px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.45); font-size: 13px; transition: var(--t);
}
.fsoc:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.fcol-header { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.fcol-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.tech-dot { background: var(--accent); }
.gold-dot { background: var(--gold); }
.white-dot { background: rgba(255,255,255,.35); }
.footer-nav-col h5 { font-family: var(--font-h); font-size: 13px; font-weight: 800; color: var(--white); letter-spacing: 1.5px; }
.footer-nav-col ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.footer-nav-col a { font-size: 13.5px; color: rgba(255,255,255,.4); transition: color .3s; }
.footer-nav-col a:hover { color: var(--accent); }
.footer-contact-mini a { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.35); transition: color .3s; }
.footer-contact-mini a:hover { color: var(--accent); }
.footer-contact-mini i { color: var(--accent); }

.footer-bottom { padding: 22px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.25); }
.footer-legal { display: flex; align-items: center; gap: 10px; }
.footer-legal a { font-size: 12.5px; color: rgba(255,255,255,.28); transition: color .3s; }
.footer-legal a:hover { color: var(--accent); }
.footer-legal span { color: rgba(255,255,255,.12); }

/* ─── BACK TO TOP ────────────────────────────── */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px; z-index: 900;
    width: 46px; height: 46px; border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--white); font-size: 15px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 22px rgba(0,196,255,.32);
    opacity: 0; visibility: hidden; transform: translateY(14px);
    transition: all .3s ease; cursor: pointer;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,196,255,.48); }

/* ─── NAVBAR DROPDOWN EXTRAS ─────────────────── */
.nav-dd-group-label {
    font-size: 9.5px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
    color: rgba(255,255,255,.28); padding: 8px 14px 4px; pointer-events: none;
}
.nav-dd-separator { height: 1px; background: rgba(255,255,255,.07); margin: 6px 10px; }

/* ─── TECH INTERNAL NAV ───────────────────────── */
.tech-internal-nav {
    display: flex; align-items: stretch; gap: 0;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-xl); padding: 6px; margin-bottom: 70px;
    max-width: 720px; margin-left: auto; margin-right: auto;
}
.tin-btn {
    flex: 1; display: flex; align-items: center; gap: 14px;
    padding: 18px 24px; border-radius: var(--r-lg);
    color: rgba(255,255,255,.55); transition: var(--t); cursor: pointer;
}
.tin-btn > i { font-size: 22px; color: rgba(0,196,255,.5); flex-shrink: 0; transition: var(--t); }
.tin-btn span { display: block; font-family: var(--font-h); font-size: 15px; font-weight: 700; color: rgba(255,255,255,.75); transition: var(--t); }
.tin-btn small { display: block; font-size: 12px; color: rgba(255,255,255,.35); margin-top: 2px; }
.tin-btn:hover, .tin-btn.tin-active {
    background: rgba(0,196,255,.1); color: var(--white);
}
.tin-btn:hover i, .tin-btn.tin-active > i { color: var(--accent); }
.tin-btn:hover span, .tin-btn.tin-active span { color: var(--white); }
.tin-sep {
    width: 1px; background: rgba(255,255,255,.08); margin: 10px 0; flex-shrink: 0;
}

/* ─── TECH SUB SECTION (Services) ────────────── */
.tech-sub-section {
    padding: 80px 0; background: var(--primary-mid); position: relative; overflow: hidden;
}
.tech-sub-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 100% 0%, rgba(0,196,255,.06) 0%, transparent 60%);
}
.tech-sub-header { margin-bottom: 48px; }
.tech-sub-label {
    display: flex; align-items: center; gap: 20px;
    padding: 20px 28px; background: rgba(0,196,255,.06);
    border: 1px solid rgba(0,196,255,.14); border-radius: var(--r-lg);
    max-width: 640px;
}
.tsb-num {
    font-family: var(--font-h); font-size: 52px; font-weight: 900; line-height: 1;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    flex-shrink: 0;
}
.tsb-num-alt {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.tsb-title { display: block; font-family: var(--font-h); font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.tsb-desc  { display: block; font-size: 13.5px; color: rgba(255,255,255,.45); }

.tech-sub-cta {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-lg); padding: 28px 36px; margin-top: 48px; flex-wrap: wrap;
}
.tech-sub-cta p { font-size: 15px; color: rgba(255,255,255,.55); flex: 1; }

/* ─── TECH PRODUITS SECTION ───────────────────── */
.tech-produits-section {
    padding: 80px 0; background: var(--primary); position: relative; overflow: hidden;
}
.tp-bg-fx {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 0% 60%, rgba(0,196,255,.05) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 100% 20%, rgba(139,92,246,.04) 0%, transparent 55%);
}

/* Bande intro revendeur */
.tp-intro-band {
    display: flex; align-items: flex-start; gap: 24px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-left: 3px solid var(--accent);
    border-radius: var(--r-lg); padding: 28px 32px;
    margin-bottom: 52px; flex-wrap: wrap; position: relative; z-index: 1;
}
.tp-intro-icon { font-size: 32px; color: var(--accent); opacity: .8; flex-shrink: 0; padding-top: 3px; }
.tp-intro-text { flex: 1; }
.tp-intro-text h4 { font-family: var(--font-h); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.tp-intro-text p  { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.8; }
.tp-intro-badges { display: flex; gap: 8px; flex-wrap: wrap; align-items: flex-start; padding-top: 3px; }
.tp-badge {
    display: flex; align-items: center; gap: 6px;
    background: rgba(0,196,255,.08); border: 1px solid rgba(0,196,255,.18);
    color: rgba(255,255,255,.7); font-size: 12px; font-weight: 600;
    padding: 6px 13px; border-radius: 100px; white-space: nowrap;
}
.tp-badge i { color: var(--accent); font-size: 11px; }

/* Catégorie header */
.tp-category-header {
    display: flex; align-items: center; gap: 16px; margin-bottom: 36px;
    position: relative; z-index: 1;
}
.tp-cat-line { flex: 1; height: 1px; background: rgba(255,255,255,.08); }
.tp-cat-label {
    display: flex; align-items: center; gap: 9px;
    font-size: 11.5px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
    color: var(--accent); white-space: nowrap;
}
.tp-cat-label i { font-size: 14px; }

/* Grille produits */
.tp-products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; position: relative; z-index: 1; }
.tp-product-card {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-xl); padding: 32px; position: relative; overflow: hidden;
    transition: transform .3s, border-color .3s, background .3s;
    display: flex; flex-direction: column; gap: 18px;
}
.tp-product-card:hover { transform: translateY(-5px); border-color: rgba(0,196,255,.2); }
.tp-featured { border-color: rgba(0,196,255,.3); background: rgba(0,196,255,.05); box-shadow: 0 0 60px rgba(0,196,255,.06); }
.tp-product-ribbon {
    position: absolute; top: -1px; right: 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--white); font-size: 10px; font-weight: 700;
    padding: 5px 16px; border-radius: 0 0 var(--r-sm) var(--r-sm);
    letter-spacing: 1px;
}
.tp-product-header { display: flex; align-items: center; gap: 14px; }
.tp-product-logo {
    width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.tp-logo-blue   { background: rgba(0,196,255,.12);  border: 1px solid rgba(0,196,255,.25);  color: var(--accent); }
.tp-logo-green  { background: rgba(76,175,80,.1);   border: 1px solid rgba(76,175,80,.25);  color: #66bb6a; }
.tp-logo-purple { background: rgba(139,92,246,.1);  border: 1px solid rgba(139,92,246,.25); color: #a78bfa; }
.tp-product-name { font-family: var(--font-h); font-size: 22px; font-weight: 900; color: var(--white); margin-bottom: 3px; }
.tp-product-version { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.35); letter-spacing: 1px; }
.tp-product-price { margin-left: auto; text-align: right; }
.tp-product-price span { display: block; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.4); background: rgba(255,255,255,.06); border-radius: 100px; padding: 5px 12px; }
.tp-product-desc { font-size: 13.5px; color: rgba(255,255,255,.5); line-height: 1.8; }
.tp-product-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.tp-feat-col { display: flex; flex-direction: column; gap: 8px; }
.tp-feat { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: rgba(255,255,255,.6); }
.tp-feat i { color: var(--accent); font-size: 11px; width: 13px; flex-shrink: 0; }
.tp-product-actions { display: flex; gap: 10px; margin-top: auto; }
.tp-btn-demo {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--white); padding: 12px; border-radius: 100px;
    font-family: var(--font-h); font-size: 13px; font-weight: 700; transition: var(--t);
    box-shadow: 0 5px 18px rgba(0,196,255,.25);
}
.tp-btn-demo:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(0,196,255,.4); }
.tp-btn-info {
    display: flex; align-items: center; justify-content: center; gap: 7px;
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.7); padding: 12px 18px; border-radius: 100px;
    font-size: 12.5px; font-weight: 600; transition: var(--t);
}
.tp-btn-info:hover { background: rgba(255,255,255,.12); color: var(--white); }

/* Autres logiciels */
.tp-autres-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tp-autre-item { display: flex; align-items: center; gap: 9px; font-size: 13px; color: rgba(255,255,255,.6); }
.tp-autre-item i { color: #a78bfa; font-size: 12px; width: 14px; }
.tp-btn-catalogue {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    background: rgba(139,92,246,.1); border: 1px solid rgba(139,92,246,.25);
    color: #a78bfa; padding: 13px; border-radius: 100px;
    font-family: var(--font-h); font-size: 13.5px; font-weight: 700; transition: var(--t);
    margin-top: auto;
}
.tp-btn-catalogue:hover { background: rgba(139,92,246,.2); }

/* CTA bas produits */
.tp-bottom-cta {
    display: flex; align-items: center; justify-content: space-between; gap: 32px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-xl); padding: 32px 40px; flex-wrap: wrap;
    position: relative; z-index: 1;
}
.tp-cta-left { display: flex; align-items: flex-start; gap: 18px; flex: 1; }
.tp-cta-left > i { font-size: 28px; color: var(--accent); flex-shrink: 0; padding-top: 3px; }
.tp-cta-left h4 { font-family: var(--font-h); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.tp-cta-left p  { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.7; }
.tp-cta-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.tp-cta-tel {
    display: inline-flex; align-items: center; gap: 9px;
    background: rgba(0,196,255,.08); border: 1px solid rgba(0,196,255,.22);
    color: var(--accent); padding: 13px 22px; border-radius: 100px;
    font-family: var(--font-h); font-size: 14px; font-weight: 700; transition: var(--t);
    white-space: nowrap;
}
.tp-cta-tel:hover { background: rgba(0,196,255,.15); }

/* ─── FOOTER EXTRAS ───────────────────────────── */
.footer-sub-cat {
    font-size: 9.5px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,.22); padding: 8px 0 2px; pointer-events: none; cursor: default;
    border-top: 1px solid rgba(255,255,255,.06); margin-top: 4px;
}
.footer-sub-cat:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.footer-tel { color: rgba(255,255,255,.35); transition: color .3s; }
.footer-tel:hover { color: var(--accent); }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1100px) {
    .testi-track { grid-template-columns: repeat(2, 1fr); }
    .tp-products-grid { grid-template-columns: 1fr; }
    .tech-internal-nav { flex-direction: column; }
    .tin-sep { width: 100%; height: 1px; margin: 0; }
    .tech-sub-cta { flex-direction: column; text-align: center; }
    .tp-bottom-cta { flex-direction: column; }
    .tp-cta-actions { width: 100%; justify-content: center; }
    .poles-grid { grid-template-columns: 1fr 1fr; }
    .poles-center { display: none; }
    .poles-cards-section { padding: 70px 0; }
    .hero-stats-panel { position: static; width: 100%; flex-direction: row; margin-top: 40px; border-radius: var(--r-lg); }
    .hsp-item { flex: 1; }
    .hsp-sep { width: 1px; height: auto; margin: 16px 0; }
    .hero-content { max-width: 100%; padding-right: 28px; }
    .hero { flex-direction: column; align-items: flex-start; padding-bottom: 60px; }
    .tech-services-grid, .software-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .metrics-grid { grid-template-columns: repeat(3, 1fr); }
    .metrics-grid .metric-item:nth-child(3) { border-right: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .why-wrapper, .about-wrapper { grid-template-columns: 1fr; gap: 52px; }
    .why-right { display: none; }
    .contact-section { grid-template-columns: 1fr; }
    .contact-left-panel { padding: 60px 28px; justify-content: flex-start; }
    .contact-right-panel { padding: 60px 28px; }
}

@media (max-width: 768px) {
    .tp-product-features { grid-template-columns: 1fr; }
    .tp-autres-list { grid-template-columns: 1fr; }
    .tp-intro-band { flex-direction: column; }
    .tp-intro-badges { flex-wrap: wrap; }
    .tech-sub-label { flex-direction: column; gap: 8px; align-items: flex-start; }
    .tsb-num { font-size: 36px; }
    .nav-links {
        position: fixed; top: 0; right: -110%; width: 90%; max-width: 340px; height: 100vh;
        background: rgba(7,17,31,.99); flex-direction: column; padding: 80px 24px 40px;
        gap: 4px; transition: right .4s cubic-bezier(.4,0,.2,1);
        box-shadow: -20px 0 60px rgba(0,0,0,.4); overflow-y: auto; z-index: 999;
    }
    .nav-links.open { right: 0; }
    .nav-links li { width: 100%; }
    .nav-link { display: block; padding: 13px 16px; font-size: 15px; border-radius: 8px; }
    .nav-cta { display: block; text-align: center; margin: 12px 0 0; padding: 14px; border-radius: var(--r-md); }
    .nav-dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,.04); border: none; margin-top: 4px; border-radius: var(--r-sm); padding: 4px; }
    .nav-burger { display: flex; z-index: 1000; position: relative; }
    .nav-overlay { display: block; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 998; opacity: 0; visibility: hidden; transition: all .3s; }
    .nav-overlay.open { opacity: 1; visibility: visible; }
    .nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .nav-burger.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
    .nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

    .poles-grid { grid-template-columns: 1fr; }
    .poles-cards-section { padding: 50px 0; }
    .hero { align-items: flex-start; }
    .hero-stats-panel { flex-direction: column; }
    .hsp-sep { width: 100%; height: 1px; margin: 0; }
    .tech-services-grid, .software-cards-grid, .patri-services-grid { grid-template-columns: 1fr; }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .metrics-grid .metric-item:nth-child(2) { border-right: none; }
    .metrics-grid .metric-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.06); }
    .metrics-grid .metric-item:nth-child(4) { border-right: none; }
    .metrics-grid .metric-item:last-child { grid-column: 1/-1; border-right: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-section { display: block; }
    .cf-row-2 { flex-direction: column; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
    .patri-cta-content { flex-direction: column; text-align: center; padding: 36px 28px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-poles { flex-direction: column; align-items: flex-start; }
    .hero-pole-sep { display: none; }
    .section-title { font-size: 26px; }
    .pole-card { padding: 28px 20px; }
    .contact-left-panel, .contact-right-panel { padding: 48px 20px; }
}
