/* ============================================================
   SAMIR CHIKHI — chikhi.fr
   Design professionnel — Consultant / Auditeur / Formateur
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Raleway:wght@300;400;600;700;800;900&display=swap');

:root {
  --navy:        #0d1b2a;
  --navy-mid:    #1a2c3b;
  --navy-light:  #243447;
  --blue:        #2563eb;
  --blue-dark:   #1d4ed8;
  --blue-light:  #3b82f6;
  --teal:        #0ea5e9;
  --gold:        #f59e0b;
  --green:       #10b981;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --slate-100:   #f1f5f9;
  --slate-200:   #e2e8f0;
  --slate-400:   #94a3b8;
  --slate-600:   #475569;
  --slate-800:   #1e293b;
  --font-head:   'Raleway', sans-serif;
  --font-body:   'Inter', sans-serif;
  --max-w:       1140px;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
  --transition:  0.22s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--slate-800); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }
ul { list-style: none; }
p { margin-bottom: 0.85rem; }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--transition);
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.3); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem;
  height: 60px;
}
.nav-logo {
  color: #fff; font-family: var(--font-head); font-weight: 700;
  font-size: 1rem; letter-spacing: .02em;
}
.nav-logo span { color: var(--blue-light); }
.nav-links { display: flex; gap: .1rem; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,.65); font-size: .78rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase; padding: .45rem .8rem;
  border-radius: var(--radius-sm); transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.09); }
.nav-cta {
  background: var(--blue) !important; color: #fff !important;
  border-radius: var(--radius-sm); margin-left: .4rem;
  padding: .4rem 1rem !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.8); border-radius: 2px; transition: transform .3s, opacity .3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  background:
    radial-gradient(ellipse 90% 70% at 15% 60%, rgba(37,99,235,.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(14,165,233,.1) 0%, transparent 50%),
    linear-gradient(160deg, #0d1b2a 0%, #1a2c3b 55%, #1e3448 100%);
  padding: 110px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M0 0h80v80H0V0zm20 20v40h40V20H20zm20 35a15 15 0 1 1 0-30 15 15 0 0 1 0 30z' fill-rule='nonzero'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--green));
}
.hero-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
}
.hero-photo-col { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.hero-photo-wrap {
  width: 160px; height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.15);
  box-shadow: 0 0 0 8px rgba(37,99,235,.2), 0 20px 60px rgba(0,0,0,.5);
  flex-shrink: 0;
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; }
.hero-contact-quick {
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
}
.hero-contact-quick a {
  color: rgba(255,255,255,.6); font-size: .72rem; font-weight: 500;
  letter-spacing: .03em; transition: color var(--transition);
}
.hero-contact-quick a:hover { color: var(--blue-light); }
.hero-content { padding: .5rem 0; }
.hero-eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--blue-light);
  margin-bottom: .8rem; display: flex; align-items: center; gap: .5rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--blue-light); }
.hero h1 {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: #fff; line-height: 1.08; letter-spacing: -.01em;
  margin-bottom: .5rem;
}
.hero-subtitle {
  font-family: var(--font-head); font-weight: 300;
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.55); letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 1.8rem;
}
.hero-chips {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem;
}
.hero-chip {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.8);
  font-size: .73rem; font-weight: 600; letter-spacing: .04em;
  padding: .3rem 1rem; border-radius: 100px;
  transition: all var(--transition);
}
.hero-chip.blue   { background: rgba(37,99,235,.25); border-color: rgba(37,99,235,.5); color: #93c5fd; }
.hero-chip.green  { background: rgba(16,185,129,.2);  border-color: rgba(16,185,129,.4); color: #6ee7b7; }
.hero-chip.gold   { background: rgba(245,158,11,.2);  border-color: rgba(245,158,11,.4); color: #fcd34d; }
.hero-actions {
  display: flex; gap: .85rem; flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: #fff;
  padding: .75rem 1.8rem; border-radius: var(--radius-sm);
  font-weight: 700; font-size: .9rem; letter-spacing: .02em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(37,99,235,.4);
}
.btn-primary:hover { background: var(--blue-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,99,235,.5); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1.5px solid rgba(255,255,255,.25); color: rgba(255,255,255,.8);
  padding: .75rem 1.8rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .9rem;
  transition: all var(--transition);
}
.btn-outline:hover { border-color: rgba(255,255,255,.6); color: #fff; background: rgba(255,255,255,.07); }

/* ── SECTIONS ── */
.section { padding: 5.5rem 0; }
.section--white { background: var(--white); }
.section--slate { background: var(--off-white); }
.section--dark  { background: var(--navy); color: #fff; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow {
  font-size: .7rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: .7rem; display: flex; align-items: center; justify-content: center; gap: .6rem;
}
.section-eyebrow::before,
.section-eyebrow::after { content: ''; display: block; width: 24px; height: 1.5px; background: var(--blue); }
.section-header h2 {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--slate-800); letter-spacing: -.01em; line-height: 1.2;
}
.section--dark .section-header h2 { color: #fff; }
.section-header p { color: var(--slate-600); font-size: 1.05rem; margin-top: .75rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* Ancienne grille 2 colonnes pour les sections biographiques */
.section-inner {
  display: grid; grid-template-columns: 200px 1fr; gap: 3.5rem; align-items: start;
}
.section-label {
  text-align: right; padding-top: .3rem;
  position: sticky; top: 75px;
}
.section-label h2 {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 800;
  color: var(--navy-mid); line-height: 1.2;
}
.section-label .label-line {
  display: block; width: 36px; height: 2.5px;
  background: var(--blue); margin: .5rem 0 0 auto;
}
.section--slate .section-label h2 { color: var(--slate-800); }

/* ── RÉSUMÉ ── */
.resume-text { font-size: 1.05rem; color: var(--slate-600); line-height: 1.85; }
.resume-text strong { color: var(--slate-800); font-weight: 700; }

/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card.green::before  { background: var(--green); }
.service-card.gold::before   { background: var(--gold); }
.service-card.teal::before   { background: var(--teal); }
.service-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: rgba(37,99,235,.1); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.2rem;
}
.service-card.green .service-icon { background: rgba(16,185,129,.1); }
.service-card.gold  .service-icon { background: rgba(245,158,11,.1); }
.service-card.teal  .service-icon { background: rgba(14,165,233,.1); }
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  color: var(--slate-800); margin-bottom: .6rem; line-height: 1.3;
}
.service-card p { font-size: .875rem; color: var(--slate-600); line-height: 1.65; }
.service-tag {
  display: inline-block; margin-top: 1rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--blue);
  background: rgba(37,99,235,.08); padding: .2rem .6rem; border-radius: 100px;
}
.service-card.green .service-tag  { color: var(--green);  background: rgba(16,185,129,.1); }
.service-card.gold  .service-tag  { color: #b45309;        background: rgba(245,158,11,.1); }
.service-card.teal  .service-tag  { color: #0369a1;        background: rgba(14,165,233,.1); }

/* ── LOGOS PARTENAIRES ── */
.logos-section {
  padding: 3rem 0;
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}
.logos-label {
  text-align: center;
  font-size: .68rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--slate-400);
  margin-bottom: 2rem;
}
.logos-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1.5rem 2rem;
  align-items: center;
  justify-items: center;
}
.logo-item {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  transition: transform var(--transition);
}
.logo-item:hover { transform: translateY(-3px); }
.logo-item svg { transition: filter var(--transition); }
.logo-item:hover svg { filter: drop-shadow(0 4px 8px rgba(0,0,0,.15)); }
.logo-item span {
  font-size: .6rem; color: var(--slate-400); font-weight: 600;
  text-align: center; max-width: 90px; line-height: 1.3;
  letter-spacing: .03em;
}

