/* =========================================================
   TsariPharm — gestion de pharmacie, design émeraude & or
   ========================================================= */

:root {
  --white: #ffffff;
  --bg: #ffffff;
  --bg-soft: #f9f9f7;
  --bg-grey: #eeeeee;
  --ink: #303841;
  --ink-deep: #1a1f26;
  --ink-soft: #4a5460;
  --muted: #6b7480;
  --line: #e5e5e2;
  --line-soft: #f0efeb;

  /* Brand: emerald green + pharma gold-yellow (couleurs du vrai logo TsariPharm) */
  --green-1: #0f5132;       /* deep emerald (trust) */
  --green-2: #157347;       /* main green — primary brand */
  --green-3: #1a8a55;       /* fresh action green */
  --green-4: #34a96b;       /* hover/highlight */
  --green-soft: #e8f3ed;    /* subtle green background tint */
  --gold-1: #8a6209;        /* deep amber — AA-safe for text on white (~5.9:1) */
  --gold-2: #ffb800;        /* main pharma yellow (logo TsariPharm) */
  --gold-3: #ffd311;        /* bright yellow (logo TsariPharm) */
  --gold-soft: #fff6da;     /* subtle yellow background tint */
  --orange-1: #157347;       /* alias = brand green */
  --orange-2: #1a8a55;
  --orange-3: #34a96b;
  --orange-4: #ffb800;
  --orange-5: #ffd311;
  --grad-orange: linear-gradient(135deg, #0f5132 0%, #157347 50%, #1a8a55 100%);
  --grad-orange-h: linear-gradient(90deg, #0f5132, #157347, #1a8a55, #34a96b);
  --grad-green: linear-gradient(135deg, #0f5132 0%, #1a8a55 100%);
  --grad-gold: linear-gradient(135deg, #8a6209 0%, #ffd311 100%);
  --grad-gold-h: linear-gradient(90deg, #8a6209, #ffb800, #ffd311);
  --grad-pharma: linear-gradient(135deg, #0f5132 0%, #157347 45%, #ffb800 100%);
  --grad-pharma-h: linear-gradient(90deg, #0f5132, #157347, #34a96b, #ffb800);

  --primary: #157347;
  --primary-hover: #0f5132;

  --radius: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(14,77,43,0.06);
  --shadow-md: 0 12px 32px -8px rgba(14,77,43,0.15);
  --shadow-lg: 0 30px 80px -20px rgba(14,77,43,0.3);
  --shadow-orange: 0 14px 30px -8px rgba(14,77,43,0.35);
  --shadow-gold: 0 14px 30px -8px rgba(255,184,0,0.35);

  --container: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

::selection { background: var(--orange-1); color: var(--white); }

h1, h2, h3, h4 {
  font-family: 'Urbanist', 'Inter', sans-serif;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.18em; }

p { color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }

/* =========================================================
   AMBIENT BACKGROUND PATTERNS (dotted grids, blobs)
   ========================================================= */
.dot-grid {
  background-image: radial-gradient(rgba(21,115,71,0.12) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
nav {
  position: sticky; top: 0; z-index: 1100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 56px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line-soft);
  transition: padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
nav.is-scrolled {
  padding: 12px 56px;
  box-shadow: 0 4px 24px rgba(48,56,65,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img {
  height: 48px; width: auto; display: block;
  transition: transform 0.4s var(--ease), height 0.4s var(--ease);
}
nav.is-scrolled .nav-logo img { height: 40px; }
.nav-logo:hover img { transform: scale(1.04) rotate(-2deg); }
.nav-logo-text {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: var(--ink-deep);
  white-space: nowrap;
  transition: font-size 0.4s var(--ease);
}
.nav-logo-text em {
  font-style: normal;
  background: var(--grad-pharma-h);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
nav.is-scrolled .nav-logo-text { font-size: 1.15rem; }

.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a:not(.nav-cta) {
  color: var(--ink); font-size: 0.95rem; font-weight: 600;
  position: relative; padding: 8px 0;
  transition: color 0.3s var(--ease);
}
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 0; height: 2px; background: var(--grad-pharma-h);
  transform: translateX(-50%);
  transition: width 0.4s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--orange-1); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: var(--grad-pharma) !important;
  color: var(--white) !important;
  padding: 12px 22px !important;
  border-radius: var(--radius-pill);
  font-family: 'Urbanist', sans-serif;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  box-shadow: 0 8px 22px -6px rgba(21,115,71,0.4);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  border: none;
}
.nav-cta::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, #0f5132, #1a8a55);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: 0;
}
.nav-cta::after {
  content: "→";
  font-size: 1em;
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: transform 0.35s var(--ease);
  display: inline-block;
}
.nav-cta span {
  position: relative;
  z-index: 1;
  display: inline-block;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(21,115,71,0.55);
}
.nav-cta:hover::before { opacity: 1; }
.nav-cta:hover::after { transform: translateX(4px); }

/* Override the generic underline animation that other nav-links have */
.nav-cta::after,
.nav-cta::before { animation: none !important; }

/* =========================================================
   LAYOUT
   ========================================================= */
section {
  padding: 110px 56px;
  max-width: var(--container);
  margin: 0 auto;
}
.section-full {
  max-width: 100%;
  padding-left: 0; padding-right: 0;
}

/* =========================================================
   ANIMATED TECH BACKGROUND (constellation network)
   ========================================================= */
.tech-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.tech-bg canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.85;
}

/* Layer of circuit-like SVG patterns */
.tech-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    /* horizontal circuit lines */
    linear-gradient(90deg, transparent 0, transparent 40%, rgba(255,255,255,0.08) 40%, rgba(255,255,255,0.08) 41%, transparent 41%),
    /* vertical circuit lines */
    linear-gradient(0deg, transparent 0, transparent 60%, rgba(255,255,255,0.06) 60%, rgba(255,255,255,0.06) 61%, transparent 61%),
    /* dotted nodes */
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.4) 1.5px, transparent 2px),
    radial-gradient(circle at 75% 60%, rgba(255,255,255,0.4) 1.5px, transparent 2px),
    radial-gradient(circle at 45% 85%, rgba(255,255,255,0.4) 1.5px, transparent 2px),
    radial-gradient(circle at 90% 15%, rgba(255,255,255,0.4) 1.5px, transparent 2px);
  background-size: 200px 200px, 180px 180px, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  opacity: 0.5;
  animation: jcCircuitDrift 30s linear infinite;
}

@keyframes jcCircuitDrift {
  from { background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0; }
  to { background-position: 200px 0, 0 200px, 0 0, 0 0, 0 0, 0 0; }
}

/* Pulse dots floating around */
.tech-pulse {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 0 0 rgba(255,255,255,0.6);
  animation: jcDotPulse 3s ease-in-out infinite;
}
.tech-pulse.p1 { top: 20%; left: 12%; animation-delay: 0s; }
.tech-pulse.p2 { top: 65%; left: 78%; animation-delay: 0.8s; }
.tech-pulse.p3 { top: 35%; left: 88%; animation-delay: 1.6s; }
.tech-pulse.p4 { top: 80%; left: 22%; animation-delay: 2.2s; }
.tech-pulse.p5 { top: 50%; left: 50%; animation-delay: 1.2s; width: 5px; height: 5px; }

@keyframes jcDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); opacity: 1; }
  50% { box-shadow: 0 0 0 18px rgba(255,255,255,0); opacity: 0.7; }
}

/* Floating tech badges (binary, hex, code symbols) */
.tech-glyph {
  position: absolute;
  font-family: 'JetBrains Mono', 'Consolas', monospace;
  color: rgba(255,255,255,0.18);
  font-weight: 600;
  font-size: 0.85rem;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.05em;
  animation: jcGlyphFloat 14s ease-in-out infinite alternate;
}
.tech-glyph.g1 { top: 18%; right: 8%; animation-delay: 0s; font-size: 1.1rem; }
.tech-glyph.g2 { top: 72%; left: 10%; animation-delay: 2s; }
.tech-glyph.g3 { top: 40%; left: 6%; animation-delay: 4s; font-size: 0.75rem; }
.tech-glyph.g4 { bottom: 15%; right: 14%; animation-delay: 1s; }

@keyframes jcGlyphFloat {
  0% { transform: translate(0,0); opacity: 0.18; }
  50% { opacity: 0.32; }
  100% { transform: translate(15px, -20px); opacity: 0.12; }
}

/* =========================================================
   HERO — vibrant orange gradient bandeau
   ========================================================= */
.hero {
  position: relative;
  background: var(--grad-pharma);
  color: var(--white);
  padding: 100px 56px 120px;
  margin: 0;
  max-width: 100%;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44'%3E%3Cg fill='white' fill-opacity='0.16'%3E%3Crect x='19' y='9' width='6' height='26' rx='2'/%3E%3Crect x='9' y='19' width='26' height='6' rx='2'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 44px 44px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}
.hero::after {
  content: ""; position: absolute;
  top: -200px; right: -150px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: jcFloat 12s ease-in-out infinite alternate;
}
@keyframes jcFloat {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(-40px, 60px) scale(1.1); }
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold-2);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-deep);
  border: none;
  box-shadow: var(--shadow-gold);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ""; width: 8px; height: 8px;
  background: var(--ink-deep); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(26,31,38,0.25);
  animation: jcPulse 2s ease-in-out infinite;
}
@keyframes jcPulse {
  50% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
}
.hero h1 {
  color: var(--white);
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 60%, rgba(255,255,255,0.3) 60%);
  padding: 0 6px;
  border-radius: 4px;
}
.hero p.lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.92);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-illustration {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 40px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-illustration img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px -10px rgba(0,0,0,0.3);
}
/* Floating tags around illustration */
.float-tag {
  position: absolute;
  background: var(--white);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
  z-index: 3;
}
.float-tag .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange-1);
}
.float-tag.t1 { top: 24px; left: -16px; animation: jcFloatA 5s ease-in-out infinite alternate; }
.float-tag.t2 { bottom: 80px; right: -20px; animation: jcFloatB 6s ease-in-out infinite alternate; }
.float-tag.t3 { bottom: 20px; left: 30px; animation: jcFloatA 7s ease-in-out infinite alternate; }
@keyframes jcFloatA { 100% { transform: translateY(-12px); } }
@keyframes jcFloatB { 100% { transform: translateY(14px); } }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.92rem;
  font-family: 'Urbanist', sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "→";
  display: inline-block;
  font-size: 1.1em;
  transition: transform 0.4s var(--ease);
}
.btn:hover::after { transform: translateX(6px); }

