/* ====================================
   CED Consulting and Management
   Design System — Premium Editorial
   ==================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --ink:       #0d1b2a;
  --ink-soft:  #2c3e52;
  --slate:     #5f7082;
  --silver:    #a8b8c8;
  --mist:      #f0f4f8;
  --white:     #ffffff;

  --blue:      #1a5c96;
  --blue-deep: #0c3660;
  --blue-mid:  #2674b8;
  --green:     #2fa85e;
  --gold:      #c9910a;

  --line:      rgba(26,92,150,0.10);
  --shadow-s:  0 2px 12px rgba(13,27,42,0.08);
  --shadow-m:  0 8px 32px rgba(13,27,42,0.12);
  --shadow-l:  0 20px 60px rgba(13,27,42,0.16);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
a { text-decoration: none; color: inherit; transition: all 0.25s var(--ease); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section-alt { background: var(--mist); }

/* Label / Tag */
.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 14px;
}
.label::before {
  content: ''; display: block; width: 20px; height: 1.5px; background: var(--blue);
}

.section-title { margin-bottom: 14px; }
.section-lead {
  font-family: 'Outfit', sans-serif; font-size: 1.05rem; color: var(--slate);
  max-width: 580px; line-height: 1.75; margin-bottom: 52px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 600;
  padding: 13px 28px; border-radius: 6px; border: 1.5px solid transparent;
  cursor: pointer; transition: all 0.25s var(--ease); letter-spacing: 0.02em;
}
.btn-primary   { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-deep); border-color: var(--blue-deep); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,92,150,0.28); }
.btn-outline   { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }
.btn-ghost     { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-ghost:hover { background: var(--blue); color: var(--white); }
.btn-wa        { background: #22c55e; color: var(--white); border-color: #22c55e; }
.btn-wa:hover  { background: #16a34a; border-color: #16a34a; box-shadow: 0 6px 20px rgba(34,197,94,0.30); }
.btn i { font-size: 0.92rem; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px) saturate(1.5);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-s); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.nav-brand { display: flex; align-items: center; gap: 11px; }
.nav-brand img { height: 44px; width: auto; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 700; color: var(--blue-deep); }
.nav-brand-sub  { font-size: 0.64rem; font-weight: 500; color: var(--silver); letter-spacing: 0.12em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 7px 14px; border-radius: 6px;
  font-size: 0.875rem; font-weight: 500; color: var(--ink-soft);
}
.nav-links a:hover { color: var(--blue); background: rgba(26,92,150,0.05); }
.nav-links a.active { color: var(--blue); }
.nav-cta-btn {
  margin-left: 8px; padding: 9px 22px !important;
  background: var(--blue) !important; color: var(--white) !important;
  border-radius: 6px !important; font-weight: 600 !important;
}
.nav-cta-btn:hover { background: var(--blue-deep) !important; box-shadow: 0 4px 14px rgba(26,92,150,0.25); }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.25s; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--white); padding: 20px 28px 28px; z-index: 999;
  border-bottom: 1px solid var(--line); flex-direction: column; gap: 2px;
  box-shadow: var(--shadow-m);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 11px 14px; border-radius: 6px; font-weight: 500; color: var(--ink-soft); }
.mobile-menu a:hover { background: var(--mist); color: var(--blue); }

