/* ============================================================
   SORYADEV — style.css
   Charte : #2F7F80 (teal), #0B0F10 (noir), #F4F6F6 (blanc doux)
   Police : Poppins
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────── */
:root {
  --teal:        #2F7F80;
  --teal-light:  #4FB3B3;
  --teal-glow:   rgba(47, 127, 128, 0.18);
  --black:       #0B0F10;
  --black-2:     #1F2A2B;
  --white:       #F4F6F6;
  --gray:        #9CA3AF;
  --gray-dark:   #2d3a3b;

  --font: 'Poppins', sans-serif;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:     0 8px 40px rgba(0,0,0,0.35);
}

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

/* ── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ── TYPOGRAPHY HELPERS ───────────────────────────────── */
.highlight { color: var(--teal-light); }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-light);
  background: rgba(79, 179, 179, 0.1);
  border: 1px solid rgba(79, 179, 179, 0.25);
  border-radius: 50px;
  padding: 5px 16px;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 56px;
}
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
section { padding: 100px 0; }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn-primary,
.btn-secondary,
.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  border: none;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(47, 127, 128, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--gray-dark);
}
.btn-secondary:hover {
  border-color: var(--teal-light);
  color: var(--teal-light);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-nav {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 22px;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}
.btn-nav:hover { background: var(--teal-light); }

/* ── NAVBAR ────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition);
}
#navbar.scrolled {
  background: rgba(11, 15, 16, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(47, 127, 128, 0.15);
}


.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo .logo-img {
  height: 90px;
  width: auto;
  transition: opacity var(--transition) display var(--transition);
}
.nav-logo .logo-img-only {
  height: 70px;
  width: auto;
  transition: opacity var(--transition) display var(--transition);
  display: none;
  position: relative;
  left: 20px;

}

#navbar.scrolled .nav-logo .logo-img {
display: none;
}

#navbar.scrolled .nav-logo .logo-img-only{
display: block;
}

.nav-logo:hover .logo-img { opacity: 0.8; 
transition: opacity var(--transition)}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  transition: color var(--transition);
}
.nav-links li a:hover,
.nav-links li a.nav-active { color: var(--white); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO (accueil) ────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 160px 32px 120px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0; pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(47,127,128,0.22) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 6s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50%       { opacity: 1;   transform: translateX(-50%) scale(1.08); }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(47,127,128,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,127,128,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--teal-light);
  background: rgba(79, 179, 179, 0.1);
  border: 1px solid rgba(79, 179, 179, 0.3);
  border-radius: 50px;
  padding: 6px 18px;
  margin-bottom: 28px;
  animation: fadeDown 0.8s ease both;
}
/*.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--teal-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--teal-light);
  animation: blink 1.6s ease-in-out infinite;
}*/
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
#hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeUp 0.9s 0.15s ease both;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto 40px;
  animation: fadeUp 0.9s 0.3s ease both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeUp 0.9s 0.45s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.6s ease both;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal-light);
}
.stat-label { font-size: 0.8rem; color: var(--gray); }
.stat-divider { width: 1px; height: 40px; background: var(--gray-dark); }
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  animation: fadeUp 1s 0.9s ease both;
  z-index: 1;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gray), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

/* ── PAGE HERO (pages intérieures) ─────────────────────── */
.page-hero {
  position: relative;
  padding: 160px 32px 100px;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  z-index: 0; pointer-events: none;
}
.page-hero-bg .hero-glow {
  top: -80px;
  width: 500px; height: 500px;
}
.page-hero-content {
  position: relative; z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeUp 0.8s ease both;
}
.page-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero-content p {
  font-size: 1.05rem;
  color: var(--gray);
}

/* ── CTA STRIP ─────────────────────────────────────────── */
.cta-strip {
  background: var(--black-2);
  padding: 60px 0;
  border-top: 1px solid rgba(79,179,179,0.08);
  border-bottom: 1px solid rgba(79,179,179,0.08);
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
}
.cta-strip-text p { color: var(--gray); font-size: 0.95rem; }

/* ── HOME SERVICES (aperçu accueil) ────────────────────── */
.home-services { background: var(--black); }
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 16px;
}
.home-service-card {
  display: block;
  background: var(--black-2);
  border: 1px solid rgba(79,179,179,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.home-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to right, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.home-service-card:hover {
  border-color: rgba(79,179,179,0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.home-service-card:hover::before { transform: scaleX(1); }
.home-service-card h3 {
  font-size: 1.1rem; font-weight: 700;
  margin: 16px 0 8px;
}
.home-service-card p { font-size: 0.88rem; color: var(--gray); }
.card-arrow {
  display: inline-block;
  margin-top: 18px;
  color: var(--teal-light);
  font-size: 1rem;
  transition: transform var(--transition);
}
.home-service-card:hover .card-arrow { transform: translateX(5px); }

/* ── SERVICE ICON ──────────────────────────────────────── */
.service-icon {
  width: 52px; height: 52px;
  background: rgba(47,127,128,0.12);
  border: 1px solid rgba(47,127,128,0.25);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light);
}
.service-icon svg { width: 26px; height: 26px; }
.service-icon-lg {
  width: 64px; height: 64px;
}
.service-icon-lg svg { width: 32px; height: 32px; }

/* ── SERVICES PAGE ─────────────────────────────────────── */
.services-page { background: var(--black); }
.service-full-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  align-items: start;
  padding: 52px 0;
  border-bottom: 1px solid rgba(79,179,179,0.08);
}
.service-full-card:last-child { border-bottom: none; }
.sfc-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 4px;
}
.sfc-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--teal);
}
.sfc-right h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 14px;
}
.sfc-right > p {
  color: var(--gray);
  font-size: 0.97rem;
  max-width: 680px;
  margin-bottom: 24px;
  line-height: 1.75;
}
.sfc-list {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sfc-list li {
  font-size: 0.9rem;
  color: var(--white);
  padding-left: 20px;
  position: relative;
}
.sfc-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal-light);
  font-size: 0.85rem;
}
.sfc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sfc-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-light);
  background: rgba(47,127,128,0.1);
  border: 1px solid rgba(47,127,128,0.2);
  border-radius: 50px;
  padding: 4px 14px;
}