.btn-primary {
  background: var(--white);
  color: var(--orange-1);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}
.btn-primary:hover {
  background: var(--ink-deep);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.btn-orange {
  background: var(--grad-pharma);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -6px rgba(21,115,71,0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--ink-deep);
  border-color: var(--white);
}
.btn-dark {
  background: var(--ink-deep);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--orange-1);
}
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section-head {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}
.section-head .pill {
  display: inline-block;
  background: rgba(21,115,71,0.1);
  color: var(--orange-1);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.section-head h2 {
  margin-bottom: 18px;
  color: var(--ink);
}
.section-head h2 em {
  font-style: normal;
  background: var(--grad-pharma-h);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-head p {
  font-size: 1.1rem;
  color: var(--muted);
}

/* =========================================================
   SERVICE CARDS — icon style like centrictech
   ========================================================= */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc-card {
  position: relative;
  background: var(--green-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 38px 32px;
  text-align: center;
  transition: all 0.5s var(--ease);
  overflow: hidden;
}
.svc-card:nth-child(even) { background: var(--gold-soft); }
.svc-card::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-pharma-h);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  background: var(--white);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  border-radius: 22px;
  background: rgba(21,115,71,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--orange-1);
  transition: all 0.5s var(--ease);
  position: relative;
}
.svc-card:nth-child(even) .svc-icon { background: rgba(255,184,0,0.16); color: var(--gold-1); }
.svc-card:hover .svc-icon {
  background: var(--grad-pharma);
  color: var(--white);
  transform: rotate(-8deg) scale(1.05);
  box-shadow: var(--shadow-orange);
}
.svc-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--ink);
}
.svc-card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.6;
}
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Urbanist', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-1);
  padding: 10px 22px;
  background: rgba(21,115,71,0.08);
  border-radius: var(--radius-pill);
  transition: all 0.4s var(--ease);
}
.svc-link:hover {
  background: var(--grad-pharma);
  color: var(--white);
  gap: 10px;
}

