﻿:root {
  --bg: #ffffff;
  --bg-soft: #f4fbff;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: #ffffff;
  --panel-light: rgba(23, 103, 155, 0.06);
  --card: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.98));
  --card-light: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(239, 249, 255, 0.95));
  --text: #10283b;
  --text-dark: #0a2231;
  --muted: #5f7b8d;
  --muted-dark: #537284;
  --line: rgba(20, 102, 154, 0.14);
  --line-soft: rgba(16, 40, 59, 0.08);
  --primary: #168fd0;
  --primary-strong: #0d79b8;
  --accent: #3ac6de;
  --shadow: 0 20px 60px rgba(20, 60, 90, 0.09);
  --shadow-soft: 0 12px 32px rgba(20, 60, 90, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 100%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 48%, #fbf6ee 48%, #fbf6ee 100%),
    linear-gradient(180deg, rgba(22, 143, 208, 0.05), transparent 18%),
    linear-gradient(90deg, rgba(16, 143, 208, 0.04) 1px, transparent 1px),
    #ffffff;
  background-size: auto, auto, 126px 126px, auto;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  width: 100%;
  margin: 0 auto;
  padding: 14px clamp(14px, 3vw, 36px) 42px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-header.is-hidden {
  transform: translateY(-140%);
  opacity: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  flex-shrink: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #021018;
  background: linear-gradient(135deg, #78ecff, #1db6df 60%, #0e89ba);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(19, 171, 218, 0.3);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong,
.hero h1,
.subpage-title,
.section-heading h2,
.cta-card h2 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.brand-copy strong {
  font-size: 0.92rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.66rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 10px;
}

.lang-switcher {
  position: relative;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-dark);
  cursor: pointer;
}

.lang-icon {
  font-size: 0.95rem;
}

.lang-code {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
}

.lang-menu[hidden] {
  display: none !important;
}

.lang-menu button {
  padding: 10px 12px;
  border: 0;
  border-radius: 12px;
  background: rgba(22, 143, 208, 0.05);
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
}

.lang-menu button:hover,
.lang-menu button.is-active {
  background: rgba(22, 143, 208, 0.12);
}

.desktop-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--text);
  background: rgba(22, 143, 208, 0.08);
  transform: translateY(-1px);
}

.nav-toggle {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 12px;
  background: rgba(22, 143, 208, 0.08);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 13px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding: 0 12px;
  max-height: 0;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.97);
  transition: max-height 220ms ease, padding 220ms ease, margin 220ms ease;
}

.mobile-nav.is-open {
  max-height: 520px;
  padding: 14px 12px;
  overflow-y: auto;
}

.mobile-nav a {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
  background: rgba(22, 143, 208, 0.05);
}

.mobile-nav a:hover,
.mobile-nav a.is-active {
  color: var(--text);
  background: rgba(22, 143, 208, 0.1);
}

.section {
  padding: 40px 0;
}

.section-first {
  padding-top: 30px;
}

.section-gap-lg {
  padding-top: 58px;
}

.section-gap-xl {
  padding-top: 72px;
}

.hero {
  padding-top: 34px;
}

.hero-shell,
.narrative-layout,
.activity-layout,
.contact-layout {
  display: grid;
  gap: 20px;
}

.hero-copy,
.hero-aside,
.section-panel,
.solution-card,
.flagship-card,
.feature-card,
.security-card,
.spotlight-card,
.cta-card,
.proof-card,
.activity-list article,
.contact-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 28px;
  border-radius: var(--radius-xl);
  min-width: 0;
  background:
    radial-gradient(circle at top left, rgba(44, 199, 240, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.98));
}

.hero-copy--large {
  padding: 32px;
}

.hero-copy--large .eyebrow,
.hero-copy--large .hero-h1-sm,
.hero-copy--large .hero-text {
  text-align: center;
}

.hero-copy--large .hero-actions,
.hero-copy--large .hero-metrics {
  justify-content: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #78ecff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.subpage-title {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5.6rem);
  line-height: 0.94;
}

.hero-text,
.section-heading p,
.solution-card p,
.feature-card p,
.security-card p,
.spotlight-card p,
.proof-card p,
.activity-list p,
.cta-card p,
.flagship-card p {
  color: var(--muted);
  line-height: 1.68;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #03131c;
  background: linear-gradient(135deg, #84f3ff, #36caef 55%, #1ca5d5);
  box-shadow: 0 16px 30px rgba(28, 165, 213, 0.28);
}

.button-secondary {
  color: var(--text);
  background: rgba(22, 143, 208, 0.06);
  border: 1px solid var(--line);
}

.hero-metrics,
.board-metrics,
.proof-grid,
.feature-grid,
.security-grid,
.contact-cards {
  display: grid;
  gap: 14px;
}

.hero-metrics {
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-metrics--wide article {
  min-height: 124px;
}

.hero-metrics article {
  padding: 16px;
  border-radius: 18px;
  background: rgba(22, 143, 208, 0.05);
  border: 1px solid var(--line);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-aside {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(93, 225, 210, 0.14), transparent 25%),
    linear-gradient(180deg, rgba(6, 21, 33, 0.82), rgba(8, 28, 43, 0.96));
}

.live-board {
  padding: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(44, 199, 240, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(241, 251, 255, 0.97), rgba(217, 240, 249, 0.94));
  color: var(--text-dark);
}

.board-label,
.flagship-meta {
  color: var(--muted-dark);
  font-size: 0.82rem;
}

.board-top strong {
  display: block;
  margin-top: 8px;
  font-size: 1.4rem;
  font-family: "Space Grotesk", sans-serif;
}

.board-top p,
.live-board small,
.stream-item p {
  color: var(--muted-dark);
}

.board-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.board-metrics article {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(10, 34, 49, 0.08);
}

.board-metrics span {
  display: block;
  color: var(--muted-dark);
  font-size: 0.8rem;
}

.board-metrics strong {
  display: block;
  margin: 6px 0;
  font-size: 1.4rem;
}

.board-stream {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.stream-item {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(7, 23, 35, 0.05);
}

.stream-item p {
  margin: 0;
  line-height: 1.55;
}

.stream-dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3fd6f8, #39d2c4);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-row span {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading.compact {
  margin-bottom: 18px;
}

.section-heading h2,
.cta-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.85rem, 5vw, 3.4rem);
  line-height: 1.02;
}