/* ── ABOUT PAGE ────────────────────────────────────────── */
.about-main { background: var(--black); }
.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}
.about-visual-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}
.about-card {
  background: var(--black-2);
  border: 1px solid rgba(79,179,179,0.15);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-card-logo img { width: 60px; height: 60px; object-fit: contain; }
.about-card-info { display: flex; flex-direction: column; }
.about-card-info strong { font-size: 1.1rem; font-weight: 700; }
.about-card-info span { font-size: 0.85rem; color: var(--teal-light); }
.tech-stack {
  background: var(--black-2);
  border: 1px solid rgba(79,179,179,0.15);
  border-radius: var(--radius);
  padding: 24px;
}
.tech-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  margin-bottom: 16px;
}
.tech-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-pills span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--teal-light);
  background: rgba(47,127,128,0.1);
  border: 1px solid rgba(47,127,128,0.2);
  border-radius: 6px;
  padding: 5px 12px;
}
.about-availability {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--black-2);
  border: 1px solid rgba(79,179,179,0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--white);
}
.avail-dot {
  width: 10px; height: 10px;
  background: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 10px #34d399;
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}
.about-text-col p {
  color: var(--gray);
  margin-bottom: 18px;
  font-size: 0.97rem;
  line-height: 1.8;
}
.about-text-col strong { color: var(--white); }
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.badge {
  font-size: 0.82rem;
  font-weight: 500;
  background: rgba(47,127,128,0.1);
  border: 1px solid rgba(47,127,128,0.2);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  color: var(--white);
}

/* ── VALUES ────────────────────────────────────────────── */
.values-section { background: var(--black-2); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.value-card {
  background: var(--black);
  border: 1px solid rgba(79,179,179,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform var(--transition), border-color var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79,179,179,0.3);
}
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* ── PROCESS ───────────────────────────────────────────── */
.process-section { background: var(--black); }
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  padding: 36px 0;
}
.step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(79,179,179,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
  text-align: right;
  transition: color var(--transition);
}
.process-step:hover .step-num { color: var(--teal-light); }
.step-content h3 {
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 10px; margin-top: 4px;
}
.step-content p { font-size: 0.93rem; color: var(--gray); max-width: 560px; line-height: 1.75; }
.process-connector {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(79,179,179,0.2), transparent);
  margin-left: 80px;
}

/* ── CONTACT PAGE ──────────────────────────────────────── */
.contact-page { background: var(--black); }
.contact-page-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 100px;
}
.contact-info-block h3 {
  font-size: 1.3rem; font-weight: 700;
  margin-bottom: 12px;
}
.contact-info-block p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--black-2);
  border: 1px solid rgba(79,179,179,0.12);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: border-color var(--transition), transform var(--transition);
}
a.contact-item:hover {
  border-color: rgba(79,179,179,0.3);
  transform: translateX(4px);
}
.contact-item-icon {
  width: 40px; height: 40px;
  background: rgba(47,127,128,0.1);
  border: 1px solid rgba(47,127,128,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-light);
  flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; }
.contact-item-text { display: flex; flex-direction: column; }
.contact-item-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); }
.contact-item-value { font-size: 0.9rem; font-weight: 500; color: var(--white); }

.Italic {
font-size: 10px;
font-style: italic;
}

/* ── FORM ─────────────────────────────────────────────── */
.contact-form {
  background: var(--black-2);
  border: 1px solid rgba(79,179,179,0.12);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.required { color: var(--teal-light); }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--black);
  border: 1px solid rgba(79,179,179,0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239CA3AF' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group option { background: var(--black-2); color: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(47,127,128,0.15);
}
.form-notice {
  font-size: 0.85rem;
  text-align: center;
  min-height: 20px;
  transition: color var(--transition);
}
.form-notice.success { color: var(--teal-light); }
.form-notice.error   { color: #f87171; }

/* ── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(79,179,179,0.1);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  display: flex; align-items: center;
  font-size: 1rem; font-weight: 700;
}
.footer-logo img { height: 50px; width: auto; }

.footer-copy { font-size: 0.82rem; color: var(--gray); }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 0.85rem; color: var(--gray);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--teal-light); }

/* ── ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-visual-col,
  .contact-sidebar { position: static; }
  .service-full-card { grid-template-columns: 80px 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(11,15,16,0.97);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { font-size: 1.2rem; color: var(--white); }
  .hamburger { display: flex; z-index: 1001; position: relative; }

  /* Hero */
  #hero { padding: 140px 24px 100px; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }

  /* Pages intérieures */
  .page-hero { padding: 130px 24px 80px; }

  /* Services page */
  .service-full-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 0;
  }
  .sfc-left { flex-direction: row; align-items: center; }

  /* Process */
  .process-step { gap: 20px; }
  .step-num { font-size: 1.8rem; width: 56px; }
  .process-connector { margin-left: 56px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  /* CTA strip */
  .cta-strip-inner { flex-direction: column; text-align: center; }

  /* Misc */
  section { padding: 72px 0; }
  .section-inner { padding: 0 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