/* =========================================================
   ABOUT SPLIT
   ========================================================= */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-split .pill { display: inline-block; background: rgba(21,115,71,0.1); color: var(--orange-1); padding: 8px 20px; border-radius: var(--radius-pill); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 22px; }
.about-split h2 { margin-bottom: 22px; }
.about-split h2 em { font-style: normal; background: var(--grad-pharma-h); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.about-split p { margin-bottom: 18px; font-size: 1.02rem; }

.about-image {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.about-image:hover img { transform: scale(1.06); }
.about-image::after {
  content: "";
  position: absolute;
  bottom: -30px; right: -30px;
  width: 220px; height: 220px;
  background: var(--grad-orange);
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}
.about-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-md);
}
.about-badge .num {
  font-family: 'Urbanist', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--grad-pharma-h);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.about-badge .lbl {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  max-width: 110px;
}

/* =========================================================
   PROCESS — horizontal steps
   ========================================================= */
.process-section {
  background: var(--bg-soft);
  position: relative;
}
.process-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(21,115,71,0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.6;
  pointer-events: none;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative; z-index: 1;
}
.process-step {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.5s var(--ease);
}
.process-step::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: var(--radius-md);
  background: var(--grad-pharma);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s var(--ease);
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.process-num {
  font-family: 'Urbanist', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  background: var(--grad-pharma-h);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--ink);
}
.process-step p {
  font-size: 0.92rem;
  color: var(--muted);
}

/* =========================================================
   STATS BANDEAU (light)
   ========================================================= */
.stats-section {
  background: var(--white);
  padding: 80px 56px;
}
.stats-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
  padding: 24px;
  border-radius: var(--radius-md);
  transition: all 0.4s var(--ease);
}
.stat-item:hover {
  background: var(--bg-soft);
  transform: translateY(-4px);
}
.stat-num {
  font-family: 'Urbanist', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  background: var(--grad-pharma-h);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.stat-lbl {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 600;
}

/* =========================================================
   TESTIMONIAL — orange band
   ========================================================= */
.testi-section {
  background: var(--grad-orange);
  color: var(--white);
  padding: 110px 56px;
  position: relative;
  overflow: hidden;
}
.testi-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.15) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  opacity: 0.25;
  z-index: 1;
}
.testi-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}
.testi-section h2 { color: var(--white); margin-bottom: 14px; }
.testi-section .pill {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,0.3);
}
.testi-section .lead { color: rgba(255,255,255,0.9); font-size: 1.05rem; }

.testi-card {
  background: var(--white);
  color: var(--ink);
  padding: 44px;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  position: relative;
}
.testi-card::before {
  content: "\201C";
  position: absolute;
  top: -10px; left: 30px;
  font-family: 'Urbanist', serif;
  font-size: 6rem;
  color: var(--orange-1);
  line-height: 1;
  font-weight: 900;
}
.testi-card blockquote {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 30px 0 26px;
  font-weight: 500;
}
.testi-card figcaption {
  display: flex; align-items: center; gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--orange-1);
  flex-shrink: 0;
}
.testi-name { font-weight: 800; font-family: 'Urbanist', sans-serif; color: var(--ink); }
.testi-role { font-size: 0.85rem; color: var(--muted); }

/* =========================================================
   TECH PILLS / PARTNERS
   ========================================================= */
.tech-section { background: var(--bg-soft); }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tech-cat {
  background: var(--green-soft);
  padding: 30px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  transition: all 0.5s var(--ease);
}
.tech-cat:nth-child(even) { background: var(--gold-soft); }
.tech-cat:hover {
  background: var(--white);
  border-color: var(--orange-1);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.tech-cat h4 {
  color: var(--orange-1);
  margin-bottom: 18px;
}
.tech-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.tech-pills span {
  padding: 8px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.3s var(--ease);
}
.tech-cat:hover .tech-pills span:hover {
  background: var(--grad-pharma);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
}

/* =========================================================
   INDUSTRIES
   ========================================================= */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.industry-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--ink-deep);
}
.industry-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: all 0.6s var(--ease);
}
.industry-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(48,56,65,0.95));
  pointer-events: none;
}
.industry-card:hover img {
  opacity: 0.5;
  transform: scale(1.08);
}
.industry-label {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
  z-index: 2;
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  display: flex; justify-content: space-between; align-items: center;
}
.industry-label .arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad-orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: transform 0.4s var(--ease);
}
.industry-card:hover .industry-label .arrow {
  transform: rotate(-45deg) scale(1.1);
}

/* =========================================================
   CTA BAND (orange final)
   ========================================================= */
.cta-band {
  background: var(--grad-pharma);
  padding: 90px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44'%3E%3Cg fill='white' fill-opacity='0.16'%3E%3Crect x='19' y='9' width='6' height='26' rx='2'/%3E%3Crect x='9' y='19' width='26' height='6' rx='2'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 44px 44px;
  opacity: 0.5;
  z-index: 1;
}
.cta-band::after {
  content: ""; position: absolute;
  top: -100px; left: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
  position: relative; z-index: 2;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: left;
  margin: 0;
  line-height: 1.15;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--ink-deep);
  color: rgba(255,255,255,0.65);
  padding: 90px 56px 40px;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 60px;
}
.footer-logo {
  height: 64px;
  width: auto;
  display: block;
}
.logo-chip {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 8px 14px;
  box-shadow: var(--shadow-sm);
}
.logo-chip img { display: block; }
.joel-credit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.joel-credit .logo-chip { padding: 5px 10px; }
.joel-credit img { height: 26px; width: auto; }
footer h3 { color: var(--white); font-size: 1.15rem; font-weight: 800; }
footer h4 {
  color: var(--white);
  margin-bottom: 22px;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}