/* ---- HERO — cinematic split layout ---- */
.hero {
  min-height: 100vh;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Left panel — dark editorial */
.hero-left {
  background: var(--blue-deep);
  padding: 80px 56px 80px 0;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-left::after {
  content: '';
  position: absolute; right: -1px; top: 0; bottom: 0; width: 64px;
  background: var(--white);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

/* Subtle texture overlay */
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(26,92,150,0.4) 0%, transparent 60%),
                    radial-gradient(circle at 80% 80%, rgba(47,168,94,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-left-inner { position: relative; z-index: 1; max-width: 520px; margin-left: auto; padding-right: 64px; }

.hero-eyebrow {
  font-family: 'Outfit', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }

.hero h1 {
  color: var(--white); margin-bottom: 22px;
  font-style: italic;
}
.hero h1 em { color: var(--gold); font-style: normal; }

.hero-desc { font-size: 1rem; color: rgba(255,255,255,0.62); margin-bottom: 40px; line-height: 1.75; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }

/* Stats bar — horizontal inside hero-left */
.hero-metrics {
  display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 32px;
}
.metric {
  flex: 1; padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.10);
}
.metric:last-child { border-right: none; padding-right: 0; padding-left: 24px; }
.metric:first-child { padding-left: 0; }
.metric-val {
  font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.metric-val sup { font-size: 1.1rem; vertical-align: super; color: var(--gold); }
.metric-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 5px; text-transform: uppercase; letter-spacing: 0.08em; }

/* Right panel — photo */
.hero-right {
  position: relative; overflow: hidden;
  background: #1e3246;
}
.hero-right img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.7; transition: opacity 0.6s;
}
.hero-right:hover img { opacity: 0.85; }

/* Floating card on hero right */
.hero-float {
  position: absolute; bottom: 40px; left: -24px; z-index: 3;
  background: var(--white); border-radius: var(--r-md);
  padding: 18px 22px; box-shadow: var(--shadow-l);
  display: flex; align-items: center; gap: 14px; max-width: 240px;
}
.hero-float-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(26,92,150,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-float-icon i { color: var(--blue); font-size: 1.2rem; }
.hero-float-text strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--ink); }
.hero-float-text span { font-size: 0.78rem; color: var(--slate); }

/* ---- SERVICES ---- */
.services-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; margin-top: 52px; }

.svc {
  background: var(--white); padding: 32px 28px;
  transition: all 0.25s var(--ease); position: relative; overflow: hidden;
}
.svc::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.svc:hover { background: var(--mist); }
.svc:hover::before { transform: scaleX(1); }

.svc-num {
  font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700;
  color: var(--line); line-height: 1; margin-bottom: 12px;
  transition: color 0.25s;
}
.svc:hover .svc-num { color: rgba(26,92,150,0.12); }
.svc h3 { font-size: 1.02rem; margin-bottom: 10px; color: var(--ink); }
.svc p { font-size: 0.87rem; color: var(--slate); line-height: 1.65; }
.svc-arrow {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-size: 0.78rem; font-weight: 600; color: var(--blue); opacity: 0;
  transform: translateX(-8px); transition: all 0.25s;
}
.svc:hover .svc-arrow { opacity: 1; transform: translateX(0); }

/* ---- ABOUT ---- */
.about-wrap { display: grid; grid-template-columns: 5fr 7fr; gap: 72px; align-items: center; }

.about-img-stack { position: relative; }
.about-img-main { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-l); }
.about-img-main img { width: 100%; height: 460px; object-fit: cover; }
.about-accent {
  position: absolute; bottom: -28px; right: -28px;
  background: var(--blue-deep); border-radius: var(--r-md);
  padding: 24px 28px; box-shadow: var(--shadow-m);
  text-align: center;
}
.about-accent strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700; color: var(--white); line-height: 1; }
.about-accent span { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; display: block; }

.about-line { width: 48px; height: 2px; background: var(--gold); margin-bottom: 20px; }
.about-text { color: var(--slate); margin-bottom: 16px; font-size: 0.95rem; line-height: 1.8; }

.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.pillar {
  padding: 16px; border: 1px solid var(--line); border-radius: var(--r-sm);
  display: flex; gap: 12px; align-items: flex-start;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.pillar:hover { border-color: var(--blue); box-shadow: var(--shadow-s); }
.pillar-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); margin-top: 7px; flex-shrink: 0; }
.pillar h4 { font-family: 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 700; margin-bottom: 2px; }
.pillar p { font-size: 0.8rem; color: var(--slate); }

/* ---- PROCESS ---- */
.process-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; margin-top: 52px; }
.process-row::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px; background: var(--line); z-index: 0; }

.proc {
  text-align: center; position: relative; z-index: 1; padding: 0 12px;
}
.proc-dot {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--white); border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s; box-shadow: var(--shadow-s);
}
.proc:hover .proc-dot { border-color: var(--blue); background: var(--blue); }
.proc-dot span { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; color: var(--blue); transition: color 0.25s; }
.proc:hover .proc-dot span { color: var(--white); }
.proc h4 { font-family: 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 700; margin-bottom: 6px; }
.proc p { font-size: 0.8rem; color: var(--slate); line-height: 1.55; }

