/* ============================================================
   VoxPath — Design System
   Mobile-first (375px base), breakpoints: 768, 1024, 1280
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --primary:       #0A2540;
  --accent:        #0052CC;
  --accent-light:  #EBF4FF;
  --bg:            #FFFFFF;
  --bg-alt:        #F7F9FC;
  --text:          #1A2B3C;
  --muted:         #5A6B7C;
  --border:        #DDE4ED;
  --success:       #0D7A5F;
  --danger:        #C0392B;
  --warning:       #D4830A;

  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     12px;
  --radius-xl:     16px;

  --shadow-sm:     0 1px 3px rgba(10,37,64,.08);
  --shadow-md:     0 4px 12px rgba(10,37,64,.12);
  --shadow-lg:     0 8px 32px rgba(10,37,64,.16);

  --nav-h:         64px;
  --transition:    0.2s ease;

  --font:          'Inter', system-ui, -apple-system, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px)  { .container { padding-inline: 32px; } }
@media (min-width: 1280px) { .container { padding-inline: 48px; } }

.section { padding-block: 72px; }
.section--alt { background: var(--bg-alt); }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 48px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-inline: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-md);
  font-size: .9375rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: #0046b0; border-color: #0046b0; box-shadow: var(--shadow-md); }

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-secondary:hover { background: var(--accent-light); }

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

.btn-sm { padding: 7px 16px; font-size: .875rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }

/* ---- Navigation ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}
.nav__logo {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav__logo:hover { text-decoration: none; opacity: .85; }
.nav__logo-img {
  height: 48px;
  width: auto;
  display: block;
  border-radius: 6px;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 4px;
  flex: 1;
  margin-left: 24px;
}
@media (min-width: 1024px) { .nav__links { display: flex; } }

.nav__links a {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--text);
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.nav__links a:hover { background: var(--bg-alt); color: var(--accent); text-decoration: none; }
.nav__links a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.lang-toggle {
  display: flex;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.lang-toggle button {
  padding: 5px 10px;
  font-size: .8rem;
  font-weight: 600;
  background: transparent;
  border: none;
  color: var(--muted);
  transition: background var(--transition), color var(--transition);
}
.lang-toggle button.active {
  background: var(--accent);
  color: #fff;
}
.lang-toggle button:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav__hamburger:hover { background: var(--bg-alt); }
.nav__hamburger:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .nav__hamburger { display: none; } }

/* Mobile nav menu */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 24px;
  z-index: 99;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 4px;
}
.nav__mobile-menu.open { display: flex; }
.nav__mobile-menu a {
  padding: 10px 12px;
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--text);
  font-size: 1rem;
  transition: background var(--transition);
}
.nav__mobile-menu a:hover { background: var(--bg-alt); text-decoration: none; }
.nav__mobile-menu .btn { margin-top: 8px; width: 100%; }

/* ---- Hero ---- */
.hero {
  padding-block: 80px 72px;
  background: linear-gradient(160deg, #f0f6ff 0%, var(--bg) 60%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,82,204,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: .8125rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(0,82,204,.2);
  margin-bottom: 20px;
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.8); }
}
.hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 20px;
  max-width: 740px;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--success);
  background: rgba(13,122,95,.07);
  border: 1px solid rgba(13,122,95,.2);
  padding: 5px 12px;
  border-radius: 20px;
}
.hero__pill::before { content: '✓'; font-weight: 700; }

/* ---- Platform ---- */
.platform__grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 768px) {
  .platform__grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
.platform__faq { display: flex; flex-direction: column; gap: 24px; }
.platform__faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--bg);
  transition: box-shadow var(--transition);
}
.platform__faq-item:hover { box-shadow: var(--shadow-md); }
.platform__faq-q {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1rem;
}
.platform__faq-a { color: var(--muted); font-size: .9375rem; line-height: 1.7; }