.footer-links a:hover {
  color: var(--orange-3);
  padding-left: 6px;
}
.footer-contact { display: flex; flex-direction: column; gap: 14px; font-size: 0.95rem; }
.footer-contact div { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,0.75); }
.footer-contact .ico {
  width: 36px; height: 36px;
  background: rgba(21,115,71,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-3);
  flex-shrink: 0;
  font-size: 0.95rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 70px;
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   FORMS
   ========================================================= */
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  font-family: 'Urbanist', sans-serif;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
  transition: all 0.3s var(--ease);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange-1);
  box-shadow: 0 0 0 4px rgba(21,115,71,0.12);
}

iframe {
  display: block;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 56px;
}

.responsive-img {
  width: 100%; height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
}

/* =========================================================
   PAGE HERO (sub-pages: services, portfolio, blog, pricing)
   ========================================================= */
.page-hero {
  background: var(--grad-pharma);
  padding: 90px 56px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44'%3E%3Cg fill='white' fill-opacity='0.16'%3E%3Crect x='19' y='9' width='6' height='26' rx='2'/%3E%3Crect x='9' y='19' width='26' height='6' rx='2'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 44px 44px;
  opacity: 0.5;
  z-index: 1;
}
.page-hero h1 {
  color: var(--white);
  font-weight: 900;
  margin-bottom: 14px;
  position: relative; z-index: 2;
}
.page-hero p {
  color: rgba(255,255,255,0.92);
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
  position: relative; z-index: 2;
}
.breadcrumb {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative; z-index: 2;
  text-decoration: none;
}
.breadcrumb a {
  color: var(--gold-3);
  transition: color 0.3s var(--ease);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: 0.6; color: var(--white); }
.breadcrumb span:not(.sep) { color: var(--white); }

/* =========================================================
   PORTFOLIO
   ========================================================= */
.portfolio-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin-bottom: 50px;
}
.filter-btn {
  padding: 10px 22px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.02em;
}
.filter-btn:hover { border-color: var(--orange-1); color: var(--orange-1); }
.filter-btn.active {
  background: var(--grad-orange);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-orange);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.portfolio-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.5s var(--ease);
  cursor: pointer;
}
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.portfolio-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-soft);
}
.portfolio-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: top center;
  transition: transform 0.8s var(--ease);
  background: var(--green-soft);
}
.portfolio-card:hover .portfolio-img img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(48,56,65,0.85));
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  display: flex; align-items: flex-end; padding: 24px;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay .visit {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-orange);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.portfolio-info { padding: 26px 24px; }
.portfolio-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--orange-1);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}
.portfolio-info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.portfolio-info p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}
.portfolio-meta {
  display: flex; gap: 14px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.portfolio-meta span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  padding: 4px 12px;
  background: var(--bg-soft);
  border-radius: var(--radius-pill);
}

/* =========================================================
   BLOG
   ========================================================= */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.5s var(--ease);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.blog-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 26px 24px; }
.blog-meta {
  display: flex; gap: 14px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 600;
}
.blog-meta .cat { color: var(--orange-1); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 800; }
.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-card p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.blog-readmore {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--orange-1);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.blog-readmore::after { content: "→"; transition: transform 0.3s var(--ease); }
.blog-readmore:hover::after { transform: translateX(4px); }

.blog-sidebar { display: flex; flex-direction: column; gap: 30px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 24px;
}
.sidebar-card h4 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 0.85rem;
}
.sidebar-search input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
}
.sidebar-search input:focus {
  outline: none; border-color: var(--orange-1);
}
.recent-post {
  display: flex; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
}
.recent-post:last-child { border-bottom: none; }
.recent-post img {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  object-fit: cover; flex-shrink: 0;
}
.recent-post .info { display: flex; flex-direction: column; gap: 4px; }
.recent-post .ttl {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.recent-post:hover .ttl { color: var(--orange-1); }
.recent-post .date { font-size: 0.75rem; color: var(--muted); }

/* =========================================================
   ARTICLE / POST PAGE
   ========================================================= */
.post-hero {
  background: var(--grad-orange);
  padding: 90px 56px 110px;
  position: relative;
  overflow: hidden;
}
.post-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.18) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.3;
  z-index: 1;
}
.post-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative; z-index: 2;
  text-align: center;
}
.post-hero .post-cat {
  display: inline-block;
  background: var(--white);
  color: var(--green-1);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-family: 'Urbanist', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.post-hero h1 {
  color: var(--white);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.025em;
}
.post-hero .post-meta {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex; gap: 24px;
  justify-content: center; flex-wrap: wrap;
}
.post-hero .post-meta span { display: inline-flex; align-items: center; gap: 8px; }

.post-cover {
  max-width: var(--container);
  margin: -60px auto 0;
  padding: 0 56px;
  position: relative;
  z-index: 2;
}
.post-cover img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.project-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 22px 32px;
  padding: 28px 32px;
  background: var(--green-soft);
  border-radius: var(--radius-md);
  margin-bottom: 2em;
}
.project-facts .label {
  display: block;
  font-family: 'Urbanist', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-2);
  margin-bottom: 6px;
}
.project-facts .value {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}
.project-facts a.value {
  color: var(--green-1);
  border-bottom: 1.5px solid var(--green-3);
  text-decoration: none;
}
.project-facts a.value:hover { color: var(--green-2); }

.project-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 2em 0;
}

.post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 56px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ink);
}
.post-body > * + * { margin-top: 1.4em; }
.post-body h2 {
  font-size: 1.8rem;
  margin-top: 2.2em;
  margin-bottom: 0.6em;
  color: var(--green-1);
  letter-spacing: -0.02em;
  position: relative;
  padding-left: 22px;
}
.post-body h2::before {
  content: "";
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 4px;
  background: var(--grad-orange-h);
  border-radius: 4px;
}
.post-body h3 {
  font-size: 1.3rem;
  margin-top: 1.8em;
  margin-bottom: 0.4em;
  color: var(--ink);
}
.post-body p { color: var(--ink-soft); }
.post-body strong { color: var(--ink); font-weight: 700; }
.post-body em { color: var(--green-2); font-style: italic; font-weight: 500; }
.post-body a {
  color: var(--green-2);
  font-weight: 600;
  border-bottom: 1.5px solid var(--green-3);
  transition: all 0.3s var(--ease);
}
.post-body a:hover {
  color: var(--green-1);
  border-bottom-color: var(--green-1);
}
.post-body ul, .post-body ol {
  padding-left: 24px;
  color: var(--ink-soft);
}
.post-body ul li, .post-body ol li {
  margin-bottom: 10px;
  padding-left: 8px;
}
.post-body ul li::marker { color: var(--green-3); }
.post-body ol li::marker { color: var(--green-2); font-weight: 700; }

