/* ─────────────────────────────────────
   MEDIA NATION — GLOBAL STYLESHEET
   Theme: Creza Clone
───────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800;900&family=Barlow:wght@300;400;500;600;700&display=swap');

:root {
  --lime: #50b17d;
  --black: #0a0a0a;
  --surface: #0f0f0f;
  --card: #141414;
  --card2: #1a1a1a;
  --text: #ffffff;
  --muted: rgba(255,255,255,0.5);
  --muted2: rgba(255,255,255,0.25);
  --border: rgba(255,255,255,0.07);
  --r: 14px;
}

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

/* ── TYPOGRAPHY ─────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.01em;
}
.display-hero { font-size: clamp(64px, 10vw, 140px); }
.display-xl   { font-size: clamp(48px, 7.5vw, 108px); }
.display-lg   { font-size: clamp(36px, 5.5vw, 80px); }
.svc-overview-h2 { font-size: clamp(40px, 6.2vw, 90px); }
.display-md   { font-size: clamp(26px, 3.5vw, 52px); }
.display-sm   { font-size: clamp(18px, 2.5vw, 28px); }

.ghost {
  -webkit-text-stroke: 2px rgba(255,255,255,0.88);
  color: transparent;
  display: block;
}

.body-lg { font-size: 1rem; line-height: 1.7; color: var(--muted); font-weight: 400; }
.body-md { font-size: 0.875rem; line-height: 1.7; color: var(--muted); }

/* ── SECTION LABEL ───────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.label .star { font-size: 1rem; }

/* ── BUTTONS ─────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 100px;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}
.btn-lime {
  background: var(--lime);
  color: var(--black);
}
.btn-lime:hover { background: #6abd8e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(80,177,125,0.3); }
.btn-lime:active { transform: translateY(0); }

.btn-dark {
  background: var(--card2);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-dark:hover { border-color: var(--lime); color: var(--lime); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }
.btn-outline:active { transform: translateY(0); }

.btn-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--black);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-arrow:hover { transform: scale(1.1) rotate(45deg); }

/* ── CARDS ───────────────────────────── */
.card {
  background: var(--card);
  border-radius: var(--r);
  border: 1px solid var(--border);
  padding: 32px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.card:hover { border-color: rgba(80,177,125,0.2); transform: translateY(-4px); }

/* ── NAVBAR ──────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 46px; width: auto; mix-blend-mode: screen; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--lime);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--lime); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* ── NAV DROPDOWN ─────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex !important; align-items: center; gap: 5px; }
.nav-dropdown > a .chevron { transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); flex-shrink: 0; }
.nav-dropdown:hover > a { color: var(--lime); }
.nav-dropdown:hover > a .chevron { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;          /* flush — bridge fills the visual gap */
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  /* 12px transparent padding-top = hover bridge, no dead zone */
  padding-top: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* The visual card sits inside the padding bridge */
.nav-dropdown-menu-inner {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 6px;
  min-width: 240px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.2);
  position: relative;
}
/* Subtle top caret on the card */
.nav-dropdown-menu-inner::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 5px solid var(--border);
}
.nav-dropdown-menu-inner::after {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 4px solid var(--card);
}

.nav-dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.82rem !important;
  color: var(--muted) !important;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
  white-space: nowrap;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  font-weight: 500 !important;
  font-family: inherit;
}
.nav-dropdown-menu a:hover {
  background: var(--surface);
  color: var(--text) !important;
  padding-left: 18px;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a::before { display: none !important; }
.nav-dropdown-menu .ddot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.15s;
}
.nav-dropdown-menu a:hover .ddot { opacity: 1; }

/* Mobile submenu */
.mobile-sub-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted2);
  padding: 8px 0 4px 20px;
  font-weight: 700;
}
.mobile-sub a {
  padding-left: 20px !important;
  font-size: 0.82rem !important;
  color: var(--muted) !important;
  border-left: 2px solid var(--border);
  margin-left: 8px;
}
.mobile-sub a:hover { color: var(--lime) !important; border-left-color: var(--lime); }

.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--lime);
}
.nav-phone svg { color: var(--lime); }

/* Toggle hidden on desktop — only visible on mobile */
.nav-toggle { display: none; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--black);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow-y: auto;
  padding: 80px 0 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu > a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s, transform 0.2s;
  letter-spacing: -0.01em;
}
.mobile-menu > a:hover { color: var(--lime); transform: translateX(6px); }
.mobile-close {
  position: absolute;
  top: 28px; right: 28px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  font-size: 1.1rem;
  color: var(--text);
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  background: var(--card);
}
.mobile-close:hover { border-color: var(--lime); color: var(--lime); transform: rotate(90deg); }

/* Mobile sub-links */
.mobile-sub { display: none; flex-direction: column; gap: 4px; }
.mobile-sub.open { display: flex; }
.mobile-sub a {
  font-size: 0.78rem !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted) !important;
  font-weight: 600 !important;
  padding: 6px 16px !important;
  border-left: 2px solid var(--border);
  margin-left: 12px;
  transition: color 0.15s, border-color 0.15s, padding-left 0.15s !important;
}
.mobile-sub a:hover { color: var(--lime) !important; border-left-color: var(--lime); padding-left: 20px !important; transform: none !important; }

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    padding: 8px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
  }
  .nav-toggle:hover { background: var(--card); }
  .nav-toggle span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: var(--text);
    transition: background 0.2s, transform 0.3s, opacity 0.3s, width 0.3s;
  }
  .nav-toggle span:nth-child(1) { width: 24px; }
  .nav-toggle span:nth-child(2) { width: 16px; }
  .nav-toggle span:nth-child(3) { width: 20px; }
  /* Hide the extra dot spans (4–9) on mobile */
  .nav-toggle span:nth-child(n+4) { display: none; }
  .nav-toggle:hover span { background: var(--lime); width: 24px; }

  /* Burger → X when menu open */
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 24px; }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 24px; }
  .nav-toggle.is-open:hover span { background: var(--lime); }
}