/* ---- TESTIMONIALS ---- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.testi {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 32px;
  box-shadow: var(--shadow-s); transition: box-shadow 0.25s;
}
.testi:hover { box-shadow: var(--shadow-m); }
.testi-quote { font-size: 2.5rem; line-height: 1; color: var(--blue); opacity: 0.15; font-family: Georgia, serif; margin-bottom: -8px; }
.testi-text { font-size: 0.9rem; color: var(--slate); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.88rem; }
.testi-role { font-size: 0.78rem; color: var(--slate); }
.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 14px; }

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--blue-deep); padding: 96px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(26,92,150,0.4) 0%, transparent 70%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--white); font-size: clamp(2rem,4vw,3rem); margin-bottom: 14px; font-style: italic; }
.cta-band p { color: rgba(255,255,255,0.60); margin-bottom: 36px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- CONTACT ---- */
.contact-wrap { display: grid; grid-template-columns: 2fr 3fr; gap: 64px; align-items: start; }
.contact-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-ic { width: 44px; height: 44px; min-width: 44px; border-radius: 10px; background: rgba(26,92,150,0.07); display: flex; align-items: center; justify-content: center; }
.contact-ic i { color: var(--blue); font-size: 1rem; }
.contact-item h4 { font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 700; margin-bottom: 3px; }
.contact-item p, .contact-item a { font-size: 0.88rem; color: var(--slate); }
.contact-item a:hover { color: var(--blue); }

.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 44px; box-shadow: var(--shadow-m); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #dde5ef; border-radius: 8px;
  font-family: 'Outfit', sans-serif; font-size: 0.88rem; color: var(--ink);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,92,150,0.07);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ---- PAGE HERO ---- */
.page-hero {
  background: var(--blue-deep); padding: 120px 0 60px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(26,92,150,0.5) 0%, transparent 65%);
}
.page-hero > * { position: relative; }
.page-hero h1 { color: var(--white); font-style: italic; }
.page-hero p { color: rgba(255,255,255,0.58); font-size: 1rem; margin-top: 10px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 18px; }
.breadcrumb a, .breadcrumb span { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }

/* ---- TEAM ---- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; margin-top: 52px; }
.team-card { border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: var(--white); box-shadow: var(--shadow-s); transition: box-shadow 0.25s, transform 0.25s; }
.team-card:hover { box-shadow: var(--shadow-m); transform: translateY(-4px); }
.team-thumb { height: 200px; background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid)); display: flex; align-items: center; justify-content: center; }
.team-thumb i { font-size: 3.5rem; color: rgba(255,255,255,0.25); }
.team-body { padding: 22px; }
.team-name { font-size: 1rem; margin-bottom: 4px; }
.team-role { font-size: 0.78rem; color: var(--blue); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 10px; }
.team-bio { font-size: 0.83rem; color: var(--slate); line-height: 1.6; }

/* ---- BLOG ---- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; margin-top: 52px; }
.blog-card { border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: var(--white); box-shadow: var(--shadow-s); transition: box-shadow 0.25s, transform 0.25s; }
.blog-card:hover { box-shadow: var(--shadow-m); transform: translateY(-4px); }
.blog-thumb { height: 190px; background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid)); display: flex; align-items: center; justify-content: center; }
.blog-thumb i { font-size: 2.8rem; color: rgba(255,255,255,0.22); }
.blog-body { padding: 24px; }
.blog-tag { font-size: 0.72rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.blog-body h3 { font-size: 1.02rem; margin-bottom: 10px; }
.blog-body p { font-size: 0.86rem; color: var(--slate); margin-bottom: 18px; line-height: 1.65; }
.blog-meta { font-size: 0.78rem; color: var(--silver); display: flex; gap: 16px; }
.blog-meta i { color: var(--blue); }

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; font-size: 0.95rem; }
.faq-question:hover { color: var(--blue); }
.faq-answer { padding-bottom: 20px; color: var(--slate); font-size: 0.9rem; display: none; line-height: 1.75; }
.faq-answer.open { display: block; }

/* ---- FOOTER ---- */
.footer { background: var(--ink); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.5fr; gap: 52px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.07); }

.footer-brand-logo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.footer-logo-img {
  height: 52px; width: auto; flex-shrink: 0;
}
.footer-logo-img {
  height: 52px; width: auto; flex-shrink: 0;
}

.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.footer-brand-name small { display: block; font-family: 'Outfit', sans-serif; font-size: 0.65rem; color: rgba(255,255,255,0.3); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 400; }