.post-body blockquote {
  margin: 2em 0;
  padding: 24px 28px;
  background: var(--green-soft);
  border-left: 5px solid var(--green-2);
  border-radius: var(--radius);
  font-family: 'Urbanist', sans-serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--green-1);
  font-weight: 500;
  line-height: 1.5;
}

.post-body pre {
  background: var(--ink-deep);
  color: #c8e6c9;
  padding: 22px 26px;
  border-radius: var(--radius);
  overflow-x: auto;
  font-family: 'JetBrains Mono', 'Consolas', monospace;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 1.6em 0;
}
.post-body code {
  background: var(--green-soft);
  color: var(--green-1);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', 'Consolas', monospace;
  font-size: 0.92em;
  font-weight: 600;
}
.post-body pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}

.post-body .callout {
  background: var(--white);
  border: 2px solid var(--green-2);
  border-radius: var(--radius-md);
  padding: 28px;
  margin: 2em 0;
  position: relative;
}
.post-body .callout::before {
  content: "💡";
  position: absolute;
  top: -16px; left: 24px;
  background: var(--white);
  padding: 0 10px;
  font-size: 1.4rem;
}
.post-body .callout strong {
  color: var(--green-1);
  display: block;
  margin-bottom: 6px;
}

.post-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.post-tags span {
  padding: 8px 16px;
  background: var(--green-soft);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-1);
}

.post-author {
  display: flex; gap: 18px;
  align-items: center;
  margin-top: 40px;
  padding: 24px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
}
.post-author img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green-3);
  flex-shrink: 0;
}
.post-author .name {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  color: var(--ink);
  font-size: 1.05rem;
}
.post-author .role {
  font-size: 0.88rem;
  color: var(--muted);
}

.post-related {
  background: var(--bg-soft);
  padding: 80px 56px;
}
.post-related-inner {
  max-width: var(--container);
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .post-cover { padding: 0 28px; margin-top: -40px; }
  .post-body { padding: 60px 28px; font-size: 1rem; }
  .post-body h2 { font-size: 1.5rem; }
  .post-body h3 { font-size: 1.15rem; }
  .post-related { padding: 60px 28px; }
}
@media (max-width: 768px) {
  .post-cover { padding: 0 20px; }
  .post-body { padding: 50px 20px; }
  .post-related { padding: 50px 20px; }
}

/* =========================================================
   PRICING TIERS
   ========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.price-card {
  background: var(--gold-soft);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  display: flex; flex-direction: column;
  position: relative;
  transition: all 0.5s var(--ease);
}
.price-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.price-card.featured {
  background: var(--grad-pharma);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-orange);
  transform: translateY(-12px);
}
.price-card.featured:hover { background: var(--grad-pharma); }
.price-card.featured:hover { transform: translateY(-18px); }
.price-card.featured h3,
.price-card.featured .price-amount { color: var(--white); }
.price-card.featured p { color: rgba(255,255,255,0.9); }
.price-card.featured .price-features li { color: rgba(255,255,255,0.9); }
.price-card.featured .price-features li::before { color: var(--white); }
.price-badge {
  position: absolute;
  top: -14px; right: 24px;
  background: var(--ink-deep);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.price-card.featured .price-badge {
  background: var(--grad-gold);
  color: var(--ink-deep);
}
.price-tier {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange-1);
  margin-bottom: 14px;
}
.price-card.featured .price-tier { color: var(--white); }
.price-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.price-amount {
  font-family: 'Urbanist', sans-serif;
  font-weight: 900;
  font-size: 3.4rem;
  line-height: 1;
  margin-bottom: 8px;
  display: flex; align-items: baseline; gap: 6px;
}
.price-amount .currency { font-size: 1.4rem; font-weight: 700; }
.price-amount .period { font-size: 0.95rem; color: var(--muted); font-weight: 500; margin-left: 4px; }
.price-card.featured .price-amount .period { color: rgba(255,255,255,0.8); }
.price-desc {
  font-size: 0.95rem;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.price-card.featured .price-desc { border-bottom-color: rgba(255,255,255,0.2); }
.price-features {
  list-style: none;
  padding: 0;
  flex: 1;
  margin-bottom: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.price-features li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.price-features li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(21,115,71,0.12);
  color: var(--orange-1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}
.price-card.featured .price-features li::before {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

/* =========================================================
   PORTFOLIO FEATURED CARDS (Guidy / Tsaloys highlight)
   ========================================================= */
