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

:root {
  --bg: #0A0A0A;
  --bg2: #0F0F0F;
  --bg3: #141414;
  --white: #FFFFFF;
  --muted: #6B6B6B;
  --subtle: #A1A1A1;
  --accent: #1ECAD3;
  --accent2: #2FE6F0;
  --accent3: #159CA3;
  --border: rgba(255,255,255,0.08);
  --border2: rgba(255,255,255,0.04);
  --glow: rgba(30,202,211,0.25);
  --glow2: rgba(30,202,211,0.08);
}

html { scroll-behavior: smooth; width:100%; -webkit-text-size-adjust:100%; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ── PRELOADER ─── */
#preloader {
  position:fixed; inset:0; z-index:10000;
  background:var(--bg);
  display:flex; align-items:center; justify-content:center;
  flex-direction:column; gap:1.3rem;
  transition:opacity 0.45s ease, visibility 0.45s;
}
#preloader.done { opacity:0; visibility:hidden; }
.pre-logo {
  font-family:'Syne',sans-serif; font-weight:800;
  font-size:clamp(1.3rem, 5.5vw, 1.8rem);
  letter-spacing:-0.01em;
  white-space:nowrap;
  animation:fadeIn 0.5s ease both;
}
.pre-logo .c { color:var(--accent); }
.pre-bar {
  width:min(220px, 55vw); height:2px; background:rgba(255,255,255,0.08);
  border-radius:2px; overflow:hidden;
}
.pre-bar::after {
  content:''; display:block; height:100%;
  background:linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow:0 0 14px rgba(30,202,211,0.8);
  animation:preLoad 0.75s cubic-bezier(0.65,0,0.35,1) forwards;
}
@keyframes preLoad { from { width:0; } to { width:100%; } }

/* ── PAGE TOP (1re section des sous-pages, sous la nav fixe) ─── */
.page-top { padding-top: calc(70px + 4.5rem) !important; }
@media (max-width:600px) {
  .page-top { padding-top: calc(70px + 2.5rem) !important; }
  .about-card-header {
    flex-direction:column !important;
    align-items:center !important;
    text-align:center;
    gap:0.9rem !important;
  }
  .about-card-info { width:100%; }
}

/* ── SCROLL PROGRESS ─── */
#scroll-progress {
  position:fixed; top:0; left:0; height:2px; width:0%;
  background:linear-gradient(90deg,var(--accent),var(--accent2));
  z-index:1000;
  box-shadow:0 0 12px rgba(30,202,211,0.6);
}

/* ── CURSOR ─── */
#cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  mix-blend-mode: difference;
}
#cursor-glow {
  position: fixed;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(30,202,211,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.6s ease;
}
body:has(a:hover) #cursor,
body:has(button:hover) #cursor { width:28px; height:28px; opacity:0.7; }

@media (hover:none) {
  #cursor, #cursor-glow { display:none; }
  body { cursor: auto; }
}

/* ── KEYFRAMES ─── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(40px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}
@keyframes scrollTicker {
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}
@keyframes float {
  0%,100% { transform:translateY(0) rotate(0deg); }
  50%     { transform:translateY(-20px) rotate(3deg); }
}
@keyframes pulse {
  0%,100% { opacity:0.4; transform:scale(1); }
  50%     { opacity:0.7; transform:scale(1.05); }
}
@keyframes counterUp {
  from { opacity:0; transform:translateY(10px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes shimmer {
  0%   { background-position:-200% center; }
  100% { background-position:200% center; }
}
@keyframes borderPulse {
  0%,100% { border-color: rgba(30,202,211,0.3); }
  50%     { border-color: rgba(30,202,211,0.8); }
}

/* ── NOISE TEXTURE ─── */
body::before {
  content:'';
  position:fixed; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events:none;
  z-index:1;
  opacity:0.5;
}

/* ── NAV ─── */
#nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:0 2.5rem;
  height:70px;
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
  gap:2rem;
  transition: background 0.4s ease, border-color 0.4s ease;
}
#nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  text-decoration:none; z-index:2;
  display:flex; align-items:center;
  flex-shrink:0; gap:0;
}
.logo-alk {
  font-family:'Syne',sans-serif; font-weight:700;
  font-size:1.1rem; letter-spacing:0.06em;
  color:rgba(255,255,255,0.9);
}
.logo-concept {
  font-family:'Syne',sans-serif; font-weight:700;
  font-size:1.1rem; letter-spacing:0.06em;
  color:var(--accent); margin-left:0.45em;
}
.nav-center {
  display:flex; gap:2.5rem; list-style:none;
  justify-content:center; align-items:center;
}
.nav-center a {
  font-size:0.82rem; font-weight:400;
  color:var(--muted); text-decoration:none;
  transition:color 0.3s; letter-spacing:0.02em;
  white-space:nowrap;
}
.nav-center a:hover { color:var(--white); }
.nav-cta {
  background: transparent;
  border: 1px solid var(--border2);
  color:var(--white); padding:0.55rem 1.4rem;
  font-size:0.8rem; font-weight:500;
  border-radius:100px; text-decoration:none;
  transition: all 0.3s ease; white-space:nowrap;
  backdrop-filter:blur(10px); flex-shrink:0;
}
.nav-cta:hover {
  background:var(--accent);
  border-color:var(--accent);
  box-shadow: 0 0 30px var(--glow);
}
.nav-toggle {
  display:none; background:none; border:none;
  color:var(--white); cursor:none; padding:0.4rem;
  grid-column:3;
}
.nav-toggle svg { width:22px; height:22px; }
.nav-mobile {
  display:none;
  position:fixed; inset:70px 0 0 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter:blur(20px);
  flex-direction:column; align-items:center; justify-content:center;
  gap:2.5rem; z-index:99;
}
.nav-mobile.open { display:flex; }
.nav-mobile a {
  font-family:'Syne',sans-serif; font-size:2rem; font-weight:700;
  color:var(--muted); text-decoration:none;
  transition:color 0.3s;
}
.nav-mobile a:hover { color:var(--accent); }

/* ── HERO ─── */
.hero {
  min-height: calc(100vh - 46px);
  display:grid; grid-template-columns:1fr 1fr;
  position:relative; overflow:hidden;
  padding-top:70px;
}
.hero-left {
  display:flex; flex-direction:column; justify-content:center;
  padding: 0 3rem 2rem 4rem;
  position:relative; z-index:2;
}
.hero-right {
  position:relative; overflow:hidden;
  background: linear-gradient(135deg, rgba(30,202,211,0.03) 0%, transparent 60%);
}

/* Mesh gradient background */
.hero::after {
  content:'';
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(30,202,211,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(30,202,211,0.02) 0%, transparent 60%);
  pointer-events:none;
}