.section-panel {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.98));
}

.narrative-panel {
  padding: 18px;
  border-radius: 24px;
  background: rgba(22, 143, 208, 0.04);
  border: 1px solid var(--line);
}

.stack-list {
  display: grid;
  gap: 14px;
}

.stack-list article {
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}

.stack-list article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.stack-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.stack-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.solution-grid,
.flagship-grid {
  display: grid;
  gap: 16px;
}

.flagship-grid--spaced {
  gap: 18px;
}

.flagship-card,
.solution-card,
.feature-card,
.security-card,
.spotlight-card,
.cta-card,
.proof-card,
.activity-list article {
  padding: 18px;
  border-radius: var(--radius-lg);
}

.flagship-card {
  min-height: 0;
  cursor: pointer;
}

.flagship-card,
.solution-card,
.feature-card,
.security-card,
.proof-card,
.activity-list article {
  background: rgba(255, 255, 255, 0.95);
}

.flagship-head,
.card-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(22, 143, 208, 0.09);
}

.flagship-card h3,
.solution-card h3,
.feature-card h3,
.security-card h3,
.spotlight-card h3,
.proof-card h3,
.activity-list h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.flagship-card ul,
.solution-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.tone-green {
  background:
    linear-gradient(180deg, rgba(93, 225, 210, 0.1), rgba(255, 255, 255, 0.04));
}

.tone-blue {
  background:
    linear-gradient(180deg, rgba(44, 199, 240, 0.11), rgba(255, 255, 255, 0.04));
}

.tone-violet {
  background:
    linear-gradient(180deg, rgba(106, 150, 255, 0.11), rgba(255, 255, 255, 0.04));
}

.tone-amber {
  background:
    linear-gradient(180deg, rgba(88, 206, 235, 0.1), rgba(255, 255, 255, 0.04));
}

.tone-red {
  background:
    linear-gradient(180deg, rgba(30, 165, 213, 0.1), rgba(255, 255, 255, 0.04));
}

.tone-orange,
.tone-brown {
  background:
    linear-gradient(180deg, rgba(72, 197, 224, 0.1), rgba(255, 255, 255, 0.04));
}

.section-link {
  display: inline-flex;
  margin-top: 18px;
  color: #8ceeff;
  font-weight: 700;
}

.feature-band {
  padding: 24px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(44, 199, 240, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 255, 0.98));
  border: 1px solid var(--line);
}

.proof-grid {
  margin-top: 18px;
}

.proof-card h3,
.feature-card h3,
.security-card h3 {
  color: var(--text);
}

.subpage-hero {
  padding-top: 32px;
}

.subpage-title {
  max-width: 860px;
}

.activity-list {
  display: grid;
  gap: 14px;
}

.activity-list p,
.feature-card p,
.security-card p {
  margin: 0;
}

.spotlight-card,
.contact-card {
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(44, 199, 240, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 255, 0.98));
}

.spotlight-card p,
.contact-card span {
  color: var(--muted);
}

.spotlight-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.spotlight-metrics div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(22, 143, 208, 0.05);
  border: 1px solid var(--line);
}

.spotlight-metrics strong {
  display: block;
  margin-bottom: 6px;
}

.cta-section {
  padding-top: 18px;
}

/* ── Site Overview Section (11 numbered cards) ────────────────────── */
.site-overview-section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.site-overview-section .overview-cards {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-areas:
    "brand brand brand mega mega mega mega mega resources resources legal legal"
    "contact contact contact mega mega mega mega mega resources resources legal legal"
    "solutions solutions solutions villes villes villes materiel materiel materiel materiel materiel materiel"
    "chat chat chat chat chat chat chat chat chat chat chat chat";
  gap: 12px;
  margin-top: 28px;
  padding: clamp(18px, 3vw, 30px);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(22, 143, 208, 0.16), transparent 34%),
    linear-gradient(180deg, #07121a 0%, #0a1118 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(7, 18, 26, 0.24);
}

.site-overview-section .overview-card {
  position: relative;
  min-width: 0;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px 18px 18px;
  box-shadow: none;
}

.site-overview-section .overview-card:nth-child(1) { grid-area: brand; }
.site-overview-section .overview-card:nth-child(2) { grid-area: contact; }
.site-overview-section .overview-card:nth-child(3) { grid-area: mega; }
.site-overview-section .overview-card:nth-child(4) { grid-area: resources; }
.site-overview-section .overview-card:nth-child(5) { grid-area: legal; }
.site-overview-section .overview-card:nth-child(6) { grid-area: solutions; }
.site-overview-section .overview-card:nth-child(7) { grid-area: villes; }
.site-overview-section .overview-card:nth-child(8) { grid-area: materiel; }
.site-overview-section .overview-card:nth-child(9) { grid-area: chat; }

.site-overview-section .overview-brand-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-overview-section .overview-brand-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.site-overview-section .overview-brand-logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.site-overview-section .overview-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

/* Number badge */
.site-overview-section .overview-num {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #84f3ff, #36caef 55%, #1ca5d5);
  color: #03131c;
  font-size: 0.72rem;
  font-weight: 700;
  min-width: 30px;
  min-height: 30px;
  padding: 0 9px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(54, 202, 239, 0.24);
  line-height: 1;
  white-space: nowrap;
}