/* ── EXPÉRIENCE ── */
.exp-list { display: flex; flex-direction: column; gap: 0; }
.exp-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--slate-200);
  position: relative;
}
.exp-item:last-child { border-bottom: none; }
.exp-logo-wrap {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  overflow: hidden; flex-shrink: 0;
  border: 1px solid var(--slate-200); background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.exp-logo-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.exp-logo-wrap svg { width: 100%; height: 100%; }
.exp-logo-text {
  font-family: var(--font-head); font-weight: 800; font-size: .65rem;
  color: var(--navy-mid); text-align: center; line-height: 1.25; padding: 6px;
}
.exp-body { flex: 1; }
.exp-header { display: flex; align-items: baseline; gap: .8rem; flex-wrap: wrap; margin-bottom: .25rem; }
.exp-org  { font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--slate-800); }
.exp-period {
  font-size: .72rem; color: var(--slate-400); font-weight: 600;
  letter-spacing: .04em; white-space: nowrap;
}
.exp-role {
  font-weight: 600; font-size: .88rem; color: var(--blue);
  margin-bottom: .5rem;
}
.exp-desc { font-size: .875rem; color: var(--slate-600); }
.exp-desc li {
  padding: .12rem 0 .12rem 1rem; position: relative;
}
.exp-desc li::before { content: '›'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.badge {
  display: inline-block; font-size: .62rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .12rem .5rem; border-radius: 100px; margin-left: .4rem;
}
.badge--new    { background: rgba(245,158,11,.15); color: #b45309; border: 1px solid rgba(245,158,11,.3); }
.badge--green  { background: rgba(16,185,129,.15); color: #047857; border: 1px solid rgba(16,185,129,.3); }
.badge--accent { background: rgba(37,99,235,.12);  color: var(--blue); border: 1px solid rgba(37,99,235,.25); }

/* ── COMPÉTENCES ── */
.skills-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.skill-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.skill-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.skill-name {
  font-family: var(--font-head); font-weight: 700; font-size: .92rem;
  color: var(--slate-800); margin-bottom: .35rem;
  display: flex; align-items: center; gap: .5rem;
}
.skill-name::before {
  content: ''; display: block; width: 8px; height: 8px;
  border-radius: 50%; background: var(--blue); flex-shrink: 0;
}
.skill-item.green .skill-name::before  { background: var(--green); }
.skill-item.gold  .skill-name::before  { background: var(--gold); }
.skill-desc { font-size: .83rem; color: var(--slate-600); padding-left: 1.1rem; }

/* ── FORMATION ── */
.edu-list { display: flex; flex-direction: column; gap: 1.5rem; }
.edu-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.edu-logo-wrap {
  width: 48px; height: 48px; border-radius: var(--radius-md); overflow: hidden; flex-shrink: 0;
  border: 1px solid var(--slate-200); background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
}
.edu-logo-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 5px; }
.edu-logo-wrap svg { width: 100%; height: 100%; }
.edu-logo-text { font-family: var(--font-head); font-weight: 800; font-size: .62rem; color: var(--navy-mid); text-align: center; line-height: 1.2; padding: 4px; }
.edu-body { flex: 1; }
.edu-org   { font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: var(--slate-800); }
.edu-title { font-weight: 600; font-size: .85rem; color: var(--blue); margin: .1rem 0; }
.edu-year  { font-size: .72rem; color: var(--slate-400); font-weight: 600; letter-spacing: .04em; }
.edu-detail { font-size: .83rem; color: var(--slate-600); margin-top: .3rem; }

/* ── TÉMOIGNAGE ── */
.testimonial {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 2.8rem 3rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,.06);
  max-width: 740px; margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.testimonial blockquote {
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 300;
  color: rgba(255,255,255,.88); line-height: 1.75; font-style: italic;
  margin-bottom: 1.5rem;
}
.quote-mark { font-size: 4rem; color: var(--blue); line-height: .6; display: block; margin-bottom: .5rem; font-family: Georgia, serif; }
.testimonial cite {
  font-family: var(--font-head); font-weight: 700; color: var(--blue-light);
  font-style: normal; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase;
}

/* ── ENGAGEMENT ── */
.engagement-box {
  border-radius: var(--radius-md);
  padding: 1.8rem 2rem;
  background: rgba(16,185,129,.06);
  border: 1px solid rgba(16,185,129,.2);
}
.engagement-box h3 {
  color: #047857; font-family: var(--font-head); font-weight: 700;
  margin-bottom: .7rem; font-size: 1rem;
  display: flex; align-items: center; gap: .5rem;
}
.engagement-box p { color: var(--slate-600); font-size: .92rem; margin-bottom: .6rem; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.1rem 1.4rem; cursor: pointer;
  font-family: var(--font-head); font-size: .95rem; font-weight: 700;
  color: var(--slate-800); list-style: none;
  transition: background var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-toggle {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--slate-100); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  font-size: 1rem; color: var(--blue); font-weight: 700; line-height: 1;
  transition: background var(--transition), transform var(--transition);
}
details[open] .faq-question { background: var(--off-white); }
details[open] .faq-toggle { background: var(--blue); color: #fff; transform: rotate(45deg); }
.faq-answer { padding: 0 1.4rem 1.2rem; color: var(--slate-600); line-height: 1.75; font-size: .9rem; }
.faq-answer p { margin: 0; }

/* ── CONTACT ── */
.contact-section { padding: 5.5rem 0; background: var(--navy); }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-bottom: 2.5rem; }
.contact-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md); padding: 1.8rem 1.4rem;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}
.contact-card:hover { background: rgba(255,255,255,.09); transform: translateY(-3px); }
.contact-icon-wrap {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(37,99,235,.2); margin: 0 auto .9rem;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon-wrap svg { width: 22px; height: 22px; color: var(--blue-light); }
.contact-label {
  font-family: var(--font-head); font-weight: 700; font-size: .68rem;
  color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: .4rem;
}
.contact-value a, .contact-value { color: #fff; font-size: .92rem; font-weight: 600; }
.contact-value a:hover { color: var(--blue-light); }
.cta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.cta-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md); padding: 1.2rem 1.4rem;
  transition: background var(--transition), transform var(--transition);
}
.cta-card:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.cta-card strong { display: block; color: #fff; font-size: .88rem; font-weight: 700; margin-bottom: .25rem; }
.cta-card span { color: rgba(255,255,255,.45); font-size: .78rem; }
.cta-card.highlight {
  background: var(--blue); border-color: var(--blue);
}
.cta-card.highlight strong { color: #fff; }
.cta-card.highlight span   { color: rgba(255,255,255,.7); }
.cta-card.highlight:hover  { background: var(--blue-dark); }

/* ── FOOTER ── */
footer {
  background: #060f18; color: rgba(255,255,255,.35);
  padding: 2rem 0; text-align: center; font-size: .8rem;
}
footer a { color: rgba(255,255,255,.45); }
footer a:hover { color: rgba(255,255,255,.8); }

/* ── SCROLL ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .logos-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-photo-col { flex-direction: row; justify-content: center; }
  .hero-photo-wrap { width: 120px; height: 120px; }
  .hero-eyebrow, .hero-chips, .hero-actions { justify-content: center; }
  .hero-contact-quick { flex-direction: row; }
  .section-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .section-label { text-align: left; position: static; }
  .section-label .label-line { margin: .5rem 0 0; }
  .skills-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .cta-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--navy); padding: 1rem; gap: .2rem; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-links.open { display: flex; }
  .menu-toggle { display: flex; }
  .hero h1 { font-size: 2.2rem; }
}