.hero-badge {
  display:inline-flex; align-items:center; gap:0.6rem;
  background: rgba(30,202,211,0.08);
  border:1px solid rgba(30,202,211,0.2);
  border-radius:100px; padding:0.4rem 1rem 0.4rem 0.5rem;
  font-size:0.72rem; font-weight:500; letter-spacing:0.08em;
  color:var(--accent); margin-bottom:2rem;
  width:fit-content;
  animation: fadeUp 0.8s ease-out both;
}
.hero-badge-dot {
  width:6px; height:6px; border-radius:50%;
  background:var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-family:'Syne',sans-serif;
  font-size:clamp(3rem,5.5vw,5.5rem);
  font-weight:800; line-height:1.0;
  letter-spacing:-0.03em; margin-bottom:2rem;
  animation: fadeUp 0.8s ease-out 0.15s both;
}
.hero h1 .line1 { display:block; color:var(--white); }
.hero h1 .line2 {
  display:block;
  color:var(--bg);
  text-shadow:
    1px 0 0 rgba(255,255,255,0.85), -1px 0 0 rgba(255,255,255,0.85),
    0 1px 0 rgba(255,255,255,0.85), 0 -1px 0 rgba(255,255,255,0.85),
    0.7px 0.7px 0 rgba(255,255,255,0.85), -0.7px -0.7px 0 rgba(255,255,255,0.85),
    0.7px -0.7px 0 rgba(255,255,255,0.85), -0.7px 0.7px 0 rgba(255,255,255,0.85);
}
.hero h1 .line3 {
  display:block;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 50%, var(--accent) 100%);
  background-size:200% auto;
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
  animation: shimmer 4s linear infinite;
}

.hero-sub {
  font-size:1rem; color:var(--subtle); font-weight:300;
  max-width:38rem; line-height:1.7; margin-bottom:3rem;
  animation: fadeUp 0.8s ease-out 0.3s both;
}
.hero-actions {
  display:flex; gap:1rem; flex-wrap:wrap;
  animation: fadeUp 0.8s ease-out 0.45s both;
}
.btn-primary {
  background:var(--accent); color:#0A0A0A;
  padding:0.9rem 2.2rem; font-size:0.85rem; font-weight:600;
  border-radius:100px; text-decoration:none;
  transition:all 0.3s ease; display:inline-flex; align-items:center; gap:0.5rem;
  letter-spacing:0.02em; border:none; cursor:none;
  position:relative; overflow:hidden;
}
.btn-primary::after {
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.3),transparent);
  transform:translateX(-100%);
  transition:transform 0.5s;
}
.btn-primary:hover::after { transform:translateX(100%); }
.btn-primary:hover {
  background:var(--accent2);
  box-shadow:0 10px 40px var(--glow);
  transform:translateY(-2px);
}
.btn-ghost {
  background:transparent; color:var(--white);
  padding:0.9rem 2.2rem; font-size:0.85rem; font-weight:500;
  border-radius:100px; text-decoration:none; letter-spacing:0.02em;
  border:1px solid var(--border); transition:all 0.3s ease;
  display:inline-flex; align-items:center; gap:0.5rem;
}
.btn-ghost:hover {
  border-color:var(--accent);
  color:var(--accent);
  background:rgba(30,202,211,0.05);
}

.hero-stats {
  display:flex; gap:3rem; margin-top:4rem; padding-top:3rem;
  border-top:1px solid var(--border);
  animation: fadeUp 0.8s ease-out 0.6s both;
}
.hero-stat-val {
  font-family:'Syne',sans-serif;
  font-size:1.8rem; font-weight:700; color:var(--white);
  display:block; line-height:1;
}
.hero-stat-val span { color:var(--accent); }
.hero-stat-label {
  font-size:0.75rem; color:var(--muted); margin-top:0.3rem;
  display:block; letter-spacing:0.05em;
}

/* Hero visual — carousel */
.hero-visual {
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
}
.card-carousel {
  display:flex; flex-direction:column; align-items:center; gap:1.5rem;
  width:320px;
}
.card-slides {
  position:relative; width:100%; height:380px;
}
.c-card {
  position:absolute; inset:0;
  border-radius:24px; overflow:hidden;
  background: linear-gradient(135deg, var(--bg3) 0%, rgba(30,202,211,0.04) 100%);
  border:1px solid var(--border);
  padding:2rem;
  display:flex; flex-direction:column;
  opacity:0; transform:translateX(40px) scale(0.96);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events:none; cursor:default;
}
.c-card.active {
  opacity:1; transform:translateX(0) scale(1);
  pointer-events:auto;
}
.c-card.exit {
  opacity:0; transform:translateX(-40px) scale(0.96);
}
.c-card-num {
  font-family:'Syne',sans-serif; font-size:0.65rem; font-weight:700;
  color:var(--accent); letter-spacing:0.18em; margin-bottom:1.2rem;
}
.c-card-title {
  font-family:'Syne',sans-serif; font-size:1.35rem; font-weight:700;
  color:var(--white); line-height:1.2; margin-bottom:0.4rem;
}
.c-card-sub { font-size:0.78rem; color:var(--muted); margin-bottom:1.5rem; }
.c-card-line { height:1px; background:var(--border); margin-bottom:1.5rem; }
.c-card-items { display:flex; flex-direction:column; gap:0.75rem; flex:1; }
.c-card-item {
  display:flex; align-items:center; gap:0.6rem;
  font-size:0.8rem; color:var(--subtle);
}
.c-card-item::before {
  content:''; width:6px; height:6px; border-radius:50%;
  background:var(--accent); flex-shrink:0;
}
.c-card-footer {
  display:flex; justify-content:space-between; align-items:center;
  padding-top:1.5rem; border-top:1px solid var(--border); margin-top:auto;
}
.c-card-tag {
  font-size:0.68rem; padding:0.25rem 0.7rem; border-radius:100px;
  background:rgba(30,202,211,0.08); border:1px solid rgba(30,202,211,0.15);
  color:var(--accent); font-weight:500;
}
.c-card-price {
  font-family:'Syne',sans-serif; font-size:1rem; font-weight:700;
  color:var(--white);
}

/* Nav carousel */
.card-nav {
  display:flex; align-items:center; gap:1rem;
}
.card-btn {
  width:36px; height:36px; border-radius:50%;
  border:1px solid var(--border); background:transparent;
  color:var(--white); cursor:none;
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; transition:all 0.3s ease;
}
.card-btn:hover {
  border-color:var(--accent); background:rgba(30,202,211,0.1);
  color:var(--accent);
}
.card-dots { display:flex; gap:0.5rem; align-items:center; }
.card-dot {
  width:6px; height:6px; border-radius:50%;
  background:var(--border); transition:all 0.3s ease; cursor:none;
  border:none; padding:0;
}
.card-dot.active {
  background:var(--accent); width:20px; border-radius:3px;
}

