/* ==========================================
   CARMINETWORK — STYLES PARTAGÉS
========================================== */
:root {
  --bg:          #f5f7fc;
  --bg-2:        #eef2fb;
  --bg-soft:     #e9eefa;
  --bg-muted:    #dfe6f5;
  --border:      #d9e0ee;
  --border-soft: #e4eaf5;

  --ink:         #0b1220;
  --ink-2:       #1f2937;
  --muted:       #5b6473;
  --muted-2:     #8a94a6;

  --brand:       #2563eb;
  --brand-dark:  #1d4ed8;
  --brand-soft:  #e4edff;
  --accent:      #0ea5e9;
  --success:     #059669;

  --radius:      14px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  --shadow-xs:   0 1px 2px rgba(16,24,40,0.04);
  --shadow-sm:   0 2px 6px rgba(16,24,40,0.05), 0 1px 2px rgba(16,24,40,0.04);
  --shadow-md:   0 10px 25px -10px rgba(16,24,40,0.12), 0 6px 12px -6px rgba(16,24,40,0.06);
  --shadow-lg:   0 24px 48px -20px rgba(16,24,40,0.18);

  --ease:        cubic-bezier(.22,.61,.36,1);
  --transition:  .25s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background:
    radial-gradient(900px circle at 0% 0%, rgba(37,99,235,0.10), transparent 55%),
    radial-gradient(700px circle at 100% 20%, rgba(14,165,233,0.08), transparent 50%),
    var(--bg);
  background-attachment: fixed;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
::selection { background: var(--brand); color: #fff; }

/* ==========================================
   LAYOUT & UTILITIES
========================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 72px 0; }
@media (max-width: 720px) { section { padding: 52px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1.5px;
  background: var(--brand);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: inherit;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-title {
  font-size: clamp(1.8rem, 4.2vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.65;
}

.section-head { margin-bottom: 44px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

/* Centered eyebrow → elegant pill badge */
.section-head.center .eyebrow {
  padding: 6px 14px;
  background: var(--brand-soft);
  border-radius: 100px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  gap: 0;
}
.section-head.center .eyebrow::before { display: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--brand); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-brand { background: var(--brand); color: #fff; }
.btn-brand:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--ink); }

.btn-block { width: 100%; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==========================================
   HEADER
========================================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(245,247,252,0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
#header.scrolled {
  background: rgba(245,247,252,0.88);
  border-bottom-color: var(--border-soft);
  box-shadow: 0 4px 24px -12px rgba(16,24,40,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: var(--transition);
}
.logo-mark { display: none; }
.logo em {
  font-style: italic;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 1.7rem;
  line-height: 1;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 9px 18px;
  border-radius: 100px;
  transition: color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
  position: relative;
  letter-spacing: 0.01em;
}
.nav-links a .n-ico { display: none; }

.nav-links a:hover {
  color: var(--brand);
  transform: translateY(-1px);
}

.nav-links a.active {
  color: var(--brand);
  font-weight: 600;
  background: var(--brand-soft);
}
.nav-links a.active::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
  flex-shrink: 0;
  animation: nav-dot-in .45s var(--ease) both;
}
@keyframes nav-dot-in {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.nav-cta { display: none; }
.nav-cta .btn-ghost {
  background: #fff;
  border-color: var(--border);
}
.nav-cta .btn-ghost i { color: var(--success); }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(245,247,252,0.96);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--border-soft);
  padding: 18px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 99;
  transform: translateY(-120%);
  transition: transform .4s var(--ease);
  box-shadow: 0 24px 48px -24px rgba(16,24,40,0.2);
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { transform: translateY(0); }

/* Editorial menu buttons */
.mobile-menu .mm-link {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  color: var(--ink);
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  background: #fff;
  overflow: hidden;
  transition: all .35s var(--ease);
  opacity: 0;
  transform: translateY(8px);
}
.mobile-menu.open .mm-link {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open .mm-link:nth-child(1) { transition-delay: .08s; }
.mobile-menu.open .mm-link:nth-child(2) { transition-delay: .14s; }
.mobile-menu.open .mm-link:nth-child(3) { transition-delay: .20s; }
.mobile-menu.open .mobile-menu-actions { transition-delay: .26s; }

/* Left accent bar */
.mobile-menu .mm-link::before {
  content: '';
  position: absolute;
  left: 0; top: 14px; bottom: 14px;
  width: 3px;
  background: var(--brand);
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transform: scaleY(0.4);
  transform-origin: center;
  transition: all .35s var(--ease);
}

/* Number */
.mobile-menu .mm-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted-2);
  font-variant-numeric: tabular-nums;
  transition: color .3s var(--ease);
}

/* Label stack */
.mobile-menu .mm-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.mobile-menu .mm-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color .3s var(--ease);
}
.mobile-menu .mm-sub {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.3;
  transition: color .3s var(--ease);
}