/* Hide the old close button — burger now acts as the close trigger */
.mobile-close { display: none !important; }

/* ── MARQUEE TICKER ──────────────────── */
.ticker {
  background: var(--lime);
  padding: 16px 0;
  overflow: hidden;
  width: 100%;
}
.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
}
.ticker-sep { color: rgba(0,0,0,0.4); font-size: 1.2rem; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── REFERENCES LOGO MARQUEE ─────────── */
.ref-section {
  padding: 72px 0;
  overflow: hidden;
  position: relative;
}
.ref-section::before, .ref-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.ref-section::before { left: 0; background: linear-gradient(to right, var(--black), transparent); }
.ref-section::after  { right: 0; background: linear-gradient(to left, var(--black), transparent); }

.ref-header {
  text-align: center;
  margin-bottom: 48px;
}
.ref-header .label { justify-content: center; font-size: 1.4rem; }
.ref-header p { font-size: 1.4rem; color: var(--muted2); margin-top: 4px; }

.ref-row { display: flex; overflow: hidden; margin-bottom: 40px; }
.ref-row:last-child { margin-bottom: 0; }
.ref-track {
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  flex-shrink: 0;
  animation: ref-scroll-left 35s linear infinite;
}
.ref-track.reverse { animation: ref-scroll-right 38s linear infinite; }
.ref-row:hover .ref-track { animation-play-state: paused; }

@keyframes ref-scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes ref-scroll-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.ref-logo {
  height: 36px;
  width: auto;
  opacity: 0.45;
  filter: brightness(0) invert(1); /* always white */
  transition: opacity 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.ref-logo:hover { opacity: 1; transform: scale(1.08); }

/* Light mode: invert to dark */
[data-theme="light"] .ref-section::before { background: linear-gradient(to right, var(--surface), transparent); }
[data-theme="light"] .ref-section::after  { background: linear-gradient(to left, var(--surface), transparent); }
[data-theme="light"] .ref-logo { filter: brightness(0); }

@media (max-width: 768px) {
  .ref-section::before, .ref-section::after { width: 48px; }
  .ref-header { padding: 0 56px; }
  .ref-header .label { font-size: 0.7rem !important; }
  .ref-header p { font-size: 0.82rem; }
}

/* ── PAGE HERO (inner pages) ─────────── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--black);
  text-align: center;
}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(60px, 10vw, 130px);
  text-transform: uppercase;
  color: var(--text);
  line-height: 0.9;
  margin-bottom: 24px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--lime); }
.breadcrumb-sep { color: var(--muted2); }

/* ── SECTIONS ────────────────────────── */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* ── SERVICE CARDS ───────────────────── */
.service-card {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 32px 28px 28px;
  transition: border-color 0.3s, transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #50b17d 0%, rgba(80,177,125,0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(80,177,125,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after  { opacity: 1; }
.service-card:hover {
  border-color: rgba(80,177,125,0.28);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(80,177,125,0.08), 0 6px 20px rgba(0,0,0,0.35);
}
.service-icon {
  width: 52px; height: 52px;
  background: rgba(80,177,125,0.08);
  border: 1px solid rgba(80,177,125,0.22);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #50b17d;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.service-card:hover .service-icon {
  background: rgba(80,177,125,0.15);
  border-color: rgba(80,177,125,0.45);
  transform: scale(1.08);
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1.2;
}
.service-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; flex: 1; }
.service-card ul { display: flex; flex-direction: column; gap: 6px; }
.service-card ul li {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.service-card ul li::before {
  content: '→';
  color: #50b17d;
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.45;
  flex-shrink: 0;
}
.service-card .service-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #50b17d !important;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  transition: gap 0.2s, color 0.2s;
  text-decoration: none;
}
.service-card .service-readmore:hover { gap: 10px; color: #6fd49a !important; }

/* ── STAT BLOCKS ─────────────────────── */
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  color: var(--text);
  line-height: 1;
}
.stat-num span { color: var(--lime); }
.stat-label { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.05em; margin-top: 4px; }

/* ── ROTATING CIRCLE TEXT ────────────── */
.circle-btn {
  position: relative;
  width: 140px; height: 140px;
  flex-shrink: 0;
}
.circle-text {
  position: absolute;
  inset: 0;
  animation: spin 10s linear infinite;
}
.circle-center {
  position: absolute;
  inset: 28px;
  background: var(--lime);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 900;
  transition: transform 0.3s;
}
.circle-btn:hover .circle-center { transform: rotate(45deg) scale(1.05); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── VISION CARDS ────────────────────── */
.vision-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.vision-card {
  background: var(--card);
  border-radius: var(--r);
  border: 1px solid var(--border);
  padding: 32px 24px;
  transition: border-color 0.25s;
}
.vision-card:hover { border-color: rgba(80,177,125,0.3); }
.vision-card .vc-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 36px;
}
.vision-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--text);
}
.vision-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.vc-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.vc-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--muted);
  transition: all 0.2s;
}
.vc-tag:hover { border-color: var(--lime); color: var(--lime); }