/* ---- Stats Bar ---- */
.stats { background: var(--primary); padding-block: 48px; }
.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stats__item {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}
.stats__number {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.stats__label { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.4; }

/* ---- Use Cases ---- */
.tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 32px;
  width: fit-content;
  background: var(--bg-alt);
}
.tab-btn {
  padding: 10px 24px;
  background: transparent;
  border: none;
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted);
  transition: background var(--transition), color var(--transition);
}
.tab-btn.active { background: var(--accent); color: #fff; }
.tab-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.tab-btn:hover:not(.active) { background: var(--border); }

.tab-panel { display: none; }
.tab-panel.active { display: grid; gap: 20px; }
@media (min-width: 768px) { .tab-panel.active { grid-template-columns: repeat(3, 1fr); } }

.usecase-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.usecase-card__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.usecase-card--challenge .usecase-card__label { color: var(--danger); }
.usecase-card--solution .usecase-card__label  { color: var(--accent); }
.usecase-card--benefits .usecase-card__label  { color: var(--success); }
.usecase-card p { font-size: .9375rem; color: var(--muted); line-height: 1.65; }

/* ---- Features Grid ---- */
.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (min-width: 1024px) { .features__grid { grid-template-columns: repeat(4, 1fr); } }

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-card__icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--accent);
  flex-shrink: 0;
}
.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card__title {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.feature-card__desc { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* ---- Agents ---- */
.agents { background: var(--primary); padding-block: 80px; }
.agents .section-badge { background: rgba(0,82,204,.3); color: #93c5fd; }
.agents .section-title { color: #fff; }
.agents .section-subtitle { color: rgba(255,255,255,.65); max-width: 640px; margin-inline: auto; }
.agents__grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) { .agents__grid { grid-template-columns: 1fr 1fr; } }
.agents__grid--single { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }

.agent-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: background var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.agent-card:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.agent-card__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}
.agent-card--elise .agent-card__avatar  { background: rgba(0,82,204,.4); color: #93c5fd; }
.agent-card--laurent .agent-card__avatar { background: rgba(13,122,95,.4); color: #6ee7b7; }
.agent-card__name { font-size: 1.125rem; font-weight: 700; color: #fff; }
.agent-card__hospital { font-size: .8125rem; color: rgba(255,255,255,.5); margin-top: 2px; }
.agent-card__desc { font-size: .9375rem; color: rgba(255,255,255,.7); line-height: 1.65; flex: 1; }
.agent-card .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.3);
  align-self: flex-start;
}
.agent-card .btn-secondary:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); }
/* Big mic circle demo button */
.agent-demo-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 8px;
}
.agent-mic-btn {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #0052CC 0%, #0A2540 100%);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(0,82,204,.5);
  animation: micPulse 2.2s ease-in-out infinite;
  transition: transform .15s, box-shadow .15s;
  position: relative;
}
.agent-mic-btn:hover {
  transform: scale(1.08);
  animation: none;
  box-shadow: 0 8px 32px rgba(0,82,204,.6);
}
.agent-mic-btn:active { transform: scale(.95); }
@keyframes micPulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,82,204,.55); }
  60%  { box-shadow: 0 0 0 18px rgba(0,82,204,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,82,204,0); }
}
.agent-mic-label {
  font-size: .9375rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  letter-spacing: .01em;
}

.agents__disclaimer {
  margin-top: 32px;
  padding: 16px 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  text-align: center;
}