/* Arrow pill */
.mobile-menu .mm-chev {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 0.72rem;
  transition: all .35s var(--ease);
}

/* Hover / press state */
.mobile-menu .mm-link:hover,
.mobile-menu .mm-link:active {
  border-color: rgba(37,99,235,0.25);
  background: linear-gradient(90deg, rgba(228,237,255,0.5), #fff 70%);
  transform: translateX(4px);
}
.mobile-menu .mm-link:hover::before,
.mobile-menu .mm-link:active::before {
  opacity: 1;
  transform: scaleY(1);
}
.mobile-menu .mm-link:hover .mm-chev,
.mobile-menu .mm-link:active .mm-chev {
  background: var(--brand);
  color: #fff;
  transform: translateX(3px);
}
.mobile-menu .mm-link:hover .mm-num,
.mobile-menu .mm-link:active .mm-num { color: var(--brand); }

/* Active page */
.mobile-menu .mm-link.active {
  background: linear-gradient(135deg, #eef4ff 0%, #fff 100%);
  border-color: rgba(37,99,235,0.3);
  box-shadow: 0 6px 16px -8px rgba(37,99,235,0.3);
}
.mobile-menu .mm-link.active::before {
  opacity: 1;
  transform: scaleY(1);
}
.mobile-menu .mm-link.active .mm-num { color: var(--brand); }
.mobile-menu .mm-link.active .mm-title { color: var(--brand-dark); }
.mobile-menu .mm-link.active .mm-chev {
  background: var(--brand);
  color: #fff;
}

.mobile-menu-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
  opacity: 0;
  transform: translateY(8px);
  transition: all .35s var(--ease);
}
.mobile-menu.open .mobile-menu-actions {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-actions .btn { width: 100%; padding: 14px; font-size: 0.98rem; }

/* ==========================================
   HERO (home)
========================================== */
#hero {
  padding-top: 148px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.hero-availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-2);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-xs);
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  position: relative;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--success);
  opacity: 0.35;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(0.6); opacity: 0.4; }
  50%     { transform: scale(1.2); opacity: 0; }
}

.hero-title {
  font-size: clamp(2.4rem, 6.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--ink);
}
.hero-title em {
  font-style: normal;
  color: var(--brand);
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
  padding: 20px 26px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  box-shadow: var(--shadow-xs);
  max-width: 520px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.trust-item strong {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
  display: block;
}
.trust-item span {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
  display: block;
}
.trust-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  display: none;
}
.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.hero-card-head h4 { font-size: 0.92rem; font-weight: 600; }
.hero-card-head .status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 600;
  padding: 4px 10px;
  background: #ecfdf5;
  border-radius: 100px;
}
.hero-card-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}
.hero-card-row:last-child { border-bottom: none; }
.hero-card-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.hero-card-title { font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.hero-card-desc  { font-size: 0.8rem; color: var(--muted); }
.hero-card-meta  {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--muted-2);
  font-weight: 500;
}