.footer-desc { font-size: 0.87rem; color: rgba(255,255,255,0.42); line-height: 1.75; max-width: 280px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 8px; }
.f-social { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: all 0.25s; }
.f-social:hover { background: var(--blue); border-color: var(--blue); }
.f-social i { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color 0.25s; }
.f-social:hover i { color: var(--white); }

.footer h4 {
  font-family: 'Outfit', sans-serif; font-size: 0.72rem; font-weight: 700;
  color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 20px;
}
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { font-size: 0.87rem; color: rgba(255,255,255,0.45); transition: all 0.2s; }
.footer-nav a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-list li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-list i { color: var(--gold); font-size: 0.82rem; margin-top: 4px; min-width: 14px; }
.footer-contact-list span, .footer-contact-list a { font-size: 0.85rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--white); }

.footer-bottom {
  padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }

/* ---- FLOATING BUTTONS ---- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 9999;
  width: 54px; height: 54px; border-radius: 50%;
  background: #22c55e; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(34,197,94,0.40);
  animation: wa-pulse 3s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float i { font-size: 1.55rem; color: var(--white); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(34,197,94,0.40); }
  50% { box-shadow: 0 4px 20px rgba(34,197,94,0.40), 0 0 0 10px rgba(34,197,94,0.08); }
}

.back-top {
  position: fixed; bottom: 90px; right: 26px; z-index: 9999;
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--ink); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.25s;
}
.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--blue); border-color: var(--blue); }
.back-top i { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ---- FADE IN ANIMATION ---- */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 80px 28px 60px; }
  .hero-left::after { display: none; }
  .hero-left-inner { padding-right: 0; max-width: 100%; margin: 0; }
  .hero-right { height: 360px; }
  .hero-float { left: 16px; bottom: 24px; }
  .about-wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-accent { right: -8px; bottom: -16px; }
  .services-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta-btn { display: none; }
  .burger { display: flex; }
  .process-row { grid-template-columns: 1fr 1fr; }
  .process-row::before { display: none; }
  .hero-metrics { flex-wrap: wrap; gap: 20px; }
  .metric { border-right: none; flex: 0 0 45%; padding: 0; }
  .metric:last-child { padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .testi-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ====================================
   EXTENDED COMPONENTS — v2
   ==================================== */

/* ---- ABOUT page ---- */
.about-content { display: flex; flex-direction: column; }

/* ---- MVV (Mission Vision Valeurs) ---- */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.mvv-card {
  border-radius: var(--r-lg); padding: 36px 32px;
  border-top: 3px solid transparent; background: var(--white);
  box-shadow: var(--shadow-s); transition: box-shadow 0.25s, transform 0.25s;
}
.mvv-card:hover { box-shadow: var(--shadow-m); transform: translateY(-4px); }
.mvv-mission { border-top-color: var(--blue); }
.mvv-vision  { border-top-color: var(--green); }
.mvv-values  { border-top-color: var(--gold); }
.mvv-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.mvv-mission .mvv-icon { background: rgba(26,92,150,.08); }
.mvv-mission .mvv-icon i { color: var(--blue); font-size: 1.3rem; }
.mvv-vision  .mvv-icon { background: rgba(47,168,94,.08); }
.mvv-vision  .mvv-icon i { color: var(--green); font-size: 1.3rem; }
.mvv-values  .mvv-icon { background: rgba(201,145,10,.08); }
.mvv-values  .mvv-icon i { color: var(--gold); font-size: 1.3rem; }
.mvv-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.mvv-card p  { font-size: 0.9rem; color: var(--slate); line-height: 1.75; }
.mvv-list { margin-top: 8px; display: flex; flex-direction: column; gap: 10px; }
.mvv-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--slate); }
.mvv-list i  { color: var(--green); font-size: 0.78rem; }

/* ---- KPI grid ---- */
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.kpi-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow-s); transition: box-shadow 0.25s, transform 0.25s;
}
.kpi-card:hover { box-shadow: var(--shadow-m); transform: translateY(-4px); }
.kpi-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(26,92,150,.07); margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.kpi-icon i { color: var(--blue); font-size: 1.2rem; }
.kpi-val { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: var(--blue-deep); line-height: 1; }
.kpi-label { font-size: 0.82rem; color: var(--slate); margin-top: 8px; line-height: 1.4; }