/* Floating elements */
.float-el {
  position:absolute;
  border-radius:12px;
  backdrop-filter:blur(10px);
  border:1px solid var(--border);
  background:rgba(20,20,20,0.8);
  animation:float 6s ease-in-out infinite;
}
.float-el:nth-child(1) {
  top:15%; left:5%;
  padding:0.8rem 1.2rem;
  font-size:0.72rem; color:var(--subtle);
  animation-delay:-2s;
}
.float-el:nth-child(2) {
  bottom:20%; left:8%;
  padding:0.8rem 1.2rem;
  font-size:0.72rem; color:var(--subtle);
  animation-delay:-4s;
}
.float-accent {
  display:inline; color:var(--accent); font-weight:600;
}

/* ── TICKER ─── */
.ticker-wrap {
  background:var(--accent); padding:0.9rem 0; overflow:hidden;
  position:relative; z-index:2;
}
.ticker-inner {
  display:inline-flex; gap:0; white-space:nowrap;
  animation: scrollTicker 20s linear infinite;
}
.ticker-item {
  font-family:'Syne',sans-serif;
  font-size:0.72rem; font-weight:700;
  letter-spacing:0.18em; text-transform:uppercase;
  color:#0A0A0A; padding:0 3rem;
}
.ticker-sep { color:rgba(0,0,0,0.3); }

/* ── SECTIONS ─── */
.section {
  padding: clamp(5rem,8vw,10rem) clamp(1.5rem,5vw,4rem);
}
.section-inner { max-width:1200px; margin:0 auto; }

.label {
  font-size:0.68rem; font-weight:600; letter-spacing:0.2em;
  text-transform:uppercase; color:var(--accent);
  display:flex; align-items:center; gap:0.6rem;
  margin-bottom:1.2rem;
}
.label::before {
  content:''; width:2rem; height:1px; background:var(--accent);
}

h2.title {
  font-family:'Syne',sans-serif;
  font-size:clamp(2.2rem,4vw,3.5rem);
  font-weight:800; line-height:1.05;
  letter-spacing:-0.03em; margin-bottom:1.5rem;
}

/* ── ABOUT ─── */
.about-grid {
  display:grid; grid-template-columns:1fr 1.4fr;
  gap:6rem; align-items:start;
}
.about-sticky { position:sticky; top:100px; }

.card-glass {
  background: rgba(255,255,255,0.02);
  border:1px solid var(--border);
  border-radius:24px; overflow:hidden;
  backdrop-filter:blur(10px);
  transition:all 0.4s ease;
}
.card-glass:hover {
  border-color:rgba(30,202,211,0.3);
  box-shadow: 0 20px 60px rgba(30,202,211,0.08);
  transform:translateY(-4px);
}

.about-card-header {
  padding:2rem 2rem 1.5rem;
  background:linear-gradient(135deg,rgba(30,202,211,0.05) 0%,transparent 60%);
  border-bottom:1px solid var(--border);
  position:relative; overflow:hidden;
  display:flex; align-items:center; gap:1.2rem;
}
.avatar-photo-wrap {
  position:relative; flex-shrink:0;
}
.avatar-photo-wrap::before {
  content:'';
  position:absolute; inset:-10px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(30,202,211,0.3) 0%, transparent 70%);
  z-index:0;
}
.avatar-photo {
  width:110px; height:110px;
  position:relative; z-index:1;
  display:block;
}
.avatar-badge {
  position:absolute; bottom:2px; right:2px;
  width:28px; height:28px; border-radius:50%;
  background:linear-gradient(135deg,var(--accent),var(--accent3));
  display:flex; align-items:center; justify-content:center;
  font-family:'Syne',sans-serif; font-size:0.5rem; font-weight:800;
  color:#0A0A0A; z-index:2;
  border:2px solid #16161A;
}
.about-card-info { flex:1; }
.about-card-linkedin {
  padding:1rem 2rem;
  border-top:1px solid var(--border);
}
.linkedin-btn {
  display:inline-flex; align-items:center; gap:0.5rem;
  font-size:0.8rem; color:var(--accent);
  text-decoration:none; font-weight:500;
  transition:opacity 0.2s;
}
.linkedin-btn:hover { opacity:0.75; }
.about-card-name {
  font-family:'Syne',sans-serif; font-weight:700;
  font-size:1rem; color:var(--white); margin-bottom:0.2rem;
}
.about-card-role { font-size:0.82rem; color:var(--muted); }

.about-card-stats { padding:0 2rem; }
.stat-row {
  display:flex; justify-content:space-between; align-items:center;
  padding:0.9rem 0; border-bottom:1px solid var(--border2);
  font-size:0.82rem;
}
.stat-row:last-child { border-bottom:none; }
.stat-key { color:var(--muted); }
.stat-data { color:var(--white); font-weight:400; }

.about-text .lead {
  font-size:1.1rem; color:var(--subtle); line-height:1.75;
  margin-bottom:1.8rem; font-weight:300;
}
.about-text p {
  font-size:0.92rem; color:var(--muted); line-height:1.75;
  margin-bottom:1.2rem;
}

.highlight-card {
  background:rgba(30,202,211,0.04);
  border:1px solid rgba(30,202,211,0.15);
  border-radius:16px; padding:1.5rem;
  margin:2.5rem 0;
  transition:all 0.3s ease;
}
.highlight-card:hover {
  background:rgba(30,202,211,0.07);
  border-color:rgba(30,202,211,0.3);
}
.highlight-card p {
  font-size:0.92rem; color:var(--white); line-height:1.7;
  margin:0;
}

.timeline { margin-top:2.5rem; }
.tl-row {
  display:flex; gap:1.5rem;
  padding:1.2rem 0; border-bottom:1px solid var(--border2);
  align-items:center;
}
.tl-row:first-child { border-top:1px solid var(--border2); }
.tl-tag {
  font-family:'Syne',sans-serif; font-size:0.75rem; font-weight:700;
  color:var(--accent); min-width:3.5rem; letter-spacing:0.08em;
}
.tl-content { font-size:0.85rem; color:var(--muted); }

/* ── SERVICES ─── */
.services-section { border-top:1px solid var(--border); }
.services-head {
  display:grid; grid-template-columns:1fr 1fr;
  gap:4rem; align-items:end; margin-bottom:5rem;
}
.services-desc { font-size:0.95rem; color:var(--muted); line-height:1.7; padding-top:2rem; }