.site-overview-section .overview-card h4 {
  margin: 0 46px 12px 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

.site-overview-section .overview-brand-head h4 {
  margin: 0;
}

.site-overview-section .overview-contact-card h4 {
  margin-right: 0;
}

.site-overview-section .overview-contact-links {
  display: grid;
  gap: 8px;
}

.site-overview-section .overview-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 7px 8px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.site-overview-section .overview-contact-link:hover {
  color: #fff;
  background: rgba(54, 202, 239, 0.12);
  border-color: rgba(140, 238, 255, 0.28);
  text-decoration: none;
  transform: translateY(-1px);
}

.site-overview-section .overview-contact-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  color: #07121a;
  background: linear-gradient(135deg, #84f3ff, #36caef 55%, #1ca5d5);
}

.site-overview-section .overview-contact-icon svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

.site-overview-section .overview-card p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
  line-height: 1.68;
}

.site-overview-section .overview-card ul {
  margin: 4px 0 0 18px;
  padding: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
  line-height: 1.8;
}

.site-overview-section .overview-card a {
  color: #8ceeff;
  text-decoration: none;
}

.site-overview-section .overview-card a:hover {
  text-decoration: underline;
}

.site-overview-section .overview-card code {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.78rem;
  padding: 1px 5px;
  border-radius: 4px;
  font-family: monospace;
}

/* Mega menu two-column layout inside card 3-4-5 */
.site-overview-section .overview-mega {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.site-overview-section .overview-mega-col {
  min-width: 0;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.site-overview-section .overview-cat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffc400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 6px !important;
}

.site-overview-section .overview-mega-sectors {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.site-overview-section .overview-sector {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.site-overview-section .overview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.site-overview-section .overview-tags span,
.site-overview-section .overview-tags a {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(54, 202, 239, 0.1);
  border: 1px solid rgba(54, 202, 239, 0.18);
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.site-overview-section .overview-tags a:hover {
  background: rgba(54, 202, 239, 0.22);
  border-color: rgba(54, 202, 239, 0.45);
  color: #fff;
}

.site-overview-section .overview-whatsapp-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-overview-section .overview-wa-composer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), rgba(18, 140, 126, 0.06));
  border: 1px solid rgba(37, 211, 102, 0.22);
  border-radius: 14px;
  padding: 12px;
}

.site-overview-section .overview-wa-icon-col {
  flex-shrink: 0;
  padding-top: 2px;
}

.site-overview-section .overview-wa-icon-bubble {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.4);
}

.site-overview-section .overview-wa-icon-bubble svg {
  width: 17px;
  height: 17px;
  fill: #fff;
}

.site-overview-section .overview-wa-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-overview-section .overview-wa-textarea {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.81rem;
  line-height: 1.55;
  padding: 8px 10px;
  resize: vertical;
  font-family: inherit;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.site-overview-section .overview-wa-textarea:focus {
  border-color: rgba(37, 211, 102, 0.5);
  background: rgba(255, 255, 255, 0.09);
}

.site-overview-section .overview-wa-btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  padding: 7px 16px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.site-overview-section .overview-wa-btn:hover {
  background: #1ebe5c;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
  text-decoration: none;
}

@media (max-width: 1080px) {
  .site-overview-section .overview-cards {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-areas:
      "brand brand brand contact contact contact"
      "mega mega mega mega mega mega"
      "resources resources resources legal legal legal"
      "solutions solutions villes villes materiel materiel"
      "chat chat chat chat chat chat";
  }
}

@media (max-width: 759px) {
  .site-overview-section .overview-cards {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "contact"
      "mega"
      "resources"
      "legal"
      "solutions"
      "villes"
      "materiel"
      "chat";
    gap: 10px;
    padding: 14px;
    border-radius: 24px;
  }

  .site-overview-section .overview-card {
    padding: 18px 16px 16px;
  }
}

.cta-card {
  background:
    radial-gradient(circle at top right, rgba(44, 199, 240, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 255, 0.98));
}

.final-cta {
  align-items: center;
}

.contact-card {
  display: block;
  padding: 20px;
  border-radius: 22px;
}

.contact-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.1rem;
}

.hero-shell--split {
  gap: 24px;
}

.hero-visual-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-width: 0;
  background:
    radial-gradient(circle at top right, rgba(44, 199, 240, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 255, 0.98));
}

.hero-visual-card--inline {
  margin-top: 30px;
}

.hero-visual-frame,
.device-preview-card {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.hero-visual-frame img,
.device-preview-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-frame {
  min-height: 220px;
}

.hero-visual-frame--inline {
  margin-top: 20px;
  margin-bottom: 24px;
  min-height: 200px;
}

/* ── Multi-device app screen mockup ── */
.app-screens-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 22px 18px 18px;
  background: linear-gradient(150deg, #f2f5fb 0%, #e8ecf5 100%);
  width: 100%;
  box-sizing: border-box;
}

.app-screens-mockup .asm-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.asm-monitor {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 78%;
}
.asm-monitor .asm-screen {
  width: 100%;
  border-radius: 6px 6px 0 0;
  border: 10px solid #1a1a2e;
  border-bottom: 20px solid #1a1a2e;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.32);
}
.asm-chin {
  width: 36px;
  height: 22px;
  background: #1a1a2e;
}
.asm-stand {
  width: 22px;
  height: 18px;
  background: #22223a;
}
.asm-foot {
  width: 80px;
  height: 7px;
  background: #1a1a2e;
  border-radius: 4px;
  margin-bottom: 6px;
}

.asm-row {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  width: 100%;
}

.asm-tablet { flex: 1.3; }
.asm-tablet .asm-screen {
  border: 8px solid #1a1a2e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 16px rgba(0,0,0,0.28);
}

.asm-phone { flex: 0.65; }
.asm-phone .asm-screen {
  border: 8px solid #1a1a2e;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 16px rgba(0,0,0,0.28);
  aspect-ratio: 9 / 14;
}
.asm-phone .asm-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.asm-laptop {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.asm-laptop .asm-screen {
  width: 100%;
  border: 7px solid #1a1a2e;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  box-shadow: 0 5px 16px rgba(0,0,0,0.28);
}
.asm-laptop-base {
  width: 110%;
  height: 9px;
  background: #1a1a2e;
  border-radius: 0 0 6px 6px;
}

.hero-visual-copy h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.4rem, 3.8vw, 2.2rem);
  line-height: 1.08;
  font-family: "Space Grotesk", sans-serif;
}