.floating-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-2);
}
.floating-chip i { color: var(--brand); }
.fc-1 { top: -18px; left: -24px; animation: float 5s ease-in-out infinite; }
.fc-2 { bottom: 20px; right: -28px; animation: float 5s ease-in-out infinite 2s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

/* ==========================================
   PAGE HERO (services / tarifs)
========================================== */
.page-hero {
  padding: 148px 0 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero .container { position: relative; }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: normal; color: var(--brand); }
.page-hero p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb i { font-size: 0.65rem; color: var(--muted-2); }
.breadcrumb span { color: var(--ink); font-weight: 500; }

/* ==========================================
   SERVICES
========================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
}
.service-card:hover {
  background: #fff;
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  padding: 4px 10px;
  background: var(--bg-soft);
  border-radius: 100px;
}

.service-card ul {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--ink-2);
}
.service-card ul li i {
  color: var(--brand);
  font-size: 0.75rem;
  margin-top: 5px;
}

/* ==========================================
   SERVICES BY CATEGORY (services.html)
========================================== */
.services-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) {
  .services-layout {
    grid-template-columns: 300px 1fr;
    gap: 32px;
    align-items: start;
  }
}

/* ── Category navigation ───────────────── */
.services-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  position: relative;
}
@media (min-width: 900px) {
  .services-nav {
    position: sticky;
    top: 100px;
  }
}
.services-nav-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding: 10px 14px 8px;
}

.services-nav-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: none;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  border-radius: 12px;
  font-family: inherit;
  text-align: left;
  transition: all .3s var(--ease);
  position: relative;
}
.services-nav-item:hover {
  background: rgba(37,99,235,0.06);
}
.services-nav-item .nav-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  transition: all .3s var(--ease);
  flex-shrink: 0;
}
.services-nav-item .nav-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.services-nav-item .nav-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  transition: color .3s var(--ease);
}
.services-nav-item .nav-count {
  font-size: 0.72rem;
  color: var(--muted-2);
  font-weight: 500;
}
.services-nav-item .nav-arrow {
  font-size: 0.7rem;
  color: var(--muted-2);
  opacity: 0;
  transform: translateX(-4px);
  transition: all .3s var(--ease);
}
.services-nav-item:hover .nav-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Active category */
.services-nav-item.active {
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(37,99,235,0.04));
  box-shadow: 0 6px 16px -10px rgba(37,99,235,0.35);
}
.services-nav-item.active .nav-icon {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  box-shadow: 0 4px 10px -3px rgba(37,99,235,0.45);
}
.services-nav-item.active .nav-title { color: var(--brand-dark); font-weight: 700; }
.services-nav-item.active .nav-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--brand);
}

/* ── Content panels ────────────────────── */
.services-content {
  position: relative;
  min-height: 300px;
}
.services-panel {
  display: none;
  animation: panel-in .4s var(--ease);
}
.services-panel.active { display: block; }

@keyframes panel-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.panel-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-soft);
}
.panel-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 5px 12px;
  background: var(--brand-soft);
  border-radius: 100px;
  margin-bottom: 14px;
}
.panel-header h2 {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.panel-header p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 620px;
}

/* Service entries (list of services for the active category) */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-entry {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(37,99,235,0.08) 0%, rgba(37,99,235,0.02) 40%, rgba(255,255,255,0.6) 100%);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  transition: all .3s var(--ease);
}
.service-entry:hover {
  border-color: rgba(37,99,235,0.25);
  background:
    linear-gradient(135deg, rgba(37,99,235,0.14) 0%, rgba(37,99,235,0.04) 50%, rgba(255,255,255,0.7) 100%);
  transform: translateX(3px);
  box-shadow: 0 12px 28px -16px rgba(37,99,235,0.25);
}
.service-entry .entry-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--brand-soft), #d9e6ff);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px -4px rgba(37,99,235,0.2);
  transition: all .3s var(--ease);
}
.service-entry:hover .entry-icon {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  transform: rotate(-4deg) scale(1.05);
  box-shadow: 0 8px 16px -4px rgba(37,99,235,0.4);
}
.service-entry .entry-content { min-width: 0; }
.service-entry h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}
.service-entry > .entry-content > p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 12px;
}
.service-entry ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 12px;
}
.service-entry ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--ink-2);
}
.service-entry ul li i {
  color: var(--brand);
  font-size: 0.7rem;
}
.service-entry .service-tag {
  display: inline-block;
}