/* ── WHY CHOOSE US ───────────────────── */
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.pain-item:last-child { border-bottom: none; }
.pain-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  margin-top: 6px;
}
.pain-item p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ── PRICING CARDS ───────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pricing-card {
  background: var(--card);
  border-radius: var(--r);
  border: 1px solid var(--border);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 24px;
  transition: border-color 0.25s, transform 0.25s;
}
.pricing-card.featured {
  background: var(--lime);
  border-color: var(--lime);
}
.pricing-card.featured * { color: var(--black) !important; }
.pricing-card.featured .pricing-price { color: var(--black) !important; }
.pricing-card.featured .pricing-divider { background: rgba(0,0,0,0.15) !important; }
.pricing-card.featured .pricing-feature { border-color: rgba(0,0,0,0.15) !important; }
.pricing-card.featured .btn-dark {
  background: var(--black);
  color: var(--lime);
  border-color: var(--black);
}
.pricing-card:not(.featured):hover { border-color: rgba(80,177,125,0.3); transform: translateY(-6px); }

.pricing-icon { color: var(--lime); width: 48px; height: 48px; }
.pricing-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
}
.pricing-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
.pricing-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--text);
  line-height: 1;
}
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.pricing-divider { height: 1px; background: var(--border); margin: 0 -32px; }
.pricing-features { display: flex; flex-direction: column; gap: 0; }
.pricing-feature {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}
.pricing-feature:last-child { border-bottom: none; }
.pricing-feature svg { color: var(--lime); flex-shrink: 0; width: 16px; height: 16px; }

/* ── TESTIMONIAL ─────────────────────── */
/* testi-grid: minmax(0,1fr) stops columns from expanding beyond their share */
.testi-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important; }
.testi-grid > * { min-width: 0; }

.testi-carousel-wrap { position: relative; overflow: hidden; width: 100%; }
.testi-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 0;
  width: 100%;
}
.testi-carousel::-webkit-scrollbar { display: none; }

.testimonial-card {
  background: var(--card2);
  border-radius: var(--r);
  border: 1px solid var(--border);
  padding: 36px;
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  box-sizing: border-box;
  min-width: 0;
}
.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--lime);
}
.stars { display: flex; gap: 4px; }
.star-icon { color: var(--lime); font-size: 1.1rem; }

/* ── CAROUSEL CONTROLS (testimonials always, services on mobile) ─── */
.carousel-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.carousel-track {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
}
.carousel-fill {
  height: 100%;
  background: var(--lime);
  border-radius: 2px;
  width: 10%;
  transition: width 0.25s ease;
}
.carousel-arrows { display: flex; gap: 8px; flex-shrink: 0; }
.carousel-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  font-size: 0.85rem;
  padding: 0;
}
.carousel-btn:not(:disabled):hover { border-color: var(--lime); color: var(--lime); background: rgba(80,177,125,0.08); }
.carousel-btn:disabled { opacity: 0.3; cursor: default; }

/* Light mode carousel controls */
[data-theme="light"] .carousel-track { background: rgba(0,0,0,0.12); }
[data-theme="light"] .carousel-btn { background: rgba(0,0,0,0.06); color: rgba(0,0,0,0.55); border-color: rgba(0,0,0,0.15); }
[data-theme="light"] .carousel-btn:not(:disabled):hover { border-color: var(--lime); color: var(--lime); background: rgba(80,177,125,0.08); }

/* ── BLOG CARDS ──────────────────────── */
.blog-card { background: var(--card); border-radius: var(--r); border: 1px solid var(--border); overflow: hidden; transition: border-color 0.25s, transform 0.25s; }
.blog-card:hover { border-color: rgba(80,177,125,0.3); transform: translateY(-6px); }
.blog-img { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-category {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--lime);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.blog-body { padding: 28px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 0.75rem; color: var(--muted2); }
.blog-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
  transition: color 0.2s;
}
.blog-card:hover .blog-body h3 { color: var(--lime); }
.blog-readmore {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s, gap 0.2s;
}
.blog-readmore:hover { color: var(--lime); gap: 10px; }

/* ── CTA BAND ────────────────────────── */
.cta-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-size: clamp(32px, 5vw, 68px);
  color: var(--text);
  line-height: 0.95;
}
.cta-band h2 span { color: var(--lime); }
.cta-social { display: flex; align-items: center; gap: 12px; }
.cta-social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all 0.2s;
}
.cta-social-link:hover { border-color: var(--lime); color: var(--lime); background: rgba(80,177,125,0.05); }

/* ── FOOTER ──────────────────────────── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 0;
  padding-bottom: 56px;
}
.footer-grid > div {
  padding-top: 8px;
}
footer .footer-grid > div > h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 24px;
  display: block;
}
.footer-logo img { height: 52px; margin-bottom: 20px; mix-blend-mode: screen; }
.footer-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.7; max-width: 300px; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 24px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.footer-links a::before { content: '→'; color: var(--lime); font-size: 0.75rem; opacity: 0; transition: opacity 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-links a:hover::before { opacity: 1; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; text-decoration: none; transition: opacity 0.2s; }
a.footer-contact-item:hover { opacity: 0.75; }
a.footer-contact-item:hover svg { color: var(--lime); }
.footer-contact-item svg { color: var(--lime); flex-shrink: 0; margin-top: 2px; transition: color 0.2s; }
.footer-contact-item span { font-size: 0.875rem; color: var(--muted); line-height: 1.5; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
[data-theme="light"] .footer-bottom p { color: rgba(0,0,0,0.45); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--lime); color: var(--lime); }

/* ── UTILS ───────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.flex-center { display: flex; align-items: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* Form elements */
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted2); }
.form-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-input::placeholder { color: rgba(255,255,255,0.6); }
.form-input:focus { border-color: var(--lime); }
textarea.form-input { resize: vertical; min-height: 120px; }
[style*="border:1px solid var(--border)"][style*="border-radius:20px"] { border-color: rgba(255,255,255,0.18) !important; }
[data-theme="light"] [style*="border:1px solid var(--border)"][style*="border-radius:20px"] { border-color: rgba(0,0,0,0.14) !important; }
[data-theme="light"] .form-input { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.2); color: var(--text); }
[data-theme="light"] .form-input::placeholder { color: rgba(0,0,0,0.35); }
@media (max-width: 600px) { .form-row-2 { grid-template-columns: 1fr !important; } }