.hero-visual-copy p,
.overview-card p,
.device-card p,
.manager-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.visual-label,
.overview-kicker {
  color: #8ceeff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.overview-grid,
.manager-grid {
  display: grid;
  gap: 18px;
}

.solution-strip-wrap {
  margin-top: 30px;
}

.solution-strip-wrap--hero {
  margin-top: 0;
}

.solution-strip-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.solution-strip-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.solution-strip-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.solution-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 280px);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.solution-mini-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.solution-mini-card:hover,
.solution-mini-card:focus-visible,
.flagship-card:hover,
.flagship-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(22, 143, 208, 0.35);
  box-shadow: 0 18px 36px rgba(20, 60, 90, 0.12);
  outline: none;
}

.solution-mini-card img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.solution-mini-copy {
  padding: 14px 16px 16px;
}

.solution-mini-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.solution-mini-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.overview-card,
.device-card,
.manager-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.overview-card h3,
.device-card h3,
.manager-card h3 {
  margin: 10px 0 10px;
  font-size: 1.22rem;
}

.device-section .section-heading {
  margin-bottom: 28px;
}

.device-showcase,
.device-grid {
  display: grid;
  gap: 18px;
}

.device-preview-card {
  min-height: 200px;
}

.device-card {
  min-height: 228px;
  background:
    radial-gradient(circle at top right, rgba(44, 199, 240, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 255, 0.98));
}

.device-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.device-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(22, 143, 208, 0.08);
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.device-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(44, 199, 240, 0.14);
  color: #1177b0;
  font-size: 0.78rem;
  font-weight: 800;
}

.device-terminal-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.18));
}

.manager-panel {
  padding: 28px;
}

.manager-actions {
  margin-top: 22px;
}

.biz-grid--airy {
  gap: 22px;
}

@media (min-width: 760px) {
  .page-shell {
    padding: 18px clamp(24px, 4vw, 52px) 44px;
  }

  .desktop-nav {
    display: inline-flex;
  }

  .nav-toggle,
  .mobile-nav {
    display: none;
  }

  .hero-shell,
  .narrative-layout,
  .activity-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    align-items: stretch;
  }

  .hero-shell--split,
  .device-showcase {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr) !important;
    align-items: stretch;
  }

  .overview-grid,
  .manager-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .solution-strip {
    grid-auto-columns: minmax(240px, 300px);
  }

  .device-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flagship-grid,
  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid,
  .feature-grid,
  .security-grid,
  .contact-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta-card {
    display: grid;
    grid-template-columns: 1.2fr auto;
    gap: 20px;
  }
}

@media (min-width: 1400px) {
  .page-shell {
    padding-left: clamp(36px, 5vw, 72px);
    padding-right: clamp(36px, 5vw, 72px);
  }
}