.case-study {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.case-study:nth-child(even) {
  grid-template-columns: 1fr 1.1fr;
}
.case-study:nth-child(even) .case-image { order: 2; }
.case-study:nth-child(even) .case-info { order: 1; }
.case-image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.case-image img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: top center;
  transition: transform 1.2s var(--ease);
  background: var(--bg-soft);
}
.case-image:hover img { transform: scale(1.05); }
.case-image::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--green-soft), var(--bg-soft));
  z-index: -1;
  animation: jcShimmer 2s ease-in-out infinite;
}
@keyframes jcShimmer {
  50% { opacity: 0.5; }
}
.case-info .pill {
  display: inline-block; background: rgba(21,115,71,0.1); color: var(--orange-1); padding: 6px 16px; border-radius: var(--radius-pill); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px;
}
.case-info h2 { margin-bottom: 16px; font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.case-info p { margin-bottom: 22px; font-size: 1.02rem; }
.case-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.case-tags span {
  padding: 6px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}

/* =========================================================
   ANIMATIONS — scroll reveal, custom cursor, etc.
   ========================================================= */
@media (hover: hover) and (pointer: fine) {
  body, a, button, .btn, .svc-card, .industry-card, .testi-card {
    cursor: none !important;
  }
}

.jc-cursor {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 2px solid var(--orange-1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: width 0.4s var(--ease), height 0.4s var(--ease),
              background 0.4s var(--ease), border-color 0.3s var(--ease),
              opacity 0.3s var(--ease), border-radius 0.4s var(--ease);
  will-change: transform;
  display: flex; align-items: center; justify-content: center;
}
.jc-cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--orange-1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: opacity 0.25s var(--ease), background 0.25s var(--ease);
  will-change: transform;
}
.jc-cursor-label {
  font-family: 'Urbanist', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.jc-cursor.is-link {
  width: 56px; height: 56px;
  background: rgba(21,115,71,0.1);
  border-color: var(--orange-1);
}
.jc-cursor.is-button {
  width: 90px; height: 90px;
  background: var(--grad-pharma);
  border-color: transparent;
  box-shadow: var(--shadow-orange);
}
.jc-cursor.is-button .jc-cursor-label { opacity: 1; transform: scale(1); }
.jc-cursor.is-button ~ .jc-cursor-dot { opacity: 0; }
.jc-cursor.is-card {
  width: 110px; height: 110px;
  background: rgba(48,56,65,0.95);
  border-color: transparent;
  backdrop-filter: blur(2px);
}
.jc-cursor.is-card .jc-cursor-label {
  opacity: 1; transform: scale(1); color: var(--orange-3);
}
.jc-cursor.is-text {
  width: 4px; height: 28px;
  background: var(--orange-1);
  border: none; border-radius: 2px;
  animation: jcBlink 1s steps(2) infinite;
}
@keyframes jcBlink { to { opacity: 0.3; } }
.jc-cursor.is-nav {
  width: 14px; height: 14px;
  background: var(--orange-1);
  border-color: transparent;
}
.jc-cursor-trail {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--orange-3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  will-change: transform;
}
@media (hover: none) {
  .jc-cursor, .jc-cursor-dot, .jc-cursor-trail { display: none !important; }
}

/* Scroll reveal */
.jc-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.jc-reveal-in { opacity: 1; transform: translateY(0); }

/* Word reveal */
.jc-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%);
  animation: jcWordIn 0.9s var(--ease) forwards;
}
@keyframes jcWordIn {
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
/* =========================================================
   MOBILE MENU TOGGLE (hamburger)
   ========================================================= */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  z-index: 1001;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.menu-toggle:hover { border-color: var(--green-2); }
.menu-toggle span {
  position: absolute;
  left: 50%; top: 50%;
  width: 22px; height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle span:nth-child(1) { transform: translate(-50%, calc(-50% - 6px)); }
.menu-toggle span:nth-child(3) { transform: translate(-50%, calc(-50% + 6px)); }
.menu-toggle.is-open span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* =========================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ========================================================= */
@media (max-width: 1024px) {
  nav, nav.is-scrolled { padding: 14px 24px; }
  section { padding: 70px 24px; }
  .hero { padding: 60px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content { margin: 0 auto; }
  .hero-eyebrow { margin-left: auto; margin-right: auto; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-inner { grid-template-columns: 1fr; gap: 40px; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-band h2 { text-align: center; }
  .stats-section, .testi-section, .cta-band { padding-left: 24px; padding-right: 24px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-layout { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 22px; max-width: 520px; margin: 40px auto 0; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .case-study, .case-study:nth-child(even) { grid-template-columns: 1fr; gap: 30px; margin-bottom: 60px; }
  .case-study:nth-child(even) .case-image { order: unset; }
  .case-image { max-width: 700px; margin: 0 auto; }
  iframe { padding: 0 24px; }
}

/* =========================================================
   RESPONSIVE — MOBILE (≤ 768px) with hamburger menu
   ========================================================= */
@media (max-width: 768px) {
  body { font-size: 16px; }

  /* Nav with hamburger */
  nav, nav.is-scrolled {
    padding: 12px 18px;
    flex-wrap: nowrap;
    gap: 14px;
    justify-content: space-between;
  }
  .menu-toggle { display: block; }
  .nav-logo img, nav.is-scrolled .nav-logo img { height: 40px; }
  .nav-logo-text, nav.is-scrolled .nav-logo-text { font-size: 1.1rem; }

  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(48,56,65,0.12);
    padding: 12px 0 24px;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), visibility 0s linear 0.4s;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), visibility 0s;
  }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-links a:not(.nav-cta)::after { display: none; }
  .nav-links a:not(.nav-cta):hover { background: var(--green-soft); color: var(--green-2); }
  .nav-cta {
    margin: 14px 24px 0 !important;
    border-radius: var(--radius-pill) !important;
    padding: 14px 28px !important;
    border-bottom: none !important;
    width: calc(100% - 48px);
    justify-content: center;
  }

  /* Sections */
  section { padding: 50px 18px; }

  /* Hero */
  .hero { padding: 40px 18px 60px; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); line-height: 1.15; }
  .hero p.lead { font-size: 0.98rem; margin-bottom: 28px; }
  .hero-quote { font-size: 0.88rem; padding: 4px 0 4px 16px; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-illustration { aspect-ratio: 4/3; padding: 24px; }
  .hero-eyebrow { font-size: 0.7rem; padding: 7px 14px; }
  .float-tag { font-size: 0.7rem; padding: 8px 12px; }
  .float-tag.t1 { left: -8px; top: 12px; }
  .float-tag.t2 { right: -10px; bottom: 60px; }
  .float-tag.t3 { left: 12px; bottom: 12px; }

  /* Page hero */
  .page-hero { padding: 50px 18px 60px; }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); line-height: 1.15; }
  .page-hero p { font-size: 0.95rem; }
  .breadcrumb { font-size: 0.7rem; padding: 7px 14px; gap: 6px; }

  /* Section headers */
  .section-head { margin-bottom: 50px; }
  .section-head h2 { font-size: clamp(1.6rem, 6vw, 2rem); line-height: 1.18; }
  .section-head p { font-size: 0.96rem; }
  .pill { font-size: 0.68rem !important; padding: 7px 14px !important; letter-spacing: 0.12em !important; }

  /* Service cards — deux par ligne, même sur mobile */
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .svc-card { padding: 22px 14px; }
  .svc-card h3 { font-size: 0.96rem; margin-bottom: 8px; }
  .svc-card p { font-size: 0.8rem; margin-bottom: 14px; }
  .svc-icon { width: 52px; height: 52px; font-size: 1.3rem; border-radius: 14px; margin-bottom: 14px; }
  .svc-link { font-size: 0.66rem; padding: 8px 12px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-step { padding: 28px 22px; }
  .process-num { font-size: 2.4rem; }

  /* Stats */
  .stats-section { padding: 50px 18px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat-num { font-size: 2.4rem; }
  .stat-lbl { font-size: 0.85rem; }

  /* Testimonial */
  .testi-section { padding: 60px 18px; }
  .testi-inner { grid-template-columns: 1fr; gap: 32px; }
  .testi-card { padding: 30px 22px; }
  .testi-card blockquote { font-size: 1rem; }
  .testi-card::before { font-size: 4rem; top: 0; left: 16px; }

  /* Tech stack — pleine largeur sur mobile (les étiquettes ont besoin de place) */
  .tech-grid { grid-template-columns: 1fr; gap: 14px; }
  .tech-cat { padding: 24px 20px; }
  .tech-cat h4 { font-size: 0.75rem; }
  .tech-pills span { padding: 7px 13px; font-size: 0.8rem; }

  /* Industries */
  .industry-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .industry-card { aspect-ratio: 1/1; }
  .industry-label { font-size: 0.85rem; bottom: 14px; left: 14px; right: 14px; }
  .industry-label .arrow { width: 28px; height: 28px; font-size: 0.85rem; }

  /* About */
  .about-split { gap: 32px; }
  .about-image { aspect-ratio: 4/3; }
  .about-badge { padding: 14px 16px; bottom: 16px; left: 16px; }
  .about-badge .num { font-size: 1.6rem; }
  .about-badge .lbl { font-size: 0.7rem; max-width: 100px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; gap: 18px; max-width: 100%; }
  .price-card { padding: 30px 24px; }
  .price-card h3 { font-size: 1.4rem; }
  .price-amount { font-size: 2.4rem; }
  .price-features li { font-size: 0.9rem; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr; gap: 22px; }
  .portfolio-info { padding: 22px 20px; }
  .portfolio-filters { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 0.78rem; }
  .case-info h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .case-tags span { font-size: 0.75rem; padding: 5px 12px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; gap: 22px; }
  .blog-body { padding: 22px 20px; }
  .blog-card h3 { font-size: 1.1rem; }
  .recent-post { padding: 10px 0; }
  .recent-post img { width: 50px; height: 50px; }
  .recent-post .ttl { font-size: 0.82rem; }

  /* Post (article) */
  .post-hero { padding: 50px 18px 60px; }
  .post-hero h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .post-hero .post-meta { font-size: 0.82rem; gap: 14px; }
  .post-cover { padding: 0 18px; margin-top: -30px; }
  .post-cover img { aspect-ratio: 16/9; }
  .post-body { padding: 40px 18px; font-size: 0.98rem; }
  .post-body h2 { font-size: 1.35rem; padding-left: 18px; }
  .post-body h3 { font-size: 1.1rem; }
  .post-body blockquote { font-size: 1rem; padding: 18px 20px; margin: 1.4em 0; }
  .post-body .callout { padding: 22px 18px; }
  .post-body pre { padding: 16px 18px; font-size: 0.85rem; }
  .post-related { padding: 40px 18px; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr !important; gap: 32px !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-logo { height: 48px; }
  footer { padding: 50px 18px 30px; }

  /* CTA band */
  .stats-section, .testi-section, .cta-band { padding-left: 18px; padding-right: 18px; }
  .cta-band { padding: 56px 18px; }
  .cta-band h2 { font-size: clamp(1.5rem, 6vw, 2rem); line-height: 1.2; }
  .cta-inner { gap: 24px; }
  .cta-inner .btn { width: 100%; justify-content: center; }

  /* Iframes */
  iframe { padding: 0 18px; }

  /* Forms */
  .form-group input, .form-group textarea, .form-group select { padding: 13px 14px; font-size: 0.95rem; }
}

/* =========================================================
   RESPONSIVE — SMALL MOBILE (≤ 420px) — fine tuning
   ========================================================= */
@media (max-width: 420px) {
  nav, nav.is-scrolled { padding: 10px 14px; }
  .nav-logo { gap: 8px; }
  .nav-logo img, nav.is-scrolled .nav-logo img { height: 34px; }
  .nav-logo-text, nav.is-scrolled .nav-logo-text { font-size: 0.95rem; }
  section { padding: 44px 16px; }
  .hero { padding: 36px 16px 52px; }
  .page-hero, .post-hero { padding: 44px 16px 52px; }
  .post-cover, .post-body, .post-related, footer { padding-left: 16px; padding-right: 16px; }
  iframe { padding: 0 16px; }
  .industry-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-num { font-size: 2.6rem; }
  .float-tag { font-size: 0.65rem; }
  .float-tag.t2 { display: none; }
  .hero-illustration { padding: 18px; }
  .testi-card { padding: 26px 18px; }
  .price-amount { font-size: 2.1rem; }
}

/* =========================================================
   TSARIPHARM ADDITIONS — packages, comparatif, mock produit, FAQ, contact
   (mêmes tokens que le reste du fichier, aucune couleur inventée)
   ========================================================= */

/* Deux formules phares côte à côte (Local / Hybride) */
.pricing-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; }
@media (max-width: 768px) {
  .pricing-grid--2 { grid-template-columns: 1fr; max-width: 100%; gap: 18px; }
}

/* Tableau comparatif Local / Hybride */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1.5px solid var(--line); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 560px; background: var(--white); }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line-soft); font-size: 0.92rem; }
.compare-table thead th { font-family: 'Urbanist', sans-serif; font-weight: 800; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; background: var(--green-soft); color: var(--ink-deep); }
.compare-table tbody th { font-weight: 600; color: var(--ink); }
.compare-table td { color: var(--ink-soft); text-align: center; }
.compare-table tbody tr:last-child td, .compare-table tbody tr:last-child th { border-bottom: none; }
.compare-table .yes { color: var(--green-2); font-weight: 800; }
.compare-table .no { color: var(--muted); }

/* FAQ (natif <details>, sans JS) */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 820px; margin: 0 auto; }
.faq-item { border: 1.5px solid var(--line); border-radius: var(--radius); padding: 6px 24px; background: var(--white); transition: border-color 0.3s var(--ease); }
.faq-item[open] { border-color: var(--green-3); }
.faq-item summary { cursor: pointer; padding: 18px 0; font-family: 'Urbanist', sans-serif; font-weight: 700; font-size: 1rem; color: var(--ink); list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; font-weight: 400; color: var(--green-2); flex-shrink: 0; transition: transform 0.3s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 20px; margin: 0; }