/* Stats bar */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-bar-item {
  padding: 0 48px;
  border-right: 1px solid var(--border);
  text-align: left;
}
.stats-bar-item:first-child { padding-left: 0; }
.stats-bar-item:last-child { border-right: none; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--lime); }
.faq-icon { transition: transform 0.3s; color: var(--lime); font-size: 1.2rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 24px; }

/* Portfolio / Project grid */
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.project-item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--card);
}
.project-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-item:hover img { transform: scale(1.06); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}
.project-item:hover .project-overlay { opacity: 1; }
.project-cat {
  background: var(--lime);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 8px;
}
.project-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  color: #ffffff;
}

/* Filter tabs */
.filter-tabs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-tab {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab.active, .filter-tab:hover { background: var(--lime); color: var(--black); border-color: var(--lime); }

/* ── CASE STUDY PAGES ─────────────────────────────── */
a.project-item { display: block; text-decoration: none; color: inherit; }
.project-overlay { pointer-events: none; }
.project-metric {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--lime);
  margin-bottom: 4px;
  line-height: 1;
}

.case-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 64px 0;
}
.case-kpi {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
}
.case-kpi-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 8px;
}
.case-kpi-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  line-height: 1.5;
}

.case-section {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.case-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.case-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 24px;
}
.case-section p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 16px;
  max-width: 720px;
}
.case-section ul {
  list-style: none;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}
.case-section ul li::before {
  content: '✦';
  color: var(--lime);
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 5px;
}
.case-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.case-result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.case-result-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.case-result-item .rnum {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--lime);
  line-height: 1;
}
.case-result-item .rdesc {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5;
}
.case-hero-img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: 16px;
  margin: 48px 0 0;
  background: var(--card);
  display: block;
}
.case-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; justify-content: center; }
.case-tag {
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.case-nav-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.case-nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.case-nav-link:hover { border-color: var(--lime); transform: translateY(-3px); }
.case-nav-link .nav-dir { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted2); }
.case-nav-link .nav-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.1rem; text-transform: uppercase; color: var(--text); }
.case-nav-link .nav-cat { font-size: 0.75rem; color: var(--lime); font-weight: 600; letter-spacing: 0.05em; }

/* Light mode: article body text */
[data-theme="light"] .article-body p,
[data-theme="light"] .article-body ul li { color: rgba(0,0,0,0.7); }
[data-theme="light"] .article-body blockquote p { color: rgba(0,0,0,0.75); }

/* Light mode: case study KPI numbers */
[data-theme="light"] .case-kpi-num,
[data-theme="light"] .case-result-item .rnum,
[data-theme="light"] .case-section-label,
[data-theme="light"] .case-nav-link .nav-cat,
[data-theme="light"] .project-metric { color: #50b17d; }
[data-theme="light"] .case-section ul li::before { color: #50b17d; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--card2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(80,177,125,0.3); }

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .vision-cards { grid-template-columns: 1fr; }
  .stats-bar-grid { grid-template-columns: repeat(2,1fr); gap: 0; }
  .stats-bar-item:nth-child(2) { border-right: none; }
  .stats-bar-item:nth-child(3) { border-top: 1px solid var(--border); padding-top: 32px; }
  .stats-bar-item:nth-child(4) { border-right: none; border-top: 1px solid var(--border); padding-top: 32px; }
  .grid-2 { grid-template-columns: 1fr; gap: 48px; }
  .project-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .container, .container-wide { padding: 0 20px; }
  .section { padding: 64px 0; }
  #navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-band-inner { flex-direction: column; text-align: left; align-items: flex-start; }
  .stats-bar-grid { grid-template-columns: 1fr 1fr; }
  /* Réalisations: horizontal snap carousel on mobile */
  .project-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 14px;
    padding-bottom: 4px;
  }
  .project-grid::-webkit-scrollbar { display: none; }
  .project-grid .project-item {
    flex: 0 0 82vw !important;
    max-width: 320px !important;
    scroll-snap-align: start;
    min-width: 0;
  }
  /* Always show overlay on touch (no hover) */
  .project-item .project-overlay { opacity: 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── WHATSAPP WIDGET ─────────────────── */
#wa-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
  animation: wa-pop 0.4s 1.2s cubic-bezier(0.34,1.56,0.64,1) both;
}
#wa-widget:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
#wa-widget:active { transform: scale(0.96); }
@keyframes wa-pop { from { transform: scale(0); opacity:0; } to { transform: scale(1); opacity:1; } }

/* ── READING PROGRESS BAR ───────────── */
#read-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 3px;
  z-index: 9999;
  background: transparent;
}
#read-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--lime);
  transition: width 0.1s linear;
}