/* Mobile: horizontal scroll tabs */
@media (max-width: 899px) {
  .services-nav {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px;
    gap: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .services-nav::-webkit-scrollbar { display: none; }
  .services-nav-label { display: none; }
  .services-nav-item {
    flex-shrink: 0;
    grid-template-columns: auto auto;
    padding: 10px 14px;
  }
  .services-nav-item .nav-icon {
    width: 32px; height: 32px;
    font-size: 0.82rem;
  }
  .services-nav-item .nav-count,
  .services-nav-item .nav-arrow { display: none; }
  .services-nav-item .nav-title { font-size: 0.85rem; white-space: nowrap; }
}
@media (max-width: 480px) {
  .service-entry {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }
  .service-entry .entry-icon {
    width: 42px; height: 42px;
    font-size: 1rem;
  }
  .service-entry h3 { font-size: 1rem; }
  .service-entry ul { flex-direction: column; gap: 6px; }
}

/* ==========================================
   SERVICES GRID EXPANDABLE (legacy, unused)
========================================== */
.services-flex {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}
@media (min-width: 640px) {
  .services-flex { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (min-width: 960px) {
  .services-flex { grid-template-columns: repeat(3, 1fr); }
}

.service-flip {
  position: relative;
  background:
    linear-gradient(135deg, rgba(37,99,235,0.08) 0%, rgba(37,99,235,0.03) 40%, rgba(255,255,255,0.6) 100%);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 22px 22px 0;
  cursor: pointer;
  transition: all .35s var(--ease);
  outline: none;
  overflow: hidden;
  isolation: isolate;
}

.service-flip:hover {
  transform: translateY(-3px);
  border-color: rgba(37,99,235,0.3);
  background:
    linear-gradient(135deg, rgba(37,99,235,0.15) 0%, rgba(37,99,235,0.05) 50%, rgba(255,255,255,0.7) 100%);
  box-shadow: 0 18px 36px -20px rgba(37,99,235,0.25);
}
.service-flip:focus-visible {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
}
.service-flip.open {
  background:
    linear-gradient(135deg, rgba(37,99,235,0.12) 0%, rgba(37,99,235,0.04) 50%, rgba(255,255,255,0.7) 100%);
  border-color: rgba(37,99,235,0.3);
}

.service-flip-inner { position: relative; }

/* Icon + title row side-by-side */
.service-flip-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-soft), #d9e6ff);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  margin-bottom: 14px;
  transition: all .35s var(--ease);
  box-shadow: 0 4px 10px -4px rgba(37,99,235,0.2);
}
.service-flip:hover .service-flip-icon,
.service-flip.open .service-flip-icon {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  transform: rotate(-4deg) scale(1.08);
  box-shadow: 0 8px 16px -4px rgba(37,99,235,0.4);
}

.service-flip h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
  color: var(--ink);
  line-height: 1.25;
}
.service-flip p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

/* "Voir détails" as a full-width bottom bar */
.service-flip-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand);
  margin: 0 -22px;
  padding: 12px 22px;
  border-top: 1px solid var(--border-soft);
  background: linear-gradient(90deg, transparent, rgba(228,237,255,0.5));
  transition: all .35s var(--ease);
  letter-spacing: 0.02em;
}
.service-flip-more i {
  font-size: 0.72rem;
  transition: transform .3s var(--ease);
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.service-flip:hover .service-flip-more {
  background: linear-gradient(90deg, rgba(228,237,255,0.4), rgba(228,237,255,0.9));
}
.service-flip:hover .service-flip-more i {
  background: var(--brand);
  color: #fff;
  transform: translateX(4px);
}

/* Expandable details */
.service-flip-details {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  margin: 0 -22px;
  padding: 0 22px;
  transition: grid-template-rows .4s var(--ease), opacity .3s var(--ease), padding .4s var(--ease);
}
.service-flip-details > div {
  overflow: hidden;
  min-height: 0;
}
.service-flip.open .service-flip-details {
  grid-template-rows: 1fr;
  opacity: 1;
  padding: 16px 22px 18px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(37,99,235,0.15);
}
.service-flip.open .service-flip-more {
  margin-top: 0;
  background: var(--brand);
  color: #fff;
  border-top: none;
}
.service-flip.open .service-flip-more i {
  background: rgba(255,255,255,0.25);
  color: #fff;
  transform: rotate(90deg);
}

.service-flip-details ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.service-flip-details ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--ink-2);
}
.service-flip-details ul li i {
  color: var(--brand);
  font-size: 0.72rem;
  margin-top: 6px;
  flex-shrink: 0;
}
.service-flip-details .service-tag {
  display: inline-block;
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .services-flex { gap: 12px; }
  .service-flip { padding: 18px 18px 0; border-radius: 16px; }
  .service-flip-icon {
    width: 42px; height: 42px;
    font-size: 1rem;
    margin-bottom: 12px;
  }
  .service-flip h3 { font-size: 1rem; }
  .service-flip p { font-size: 0.86rem; margin-bottom: 14px; }
  .service-flip-more { margin: 0 -18px; padding: 11px 18px; }
  .service-flip-details { margin: 0 -18px; padding: 0 18px; }
  .service-flip.open .service-flip-details { padding: 14px 18px 16px; }
}