@media (min-width: 1080px) {
  .flagship-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 759px) {
  .hero-metrics,
  .board-metrics,
  .spotlight-metrics {
    grid-template-columns: 1fr;
  }

  .spotlight-actions .button {
    width: 100%;
  }

  .hero-copy,
  .hero-copy--large,
  .hero-visual-card,
  .overview-card,
  .device-card,
  .manager-card {
    padding: 20px;
  }

  .hero-visual-frame {
    min-height: 240px;
  }

  .brand-copy small {
    max-width: 160px;
  }

  .header-actions {
    gap: 8px;
  }

  .lang-toggle {
    width: 36px;
    padding: 0;
    justify-content: center;
  }

  .lang-code {
    display: none;
  }

  .solution-strip-header {
    align-items: start;
    flex-direction: column;
  }
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .brand,
html[dir="rtl"] .header-actions,
html[dir="rtl"] .desktop-nav,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .cta-actions,
html[dir="rtl"] .solution-strip-header,
html[dir="rtl"] .device-card-head,
html[dir="rtl"] .flagship-head,
html[dir="rtl"] .card-top {
  flex-direction: row-reverse;
}

html[dir="rtl"] .lang-menu {
  right: auto;
  left: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ── Hero text overrides ──────────────────────────────── */
.hero-eyebrow-sm {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
}

.hero-h1-sm {
  font-size: clamp(1.5rem, 4vw, 2.6rem) !important;
  line-height: 1.18 !important;
}

.hero-shell {
  grid-template-columns: minmax(0, 1fr) !important;
}

.hero-shell--split {
  grid-template-columns: minmax(0, 1fr) !important;
}

/* ── Flagship card expand/collapse ───────────────────── */
.flagship-tagline {
  margin: 6px 0 0;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted-dark);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.flagship-card.expanded .flagship-tagline {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.flagship-body {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.32s ease, opacity 0.24s ease;
}

.flagship-body > * {
  overflow: hidden;
}

.flagship-card.expanded .flagship-body {
  grid-template-rows: 1fr;
  opacity: 1;
}

.flagship-card.expanded .flagship-body p,
.flagship-card.expanded .flagship-body ul {
  margin-top: 8px;
}

.read-more-btn {
  margin-top: 10px;
  padding: 6px 0;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: opacity 0.15s ease;
}

.read-more-btn:hover {
  opacity: 0.75;
}

.solution-card.is-highlighted {
  border-color: rgba(22, 143, 208, 0.5);
  box-shadow: 0 24px 44px rgba(22, 143, 208, 0.14);
  background:
    radial-gradient(circle at top right, rgba(44, 199, 240, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(241, 249, 255, 0.98));
}

/* ── Business Photo Grid ──────────────────────────────── */
.biz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.biz-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
}

.biz-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.biz-card:hover img {
  transform: scale(1.04);
}

.biz-card figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 18px;
  background: linear-gradient(0deg, rgba(6, 21, 33, 0.92) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.biz-card figcaption strong {
  color: #eef8fc;
  font-size: 0.95rem;
}

.biz-card figcaption span {
  color: rgba(164, 193, 207, 0.85);
  font-size: 0.78rem;
}

.biz-card--wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 6;
}

@media (min-width: 760px) {
  .biz-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .biz-card:first-child {
    grid-column: span 2;
  }

  .biz-card--wide {
    aspect-ratio: 21 / 7;
  }
}

/* ── Charts Section ───────────────────────────────────── */
.charts-layout {
  display: grid;
  gap: 16px;
}

.chart-block {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.chart-block-header {
  margin-bottom: 20px;
}

.chart-block-header h3 {
  margin: 0 0 5px;
  font-size: 1.05rem;
  color: var(--text);
}

.chart-block-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.chart-canvas-wrap {
  position: relative;
  height: 220px;
}

.donut-wrap-home {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sector-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.sector-leg-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

.sector-leg-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.sector-leg-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}

.sector-leg-right {
  font-weight: 700;
  color: var(--text);
}

@media (min-width: 760px) {
  .charts-layout {
    grid-template-columns: 1.6fr 1fr;
  }

  .chart-block--full {
    grid-column: 1 / -1;
  }
}

/* ── Category Section (index) ───────────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.category-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: var(--text);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 143, 208, 0.38);
  box-shadow: 0 22px 44px rgba(20, 60, 90, 0.13);
}

.category-card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(22, 143, 208, 0.07);
}

.category-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

.category-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.6;
  flex: 1;
}

.category-label {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(22, 143, 208, 0.1);
  color: var(--primary-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  align-self: flex-start;
}

.category-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (min-width: 760px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Category Detail Pages ───────────────────────────────── */
.cat-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.83rem;
  color: var(--muted);
}

.cat-breadcrumb a {
  color: var(--primary);
}

.cat-intro-text p {
  color: var(--muted);
  line-height: 1.72;
  margin: 0 0 14px;
}

.cat-intro-text p:last-child {
  margin-bottom: 0;
}

.cat-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.cat-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(22, 143, 208, 0.05);
  border: 1px solid var(--line);
}

.cat-feature-dot {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: linear-gradient(135deg, #3fd6f8, #39d2c4);
  flex-shrink: 0;
  margin-top: 5px;
}

.cat-feature-item span {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.5;
}

.cat-how-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.cat-how-panel h2 {
  margin: 0 0 16px;
  font-size: clamp(1.3rem, 3.2vw, 1.9rem);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.cat-how-panel p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
}

.cat-how-panel p:last-child {
  margin-bottom: 0;
}

.cat-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cat-kw-tag {
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(22, 143, 208, 0.06);
  border: 1px solid var(--line-soft);
  font-size: 0.78rem;
  color: var(--muted-dark);
}

@media (max-width: 759px) {
  .cat-features-grid {
    grid-template-columns: 1fr;
  }

  .cat-how-panel {
    padding: 18px;
  }
}

@media (max-width: 759px) {
  .overview-mega {
    grid-template-columns: 1fr;
  }
}

/* ── Floating WhatsApp button ─────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 18px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
  transition: transform 200ms ease, box-shadow 200ms ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  display: block;
}

/* ============================================================
   MOBILE PROFESSIONAL POLISH  (≤ 759px)
   ============================================================ */
@media (max-width: 759px) {

  /* ── Page shell ─────────────────────────────────────────── */
  .page-shell {
    padding: 10px 14px 40px;
  }

  /* ── Sections ────────────────────────────────────────────── */
  .section        { padding: 22px 0; }
  .section-first  { padding-top: 14px; }
  .section-gap-lg { padding-top: 30px; }
  .section-gap-xl { padding-top: 38px; }

  /* ── Header ──────────────────────────────────────────────── */
  .site-header {
    padding: 5px 8px;
    top: 8px;
  }

  .brand-copy small {
    display: none;
  }

  /* ── Mobile nav ──────────────────────────────────────────── */
  .mobile-nav {
    border: 1px solid var(--line-soft);
    gap: 6px;
  }

  .mobile-nav a {
    padding: 13px 14px;
    font-size: 0.95rem;
    font-weight: 600;
  }

  /* ── Typography ──────────────────────────────────────────── */
  .section-heading h2,
  .cta-card h2 {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
    margin-bottom: 8px;
  }

  .subpage-title {
    font-size: clamp(1.8rem, 7.5vw, 2.8rem);
    line-height: 1.06;
  }

  .hero-text,
  .section-heading p {
    font-size: 0.9rem;
    line-height: 1.62;
  }

  /* ── Hero ─────────────────────────────────────────────────── */
  .hero { padding-top: 14px; }

  .hero-copy,
  .hero-copy--large {
    padding: 18px;
  }

  .hero-copy--large .eyebrow,
  .hero-copy--large .hero-h1-sm,
  .hero-copy--large .hero-text {
    text-align: left;
  }

  .hero-copy--large .hero-actions,
  .hero-copy--large .hero-metrics {
    justify-content: flex-start;
  }

  /* Hero buttons — stacked full-width */
  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 50px;
    font-size: 0.95rem;
    border-radius: 14px;
  }

  /* Hero metrics — 2 columns, remove forced min-height */
  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 18px;
  }

  .hero-metrics--wide article {
    min-height: 0;
    padding: 14px;
  }

  .hero-metrics strong {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }

  .hero-metrics span {
    font-size: 0.76rem;
  }

  /* ── Hero visual / aside ─────────────────────────────────── */
  .hero-visual-card {
    padding: 14px;
    gap: 14px;
  }

  .hero-visual-frame {
    min-height: 150px;
  }

  .hero-visual-copy h2 {
    font-size: clamp(1.15rem, 4.5vw, 1.6rem);
  }

  .hero-visual-copy p {
    font-size: 0.87rem;
  }

  /* ── Solution strip ──────────────────────────────────────── */
  .solution-strip {
    grid-auto-columns: minmax(155px, 200px);
    gap: 12px;
  }

  .solution-mini-card img {
    height: 105px;
  }

  .solution-mini-copy {
    padding: 10px 12px 12px;
  }

  .solution-mini-copy strong {
    font-size: 0.9rem;
  }

  .solution-mini-copy p {
    font-size: 0.8rem;
  }

  /* ── Overview / device / manager cards ──────────────────── */
  .overview-card,
  .device-card,
  .manager-card {
    padding: 16px;
  }

  .overview-card h3,
  .device-card h3,
  .manager-card h3 {
    font-size: 1.05rem;
    margin: 8px 0 8px;
  }

  .overview-card p,
  .device-card p,
  .manager-card p {
    font-size: 0.87rem;
  }

  .device-card { min-height: 0; }

  .device-preview-card { min-height: 140px; }

  /* ── Section panel / manager panel ──────────────────────── */
  .section-panel  { padding: 18px; }
  .manager-panel  { padding: 18px; }

  /* ── Manager grid — single column ───────────────────────── */
  .manager-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* ── Manager & CTA actions — full-width stacked ─────────── */
  .manager-actions,
  .cta-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }

  .manager-actions .button,
  .cta-actions .button {
    width: 100%;
    min-height: 50px;
    border-radius: 14px;
  }

  /* ── CTA card ────────────────────────────────────────────── */
  .cta-card {
    padding: 18px;
    display: flex;
    flex-direction: column;
  }

  /* ── Flagship / solution / feature cards ─────────────────── */
  .flagship-card,
  .solution-card,
  .feature-card,
  .security-card,
  .spotlight-card,
  .proof-card,
  .activity-list article {
    padding: 16px;
  }

  .flagship-card h3,
  .solution-card h3 {
    font-size: 1.05rem;
  }

  .flagship-card ul,
  .solution-card ul {
    font-size: 0.87rem;
  }

  /* Flagship badge + meta on same row */
  .flagship-head {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .flagship-meta {
    font-size: 0.75rem;
  }

  /* ── Feature / security / proof grids — 2 columns ───────── */
  .feature-grid,
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .feature-card h3,
  .security-card h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .feature-card p,
  .security-card p {
    font-size: 0.82rem;
  }

  /* ── Proof grid — 2 columns ──────────────────────────────── */
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .proof-card h3 {
    font-size: 0.95rem;
  }

  .proof-card p {
    font-size: 0.82rem;
  }

  /* ── Board metrics — keep 2 columns ─────────────────────── */
  .board-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* ── Spotlight metrics — 2 columns ──────────────────────── */
  .spotlight-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* ── Spotlight actions — stacked full-width ─────────────── */
  .spotlight-actions {
    flex-direction: column;
    gap: 10px;
  }

  /* ── Contact cards ───────────────────────────────────────── */
  .contact-card {
    padding: 16px;
    border-radius: 18px;
  }

  .contact-card strong {
    font-size: 1rem;
  }

  /* ── Biz grid images ─────────────────────────────────────── */
  .biz-card--wide {
    aspect-ratio: 16 / 7;
  }

  .biz-card figcaption {
    padding: 10px 12px;
  }

  .biz-card figcaption strong {
    font-size: 0.85rem;
  }

  .biz-card figcaption span {
    font-size: 0.71rem;
  }

  /* ── Feature band ────────────────────────────────────────── */
  .feature-band { padding: 16px; }

  /* ── Charts ──────────────────────────────────────────────── */
  .chart-block { padding: 16px; }
  .chart-canvas-wrap { height: 180px; }

  /* ── Live board ──────────────────────────────────────────── */
  .live-board { padding: 14px; }

  /* ── Narrative / stack ───────────────────────────────────── */
  .narrative-panel { padding: 14px; }
  .stack-list article { padding: 10px 0; }

  /* ── Pill row ────────────────────────────────────────────── */
  .pill-row span {
    font-size: 0.8rem;
    padding: 9px 12px;
  }

  /* ── Eyebrow ─────────────────────────────────────────────── */
  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
  }

  /* ── Badge ───────────────────────────────────────────────── */
  .badge {
    font-size: 0.76rem;
    min-height: 28px;
    padding: 0 10px;
  }
}