/* ── ARTICLE PAGE ────────────────────── */
.article-hero { padding: 140px 0 60px; background: var(--black); }
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  text-transform: uppercase;
  color: var(--text);
  margin: 48px 0 20px;
  line-height: 1.1;
}
.article-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  text-transform: uppercase;
  color: var(--text);
  margin: 32px 0 14px;
}
.article-body p { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 20px; }
.article-body ul { list-style: none; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.article-body ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.article-body ul li::before { content: '✦'; color: var(--lime); font-size: 0.7rem; flex-shrink: 0; margin-top: 5px; }
.article-body blockquote {
  border-left: 3px solid var(--lime);
  padding: 20px 28px;
  background: var(--card);
  border-radius: 0 8px 8px 0;
  margin: 32px 0;
}
.article-body blockquote p { font-size: 1.05rem; font-style: italic; color: rgba(255,255,255,0.75); margin: 0; line-height: 1.75; }
.article-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 48px 0 32px; }
.article-tag {
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all 0.2s;
}
.article-tag:hover { border-color: var(--lime); color: var(--lime); }
.article-share { display: flex; align-items: center; gap: 16px; padding: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 48px 0; flex-wrap: wrap; }
.share-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted2); }
.share-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  transition: all 0.2s;
}
.share-btn:hover { border-color: var(--lime); color: var(--lime); }

/* ── CLIENT LOGOS ────────────────────── */
.client-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.client-logo-card {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 90px;
  transition: border-color 0.2s, transform 0.2s;
}
.client-logo-card:hover { border-color: rgba(80,177,125,0.2); transform: translateY(-3px); }
.client-logo-card img {
  height: 36px;
  max-width: 120px;
  object-fit: contain;
  filter: invert(1) brightness(0.55);
  transition: filter 0.2s;
}
.client-logo-card:hover img { filter: invert(1) brightness(0.85); }
.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.client-logo-card:hover .logo-name { color: rgba(255,255,255,0.65); }
@media (max-width: 768px) { .client-logos-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── PROCESS STEPS ───────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.process-step {
  background: var(--card);
  border-radius: var(--r);
  border: 1px solid var(--border);
  padding: 32px 24px;
  transition: border-color 0.25s, transform 0.25s;
}
.process-step:hover { border-color: rgba(80,177,125,0.3); transform: translateY(-4px); }
.process-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: rgba(80,177,125,0.35);
  line-height: 1;
  margin-bottom: 20px;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--text); }