.services-grid {
  display:grid; grid-template-columns:repeat(2,1fr);
  gap:1.5px; background:var(--border);
  border-radius:24px; overflow:hidden;
}
.service-card {
  background:var(--bg);
  padding:2.8rem 2.5rem;
  position:relative; overflow:hidden;
  transition:all 0.4s ease;
  cursor:default;
}
.service-card::before {
  content:'';
  position:absolute; top:0; left:0; right:0;
  height:2px;
  background:linear-gradient(90deg,transparent,var(--accent),transparent);
  transform:scaleX(0); transform-origin:left;
  transition:transform 0.4s ease;
}
.service-card:hover::before { transform:scaleX(1); }
.service-card:hover {
  background:var(--bg3);
}
.service-card::after {
  content:'';
  position:absolute; top:-40px; right:-40px;
  width:160px; height:160px; border-radius:50%;
  background:radial-gradient(circle,rgba(30,202,211,0.04) 0%,transparent 70%);
  transition:opacity 0.4s;
  opacity:0;
}
.service-card:hover::after { opacity:1; }

.service-icon {
  width:48px; height:48px; border-radius:12px;
  border:1px solid var(--border);
  background:rgba(30,202,211,0.05);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:1.8rem;
  transition:all 0.3s;
}
.service-card:hover .service-icon {
  background:rgba(30,202,211,0.1);
  border-color:rgba(30,202,211,0.3);
}
.service-icon svg { width:22px; height:22px; stroke:var(--accent); fill:none; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }

.service-num {
  font-family:'Syne',sans-serif; font-size:0.65rem; font-weight:700;
  color:var(--accent); letter-spacing:0.15em; margin-bottom:0.8rem;
}
.service-name {
  font-family:'Syne',sans-serif; font-size:1.2rem; font-weight:700;
  color:var(--white); margin-bottom:0.8rem; line-height:1.2;
}
.service-desc {
  font-size:0.85rem; color:var(--muted); line-height:1.7;
  margin-bottom:1.8rem;
}
.service-footer {
  display:flex; justify-content:space-between; align-items:center;
  padding-top:1.5rem; border-top:1px solid var(--border2);
}
.service-tag {
  font-size:0.7rem; font-weight:500; padding:0.3rem 0.8rem;
  border-radius:100px; background:rgba(30,202,211,0.08);
  border:1px solid rgba(30,202,211,0.15);
  color:var(--accent);
}
.service-price {
  font-family:'Syne',sans-serif; font-size:0.9rem; font-weight:700;
  color:var(--white);
}

/* ── WHY ─── */
.why-section { background:var(--bg2); }
.why-head {
  display:flex; justify-content:space-between; align-items:flex-end;
  margin-bottom:5rem; gap:2rem; flex-wrap:wrap;
}
.why-sub { max-width:36rem; font-size:0.92rem; color:var(--muted); line-height:1.7; }

.why-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1.5px; background:var(--border);
  border-radius:24px; overflow:hidden;
}
.why-card {
  background:var(--bg2); padding:2.5rem 2rem;
  transition:all 0.3s ease; position:relative; overflow:hidden;
}
.why-card:hover {
  background:var(--bg3);
}
.why-card:hover .why-num-big {
  opacity:0.08;
}
.why-num-big {
  position:absolute; right:-0.5rem; bottom:-1rem;
  font-family:'Syne',sans-serif; font-size:6rem; font-weight:800;
  color:var(--accent); opacity:0.04; line-height:1; pointer-events:none;
  transition:opacity 0.3s;
}
.why-tag {
  font-family:'Syne',sans-serif; font-size:0.65rem; font-weight:700;
  color:var(--accent); letter-spacing:0.15em; margin-bottom:1.5rem; display:block;
}
.why-card h3 {
  font-family:'Syne',sans-serif; font-size:1rem; font-weight:700;
  color:var(--white); margin-bottom:0.8rem;
}
.why-card p { font-size:0.83rem; color:var(--muted); line-height:1.7; }

/* ── COUNTER BAND ─── */
.counter-band {
  background:linear-gradient(135deg,rgba(30,202,211,0.04) 0%,rgba(30,202,211,0.01) 100%);
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  padding:4rem clamp(1.5rem,5vw,4rem);
}
.counter-inner {
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:2rem;
}
.counter-item { text-align:center; }
.counter-val {
  font-family:'Syne',sans-serif;
  font-size:clamp(2rem,3.5vw,3rem); font-weight:800;
  color:var(--white); line-height:1.1; display:block;
}
.counter-val .accent { color:var(--accent); font-size:0.85em; }
.counter-label {
  font-size:0.78rem; color:var(--muted); margin-top:0.5rem; display:block;
  letter-spacing:0.05em;
}

/* ── PROCESSUS ── */
.process-section { border-top:1px solid var(--border); }
.process-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:0;
  margin-top:3rem; border:1px solid var(--border); border-radius:16px;
  overflow:hidden;
}
.process-step {
  padding:2rem 1.5rem; border-right:1px solid var(--border);
  position:relative; transition:background 0.3s;
}
.process-step:last-child { border-right:none; }
.process-step:hover { background:rgba(30,202,211,0.04); }
.process-num {
  font-family:'Syne',sans-serif; font-size:2.5rem; font-weight:800;
  color:rgba(30,202,211,0.15); line-height:1; margin-bottom:1.2rem;
}
.process-icon {
  width:40px; height:40px; border-radius:10px;
  background:rgba(30,202,211,0.08); border:1px solid rgba(30,202,211,0.15);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:1rem; color:var(--accent);
}
.process-step h4 {
  font-family:'Syne',sans-serif; font-size:0.95rem; font-weight:700;
  color:var(--white); margin-bottom:0.5rem;
}
.process-step p { font-size:0.82rem; color:var(--muted); line-height:1.6; }
.process-arrow {
  position:absolute; top:50%; right:-1px;
  transform:translateY(-50%);
  color:var(--accent); font-size:0.8rem; opacity:0.4;
  z-index:1;
}