/* ── City links ──────────────────────────────────────────── */
.city-links-wrap {
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: rgba(22, 143, 208, 0.04);
  border: 1px solid var(--line-soft);
}

.city-links-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}

.city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.city-link {
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.city-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ── Horizontal scroll: drag cursor (desktop only) ───────── */
@media (min-width: 760px) {
  [data-h-scroll] { cursor: grab; }
  [data-h-scroll].is-dragging { cursor: grabbing; user-select: none; }
}

/* ── Scroll arrow buttons (desktop only) ─────────────────── */
.h-scroll-track {
  position: relative;
}
.scroll-arrow {
  display: none; /* hidden by default; shown on desktop below */
}
@media (min-width: 760px) {
  .scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--primary);
    transition: opacity 180ms ease, background 180ms ease, transform 180ms ease;
    padding: 0;
  }
  .scroll-arrow--prev { left: -14px; }
  .scroll-arrow--next { right: -14px; }
  .scroll-arrow:hover { background: var(--primary); color: #fff; transform: translateY(-50%) scale(1.08); }
  .scroll-arrow:disabled { opacity: 0.25; pointer-events: none; }
}

/* ── Solution strip: contain overflow & scrollbar ────────── */
.solution-strip-wrap {
  overflow: hidden;
}
.solution-strip-wrap--hero {
  overflow: visible; /* allow arrows to show outside on desktop */
}
@media (max-width: 759px) {
  .solution-strip-wrap--hero {
    overflow: hidden;
  }
  .solution-strip-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .solution-strip-header p {
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
  }
}
.solution-strip::-webkit-scrollbar { height: 4px; }
.solution-strip::-webkit-scrollbar-track { background: transparent; }
.solution-strip::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; }