/* Contact : lignes de coordonnées */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-row .ico { width: 46px; height: 46px; border-radius: var(--radius); background: var(--green-soft); color: var(--green-2); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; }
.contact-row h4 { margin-bottom: 4px; text-transform: none; letter-spacing: 0; font-size: 0.95rem; color: var(--ink); }
.contact-row p, .contact-row a { font-size: 0.95rem; }
.contact-note { background: var(--green-soft); border-radius: var(--radius-md); padding: 22px 24px; margin-top: 30px; font-size: 0.9rem; color: var(--ink-soft); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .form-row-2 { grid-template-columns: 1fr; gap: 0; }
}

/* Équipe TsariPharm (page À propos) */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 32px 20px; text-align: center; transition: all 0.5s var(--ease); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.team-avatar { width: 76px; height: 76px; margin: 0 auto 18px; border-radius: 50%; background: var(--grad-pharma); display: flex; align-items: center; justify-content: center; font-family: 'Urbanist', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--white); }
.team-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.team-role { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green-2); }
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .team-avatar { width: 64px; height: 64px; font-size: 1.1rem; }
}

/* Mock produit dans le hero (illustration CSS, pas de capture d'écran) */
.hero-mock { width: 100%; height: 100%; background: var(--white); border-radius: var(--radius-md); box-shadow: 0 30px 60px -10px rgba(0,0,0,0.3); padding: 20px; display: flex; flex-direction: column; gap: 16px; overflow: hidden; }
.hero-mock-bar { display: flex; gap: 6px; }
.hero-mock-bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.hero-mock-kpis { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-mock-kpi { flex: 1 1 100px; background: var(--bg-soft); border-radius: var(--radius); padding: 10px 12px; min-width: 0; }
.hero-mock-kpi span { display: block; }
.hero-mock-kpi .k-lbl { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 700; margin-bottom: 4px; }
.hero-mock-kpi .k-val { font-family: 'Urbanist', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--ink-deep); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-mock-chart { display: flex; align-items: flex-end; gap: 6px; height: 64px; }
.hero-mock-chart span { flex: 1; background: var(--grad-pharma); border-radius: 4px 4px 0 0; opacity: 0.85; }
.hero-mock-receipt { background: var(--bg-soft); border-radius: var(--radius); padding: 14px 16px; font-family: 'Urbanist', sans-serif; font-size: 0.72rem; color: var(--ink-soft); }
.hero-mock-receipt .r-line { display: flex; justify-content: space-between; gap: 10px; padding: 3px 0; }
.hero-mock-receipt .r-line span:first-child { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hero-mock-receipt .r-line span:last-child { flex-shrink: 0; }
.hero-mock-receipt .r-title { font-weight: 800; color: var(--green-2); font-size: 0.8rem; justify-content: flex-start; }
.hero-mock-receipt .r-sep { border-top: 1px dashed var(--line); margin: 6px 0; }
.hero-mock-receipt .r-total { font-weight: 800; color: var(--ink-deep); }
@media (max-width: 420px) {
  .hero-mock { padding: 14px; gap: 12px; }
  .hero-mock-receipt { display: none; }
}

/* Captures d'écran réelles de l'application (desktop + mobile) */
.screens-section { padding: 90px 56px; }
.screens-row { display: flex; align-items: flex-end; justify-content: center; gap: 48px; flex-wrap: wrap; }
.browser-frame { width: 100%; flex: 3 1 760px; max-width: 1150px; min-width: 0; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--line); }
.browser-frame .hero-mock-bar { padding: 12px 16px; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.browser-frame img { display: block; width: 100%; height: auto; }
.screens-mobile { flex: 1 1 300px; max-width: 300px; width: 100%; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.18)); }
.screens-mobile img { display: block; width: 100%; height: auto; }
@media (max-width: 1024px) {
  .browser-frame { flex-basis: 100%; }
  .screens-mobile { flex-basis: 260px; max-width: 260px; }
}
@media (max-width: 768px) {
  .screens-section { padding: 56px 20px; }
  .screens-row { gap: 32px; }
  .screens-mobile { width: 85%; flex-basis: auto; max-width: 340px; }
}
@media (max-width: 420px) {
  .screens-section { padding: 44px 14px; }
}