/* ---- Services full-grid ---- */
.svc-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; margin-top: 52px; }
.svc-full { background: var(--white); padding: 32px 28px; transition: background 0.2s; }
.svc-full:hover { background: var(--mist); }
.svc-full-header { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 14px; }
.svc-full-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 10px;
  background: rgba(26,92,150,.07); display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.svc-full:hover .svc-full-icon { background: var(--blue); }
.svc-full-icon i { color: var(--blue); font-size: 1.05rem; transition: color 0.2s; }
.svc-full:hover .svc-full-icon i { color: var(--white); }
.svc-tag { font-size: 0.7rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; opacity: 0.7; }
.svc-full h3 { font-size: 0.97rem; margin: 0; }
.svc-full p { font-size: 0.87rem; color: var(--slate); line-height: 1.7; }

/* ---- FAQ ---- */
.faq-wrap { max-width: 740px; margin: 48px auto 0; }

/* ---- Team page extras ---- */
.team-note { text-align: center; font-size: 0.8rem; color: var(--silver); margin-top: 20px; font-style: italic; }
.team-dna-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 52px; }
.dna-item { padding: 32px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--white); transition: box-shadow 0.25s, border-color 0.25s; }
.dna-item:hover { box-shadow: var(--shadow-m); border-color: var(--blue); }
.dna-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 700; color: var(--line); line-height: 1; margin-bottom: 8px; }
.dna-item:hover .dna-num { color: rgba(26,92,150,0.15); }
.dna-item h3 { font-size: 1.05rem; margin-bottom: 10px; }
.dna-item p { font-size: 0.88rem; color: var(--slate); line-height: 1.7; }
.recruitment-banner { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; background: var(--mist); border-radius: var(--r-lg); padding: 52px; border: 1px solid var(--line); }
.recruitment-banner .section-title { font-size: clamp(1.5rem,3vw,2rem); }
.recruitment-img { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-m); }
.recruitment-img img { width: 100%; height: 320px; object-fit: cover; display: block; }

/* ---- Blog extras ---- */
.newsletter-band { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 48px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-s); }
.newsletter-band .section-title { font-size: clamp(1.4rem,2.5vw,1.9rem); margin-bottom: 8px; }

/* ---- Contact page extras ---- */
.contact-intro { color: var(--slate); font-size: 0.95rem; line-height: 1.8; margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 16px; border-radius: var(--r-sm); transition: background 0.2s; }
.contact-item:hover { background: var(--mist); }
.contact-item-text { display: flex; flex-direction: column; gap: 2px; }
.contact-item-text h4 { font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--ink); }
.contact-item-text a { font-size: 0.92rem; color: var(--blue); font-weight: 600; }
.contact-item-text a:hover { color: var(--blue-deep); }
.contact-item-text span { font-size: 0.82rem; color: var(--slate); }
.contact-form-header { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.contact-form-header h3 { font-size: 1.2rem; margin-bottom: 6px; }
.contact-form-header p { font-size: 0.88rem; color: var(--slate); }
.req { color: #e53e3e; }
.btn-full { width: 100%; justify-content: center; }
.map-placeholder {
  height: 300px; background: var(--mist); border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.map-placeholder-inner { text-align: center; color: var(--slate); }
.map-placeholder i { font-size: 2.5rem; color: var(--blue); opacity: 0.4; margin-bottom: 12px; display: block; }
.map-placeholder p { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.map-placeholder span { font-size: 0.82rem; color: var(--silver); }

/* ---- Legal pages ---- */
.legal-content { max-width: 740px; margin: 0 auto; }
.legal-block { margin-bottom: 48px; }
.legal-block h2 { font-size: 1.25rem; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.legal-block p { color: var(--slate); font-size: 0.95rem; line-height: 1.8; }

/* ---- Responsive additions ---- */
@media (max-width: 1024px) {
  .mvv-grid    { grid-template-columns: 1fr; }
  .kpi-grid    { grid-template-columns: repeat(2, 1fr); }
  .svc-full-grid { grid-template-columns: repeat(2, 1fr); }
  .recruitment-banner { grid-template-columns: 1fr; }
  .newsletter-band { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .kpi-grid    { grid-template-columns: 1fr 1fr; }
  .svc-full-grid { grid-template-columns: 1fr; }
  .team-dna-grid { grid-template-columns: 1fr; }
  .contact-wrap  { gap: 40px; }
  .recruitment-banner { padding: 32px 24px; }
  .newsletter-band { padding: 28px; }
}