/* ==========================================
   ABOUT / WHY
========================================== */
#about {
  background:
    linear-gradient(180deg, rgba(37,99,235,0.05), rgba(14,165,233,0.03)),
    var(--bg-2);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.about-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  transition: var(--transition);
}
.about-item:hover { border-color: var(--border); box-shadow: var(--shadow-sm); }
.about-item-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.about-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.about-item p  { font-size: 0.9rem; color: var(--muted); line-height: 1.55; }

/* ==========================================
   PROCESS (services page)
========================================== */
.process {
  background:
    linear-gradient(180deg, rgba(37,99,235,0.04), transparent),
    var(--bg-2);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}

.process-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: var(--transition);
}
.process-card:hover { border-color: var(--border); box-shadow: var(--shadow-sm); }
.process-num {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.process-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.process-card p  { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }

/* ==========================================
   PRICING
========================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.pricing-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { border-color: var(--border); box-shadow: var(--shadow-md); }

.pricing-card.featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured:hover { box-shadow: var(--shadow-lg); }

.pricing-card .popular-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: 100px;
}

.pricing-name {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.pricing-card.featured .pricing-name { color: rgba(255,255,255,0.6); }

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 18px;
}
.pricing-amount strong {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: inherit;
}
.pricing-amount em {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
}
.pricing-card.featured .pricing-amount em { color: rgba(255,255,255,0.5); }

.pricing-desc {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.55;
}
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.65); }

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
  flex-grow: 1;
}
.pricing-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink-2);
}
.pricing-list li i { color: var(--success); font-size: 0.85rem; }
.pricing-card.featured .pricing-list li   { color: rgba(255,255,255,0.85); }
.pricing-card.featured .pricing-list li i { color: #6ee7b7; }

.pricing-card .btn-primary { background: var(--brand); color: #fff; }
.pricing-card .btn-primary:hover { background: var(--brand-dark); }
.pricing-card.featured .btn-primary { background: #fff; color: var(--ink); }
.pricing-card.featured .btn-primary:hover { background: var(--bg-soft); }

.pricing-note {
  margin-top: 32px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}
.pricing-note strong { color: var(--ink); }

/* ==========================================
   REVIEWS
========================================== */
#reviews {
  background:
    linear-gradient(180deg, transparent, rgba(37,99,235,0.04)),
    var(--bg-2);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* ==========================================
   REVIEWS CAROUSEL
========================================== */
.reviews-carousel {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}
.reviews-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 16px;
  padding: 4px 4px 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track > .review-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  min-height: 100%;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ink);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.carousel-arrow:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-50%) scale(1.08);
}
.carousel-prev { left: -20px; }
.carousel-next { right: -20px; }

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.reviews-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.reviews-dots button:hover { background: var(--muted-2); }
.reviews-dots button.active {
  background: var(--brand);
  width: 24px;
  border-radius: 100px;
}

@media (min-width: 720px) {
  .carousel-arrow { display: inline-flex; }
}

.review-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  transition: var(--transition);
}
.review-card:hover { border-color: var(--border); box-shadow: var(--shadow-sm); }