/* Capture du hero : desktop par défaut, bascule sur la vue mobile en dessous de 1024px */
.hero-shot { position: relative; }
.hero-shot .browser-frame { max-width: 100%; box-shadow: 0 30px 60px -10px rgba(0,0,0,0.35); }
.hero-shot-mobile { display: none; margin: 0 auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); }
.hero-shot-mobile img { display: block; width: 100%; height: auto; }
@media (max-width: 1024px) {
  .hero-shot-desktop { display: none; }
  .hero-shot-mobile { display: block; width: 62%; max-width: 320px; }
}
@media (max-width: 420px) {
  .hero-shot-mobile { width: 74%; max-width: 280px; }
}

/* Bouton plein écran + visionneuse (captures d'écran) */
.shot-wrap { position: relative; }
.shot-expand {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.92); border: 1px solid var(--line);
  color: var(--ink-deep); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s var(--ease);
}
.shot-expand:hover { background: var(--grad-pharma); color: var(--white); border-color: transparent; transform: scale(1.08); }
.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(15,20,18,0.92);
  display: none; align-items: center; justify-content: center;
  padding: 48px 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 22px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3);
  color: var(--white); font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
@media (max-width: 420px) {
  .shot-expand { width: 32px; height: 32px; font-size: 0.85rem; top: 8px; right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .jc-reveal { opacity: 1; transform: none; }
  .jc-word { opacity: 1; transform: none; animation: none; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