/* ── City links: horizontal scroll on mobile ─────────────── */
@media (max-width: 759px) {
  .city-links {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .city-links::-webkit-scrollbar { display: none; }
  .city-link { flex-shrink: 0; scroll-snap-align: start; }
}

/* ── Flagship grid: horizontal scroll on mobile ──────────── */
@media (max-width: 759px) {
  .flagship-grid[data-h-scroll] {
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 82vw);
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 6px;
  }
  .flagship-grid[data-h-scroll]::-webkit-scrollbar { display: none; }
  .flagship-grid[data-h-scroll] .flagship-card { scroll-snap-align: start; }
}

/* ── FAQ Accordion ───────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel-strong);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: box-shadow 200ms ease;
}

.faq-item[open] {
  box-shadow: var(--shadow);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  user-select: none;
  transition: background 160ms ease;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question:hover {
  background: var(--panel-light);
}

.faq-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}

.faq-question > span:nth-child(2) {
  flex: 1;
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 160ms ease, border-color 160ms ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.faq-icon::before {
  width: 10px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 10px;
}

.faq-item[open] .faq-icon {
  background: var(--primary);
  border-color: var(--primary);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
  background: #fff;
}

.faq-item[open] .faq-icon::after {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-answer {
  padding: 0 22px 20px 72px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer p {
  margin: 0 0 8px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 759px) {
  .faq-question {
    padding: 14px 16px;
    font-size: 0.93rem;
    gap: 10px;
  }

  .faq-answer {
    padding: 0 16px 16px 62px;
    font-size: 0.88rem;
  }

  .faq-num {
    width: 30px;
    height: 30px;
    font-size: 0.72rem;
  }
}

/* ── Matériel page ───────────────────────────────────────────────── */

/* Anchor nav at top of page */
.materiel-anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}

.materiel-anchor-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 160ms ease, color 160ms ease;
}

.materiel-anchor-link:hover {
  background: var(--primary);
  color: #fff;
}

/* Material section */
.materiel-section {
  scroll-margin-top: 80px;
}

.materiel-section--alt {
  background: var(--bg-soft);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 52px);
}

/* Section header with number badge */
.materiel-header {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 28px;
}

.materiel-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.materiel-header h2 {
  margin: 6px 0 10px;
}

.materiel-intro {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

/* Usage tags */
.materiel-usage {
  margin-bottom: 20px;
}

.materiel-usage-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 10px;
}

.materiel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mtag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--panel-light);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.mtag--blue {
  background: rgba(22, 143, 208, 0.1);
  border-color: rgba(22, 143, 208, 0.25);
  color: var(--primary-strong);
}

.materiel-tags--secondary {
  margin-top: 12px;
}

/* Notes */
.materiel-note {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 28px;
}

.materiel-note-sm {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 10px 0 0;
  font-style: italic;
}

/* Sub-headings inside material sections */
.materiel-sub {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 32px 0 16px;
}

/* Bullet lists inside overview-cards */
.materiel-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.materiel-list li::marker {
  color: var(--primary);
}

/* Connectivity / choice blocks */
.materiel-connectivity,
.materiel-choice {
  margin-top: 28px;
}

/* Mobile */
@media (max-width: 759px) {
  .materiel-header {
    gap: 14px;
  }

  .materiel-num {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  .materiel-intro {
    font-size: 0.93rem;
  }

  .materiel-section--alt {
    padding: 20px 16px;
  }

  .materiel-anchors {
    gap: 8px;
  }

  .materiel-anchor-link {
    padding: 7px 14px;
    font-size: 0.82rem;
  }
}

/* ── Blog index ──────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.blog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel-strong);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 200ms ease, transform 180ms ease;
}

.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.blog-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.45;
  margin: 0;
}

.blog-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  flex: 1;
  margin: 0;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 600;
}

.blog-card-link::after {
  content: '→';
}

/* ── Blog article ────────────────────────────────────────────────── */
.blog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.blog-breadcrumb a {
  color: var(--primary);
  font-weight: 500;
}

.blog-breadcrumb .sep { color: var(--muted); }

.blog-article {
  max-width: 800px;
  margin: 0 auto;
}

.blog-article h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 40px 0 14px;
  border-left: 3px solid var(--primary);
  padding-left: 14px;
  line-height: 1.35;
}

.blog-article h3 {
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--text);
  margin: 22px 0 8px;
}

.blog-article p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin: 0 0 14px;
}

.blog-article ul {
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 2;
  margin: 8px 0 18px;
}

.blog-article ul li::marker { color: var(--primary); }

.blog-intro {
  font-size: 1.06rem;
  color: var(--text);
  line-height: 1.75;
  margin: 12px 0 0;
}

.blog-conclusion {
  margin-top: 36px;
  padding: 22px 26px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(22,143,208,0.06), rgba(58,198,222,0.06));
  border: 1px solid rgba(22,143,208,0.18);
}

.blog-conclusion h2 {
  border-left: none;
  padding-left: 0;
  margin-top: 0;
  font-size: 1.1rem;
}

.blog-keywords {
  margin-top: 32px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.blog-keywords-label {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 12px;
}

.blog-keywords-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 759px) {
  .blog-grid { grid-template-columns: 1fr; }

  .blog-article h2 { font-size: 1.08rem; }
  .blog-article h3 { font-size: 0.95rem; }
  .blog-article p  { font-size: 0.9rem; }
  .blog-intro      { font-size: 0.95rem; }
}

/* ── City page — activity sector links ──────────────────────────── */
.city-sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.city-sector-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel-strong);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 180ms ease, transform 160ms ease;
}