/* ---- Dashboard Mock ---- */
.dashboard-mock {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 960px;
  margin: 48px auto 0;
}
.dashboard-mock__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: var(--primary);
  gap: 16px;
  flex-wrap: wrap;
}
.dashboard-mock__brand {
  font-weight: 700;
  color: #fff;
  font-size: .9375rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dashboard-mock__brand-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.dashboard-mock__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .8125rem;
  color: rgba(255,255,255,.6);
}
.dashboard-mock__meta span { display: flex; align-items: center; gap: 4px; }
.dashboard-mock__body { padding: 24px; }

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 600px) { .dash-stats { grid-template-columns: 1fr; } }
.dash-stat-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  background: var(--bg-alt);
}
.dash-stat-card__label { font-size: .75rem; color: var(--muted); font-weight: 600; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.dash-stat-card__value { font-size: 1.75rem; font-weight: 800; color: var(--primary); line-height: 1; }
.dash-stat-card--alert .dash-stat-card__value { color: var(--danger); }

.dash-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.dash-table th {
  text-align: left;
  padding: 10px 12px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 2px solid var(--border);
}
.dash-table td { padding: 12px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.dash-table tr:last-child td { border-bottom: none; }
.dash-table tr:hover td { background: var(--bg-alt); }
.dash-table .caller { font-weight: 600; color: var(--primary); }
.dash-table .duration { color: var(--muted); font-variant-numeric: tabular-nums; }

.score-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}
.score-bar__track {
  width: 80px;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.score-bar__fill {
  height: 100%;
  border-radius: 3px;
  transition: width .6s ease;
}
.score-bar__fill--high    { background: var(--success); }
.score-bar__fill--medium  { background: var(--warning); }
.score-bar__fill--low     { background: var(--danger); }
.score-bar__value { font-size: .8125rem; font-weight: 600; color: var(--primary); }

.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 600;
  white-space: nowrap;
}
.tag--blue   { background: #dbeafe; color: #1d4ed8; }
.tag--green  { background: #dcfce7; color: #166534; }
.tag--red    { background: #fee2e2; color: #991b1b; }
.tag--orange { background: #fef3c7; color: #92400e; }
.tag--gray   { background: #f1f5f9; color: #475569; }

/* ---- Deployment ---- */
.deploy__grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) { .deploy__grid { grid-template-columns: 1fr 1fr; } }
.deploy-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  background: var(--bg);
  transition: box-shadow var(--transition);
}
.deploy-card:hover { box-shadow: var(--shadow-md); }
.deploy-card--cloud  { border-top: 4px solid var(--accent); }
.deploy-card--onprem { border-top: 4px solid var(--success); }
.deploy-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}
.deploy-card__list { display: flex; flex-direction: column; gap: 12px; }
.deploy-card__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9375rem;
  color: var(--muted);
}
.deploy-card__item::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.deploy-card--cloud .deploy-card__item::before  { background: var(--accent-light); box-shadow: inset 0 0 0 2px var(--accent); }
.deploy-card--onprem .deploy-card__item::before { background: rgba(13,122,95,.1); box-shadow: inset 0 0 0 2px var(--success); }
.deploy__note {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: .9rem;
  color: var(--accent);
  font-weight: 500;
}

/* ---- Compliance ---- */
.compliance__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 768px)  { .compliance__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .compliance__grid { grid-template-columns: repeat(5, 1fr); } }

.compliance-badge {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  background: var(--bg);
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.compliance-badge:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.compliance-badge__icon {
  width: 48px; height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-weight: 800;
  font-size: .875rem;
  color: var(--accent);
  letter-spacing: -.01em;
}
.compliance-badge__title { font-weight: 700; color: var(--primary); margin-bottom: 6px; font-size: .9375rem; }
.compliance-badge__desc { font-size: .8125rem; color: var(--muted); line-height: 1.5; }
.compliance__legal {
  padding: 16px 20px;
  background: rgba(13,122,95,.05);
  border: 1px solid rgba(13,122,95,.2);
  border-radius: var(--radius-md);
  font-size: .875rem;
  color: var(--success);
  font-style: italic;
}

/* ---- Integrations ---- */
/* Integrations logo grid */
.integ-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
@media (min-width: 600px) { .integ-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

.integ-item {
  background: #fff;
  border: 1px solid #DDE3EC;
  border-radius: 4px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  transition: box-shadow .18s, border-color .18s;
}
.integ-item:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  border-color: #B0C4DE;
}
.integ-item img {
  max-height: 44px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(1) opacity(.55);
  transition: filter .22s;
}
.integ-item:hover img { filter: grayscale(0) opacity(1); }
.integ-item--orange { background: #FF7900; border-color: #FF7900; }
.integ-item--orange img { filter: grayscale(0) opacity(1); }

.integrations__footer { font-size: .875rem; color: var(--muted); text-align: center; }
.integrations__footer a { color: var(--accent); }

/* ---- Pricing ---- */
.pricing__grid {
  display: grid;
  gap: 24px;
  align-items: start;
}
@media (min-width: 768px)  { .pricing__grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pricing-card--pro {
  border-color: var(--accent);
  border-width: 2px;
  background: #fafcff;
}
.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-card__name { font-size: 1.125rem; font-weight: 700; color: var(--primary); }
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-card__amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.pricing-card__period { font-size: .875rem; color: var(--muted); }
.pricing-card__features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--muted);
}
.pricing-card__feature-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(13,122,95,.1);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.pricing-card__feature-icon::after {
  content: '✓';
  font-size: .625rem;
  font-weight: 800;
  color: var(--success);
}
.pricing-card .btn { width: 100%; margin-top: auto; }
.pricing__note { text-align: center; margin-top: 24px; color: var(--muted); font-size: .875rem; }
.pricing__note + .pricing__note { margin-top: 8px; }

/* ---- Contact ---- */
.contact__wrapper {
  display: grid;
  gap: 48px;
}
@media (min-width: 1024px) {
  .contact__wrapper { grid-template-columns: 1fr 1.4fr; align-items: start; }
}
.contact__info { display: flex; flex-direction: column; gap: 24px; }
.contact__trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9375rem;
  color: var(--muted);
}
.contact__trust-icon {
  width: 36px; height: 36px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

/* Form */
.form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.form__grid {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 600px) { .form__grid { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }
.form-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
}
.form-label .optional { font-weight: 400; color: var(--muted); font-size: .8rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .9375rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A6B7C' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,82,204,.12);
}
.form-input.error, .form-select.error, .form-textarea.error { border-color: var(--danger); }
.form-error { font-size: .8rem; color: var(--danger); display: none; }
.form-error.visible { display: block; }
.form__note { font-size: .8125rem; color: var(--muted); margin-top: 12px; line-height: 1.5; }
.form__note a { color: var(--accent); }
.form__success {
  display: none;
  padding: 16px 20px;
  background: rgba(13,122,95,.08);
  border: 1px solid rgba(13,122,95,.25);
  border-radius: var(--radius-md);
  color: var(--success);
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
}
.form__success.visible { display: block; }

/* ---- Footer ---- */
.footer { background: var(--primary); padding-top: 64px; }
.footer__grid {
  display: grid;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; }
}
.footer__brand {}
.footer__logo-img {
  height: 56px;
  width: auto;
  display: block;
  border-radius: 6px;
  margin-bottom: 12px;
}
.footer__tagline { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.6; }
.footer__col-title {
  font-size: .875rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
  text-decoration: none;
}
.footer__links a:hover { color: #fff; text-decoration: none; }
.footer__links a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }

.footer__bottom {
  padding-block: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer__bottom-copy { font-size: .8125rem; color: rgba(255,255,255,.35); }
.footer__bottom-host { font-size: .8125rem; color: rgba(255,255,255,.35); }

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__text { font-size: .875rem; color: rgba(255,255,255,.8); flex: 1; min-width: 200px; }
.cookie-banner__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-banner .btn { padding: 8px 18px; font-size: .875rem; }
.cookie-banner .btn-primary { background: var(--accent); border-color: var(--accent); }
.cookie-banner .btn-ghost { color: rgba(255,255,255,.7); }
.cookie-banner .btn-ghost:hover { background: rgba(255,255,255,.1); }
.cookie-banner .btn-secondary { border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.7); }
.cookie-banner .btn-secondary:hover { background: rgba(255,255,255,.1); }

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- Privacy / Cookies pages ---- */
.legal-page { max-width: 800px; margin-inline: auto; padding: 80px 20px; }
.legal-page h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.legal-page .meta { color: var(--muted); font-size: .875rem; margin-bottom: 40px; }
.legal-page h2 { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin: 32px 0 12px; }
.legal-page p { color: var(--muted); line-height: 1.75; margin-bottom: 16px; font-size: .9375rem; }
.legal-page ul { margin: 0 0 16px 20px; list-style: disc; }
.legal-page ul li { color: var(--muted); font-size: .9375rem; line-height: 1.7; margin-bottom: 6px; }
.legal-page a { color: var(--accent); }
.legal-page .alert-box {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0;
  font-size: .9375rem;
  color: var(--primary);
  line-height: 1.65;
}
.legal-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.legal-nav a {
  color: var(--muted);
  font-size: .875rem;
}
.legal-nav a:hover { color: var(--accent); }
.legal-nav span { color: var(--border); }

/* Cookie type table */
.cookie-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: .875rem; }
.cookie-table th {
  text-align: left;
  padding: 10px 12px;
  background: var(--bg-alt);
  font-weight: 700;
  color: var(--primary);
  border: 1px solid var(--border);
}
.cookie-table td { padding: 10px 12px; border: 1px solid var(--border); color: var(--muted); }

/* ---- Accessibility ---- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---- Print ---- */
@media print { .nav, .cookie-banner, .hero__ctas { display: none; } }