/* ── RÉALISATIONS ── */
.realisations-section { border-top:1px solid var(--border); }
.real-grid {
  display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem;
  margin-top:3rem;
}
.real-card {
  border-radius:16px; overflow:hidden;
  border:1px solid var(--border2);
  background:var(--bg2);
  transition:transform 0.3s, box-shadow 0.3s;
  text-decoration:none; display:block;
}
.real-card:hover {
  transform:translateY(-4px);
  box-shadow:0 20px 60px rgba(30,202,211,0.08);
}
.real-preview {
  height:200px; position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.real-preview-emily {
  background:linear-gradient(135deg, #f5f0e8 0%, #e8dcc8 50%, #c4d4b8 100%);
}
.real-preview-placeholder {
  background:linear-gradient(135deg, rgba(30,202,211,0.1) 0%, rgba(30,202,211,0.03) 100%);
  border:2px dashed rgba(30,202,211,0.2);
}
.real-preview-logo {
  font-family:'Syne',sans-serif; font-size:1.2rem; font-weight:800;
  color:#2d4a2a; opacity:0.5; letter-spacing:0.1em;
}
.real-preview-coming {
  font-size:0.85rem; color:var(--muted);
}
.real-card-body { padding:1.5rem; }
.real-card-tags { display:flex; gap:0.5rem; margin-bottom:0.8rem; flex-wrap:wrap; }
.real-tag {
  font-size:0.72rem; padding:0.2rem 0.6rem; border-radius:20px;
  background:rgba(30,202,211,0.08); color:var(--accent);
  border:1px solid rgba(30,202,211,0.15); font-weight:500;
}
.real-card-title {
  font-family:'Syne',sans-serif; font-size:1.1rem; font-weight:700;
  color:var(--white); margin-bottom:0.4rem;
}
.real-card-desc { font-size:0.83rem; color:var(--muted); line-height:1.6; margin-bottom:1rem; }
.real-card-link {
  font-size:0.8rem; color:var(--accent); font-weight:500;
  display:inline-flex; align-items:center; gap:0.3rem;
}

@media(max-width:900px) {
  .process-grid { grid-template-columns:repeat(2,1fr); }
  .process-step { border-bottom:1px solid var(--border); }
  .process-step:nth-child(2) { border-right:none; }
  .process-step:nth-child(3) { border-bottom:none; }
  .process-step:nth-child(4) { border-right:none; border-bottom:none; }
  .real-grid { grid-template-columns:1fr; }
}
@media(max-width:600px) {
  .process-grid { grid-template-columns:1fr; }
  .process-step { border-right:none; border-bottom:1px solid var(--border); }
  .process-step:last-child { border-bottom:none; }
}

/* ── AVANT / APRÈS ─── */
.ba-section { border-top:1px solid var(--border); }
.ba-wrap {
  margin-top:3rem;
  position:relative;
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--border);
  aspect-ratio:16/9.5;
  user-select:none;
  cursor:ew-resize;
  touch-action:none;
  box-shadow:0 30px 80px rgba(0,0,0,0.5);
}
.ba-chrome {
  position:absolute; top:0; left:0; right:0; height:40px;
  background:#141417;
  border-bottom:1px solid var(--border);
  display:flex; align-items:center; gap:0.45rem;
  padding:0 1rem;
  z-index:7;
}
.ba-chrome .cdot { width:10px; height:10px; border-radius:50%; flex-shrink:0; }
.ba-chrome .cdot:nth-child(1) { background:#FF5F57; }
.ba-chrome .cdot:nth-child(2) { background:#FEBC2E; }
.ba-chrome .cdot:nth-child(3) { background:#28C840; }
.ba-chrome .url {
  flex:1; max-width:280px; margin:0 auto;
  height:22px; border-radius:20px;
  background:rgba(255,255,255,0.06);
  font-size:0.64rem; color:var(--muted);
  display:flex; align-items:center; justify-content:center;
  gap:0.3rem; letter-spacing:0.04em;
}
.ba-chrome .url .lock { color:var(--accent); font-size:0.6rem; }
.ba-side {
  position:absolute; inset:40px 0 0 0;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap:0.8rem;
}
.ba-before {
  background:#E8E4DC;
  color:#777;
  font-family:'Times New Roman', serif;
}
.ba-before .ba-fake-title { font-size:clamp(1.1rem,3vw,1.9rem); color:#333; font-weight:bold; text-decoration:underline; }

.ba-before .ba-fake-btn {
  background:#d4d0c8; border:2px outset #fff;
  padding:0.3rem 1.1rem; font-size:0.75rem; color:#333;
}
.ba-content {
  transition:opacity 0.25s ease, transform 0.25s ease;
}
/* mini-page : structure commune aux deux côtés */
.ba-page {
  position:absolute; top:0; bottom:0;
  width:50%;
  display:flex; flex-direction:column;
  justify-content:space-between;
  align-items:stretch;
  padding:2.6rem 1.4rem 1rem;
}
.ba-before .ba-page { left:0; }
.ba-after .ba-page { right:0; }
.ba-page-mid {
  display:flex; flex-direction:column;
  align-items:center; gap:0.7rem;
  text-align:center;
}
/* ── côté avant : vieux site ── */
.old-head {
  display:flex; flex-direction:column; align-items:center; gap:0.25rem;
  border-bottom:1px solid #c9c3b6;
  padding-bottom:0.5rem;
}
.old-title {
  font-size:clamp(0.6rem,1.2vw,0.85rem);
  font-weight:bold; color:#444;
}
.old-links {
  font-size:clamp(0.5rem,1vw,0.72rem);
  color:#1a0dab;
}
.old-lines { width:70%; max-width:260px; }
.old-lines i {
  display:block; height:5px; border-radius:2px;
  background:#cfc9bc; margin:5px auto;
}
.old-foot {
  font-size:clamp(0.45rem,0.9vw,0.65rem);
  color:#999; font-family:'Courier New',monospace;
  text-align:center;
  border-top:1px solid #d8d2c5;
  padding-top:0.45rem;
}
/* ── côté après : site moderne ── */
.new-head {
  display:flex; align-items:center; justify-content:space-between;
  border-bottom:1px solid rgba(255,255,255,0.08);
  padding-bottom:0.5rem;
}
.new-logo {
  font-family:'Syne',sans-serif; font-weight:700;
  font-size:clamp(0.55rem,1.1vw,0.78rem);
  color:var(--white); letter-spacing:0.04em;
}
.new-logo b { color:var(--accent); font-weight:700; }
.new-links { display:flex; gap:0.5rem; }
.new-links i {
  display:block; width:clamp(14px,2.2vw,26px); height:4px;
  border-radius:2px; background:rgba(255,255,255,0.14);
}
.new-lines { width:70%; max-width:240px; }
.new-lines i {
  display:block; height:5px; border-radius:2px;
  background:rgba(255,255,255,0.1); margin:5px auto;
}
.ba-new-badge {
  display:inline-flex; align-items:center; gap:0.4rem;
  font-size:clamp(0.5rem,1vw,0.68rem);
  font-weight:500; letter-spacing:0.06em; text-transform:uppercase;
  color:var(--accent);
  border:1px solid rgba(30,202,211,0.3);
  border-radius:30px; padding:0.2rem 0.7rem;
  background:rgba(30,202,211,0.07);
}
.ba-new-badge .dot {
  width:5px; height:5px; border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 8px var(--accent);
  animation:blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.3; } }
.new-foot {
  display:flex; gap:0.45rem; justify-content:center; flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,0.08);
  padding-top:0.45rem;
}
.new-foot span {
  font-size:clamp(0.45rem,0.9vw,0.65rem);
  color:var(--subtle);
  border:1px solid var(--border);
  border-radius:20px; padding:0.15rem 0.6rem;
  background:rgba(255,255,255,0.03);
}
.ba-badge {
  position:absolute; top:0.9rem;
  font-size:0.65rem; font-weight:600; letter-spacing:0.18em; text-transform:uppercase;
  padding:0.32rem 0.85rem; border-radius:30px;
}
.ba-before .ba-badge { left:1.1rem; background:rgba(0,0,0,0.75); color:#fff; }
.ba-after-clip {
  position:absolute; inset:40px 0 0 0;
  clip-path:inset(0 0 0 50%);
}
.ba-after {
  inset:0;
  background:radial-gradient(900px circle at 70% 30%, rgba(30,202,211,0.14), transparent 50%), var(--bg);
  color:var(--white);
}
.ba-after .ba-badge { right:1.1rem; background:var(--accent); color:#0A0A0A; }
.ba-after .ba-fake-title {
  font-family:'Syne',sans-serif; font-weight:800;
  font-size:clamp(1.3rem,3.2vw,2.2rem); letter-spacing:-0.02em;
}
.ba-after .ba-fake-title .c { color:var(--accent); }

.ba-after .ba-fake-btn {
  background:var(--accent); color:#0A0A0A; font-weight:600;
  padding:0.5rem 1.4rem; border-radius:40px; font-size:0.75rem;
  border:none;
}
.ba-handle {
  position:absolute; top:40px; bottom:0;
  left:50%;
  width:1.5px; background:var(--accent);
  z-index:6;
  box-shadow:0 0 16px rgba(30,202,211,0.55);
}
.ba-handle::after {
  content:'‹ ›';
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:38px; height:38px;
  background:var(--accent); color:#0A0A0A;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:0.85rem; font-weight:800;
  letter-spacing:0.05em;
  box-shadow:0 0 0 4px rgba(10,10,10,0.55), 0 6px 22px rgba(0,0,0,0.5);
  transition:transform 0.2s;
}
.ba-wrap:hover .ba-handle::after { transform:translate(-50%,-50%) scale(1.08); }

/* ── CALCULATEUR ─── */
.calc-section { border-top:1px solid var(--border); }
.calc {
  margin-top:3rem;
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:1.4rem;
}
.calc-options { display:flex; flex-direction:column; gap:0.8rem; }
.calc-opt {
  display:flex; align-items:center; justify-content:space-between;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.02);
  border-radius:14px;
  padding:1.1rem 1.3rem;
  cursor:pointer;
  transition:border-color 0.25s, background 0.25s, transform 0.25s;
}
.calc-opt:hover { transform:translateX(4px); }
.calc-opt.on {
  border-color:var(--accent);
  background:rgba(30,202,211,0.07);
}
.calc-opt .l { display:flex; flex-direction:column; gap:0.1rem; }
.calc-opt .name { font-weight:500; font-size:0.92rem; color:var(--white); }
.calc-opt .desc { font-size:0.74rem; color:var(--muted); }
.calc-opt .p { font-family:'Syne',sans-serif; font-weight:700; font-size:0.88rem; color:var(--subtle); white-space:nowrap; margin-left:1rem; }
.calc-opt.on .p { color:var(--accent); }
.calc-check {
  width:22px; height:22px; border-radius:7px;
  border:1.5px solid var(--muted);
  margin-right:1rem;
  flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-size:0.72rem; color:#0A0A0A;
  transition:all 0.25s;
}
.calc-opt.on .calc-check { background:var(--accent); border-color:var(--accent); }
.calc-opt.on .calc-check::after { content:'✓'; font-weight:700; }
.calc-result {
  border:1px solid rgba(30,202,211,0.3);
  background:linear-gradient(160deg, rgba(30,202,211,0.08), rgba(30,202,211,0.015));
  border-radius:18px;
  padding:2.2rem 1.8rem;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  text-align:center;
  position:sticky; top:100px;
  height:fit-content;
}
.calc-result .lbl { font-size:0.72rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--subtle); margin-bottom:0.7rem; }
.calc-total {
  font-family:'Syne',sans-serif; font-weight:800;
  font-size:clamp(2.2rem,4.5vw,3.2rem);
  letter-spacing:-0.02em;
  color:var(--accent);
  line-height:1;
  margin-bottom:0.4rem;
}
.calc-note { font-size:0.74rem; color:var(--muted); margin-bottom:1.6rem; max-width:240px; }
.calc-cta {
  background:var(--accent); color:#0A0A0A;
  padding:0.85rem 1.9rem; font-size:0.83rem; font-weight:600;
  border-radius:100px; text-decoration:none;
  transition:transform 0.3s, box-shadow 0.3s;
  display:inline-block;
}
.calc-cta:hover { transform:translateY(-2px); box-shadow:0 10px 36px rgba(30,202,211,0.4); }

@media(max-width:820px) {
  .calc { grid-template-columns:1fr; }
  .calc-result { position:static; }
  .ba-wrap { aspect-ratio:4/3.4; }
  .old-head, .old-foot, .new-head, .new-foot { display:none; }
  .old-lines, .new-lines { display:none; }
  .ba-page { justify-content:center; padding:2.4rem 0.8rem 0.8rem; }
  .ba-before .ba-fake-title, .ba-after .ba-fake-title { font-size:0.92rem !important; max-width:85%; text-align:center; }
  .ba-fake-btn { font-size:0.65rem !important; }
}

/* ── STATUT PROJETS ─── */
.proj-status {
  position:absolute; top:1rem; right:1rem; z-index:2;
  display:inline-flex; align-items:center; gap:0.45rem;
  font-size:0.68rem; font-weight:600; letter-spacing:0.06em;
  padding:0.3rem 0.8rem; border-radius:30px;
  backdrop-filter:blur(6px);
}
.proj-status .dot { width:6px; height:6px; border-radius:50%; background:currentColor; }
.status-live { background:rgba(34,197,94,0.14); color:#22c55e; border:1px solid rgba(34,197,94,0.25); }
.status-wip { background:rgba(250,204,21,0.12); color:#facc15; border:1px solid rgba(250,204,21,0.25); }
.status-wip .dot { animation:blinkDot 1.6s ease-in-out infinite; }
@keyframes blinkDot { 0%,100% { opacity:1; } 50% { opacity:0.25; } }

/* ── CONTACT ─── */
.contact-section { border-top:1px solid var(--border); }

/* ── TARIFS ── */
.tarifs-section { border-top:1px solid var(--border); }
.tarifs-intro { text-align:center; margin-bottom:3.5rem; }
.tarifs-intro .label { margin-bottom:0.5rem; }
.tarifs-intro .title { margin-bottom:1rem; }
.tarifs-intro p { color:var(--subtle); max-width:520px; margin:0 auto; }

.tarifs-grid {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:1.5rem;
  margin-bottom:3rem;
}

.tarif-card {
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:16px;
  padding:2rem 1.5rem;
  display:flex;
  flex-direction:column;
  gap:1rem;
  transition:transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position:relative;
  overflow:hidden;
}
.tarif-card::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:2px;
  background:linear-gradient(90deg, var(--accent), transparent);
  opacity:0;
  transition:opacity 0.3s ease;
}
.tarif-card:hover { transform:translateY(-6px); border-color:rgba(30,202,211,0.3); box-shadow:0 20px 40px rgba(30,202,211,0.08); }
.tarif-card:hover::before { opacity:1; }

.tarif-icon { display:flex; align-items:center; justify-content:flex-start; }
.tarif-name { font-family:'Syne',sans-serif; font-size:1.1rem; font-weight:700; color:var(--white); }
.tarif-desc { font-size:0.85rem; color:var(--subtle); line-height:1.6; flex:1; }
.tarif-price { font-family:'Syne',sans-serif; font-size:1.8rem; font-weight:800; color:var(--accent); }
.tarif-price span { font-size:0.85rem; font-weight:400; color:var(--subtle); }
.tarif-includes { list-style:none; display:flex; flex-direction:column; gap:0.4rem; }
.tarif-includes li { font-size:0.82rem; color:var(--subtle); display:flex; align-items:flex-start; gap:0.5rem; }
.tarif-includes li::before { content:'✓'; color:var(--accent); font-weight:700; flex-shrink:0; }

/* PACKS */
.packs-title {
  text-align:center;
  font-family:'Syne',sans-serif;
  font-size:1.3rem;
  font-weight:700;
  color:var(--white);
  margin-bottom:1.5rem;
}
.packs-title span { color:var(--accent); }

.packs-grid {
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:1.5rem;
  max-width:800px;
  margin:0 auto 3rem;
}

.pack-card {
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:16px;
  padding:2rem;
  display:flex;
  flex-direction:column;
  gap:1rem;
  transition:transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position:relative;
  overflow:hidden;
}
.pack-card.featured {
  border-color:rgba(30,202,211,0.4);
  background:linear-gradient(135deg, rgba(30,202,211,0.05), var(--bg2));
}
.pack-badge {
  position:absolute;
  top:16px; right:16px;
  background:var(--accent);
  color:#000;
  font-size:0.7rem;
  font-weight:700;
  padding:3px 10px;
  border-radius:20px;
  text-transform:uppercase;
  letter-spacing:0.05em;
}
.pack-card:hover { transform:translateY(-6px); border-color:rgba(30,202,211,0.4); box-shadow:0 20px 40px rgba(30,202,211,0.08); }
.pack-name { font-family:'Syne',sans-serif; font-size:1.3rem; font-weight:700; color:var(--white); }
.pack-content { font-size:0.85rem; color:var(--subtle); }
.pack-price { font-family:'Syne',sans-serif; font-size:2.2rem; font-weight:800; color:var(--accent); }
.pack-price span { font-size:0.85rem; font-weight:400; color:var(--subtle); }
.pack-includes { list-style:none; display:flex; flex-direction:column; gap:0.5rem; }
.pack-includes li { font-size:0.85rem; color:var(--subtle); display:flex; align-items:flex-start; gap:0.5rem; }
.pack-includes li::before { content:'✓'; color:var(--accent); font-weight:700; flex-shrink:0; }

.tarifs-note {
  text-align:center;
  color:var(--muted);
  font-size:0.85rem;
}
.tarifs-note a {
  color:var(--accent);
  text-decoration:none;
}
.tarifs-note a:hover { text-decoration:underline; }

@media(max-width:1000px) {
  .tarifs-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:600px) {
  .tarifs-grid { grid-template-columns:1fr; }
  .packs-grid { grid-template-columns:1fr; }
}
.contact-grid {
  display:grid; grid-template-columns:1fr 1.2fr;
  gap:6rem; align-items:start;
}

.contact-info { margin-top:3rem; }
.info-block {
  padding:1.2rem 0; border-bottom:1px solid var(--border2);
}
.info-block:first-child { border-top:1px solid var(--border2); }
.info-key {
  font-size:0.65rem; font-weight:600; letter-spacing:0.18em;
  text-transform:uppercase; color:var(--accent); margin-bottom:0.4rem;
}
.info-val {
  font-size:0.95rem; color:var(--white);
}
.info-val a {
  color:var(--white); text-decoration:none; transition:color 0.3s;
}
.info-val a:hover { color:var(--accent); }

.form-wrap { margin-top:3rem; }
.form-title {
  font-family:'Syne',sans-serif; font-size:1.6rem; font-weight:700;
  color:var(--white); margin-bottom:2rem; line-height:1.2;
}
.form { display:flex; flex-direction:column; gap:1rem; }
.form-2 { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.field { display:flex; flex-direction:column; gap:0.4rem; }
.field label {
  font-size:0.65rem; font-weight:600; letter-spacing:0.15em;
  text-transform:uppercase; color:var(--muted);
}
.field input, .field textarea, .field select {
  background:rgba(255,255,255,0.03);
  border:1px solid var(--border);
  color:var(--white); padding:0.9rem 1.1rem;
  font-family:'Inter',sans-serif; font-size:0.9rem; font-weight:300;
  border-radius:12px; outline:none;
  transition:border-color 0.3s, background 0.3s;
  -webkit-appearance:none;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color:rgba(30,202,211,0.5);
  background:rgba(30,202,211,0.03);
}
.field select option { background:#1a1a1a; }
.field textarea { min-height:130px; resize:vertical; }
.form-btn {
  background:var(--accent); color:#0A0A0A;
  padding:1rem 2.5rem; font-family:'Inter',sans-serif;
  font-size:0.85rem; font-weight:700; letter-spacing:0.05em;
  cursor:none; border:none; border-radius:100px;
  align-self:flex-start; transition:all 0.3s ease;
  display:inline-flex; align-items:center; gap:0.5rem;
  position:relative; overflow:hidden;
}
.form-btn::after {
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.3),transparent);
  transform:translateX(-100%); transition:transform 0.5s;
}
.form-btn:hover::after { transform:translateX(100%); }
.form-btn:hover {
  background:var(--accent2);
  box-shadow:0 10px 40px var(--glow);
  transform:translateY(-2px);
}

/* ── FOOTER ─── */
footer {
  background:var(--bg); border-top:1px solid var(--border);
  padding:2.5rem clamp(1.5rem,5vw,4rem);
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:1.5rem;
}
.footer-logo {
  font-family:'Syne',sans-serif; font-size:0.9rem; font-weight:700;
  letter-spacing:0.12em; color:var(--white);
  display:flex; align-items:center; gap:0.5rem;
}
.footer-logo .dot { width:6px; height:6px; border-radius:50%; background:var(--accent); }
.footer-copy { font-size:0.75rem; color:var(--muted); }

/* ── REVEAL ─── */
.reveal { opacity:0; transform:translateY(30px); }
.reveal.in {
  animation: fadeUp 0.9s cubic-bezier(.16,1,.3,1) forwards;
}

/* ── RESPONSIVE ─── */
@media (max-width:1000px) {
  /* Nav */
  #nav {
    padding: 0 1.25rem;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .nav-center { display:none; }
  .nav-cta { display:none; }
  .nav-toggle { display:flex; grid-column:auto; }

  /* Hero */
  .hero { grid-template-columns:1fr; min-height:calc(100vh - 46px); }
  .hero-left {
    padding: 2rem 1.25rem 2rem;
    text-align:center; align-items:center;
  }
  .hero-right { display:none; }
  .hero-stats { justify-content:center; flex-wrap:wrap; gap:2rem; }
  .hero-actions { justify-content:center; }
  .hero h1 { font-size: clamp(1.7rem,7.4vw,4rem); }
  .hero-sub { font-size:0.95rem; }

  /* Sections */
  .section { padding: 2.5rem 1.25rem; }
  .section-inner { padding:0; }

  /* About */
  .about-grid { grid-template-columns:1fr; gap:2.5rem; }
  .about-sticky { position:static; }

  /* Services */
  .services-head { grid-template-columns:1fr; gap:1rem; }
  .services-grid { grid-template-columns:1fr; }

  /* Why */
  .why-grid { grid-template-columns:1fr 1fr; }

  /* Counter */
  .counter-band { padding: 3rem 1.25rem; }
  .counter-inner { grid-template-columns:repeat(2,1fr); gap:2rem; }

  /* Contact */
  .contact-grid { grid-template-columns:1fr; gap:2.5rem; }
  .form-wrap { margin-top:0; }

  /* Footer */
  footer { padding: 2rem 1.25rem; }
}

@media (max-width:600px) {
  /* Nav */
  #nav { padding: 0 1rem; }

  /* Hero — tout doit rester dans l'écran */
  .hero { overflow:hidden; }
  .hero-left {
    padding: 1rem 1.2rem 2rem;
    width: 100%; max-width: 100%;
  }
  .hero-badge {
    font-size: 0.6rem;
    white-space: normal;
    text-align: center;
    justify-content: center;
    max-width: 100%;
    padding: 0.4rem 0.8rem;
  }
  .hero h1 {
    font-size: clamp(1.6rem, 7.4vw, 2.6rem);
    letter-spacing: -0.02em;
    word-break: keep-all;
    width: 100%;
  }
  .hero-sub {
    font-size: 0.88rem;
    max-width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%; gap: 0.75rem;
  }
  .btn-primary, .btn-ghost {
    width: 100%; justify-content: center;
    padding: 0.85rem 1rem; font-size: 0.85rem;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem; width: 100%;
    padding-top: 1.5rem; margin-top: 1.5rem;
  }
  .hero-stats > div:last-child {
    grid-column: span 2; text-align: center;
  }
  .hero-stat-val { font-size: 1.5rem; }
  .hero-stat-label { font-size: 0.7rem; }

  /* Sections */
  .section { padding: 2rem 1.2rem; }
  h2.title { font-size: clamp(1.8rem, 8vw, 2.5rem); }

  /* About */
  .about-card-header { padding: 1.2rem 1.2rem 0.8rem; }
  .about-card-stats { padding: 0 1.2rem; }

  /* Services — layout horizontal compact */
  .services-grid { gap: 0.5rem; }
  .service-card { padding: 1rem; display: grid; grid-template-columns: 40px 1fr; grid-template-rows: auto auto; column-gap: 0.9rem; align-items: start; }
  .service-icon { width: 40px; height: 40px; margin-bottom: 0; border-radius: 10px; grid-row: 1 / 3; }
  .service-icon svg { width: 18px; height: 18px; }
  .service-num { display: none; }
  .service-name { font-size: 0.95rem; margin-bottom: 0.2rem; }
  .service-desc { font-size: 0.78rem; line-height: 1.45; margin-bottom: 0.6rem; }
  .service-footer { padding-top: 0.6rem; grid-column: 2; }
  .service-price { font-size: 0.85rem; }
  .service-tag { font-size: 0.65rem; }

  /* Why */
  .why-grid { grid-template-columns:1fr 1fr; gap:0.6rem; }
  .why-card { padding: 1rem 0.8rem; }
  .why-num-big { font-size: 2.8rem; opacity: 0.1; bottom: -0.3rem; right: 0.2rem; }
  .why-tag { font-size: 0.6rem; margin-bottom: 0.5rem; }
  .why-card h3 { font-size: 0.9rem; margin-bottom: 0.4rem; }
  .why-card p { font-size: 0.78rem; line-height: 1.5; }
  .why-head { flex-direction:column; gap:0.75rem; }

  /* Tarifs */
  .tarifs-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .tarif-card { padding: 1rem 0.85rem; gap: 0.5rem; border-radius: 12px; }
  .tarif-icon svg { width: 20px; height: 20px; }
  .tarif-name { font-size: 0.88rem; }
  .tarif-desc { display: none; }
  .tarif-price { font-size: 1.3rem; }
  .tarif-price span { font-size: 0.7rem; }
  .tarif-includes li { font-size: 0.72rem; line-height: 1.4; }
  .tarif-includes li:nth-child(n+3) { display: none; }

  /* Counter */
  .counter-band { padding: 1.5rem 1.2rem; }
  .counter-inner { grid-template-columns:1fr 1fr; gap:1rem; }
  .counter-val { font-size: clamp(1.5rem, 7vw, 2rem); }

  /* Contact */
  .form-2 { grid-template-columns:1fr; }
  .contact-grid { gap:1.5rem; }
  .form-title { font-size:1.3rem; }
  .contact-info { margin-top:1rem; }

  /* Footer */
  footer { flex-direction:column; align-items:flex-start; gap:0.8rem; padding:1.5rem 1.2rem; }
}