.city-sector-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.city-sector-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.city-sector-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
}

/* ── City page — other cities links ─────────────────────────────── */
.city-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-link-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.city-link-btn:hover {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 759px) {
  .city-sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .city-sector-card {
    padding: 14px 16px;
  }

  .city-sector-name {
    font-size: 0.88rem;
  }

  .city-link-btn {
    padding: 8px 16px;
    font-size: 0.84rem;
  }
}

/* ── Site Footer ─────────────────────────────────────────────────── */
.site-footer {
  margin-top: 48px;
  padding: 36px 0 24px;
  border-top: 1px solid var(--line-soft);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-brand strong {
  font-size: 0.95rem;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text-dark);
}

.footer-brand span {
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(22, 143, 208, 0.05);
  border: 1px solid var(--line-soft);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.footer-nav a:hover {
  background: rgba(22, 143, 208, 0.1);
  color: var(--text);
  border-color: var(--line);
}

.footer-copy {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

@media (min-width: 760px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-nav {
    gap: 6px;
  }
}

/* ═══════════════════════════════════════════════════════
   Contact page — professional redesign
   ═══════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────── */
.cp-hero {
  padding: 48px 0 36px;
  text-align: center;
}

.cp-hero-inner {
  max-width: 740px;
  margin: 0 auto;
}

.cp-hero-inner .subpage-title {
  margin: 10px 0 16px;
}

.cp-hero-sub {
  margin: 0 auto 28px;
  max-width: 560px;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.68;
}

.cp-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.cp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted-dark);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

.cp-badge svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* ── Section & grid ───────────────────────────────────── */
.cp-section {
  padding-top: 8px;
}

.cp-grid {
  display: grid;
  gap: 24px;
}

/* ── Shared panel base ────────────────────────────────── */
.cp-form-panel,
.cp-info-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow);
}

.cp-panel-header {
  margin-bottom: 26px;
}

.cp-panel-header h2 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.cp-panel-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Form ─────────────────────────────────────────────── */
.cp-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cp-form-row {
  display: grid;
  gap: 16px;
}

.cp-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cp-field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.cp-input-wrap {
  position: relative;
}

.cp-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.cp-input-wrap input {
  width: 100%;
  padding: 13px 16px 13px 40px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  box-sizing: border-box;
}

.cp-input-wrap input::placeholder {
  color: var(--muted);
}

.cp-input-wrap input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(58, 198, 222, 0.15);
}

.cp-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  resize: vertical;
  min-height: 110px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  box-sizing: border-box;
}

.cp-field textarea::placeholder {
  color: var(--muted);
}

.cp-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(58, 198, 222, 0.15);
}

.cp-submit {
  gap: 8px;
  width: 100%;
  min-height: 54px;
  font-size: 1rem;
}

.cp-form-note {
  margin: 0;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.55;
  text-align: center;
}

/* ── Info list ────────────────────────────────────────── */
.cp-info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.cp-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

a.cp-info-item:hover {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(22, 143, 208, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(20, 60, 90, 0.1);
}

.cp-info-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
}

.cp-info-icon.phone {
  background: linear-gradient(135deg, rgba(22, 143, 208, 0.12), rgba(58, 198, 222, 0.18));
  color: var(--primary-strong);
}

.cp-info-icon.whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.12), rgba(18, 183, 78, 0.18));
  color: #12b74e;
}

.cp-info-icon.location {
  background: linear-gradient(135deg, rgba(255, 160, 0, 0.1), rgba(255, 193, 7, 0.16));
  color: #d08800;
}

.cp-info-icon.hours {
  background: linear-gradient(135deg, rgba(94, 80, 240, 0.1), rgba(131, 113, 255, 0.16));
  color: #5e50f0;
}

.cp-info-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.cp-info-text span {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.cp-info-text strong {
  margin-top: 2px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text-dark);
}

.cp-info-arrow {
  color: var(--muted);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 160ms ease, transform 160ms ease;
}

a.cp-info-item:hover .cp-info-arrow {
  opacity: 1;
  transform: translateX(2px);
}

/* ── Info panel actions ───────────────────────────────── */
.cp-info-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.cp-info-actions .button {
  flex: 1;
  gap: 7px;
  font-size: 0.9rem;
  min-height: 48px;
}

/* ── Demo note ────────────────────────────────────────── */
.cp-demo-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(22, 143, 208, 0.06);
  border: 1px solid rgba(22, 143, 208, 0.12);
}

.cp-demo-note svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}

.cp-demo-note span {
  font-size: 0.8rem;
  color: var(--muted-dark);
  line-height: 1.55;
}

/* ── Responsive ───────────────────────────────────────── */
@media (min-width: 640px) {
  .cp-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .cp-hero {
    padding-top: 56px;
  }

  .cp-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: start;
  }
}

@media (max-width: 639px) {
  .cp-form-panel,
  .cp-info-panel {
    padding: 22px 18px;
  }

  .cp-info-actions {
    flex-direction: column;
  }
}

/* ── Mega Menu ─────────────────────────────── */
.nav-mega-wrap { position: relative; }
.nav-mega-trigger {
  background: none;
  border: none;
  font: inherit;
  font-size: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-mega-trigger:hover { color: var(--primary); }
.nav-mega-caret { font-size: .65em; transition: transform .2s; }
.nav-mega-wrap[data-open] .nav-mega-caret { transform: rotate(180deg); }
.nav-mega-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,.14);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 24px;
  min-width: 680px;
  z-index: 200;
}
.nav-mega-panel[hidden] { display: none; }
.mega-col { display: flex; flex-direction: column; gap: 4px; }
.mega-cat {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-soft);
}
.mega-col a {
  font-size: .84rem;
  color: var(--text);
  padding: 3px 0;
  text-decoration: none;
  transition: color .15s;
}
.mega-col a:hover { color: var(--primary); }