.process-step p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }
@media (max-width: 1024px) { .process-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE / MOBILE — comprehensive overrides
══════════════════════════════════════════════════════════════ */

/* Prevent horizontal scroll globally */
html, body { overflow-x: hidden; max-width: 100%; }
img, video, iframe { max-width: 100%; height: auto; }

@media (max-width: 1024px) {
  .display-xl { font-size: clamp(3rem, 6vw, 5.5rem); }
  .display-lg { font-size: clamp(2.2rem, 5vw, 4rem); }
  .svc-overview-h2 { font-size: clamp(2.46rem, 5.6vw, 4.48rem); }
}

@media (max-width: 768px) {
  /* Typography */
  .display-xl { font-size: clamp(2rem, 8vw, 3.2rem) !important; line-height: 1.08 !important; letter-spacing: -0.02em; }
  .display-lg  { font-size: clamp(1.7rem, 7vw, 2.6rem) !important; line-height: 1.1 !important; letter-spacing: -0.01em; }
  .svc-overview-h2 { font-size: clamp(1.9rem, 7.84vw, 2.9rem) !important; }
  .body-lg     { font-size: 1rem !important; }

  /* Container */
  .container, .container-wide { padding: 0 16px !important; }

  /* Section padding */
  .section     { padding: 56px 0 !important; }
  .section-sm  { padding: 32px 0 !important; }
  .page-hero   { padding: 100px 0 40px !important; }
  .article-hero { padding: 100px 0 40px !important; }

  /* Nav */
  #navbar { padding: 0 16px !important; height: 60px !important; }
  .nav-links, .nav-phone { display: none !important; }

  /* Grids — all collapse to 1 col */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr !important; gap: 24px !important; }

  /* Inline grids in service pages & sections */
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  div[style*="grid-template-columns:repeat(3"],
  div[style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }
  div[style*="grid-template-columns:repeat(4"],
  div[style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  /* Stats bar */
  .stats-bar-grid { grid-template-columns: 1fr 1fr !important; }
  .stats-bar-item { border-right: none !important; padding: 24px 16px !important; }
  .stats-bar-item:nth-child(odd) { border-right: 1px solid var(--border) !important; }

  /* Service cards */
  .service-grid, .services-grid { grid-template-columns: 1fr !important; }

  /* Blog grid */
  .blog-grid { grid-template-columns: 1fr !important; }
  .blog-featured { flex-direction: column !important; }

  /* Process grid */
  .process-grid { grid-template-columns: 1fr 1fr !important; }

  /* Client logos */
  .client-logos-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Vision cards */
  .vision-cards { grid-template-columns: 1fr !important; }

  /* CTA band */
  .cta-band-inner { flex-direction: column !important; text-align: left !important; align-items: flex-start !important; gap: 24px !important; }
  .cta-band-inner > div[style*="align-items:flex-end"],
  .cta-band-inner > div[style*="align-items: flex-end"] { align-items: flex-start !important; width: 100% !important; }
  .cta-band h2 br { display: none; }
  .cta-band-inner > div > div[style*="display:flex"][style*="gap:12px"],
  .cta-band-inner > div > div[style*="display: flex"][style*="gap: 12px"] { width: 100% !important; }
  .cta-band-inner .btn { flex: 1; text-align: center; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; gap: 0 !important; padding-bottom: 0 !important; }
  .footer-grid > div { padding: 28px 0 !important; border-bottom: 1px solid rgba(255,255,255,0.06) !important; }
  .footer-grid > div:first-child { padding-top: 0 !important; }
  .footer-bottom { flex-direction: column !important; text-align: center !important; gap: 8px !important; }
  .footer-brand { margin-bottom: 16px; }

  /* SEO keyword footer */
  .seo-kw-footer > div { grid-template-columns: 1fr 1fr !important; gap: 20px 24px !important; }

  /* Ticker */
  .ticker { overflow: hidden !important; }

  /* Article share */
  .article-share { gap: 10px !important; }
  .share-btn { padding: 8px 12px !important; font-size: 0.72rem !important; }

  /* Related articles */
  div[style*="grid-template-columns:repeat(3,1fr)"],
  div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* FAQ layout */
  .faq-layout,
  div[style*="grid-template-columns:1fr 1fr"][class*="faq"],
  div.faq-layout { grid-template-columns: 1fr !important; gap: 32px !important; }

  /* Page hero breadcrumb */
  .breadcrumb { flex-wrap: wrap !important; justify-content: center !important; }

  /* Hero grid (1fr 420px) — collapse to single column */
  div[style*="grid-template-columns:1fr 420px"],
  div[style*="grid-template-columns: 1fr 420px"] {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  /* Mission / about grids with fixed left column (180px 1fr, 200px 1fr, 280px 1fr) */
  div[style*="grid-template-columns:180px 1fr"],
  div[style*="grid-template-columns: 180px 1fr"],
  div[style*="grid-template-columns:200px 1fr"],
  div[style*="grid-template-columns: 200px 1fr"],
  div[style*="grid-template-columns:280px 1fr"],
  div[style*="grid-template-columns: 280px 1fr"],
  .mission-grid,
  .whatwedo-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Align circle badge to the left when it stacks above text */
  .mission-grid > div:first-child {
    align-items: flex-start !important;
    padding-top: 0 !important;
  }

  /* repeat(2,1fr) grids */
  div[style*="grid-template-columns:repeat(2,1fr)"]:not(.stats-kpi-grid),
  div[style*="grid-template-columns: repeat(2, 1fr)"]:not(.stats-kpi-grid) {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .stats-kpi-grid { grid-template-columns: repeat(2,1fr) !important; gap: 20px !important; }
  .about-intro-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .masonry-img-grid { grid-template-columns: 1fr !important; }
  .masonry-img-grid img { margin-top: 0 !important; }
  .case-kpi-row { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; margin: 32px 0 !important; }
  .case-2col { grid-template-columns: 1fr !important; gap: 32px !important; }
  .case-result-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .case-nav-row { grid-template-columns: 1fr !important; gap: 12px !important; }
  .case-hero-img { height: 220px !important; }

  /* Hide hero image column on mobile */
  .hero-visual { display: none !important; }

  /* Hero rotating badge */
  .hero-badge { display: none; }

  /* WA widget — push up above sticky CTA bar */
  #wa-widget { width: 52px !important; height: 52px !important; bottom: 80px !important; right: 16px !important; }

  /* Services carousel */
  .svc-carousel {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    padding: 4px 0 8px !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    /* Peek: right fade shows next card exists */
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
  }
  .svc-carousel::-webkit-scrollbar { display: none; }
  .svc-carousel .service-card {
    flex: 0 0 82vw !important;
    max-width: 320px !important;
    scroll-snap-align: start !important;
    min-width: 0 !important;
  }

  /* Why us / Testimonials 2-col grids */
  .why-grid, .testi-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Contact 2-col layout on service pages */
  .contact-layout,
  div[style*="grid-template-columns:1fr 1.4fr"],
  div[style*="grid-template-columns: 1fr 1.4fr"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .testimonial-card { padding: 24px !important; }

  /* Vision cards — remove desktop stagger */
  .vision-card[style*="margin-top"] { margin-top: 0 !important; }

  /* Blog featured — image full width on top */
  .blog-featured > div:first-child { aspect-ratio: 16/9 !important; }

  /* Body padding for sticky CTA bar */
  body { padding-bottom: 64px !important; }
}

/* ── Back to top button ──────────────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s, color 0.2s;
  z-index: 997;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-to-top:hover { background: #50b17d; color: #0a0a0a; border-color: #50b17d; }

/* ── Mobile sticky CTA bar ───────────────────────────────────────────────── */
#mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,10,10,0.97);
  border-top: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 998;
  padding: 10px 16px 10px;
  align-items: center;
  gap: 12px;
  transform: translateY(0);
  transition: transform 0.3s ease;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
#mobile-cta-bar.hidden { transform: translateY(100%); }
#mobile-cta-bar .mcta-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 10px 0;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: color 0.2s, border-color 0.2s;
}
#mobile-cta-bar .mcta-call:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
#mobile-cta-bar .mcta-devis {
  flex: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #50b17d;
  color: #0a0a0a;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 11px 0;
  border-radius: 8px;
  transition: background 0.2s;
}
#mobile-cta-bar .mcta-devis:hover { background: #d4ff1a; }

@media (max-width: 768px) {
  #mobile-cta-bar { display: flex; }
  #back-to-top { bottom: 80px; }
}

@media (max-width: 480px) {
  .display-xl { font-size: clamp(1.6rem, 7vw, 2.2rem) !important; line-height: 1.1 !important; }
  .display-lg  { font-size: clamp(1.35rem, 6.5vw, 1.9rem) !important; line-height: 1.15 !important; }
  .svc-overview-h2 { font-size: clamp(1.51rem, 7.3vw, 2.13rem) !important; }
  .process-grid { grid-template-columns: 1fr !important; }
  .stats-bar-grid { grid-template-columns: 1fr 1fr !important; }
  div[style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; }
  .section { padding: 40px 0 !important; }
  .container, .container-wide { padding: 0 14px !important; }
}

/* ════════════════════════════════════════════════════════════
   THEME TOGGLE BUTTON
════════════════════════════════════════════════════════════ */
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.theme-toggle:hover { border-color: var(--lime); color: var(--lime); transform: rotate(20deg); }
.theme-toggle:active { transform: scale(0.9); }
[data-theme="light"] .theme-toggle { border-color: rgba(0,0,0,0.25); }

/* ════════════════════════════════════════════════════════════
   LIGHT MODE
   Applied when <html data-theme="light">
════════════════════════════════════════════════════════════ */
[data-theme="light"] {
  --black:   #f5f4ef;
  --surface: #eeede8;
  --card:    #e6e5e0;
  --card2:   #dddcd7;
  --text:    #0d0d0d;
  --muted:   rgba(0,0,0,0.55);
  --muted2:  rgba(0,0,0,0.40);
  --border:  rgba(0,0,0,0.09);
}

/* Smooth theme transition — only on interactive change, not on initial load */
[data-theme-transition] * {
  transition: background-color 0.25s ease, color 0.2s ease, border-color 0.2s ease !important;
}

/* Ghost outline text */
[data-theme="light"] .ghost {
  -webkit-text-stroke-color: rgba(0,0,0,0.45);
}

/* ── Inline #50b17d lime overrides ──────────── */
[data-theme="light"] [style*="color:#50b17d"],
[data-theme="light"] [style*="color: #50b17d"]       { color: #50b17d !important; }
[data-theme="light"] [style*="background:#50b17d"],
[data-theme="light"] [style*="background: #50b17d"]  { background: #50b17d !important; }
[data-theme="light"] [style*="border:2px solid #50b17d"],
[data-theme="light"] [style*="border: 2px solid #50b17d"] { border-color: #50b17d !important; }

/* ── Inline background overrides ─────────── */
[data-theme="light"] [style*="background:#0a0a0a"],
[data-theme="light"] [style*="background: #0a0a0a"] { background: #f5f4ef !important; }
[data-theme="light"] [style*="background:#0f0f0f"],
[data-theme="light"] [style*="background: #0f0f0f"] { background: #eeede8 !important; }
[data-theme="light"] [style*="background:#080808"]   { background: #eae9e4 !important; }
[data-theme="light"] [style*="background:#111111"],
[data-theme="light"] [style*="background: #111111"]  { background: #e8e7e2 !important; }
[data-theme="light"] [style*="background:#141414"],
[data-theme="light"] [style*="background: #141414"]  { background: #e3e2dd !important; }
[data-theme="light"] [style*="background:#181818"]   { background: #dfe0da !important; }
[data-theme="light"] [style*="background:#1a1a1a"],
[data-theme="light"] [style*="background: #1a1a1a"]  { background: #dddcd7 !important; }
[data-theme="light"] [style*="background:#121212"]   { background: #e6e5e0 !important; }

/* ── Inline white text overrides ─────────── */
[data-theme="light"] [style*="color:#fff"],
[data-theme="light"] [style*="color: #fff"],
[data-theme="light"] [style*="color:white"],
[data-theme="light"] [style*="color: white"]         { color: #0d0d0d !important; }
[data-theme="light"] [style*="color:rgba(255,255,255,0.75)"] { color: rgba(0,0,0,0.70) !important; }
[data-theme="light"] [style*="color:rgba(255,255,255,0.7)"]  { color: rgba(0,0,0,0.65) !important; }
[data-theme="light"] [style*="color:rgba(255,255,255,0.55)"] { color: rgba(0,0,0,0.55) !important; }
[data-theme="light"] [style*="color:rgba(255,255,255,0.65)"] { color: rgba(0,0,0,0.60) !important; }
[data-theme="light"] [style*="color:rgba(255,255,255,0.3)"],
[data-theme="light"] [style*="color: rgba(255, 255, 255, 0.3)"] { color: rgba(0,0,0,0.40) !important; }
[data-theme="light"] [style*="color:rgba(255,255,255,0.25)"],
[data-theme="light"] [style*="color: rgba(255, 255, 255, 0.25)"] { color: rgba(0,0,0,0.30) !important; }
[data-theme="light"] [style*="color:rgba(255,255,255,0.65)"] { color: rgba(0,0,0,0.60) !important; }
[data-theme="light"] [style*="color:rgba(255,255,255,0.6)"]  { color: rgba(0,0,0,0.55) !important; }
[data-theme="light"] [style*="color:rgba(255,255,255,0.5)"]  { color: rgba(0,0,0,0.50) !important; }
[data-theme="light"] [style*="color:rgba(255,255,255,0.45)"] { color: rgba(0,0,0,0.45) !important; }
[data-theme="light"] [style*="color:rgba(255,255,255,0.4)"]  { color: rgba(0,0,0,0.40) !important; }
[data-theme="light"] [style*="color:rgba(255,255,255,0.35)"] { color: rgba(0,0,0,0.35) !important; }
[data-theme="light"] [style*="color:rgba(255,255,255,0.3)"]  { color: rgba(0,0,0,0.30) !important; }
[data-theme="light"] [style*="color:rgba(255,255,255,0.25)"] { color: rgba(0,0,0,0.25) !important; }
[data-theme="light"] [style*="color:rgba(255,255,255,0.2)"]  { color: rgba(0,0,0,0.20) !important; }

/* ── Inline border overrides ─────────────── */
[data-theme="light"] [style*="border:1px solid rgba(255,255,255,0.07)"],
[data-theme="light"] [style*="border: 1px solid rgba(255,255,255,0.07)"]  { border-color: rgba(0,0,0,0.09) !important; }
[data-theme="light"] [style*="border:1px solid rgba(255,255,255,0.06)"]   { border-color: rgba(0,0,0,0.07) !important; }
[data-theme="light"] [style*="border:1px solid rgba(255,255,255,0.12)"],
[data-theme="light"] [style*="border: 1px solid rgba(255,255,255,0.12)"]  { border-color: rgba(0,0,0,0.12) !important; }
[data-theme="light"] [style*="border-top:1px solid rgba(255,255,255,"]    { border-top-color: rgba(0,0,0,0.09) !important; }
[data-theme="light"] [style*="border-bottom:1px solid rgba(255,255,255,"] { border-bottom-color: rgba(0,0,0,0.09) !important; }

/* ── Navbar ──────────────────────────────── */
[data-theme="light"] #navbar.scrolled {
  background: rgba(245,244,239,0.96) !important;
  border-bottom-color: rgba(0,0,0,0.10) !important;
}
[data-theme="light"] .nav-links a { color: rgba(0,0,0,0.60); }
[data-theme="light"] .nav-toggle span { background: #0d0d0d; }
[data-theme="light"] .mobile-menu { background: #f5f4ef; }

/* ── Logo: black-bg PNG — screen removes black on dark; on light invert then multiply removes white ── */
[data-theme="light"] .nav-logo img,
[data-theme="light"] .footer-logo img {
  filter: invert(1);
  mix-blend-mode: multiply;
}

/* ── Stats bar ───────────────────────────── */
[data-theme="light"] .stats-bar {
  border-color: rgba(0,0,0,0.08);
}

/* ── Scrollbar ───────────────────────────── */
[data-theme="light"] ::-webkit-scrollbar-track { background: #f5f4ef; }
[data-theme="light"] ::-webkit-scrollbar-thumb { background: #d0cfc9; }

/* ── Footer ──────────────────────────────── */
[data-theme="light"] footer { background: #eeede8; border-top-color: rgba(0,0,0,0.08); }

/* ── SEO footer ──────────────────────────── */
[data-theme="light"] .cta-band { background: #eeede8; border-color: rgba(0,0,0,0.08); }

/* ── Back to top ─────────────────────────── */
[data-theme="light"] #back-to-top {
  background: #e6e5e0;
  border-color: rgba(0,0,0,0.15);
  color: rgba(0,0,0,0.55);
}

/* ── Mobile CTA bar ──────────────────────── */
[data-theme="light"] #mobile-cta-bar {
  background: rgba(245,244,239,0.97) !important;
  border-top-color: rgba(0,0,0,0.12) !important;
}
[data-theme="light"] #mobile-cta-bar .mcta-call {
  border-color: rgba(0,0,0,0.15) !important;
  color: rgba(0,0,0,0.65) !important;
}

/* ── WA widget ───────────────────────────── */
[data-theme="light"] #wa-widget { box-shadow: 0 4px 20px rgba(37,211,102,0.25); }

/* ── Hero overlay ────────────────────────── */
[data-theme="light"] .hero-overlay { background: linear-gradient(105deg,rgba(245,244,239,0.95) 45%,rgba(245,244,239,0.55) 100%) !important; }

/* ── Lime text elements → dark in light mode ── */
[data-theme="light"] .label { color: rgba(0,0,0,0.65); }
[data-theme="light"] .vision-card .vc-label { color: rgba(0,0,0,0.60); }

/* ── Lime buttons → black text in light mode ── */
[data-theme="light"] .btn-lime { color: #0d0d0d; }

/* ── Ticker text → black in light mode ── */
[data-theme="light"] .ticker-item { color: #0d0d0d; }
[data-theme="light"] .ticker-sep  { color: rgba(0,0,0,0.40); }

/* ── Service cards → light mode ── */
[data-theme="light"] .service-card {
  background: #fff;
  border-color: rgba(0,0,0,0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
[data-theme="light"] .service-card:hover {
  border-color: rgba(80,177,125,0.35);
  box-shadow: 0 20px 56px rgba(80,177,125,0.07), 0 4px 16px rgba(0,0,0,0.07);
}
[data-theme="light"] .service-card::after {
  background: radial-gradient(ellipse at top left, rgba(80,177,125,0.04) 0%, transparent 60%);
}
[data-theme="light"] .service-icon {
  background: rgba(80,177,125,0.08);
  border-color: rgba(80,177,125,0.25);
  color: #2d8a5e;
}
[data-theme="light"] .service-card:hover .service-icon {
  background: rgba(80,177,125,0.14);
  border-color: rgba(80,177,125,0.45);
}
[data-theme="light"] .service-card ul li::before { color: #2d8a5e; }
[data-theme="light"] .service-card .service-readmore { color: #2d8a5e !important; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .service-card .service-readmore:hover { color: #1a6b46 !important; }

/* ── SEO content section responsive ── */
@media (max-width: 900px) {
  .seo-platform-grid { grid-template-columns: 1fr !important; }
  .seo-geo-grid { grid-template-columns: 1fr !important; }
  .seo-geo-grid > div:last-child { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 600px) {
  .seo-geo-grid > div:last-child { grid-template-columns: 1fr !important; }
}