.review-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.review-text {
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 16px;
}
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
}
.review-name     { font-size: 0.85rem; font-weight: 600; }
.review-location { font-size: 0.75rem; color: var(--muted); }
.review-loc      { font-size: 0.75rem; color: var(--muted); }

/* ==========================================
   CONTACT
========================================== */
.contact-section {
  background:
    linear-gradient(180deg, rgba(37,99,235,0.04), rgba(14,165,233,0.03)),
    var(--bg-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.contact-info { display: flex; flex-direction: column; gap: 10px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
}
.contact-row .ci-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.contact-row h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.contact-row p { font-size: 0.95rem; font-weight: 500; color: var(--ink); }
.contact-row a { color: var(--brand); }
.contact-row a:hover { text-decoration: underline; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 28px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-2);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--ink);
  transition: var(--transition);
  width: 100%;
}
.form-group textarea { min-height: 130px; resize: vertical; line-height: 1.55; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted-2); }

.form-success {
  display: none;
  padding: 24px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius);
  text-align: center;
}
.form-success i { color: var(--success); font-size: 2rem; margin-bottom: 10px; }
.form-success h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; color: #065f46; }
.form-success p  { font-size: 0.92rem; color: #047857; }

/* ==========================================
   CTA BAND
========================================== */
.cta-band {
  padding: 80px 0;
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cta-band p {
  color: rgba(255,255,255,0.7);
  font-size: 1.02rem;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.cta-band .btn-ghost {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.cta-band .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.cta-band .btn-primary {
  background: #fff;
  color: var(--ink);
}
.cta-band .btn-primary:hover { background: var(--brand); color: #fff; }
.cta-band .ctas {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ==========================================
   FOOTER
========================================== */
footer {
  padding: 56px 0 28px;
  background: linear-gradient(180deg, #0b1220 0%, #111a2f 100%);
  color: #cbd3e0;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,0.5), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand .logo em { color: #fff; }
.footer-brand .logo-mark { background: #fff; color: var(--ink); }
.footer-brand .logo:hover .logo-mark { background: var(--brand); color: #fff; }
.footer-brand p {
  font-size: 0.92rem;
  color: #8b95a7;
  line-height: 1.6;
  max-width: 340px;
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: #cbd3e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--brand); color: #fff; }

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a,
.footer-links span {
  font-size: 0.92rem;
  color: #8b95a7;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: #fff; }

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li {
  font-size: 0.92rem;
  color: #8b95a7;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul a {
  color: #8b95a7;
  transition: var(--transition);
}
.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: #8b95a7;
}
.footer-bottom a { color: #8b95a7; }
.footer-bottom a:hover { color: #fff; }

/* ==========================================
   FLOATING WHATSAPP
========================================== */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
}
.whatsapp-float a {
  width: 54px; height: 54px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  transition: var(--transition);
}
.whatsapp-float a:hover { transform: scale(1.08); }

/* ==========================================
   FUN ANIMATIONS
========================================== */

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  z-index: 1001;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* Highlight behind emphasized hero words */
.hero-title em,
.page-hero h1 em {
  position: relative;
  display: inline-block;
  z-index: 0;
}
.hero-title em::after,
.page-hero h1 em::after {
  content: '';
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: 0.08em;
  height: 0.28em;
  background: rgba(37,99,235,0.15);
  border-radius: 6px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: draw-underline 0.9s var(--ease) 0.7s forwards;
}
@keyframes draw-underline {
  to { transform: scaleX(1); }
}

/* Service icon wobble on hover */
.service-icon { transition: transform 0.35s var(--ease), background 0.3s var(--ease); }
.service-card:hover .service-icon {
  animation: wobble 0.6s ease;
  background: var(--brand);
  color: #fff;
}
@keyframes wobble {
  0%, 100% { transform: translateY(0) rotate(0); }
  25%      { transform: translateY(-5px) rotate(-8deg); }
  75%      { transform: translateY(-5px) rotate(8deg); }
}

/* About item icon gentle pop on hover */
.about-item-icon { transition: transform 0.35s var(--ease), background 0.3s var(--ease); }
.about-item:hover .about-item-icon {
  transform: scale(1.08) rotate(-4deg);
  background: var(--brand);
  color: #fff;
}

/* Pricing card lift (stronger for featured) */
.pricing-card.featured:hover { transform: translateY(-8px); }

/* Arrow slide on button hover */
.btn i.fa-arrow-right { transition: transform 0.25s var(--ease); }
.btn:hover i.fa-arrow-right { transform: translateX(4px); }

/* Button primary shine effect */
.btn-primary, .btn-brand {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::before, .btn-brand::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
  z-index: -1;
}
.btn-primary:hover::before, .btn-brand:hover::before {
  transform: translateX(120%);
}

/* Trust item hover color */
.trust-item strong { transition: color 0.3s var(--ease), transform 0.3s var(--ease); }
.trust-item:hover strong { color: var(--brand); transform: translateY(-2px); }

/* Process card stagger bar */
.process-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.process-num::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: var(--brand);
  transition: width 0.3s var(--ease);
}
.process-card:hover .process-num::before { width: 40px; }

/* Review card tilt on hover */
.review-card { transition: var(--transition); }
.review-card:hover { transform: translateY(-3px); }

/* Pulse animation for floating chips is already subtle — keep */

/* Logo em subtle gradient text on header hover */
.logo:hover em {
  background: linear-gradient(135deg, var(--ink) 0%, var(--brand) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-brand .logo:hover em {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

/* Service card number/accent on hover: add left accent bar */
.service-card {
  border-left: 3px solid transparent;
}
.service-card:hover { border-left-color: var(--brand); }

/* Nav hover accent: subtle soft tint */
.nav-links a:not(.active):hover {
  background: rgba(37,99,235,0.06);
}

/* Subtle float for the hero card on load */
.hero-card { animation: card-in 1s var(--ease) both; }
@keyframes card-in {
  0%   { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* WhatsApp float: gentle heartbeat */
.whatsapp-float a { animation: heartbeat 2.4s ease-in-out infinite; }
@keyframes heartbeat {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
  50%      { transform: scale(1.06); box-shadow: 0 10px 32px rgba(37,211,102,0.5); }
}
.whatsapp-float a:hover {
  animation: none;
  transform: scale(1.12);
}

/* Footer link arrow hint */
.footer-links a { position: relative; transition: transform 0.2s var(--ease), color 0.2s var(--ease); }
.footer-links a:hover { transform: translateX(4px); }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================
   RESPONSIVE — MOBILE FIRST FIXES
========================================== */

/* iOS-specific fixes */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  min-width: 320px;
  overflow-x: hidden;
}

/* Prevent iOS input zoom (font-size must be >=16px) */
.form-group input,
.form-group select,
.form-group textarea {
  font-size: 16px;
}

/* Small phones (iPhone SE, etc.) */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  section { padding: 56px 0; }

  /* Header more compact */
  #header { height: 60px; }
  .nav-inner { padding: 0 18px; }
  .logo em { font-size: 1.35rem; }

  .mobile-menu { top: 60px; max-height: calc(100vh - 60px); }

  /* Hero compact */
  #hero { padding-top: 96px; padding-bottom: 60px; }
  .hero-grid > div { text-align: center; }
  .hero-title { font-size: 2.2rem; line-height: 1.08; margin-bottom: 16px; }
  .hero-lead  { font-size: 1rem; margin-bottom: 28px; }
  .hero-availability {
    font-size: 0.72rem;
    padding: 5px 12px 5px 9px;
    margin-bottom: 18px;
  }
  .hero-ctas { gap: 10px; margin-bottom: 28px; justify-content: center; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust {
    gap: 12px;
    margin: 24px auto 0;
    padding: 16px 18px;
    border-radius: 16px;
  }
  .trust-item strong { font-size: 1.25rem; }
  .trust-item span { font-size: 0.7rem; }

  /* Page hero */
  .page-hero { padding: 100px 0 56px; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero p  { font-size: 0.98rem; }

  /* Section titles */
  .section-title { font-size: 1.55rem; letter-spacing: -0.025em; }
  .section-sub   { font-size: 0.96rem; line-height: 1.6; }
  .section-head  { margin-bottom: 32px; }
  .eyebrow       { font-size: 0.72rem; margin-bottom: 14px; }
  .section-head.center .eyebrow {
    padding: 5px 12px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
  }

  /* Cards & content */
  .service-card,
  .about-item,
  .process-card  { padding: 22px; }
  .review-card   { padding: 18px 20px; }

  /* Service cards: icon + title inline on mobile */
  .service-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    row-gap: 0;
    align-items: start;
  }
  .service-card .service-icon {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
    align-self: center;
  }
  .service-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    align-self: center;
    font-size: 1.02rem;
  }
  .service-card p,
  .service-card ul,
  .service-card .service-tag {
    grid-column: 1 / -1;
  }
  .service-card p { margin-top: 14px; }
  .service-card .service-tag {
    justify-self: start;
    width: auto;
  }

  .pricing-card  { padding: 28px 22px; border-radius: 22px; }
  .pricing-amount strong { font-size: 2.2rem; }

  .contact-form  { padding: 22px; }
  .contact-row   { padding: 14px; gap: 12px; }
  .contact-row .ci-icon { width: 34px; height: 34px; font-size: 0.85rem; }

  /* Buttons adapted for fingers */
  .btn { padding: 13px 20px; font-size: 0.95rem; min-height: 46px; }
  .btn-block { padding: 15px 22px; }

  /* CTA band tighter */
  .cta-band { padding: 64px 0; }
  .cta-band h2 { font-size: 1.5rem; }
  .cta-band .ctas { width: 100%; flex-direction: column; }
  .cta-band .ctas .btn { width: 100%; }

  /* Footer */
  footer { padding: 56px 0 28px; }
  .footer-grid { gap: 32px; margin-bottom: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; font-size: 0.78rem; }

  /* WhatsApp smaller */
  .whatsapp-float { right: 14px; bottom: 14px; }
  .whatsapp-float a { width: 48px; height: 48px; font-size: 1.4rem; }

  /* Form rows stack */
  .form-row { grid-template-columns: 1fr; gap: 12px; }

  /* Breadcrumb */
  .breadcrumb { font-size: 0.78rem; margin-bottom: 18px; }
}

/* Mid phones / small tablets (iPhone Pro Max etc.) */
@media (max-width: 720px) and (min-width: 481px) {
  section { padding: 72px 0; }
  #hero { padding-top: 110px; padding-bottom: 80px; }
  .page-hero { padding: 120px 0 64px; }
  .hero-grid > div { text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-ctas .btn { flex: 1; min-width: 160px; }

  /* Service cards: icon + title inline */
  .service-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    row-gap: 0;
    align-items: start;
  }
  .service-card .service-icon {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
    align-self: center;
  }
  .service-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    align-self: center;
  }
  .service-card p,
  .service-card ul,
  .service-card .service-tag {
    grid-column: 1 / -1;
  }
  .service-card p { margin-top: 16px; }
  .service-card .service-tag {
    justify-self: start;
    width: auto;
  }
}

/* Very tight (old iPhone SE 1st gen) */
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .hero-title { font-size: 1.95rem; }
  .logo em { font-size: 1.15rem; }
  .pricing-amount strong { font-size: 2rem; }
  .hero-trust { gap: 8px; padding: 14px 14px; }
  .trust-item strong { font-size: 1.1rem; }
  .trust-item span { font-size: 0.66rem; }
}

/* Landscape phones with short viewport */
@media (max-height: 500px) and (orientation: landscape) {
  #hero { min-height: auto; padding-top: 100px; padding-bottom: 60px; }
  .mobile-menu { max-height: 80vh; }
}

/* ==========================================
   RESPONSIVE — UP BREAKPOINTS
========================================== */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-features { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .about-grid { grid-template-columns: 0.9fr 1.1fr; gap: 64px; }
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; }
}
@media (min-width: 1024px) {
  .nav-links  { display: flex; }
  .nav-cta    { display: flex; gap: 10px; }
  .hamburger  { display: none; }
  .hero-visual { display: block; }
  .hero-grid  { grid-template-columns: 1.05fr 0.95fr; }
}
