:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --surface-muted: #f0f3ff;
  --stroke: rgba(17, 54, 214, 0.12);
  --shadow-soft: 0 24px 50px -32px rgba(15, 40, 110, 0.25);
  --shadow-card: 0 32px 45px -35px rgba(21, 52, 130, 0.35);
  --ink-900: #0f172a;
  --ink-700: #243557;
  --ink-500: #4c5d80;
  --ink-300: #94a2c6;
  --accent: #1a47ff;
  --accent-soft: rgba(26, 71, 255, 0.12);
  --accent-strong: #0f2fcc;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --font-heading: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-strong);
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  display: block;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 22px 45px -28px rgba(17, 54, 214, 0.56);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-strong);
  color: #fff;
}

.btn-outline {
  background: #fff;
  color: var(--accent-strong);
  border: 1px solid rgba(17, 54, 214, 0.25);
}

.btn-outline:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.btn-link {
  padding: 0.6rem 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

.btn-link:hover {
  color: var(--accent-strong);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 248, 252, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--stroke);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.2rem 0;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.25rem;
}

.brand .brand-name {
  font-family: var(--font-body);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 600;
}

.brand-logo {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.8rem;
  object-fit: cover;
  background: linear-gradient(135deg, #1a47ff, #6f87ff);
  box-shadow: 0 0.35rem 0.55rem rgba(26, 71, 255, 0.25);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-weight: 500;
  z-index: 45;
}

.nav-links a {
  color: var(--ink-500);
}

.nav-links a:hover {
  color: var(--accent-strong);
}

.nav-links .btn {
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(17, 54, 214, 0.18);
  background: #fff;
  cursor: pointer;
}

.nav-toggle-line {
  width: 1.5rem;
  height: 2px;
  background: var(--ink-900);
  border-radius: 99px;
  transition: transform var(--transition), opacity var(--transition);
}

.hero {
  padding: 6.5rem 0 5.2rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2.5rem;
}

.hero-content {
  grid-column: span 7;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 1.6rem 0 1.2rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--ink-500);
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.2rem 0 2.5rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.hero-metrics dt {
  font-size: 0.95rem;
  color: var(--ink-500);
  font-weight: 600;
}

.hero-metrics dd {
  margin: 0.4rem 0 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink-900);
}

.hero-panel {
  grid-column: span 5;
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-card);
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-hero {
  padding-bottom: 3.8rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2.5rem;
}

.contact-intro {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.contact-card {
  grid-column: span 6;
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-card);
  padding: 2.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-card h2 {
  margin: 0;
  font-family: var(--font-heading);
}

.contact-subhead {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.95rem;
}

.rdv-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--ink-700);
}

.form-group input,
.form-group textarea {
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
  padding: 0.85rem 1rem;
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 71, 255, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-feedback {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-500);
}

.form-feedback[data-variant='success'] {
  color: #0f9d58;
  font-weight: 600;
}

.form-feedback[data-variant='error'] {
  color: #d93025;
  font-weight: 600;
}

.form-feedback[data-variant='loading'] {
  color: var(--accent-strong);
}

.panel-headline {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
}

.panel-list li {
  display: flex;
  gap: 0.75rem;
  padding-left: 1.2rem;
  position: relative;
  color: var(--ink-500);
}

.panel-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--accent);
  font-weight: 600;
}

.panel-foot {
  margin: 0;
  color: var(--ink-500);
}

.hero-pipeline {
  padding: 1.8rem 2rem 2.1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(26, 71, 255, 0.08), rgba(26, 71, 255, 0));
  border: 1px solid rgba(26, 71, 255, 0.18);
  box-shadow: 0 24px 40px -24px rgba(26, 71, 255, 0.3);
}

.pipeline-eyebrow {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--accent-strong);
  margin: 0 0 1.2rem;
}

.pipeline-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.pipeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.step-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px -12px rgba(26, 71, 255, 0.65);
}

.step-body h4 {
  margin: 0 0 0.2rem;
  font-weight: 600;
  font-size: 1.05rem;
}

.step-body p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero-pipeline .panel-foot {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  text-align: center;
}
.panel-steps {
  margin: 0.9rem 0 1.2rem;
  padding-left: 1.2rem;
  list-style: decimal;
  color: var(--ink-600);
  font-size: 0.95rem;
  line-height: 1.5;
}

.panel-steps li + li {
  margin-top: 0.45rem;
}

.section {
  padding: 5.5rem 0;
}

.section.section-tight {
  padding: 3.4rem 0 4rem;
}

.contact-recap {
  background: linear-gradient(180deg, rgba(26, 71, 255, 0.05), rgba(26, 71, 255, 0));
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.contact-note {
  margin-top: 1.2rem;
  color: var(--accent-strong);
  font-weight: 600;
}

.footer-link {
  color: var(--accent);
  font-weight: 600;
}

.footer-link:hover {
  color: var(--accent-strong);
}

.section-header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--ink-500);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--ink-700);
  font-weight: 500;
}

.checklist li {
  display: flex;
  align-items: center;
}

.checklist li::before {
  content: '✔';
  color: var(--accent-strong);
  margin-right: 0.6rem;
}

.packs-preview {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(220, 229, 255, 0.55));
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.pack-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.pack-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

.pack-subhead {
  margin: 0.35rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-strong);
}

.pack-price {
  margin: 0.4rem 0 0;
  font-family: var(--font-heading);
  font-size: 1.9rem;
}

.pack-note {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.95rem;
}

.pack-card .pack-note {
  margin-top: 0.5rem;
}

.pack-disclaimer {
  margin-top: 2.4rem;
  text-align: center;
}

.pack-card ul {
  margin: 0.6rem 0 0;
  list-style: disc;
  padding-left: 1.2rem;
  color: var(--ink-500);
  font-size: 0.95rem;
  flex-grow: 1;
}

.pack-card .btn {
  margin-top: 0.6rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  width: auto;
  min-width: 210px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin: 0;
}

.card p {
  color: var(--ink-500);
}

.card ul {
  list-style: disc;
  padding-left: 1.2rem;
  color: var(--ink-500);
  font-size: 0.95rem;
}

.process {
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--stroke);
  padding: 3rem;
  box-shadow: var(--shadow-card);
}


.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.timeline-step {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 54, 214, 0.12);
  background: linear-gradient(180deg, #fff, rgba(241, 245, 255, 0.7));
  padding: 1.9rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.step-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.step-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(26, 71, 255, 0.12);
  color: #1136d6;
  font-weight: 600;
  font-size: 0.8rem;
}

.timeline-step h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.timeline-step p {
  color: var(--ink-500);
  margin: 0;
}

.section-label {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.method-highlights {
  background: linear-gradient(135deg, rgba(26, 71, 255, 0.07), rgba(13, 32, 102, 0.05));
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.method-highlights .container {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.method-highlight {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 1.9rem;
  border: 1px solid rgba(17, 54, 214, 0.15);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.method-highlight h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.method-highlight p {
  margin: 0;
  color: var(--ink-500);
}

.method-highlight strong {
  font-size: 1.45rem;
  color: var(--accent-strong);
}

.guarantees {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.guarantee-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
}

.guarantee-card h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-heading);
}

.guarantee-card p {
  color: var(--ink-500);
  margin: 0;
}

.case {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.case-story {
  grid-column: span 7;
}

.case-story h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 1.2rem;
}

.case-story p {
  color: var(--ink-500);
}

.case-points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-weight: 600;
}

.case-panel {
  grid-column: span 5;
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--stroke);
  padding: 2.2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.case-panel header {
  border-bottom: 1px solid var(--stroke);
  padding-bottom: 1.3rem;
}

.case-label {
  color: var(--accent-strong);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 0.6rem;
}

.case-panel header p:last-child {
  color: var(--ink-500);
  margin: 0;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.case-metrics div {
  border-radius: var(--radius-md);
  background: var(--surface-muted);
  padding: 1.1rem;
  text-align: center;
}

.number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  display: block;
}

.label {
  font-size: 0.85rem;
  color: var(--ink-500);
}

.case-panel footer p {
  color: var(--ink-500);
  margin: 0 0 0.5rem;
}

.case-panel footer span {
  font-weight: 600;
}

.sectors-preview {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(210, 222, 255, 0.45));
}

.testimonial-grid {
  display: flex;
  gap: 1.6rem;
  overflow-x: auto;
  padding: 0 0.4rem 1rem;
  scroll-snap-type: x proximity;
  scroll-padding-left: 1.6rem;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--stroke);
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  flex: 0 0 clamp(280px, 36vw, 360px);
  scroll-snap-align: start;
}

.testimonial-card header p {
  margin: 0.4rem 0 0;
  color: var(--ink-500);
  font-size: 0.92rem;
}

.testimonial-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  display: inline-block;
  background: rgba(26, 71, 255, 0.08);
  color: var(--accent-strong);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.brand-highlight {
  color: #f5c000;
  font-weight: 700;
}

.brand-highlight--pink {
  background: rgba(215, 64, 138, 0.12);
  color: #d7408a;
}

.brand-highlight--green {
  background: rgba(16, 163, 127, 0.14);
  color: #0f7a63;
}

.brand-highlight--infoclip {
  background: #ffad33;
  color: #1036d6;
}

.brand-highlight--smarttableplan {
  background: #1036d6;
  color: #f368b5;
}

.brand-highlight--alliance {
  background: rgba(26, 71, 255, 0.24);
  color: #1036d6;
}

.testimonial-quote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-700);
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--ink-500);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-bottom: 2.2rem;
}

.sector-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  padding: 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px -32px rgba(21, 52, 130, 0.4);
}

.sector-icon {
  font-size: 1.6rem;
}

.sector-title {
  margin: 0;
  font-weight: 600;
}

.sector-apps {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.95rem;
  line-height: 1.5;
}

.sector-note {
  margin: 1.4rem 0 0;
  font-size: 0.95rem;
  color: var(--ink-500);
  text-align: center;
}

.cta-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--stroke);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.cta-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  margin-bottom: 1rem;
}

.cta-card p {
  color: var(--ink-500);
  margin: 0 auto 2.2rem;
  max-width: 560px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta-actions .btn {
  flex: 0 0 auto;
  min-width: 240px;
  text-align: center;
  white-space: nowrap;
}

.light-section {
  background: linear-gradient(180deg, rgba(240, 244, 255, 0.65), rgba(255, 255, 255, 0.95));
}

.site-footer {
  padding: 4rem 0 3rem;
  background: #fff;
  border-top: 1px solid var(--stroke);
}

.footer-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.footer-heading {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--ink-300);
  margin-bottom: 0.75rem;
}

.footer-layout ul li,
.footer-layout a,
.phone {
  color: var(--ink-500);
  font-size: 0.95rem;
  margin-bottom: 0.55rem;
}

.footer-layout a:hover {
  color: var(--accent-strong);
}

.baseline {
  margin: 3rem 0 0;
  text-align: center;
  color: var(--ink-300);
  font-size: 0.85rem;
}

.chat-widget {
  position: fixed;
  right: 1.8rem;
  bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  z-index: 60;
}

.chat-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #1f3bff, #5c73ff);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.8rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 22px 45px -24px rgba(10, 34, 129, 0.6);
  transition: transform var(--transition), box-shadow var(--transition),
    background var(--transition);
  position: relative;
  isolation: isolate;
}

.chat-toggle::before {
  content: '🤖';
  font-size: 1.35rem;
  line-height: 1;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}

.chat-toggle span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.chat-toggle span::after {
  content: 'Plan en 2 min';
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.85;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.chat-toggle:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #233ff9, #6c82ff);
  box-shadow: 0 28px 55px -24px rgba(8, 30, 118, 0.65);
}

.chat-toggle:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.65);
  outline-offset: 2px;
}

.chat-panel {
  display: none;
  width: min(360px, 90vw);
  max-height: 75vh;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  box-shadow: 0 40px 80px -40px rgba(21, 52, 130, 0.45);
  overflow: hidden;
}

.chat-panel header {
  background: var(--surface-muted);
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid var(--stroke);
}

.chat-panel h3 {
  margin: 0;
  font-family: var(--font-heading);
}

.chat-panel p {
  margin: 0.5rem 0 0;
  color: var(--ink-500);
  font-size: 0.9rem;
}

.chat-messages {
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  overflow-y: auto;
  max-height: 320px;
}

.message {
  padding: 0.9rem 1.05rem;
  border-radius: var(--radius-sm);
  background: var(--surface-muted);
  color: var(--ink-700);
  align-self: flex-start;
  box-shadow: var(--shadow-soft);
  font-size: 0.95rem;
  white-space: pre-line;
}

.message .bubble-loader {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
}

.message .bubble-loader span {
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  background: var(--accent);
  opacity: 0.3;
  animation: bubble 1.2s infinite ease-in-out;
}

.message .bubble-loader span:nth-child(2) {
  animation-delay: 0.2s;
}

.message .bubble-loader span:nth-child(3) {
  animation-delay: 0.4s;
}

.message.user {
  background: var(--accent);
  color: #fff;
  align-self: flex-end;
}

@keyframes bubble {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.3;
  }
  40% {
    transform: translateY(-3px);
    opacity: 1;
  }
  60% {
    transform: translateY(0);
    opacity: 0.6;
  }
}

/* Tool detail pages */

body.tool-detail .hero {
  padding: 3.6rem 0 2.6rem;
}

.tool-hero-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.6rem;
  align-items: start;
}

.tool-hero-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: rgba(26, 71, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.tool-hero-chip {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-strong);
  margin: 0 0 0.6rem;
}

.tool-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.2rem 0 0;
}

.tool-detail-grid {
  padding-top: 2.4rem;
}

.tool-detail-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.detail-card {
  background: var(--surface);
  border: 1px solid rgba(17, 54, 214, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-soft);
}

.detail-card h3 {
  margin: 0 0 0.6rem;
  font-weight: 600;
  font-size: 1.05rem;
}

.detail-card ul {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
  color: var(--ink-600);
  font-size: 0.95rem;
  line-height: 1.45;
}

.detail-card li + li {
  margin-top: 0.35rem;
}

.tool-demo-layout {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  align-items: stretch;
}

.tool-demo-content ul {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
  list-style: disc;
  color: var(--ink-600);
  font-size: 0.95rem;
  line-height: 1.5;
}

.demo-preview {
  display: flex;
  justify-content: center;
  width: 100%;
}

.demo-window {
  width: 100%;
  max-width: 100%;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(17, 54, 214, 0.16);
  box-shadow: 0 34px 68px -40px rgba(15, 40, 110, 0.55);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.demo-window:hover {
  transform: translateY(-2px);
  box-shadow: 0 40px 72px -38px rgba(15, 40, 110, 0.6);
}

.demo-app {
  display: flex;
  flex-direction: column;
  min-height: 450px;
  background: linear-gradient(180deg, rgba(246, 248, 255, 0.85) 0%, #ffffff 20%);
}

.demo-app__header {
  background: linear-gradient(90deg, rgba(26, 71, 255, 0.92), rgba(17, 54, 214, 0.82));
  color: #fff;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
}

.demo-app__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.demo-app__logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 24px -18px rgba(0, 0, 0, 0.65) inset;
}

.demo-app__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.demo-app__meta strong {
  font-size: 1.05rem;
}

.demo-app__meta span {
  font-size: 0.78rem;
  opacity: 0.8;
}

.demo-app__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.demo-app__btn {
  border: none;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.55rem 1.05rem;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.demo-app__btn--primary {
  background: #fff;
  color: var(--accent-strong);
}

.demo-app__btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.32);
}

.demo-app__btn--primary:hover {
  background: rgba(255, 255, 255, 0.88);
}

.demo-app__main {
  display: flex;
  flex: 1;
  min-height: 0;
}

.demo-app__sidebar {
  width: 150px;
  padding: 1.2rem 0.9rem;
  background: rgba(26, 71, 255, 0.06);
  border-right: 1px solid rgba(17, 54, 214, 0.08);
  display: grid;
  gap: 0.55rem;
}

.demo-tab {
  border: none;
  border-radius: 14px;
  background: transparent;
  color: var(--ink-500);
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.85rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.demo-tab span {
  font-size: 1rem;
}

.demo-tab:hover {
  background: rgba(255, 255, 255, 0.55);
  color: var(--accent-strong);
  transform: translateX(2px);
}

.demo-tab.is-active {
  background: #fff;
  color: var(--accent-strong);
  box-shadow: 0 18px 32px -24px rgba(15, 40, 110, 0.4);
}

.demo-app__content {
  flex: 1;
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-height: 0;
}

.demo-view {
  display: none;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  min-height: 0;
}

.demo-view.is-active {
  display: flex;
}

.demo-view__head {
  display: grid;
  gap: 0.35rem;
}

.demo-view__head h3 {
  margin: 0;
  font-size: 1.15rem;
}

.demo-view__head p {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.9rem;
}

.demo-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.8rem;
}

.demo-stat {
  background: rgba(26, 71, 255, 0.08);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  display: grid;
  gap: 0.35rem;
}

.demo-stat__label {
  font-size: 0.78rem;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.demo-stat__value {
  font-size: 1.2rem;
  font-weight: 600;
}

.demo-stat__trend {
  font-size: 0.78rem;
  font-weight: 600;
  color: #0f7a39;
}

.demo-stat__trend--down {
  color: #b12a2a;
}

.demo-stat__note {
  font-size: 0.74rem;
  color: var(--ink-500);
}

.demo-board {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 1fr);
  gap: 0.9rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
}

.demo-column {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(17, 54, 214, 0.12);
  padding: 0.9rem;
  display: grid;
  gap: 0.75rem;
  min-height: 240px;
}

.demo-column__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--ink-500);
}

.demo-column__title {
  font-weight: 600;
  color: var(--ink-700);
}

.demo-card {
  border: 1px solid rgba(17, 54, 214, 0.12);
  border-radius: 14px;
  padding: 0.8rem;
  background: #fff;
  display: grid;
  gap: 0.35rem;
  text-align: left;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.demo-card:hover {
  border-color: rgba(26, 71, 255, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 18px 30px -26px rgba(15, 40, 110, 0.45);
}

.demo-card.is-active {
  border-color: var(--accent-strong);
  box-shadow: 0 22px 40px -30px rgba(17, 54, 214, 0.5);
}

.demo-card__title {
  font-weight: 600;
  color: var(--ink-700);
}

.demo-card__meta {
  font-size: 0.78rem;
  color: var(--ink-500);
}

.demo-card__meta {
  font-size: 0.8rem;
  color: var(--ink-500);
}

.demo-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  font-size: 0.7rem;
  background: rgba(26, 71, 255, 0.12);
  color: var(--accent-strong);
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.demo-list {
  background: #fff;
  border: 1px solid rgba(17, 54, 214, 0.12);
  border-radius: 18px;
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
}

.demo-list__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-700);
}

.demo-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--ink-600);
}

.demo-list__item span {
  font-weight: 600;
  color: var(--ink-700);
}

.demo-list__labels {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.demo-list__label {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-700);
}

.demo-list__meta {
  margin: 0;
  font-size: 0.75rem;
  color: var(--ink-500);
}

.demo-list__value {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  font-size: 0.85rem;
  color: var(--ink-700);
}

.demo-timeline {
  background: rgba(26, 71, 255, 0.06);
  border-radius: 18px;
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
}

.demo-timeline__step {
  display: grid;
  gap: 0.3rem;
  font-size: 0.85rem;
}

.demo-timeline__badge {
  font-weight: 600;
  color: var(--accent-strong);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.demo-timeline__text {
  color: var(--ink-600);
}

.demo-timeline__meta {
  font-size: 0.78rem;
  color: var(--ink-500);
}

.demo-callout {
  border-radius: 18px;
  border: 1px solid rgba(26, 71, 255, 0.18);
  background: rgba(26, 71, 255, 0.08);
  padding: 1rem 1.1rem;
  display: grid;
  gap: 0.5rem;
}

.demo-callout__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-strong);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.demo-callout__text {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-600);
}

.demo-callout__action {
  justify-self: start;
  border: none;
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.78rem;
  font-weight: 600;
  background: #fff;
  color: var(--accent-strong);
  cursor: pointer;
  box-shadow: 0 14px 28px -24px rgba(17, 54, 214, 0.4);
}

.demo-callout--pulse {
  animation: demoPulse 1.1s ease;
}

@keyframes demoPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(26, 71, 255, 0.28);
  }
  60% {
    box-shadow: 0 0 0 12px rgba(26, 71, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(26, 71, 255, 0);
  }
}

.demo-detail {
  border-radius: 18px;
  border: 1px solid rgba(17, 54, 214, 0.1);
  background: #fff;
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
}

.demo-detail__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.demo-detail__meta {
  font-size: 0.82rem;
  color: var(--ink-500);
}

.demo-detail__notes {
  font-size: 0.82rem;
  color: var(--ink-600);
  margin: 0;
}

.demo-detail[data-state='empty'] .demo-detail__meta,
.demo-detail[data-state='empty'] .demo-detail__notes {
  display: none;
}

.demo-empty {
  font-size: 0.82rem;
  color: var(--ink-500);
}

@media (max-width: 680px) {
  .demo-app__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .demo-app__main {
    flex-direction: column;
  }

  .demo-app__sidebar {
    width: 100%;
    padding: 0.9rem;
    border-right: none;
    border-bottom: 1px solid rgba(17, 54, 214, 0.08);
    grid-auto-flow: column;
    justify-content: start;
    overflow-x: auto;
  }

  .demo-tab {
    justify-content: center;
  }
}

.tool-timeline-section {
  background: linear-gradient(180deg, rgba(240, 244, 255, 0.6), rgba(255, 255, 255, 0.95));
}

.tool-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.tool-timeline__step {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 54, 214, 0.12);
  padding: 1.2rem 1rem;
  box-shadow: 0 20px 36px -28px rgba(17, 54, 214, 0.3);
  display: grid;
  gap: 0.6rem;
}

.tool-timeline__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 71, 255, 0.1);
  color: var(--accent-strong);
  font-weight: 600;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
}

.tool-timeline__step p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.95rem;
}

.tool-cta-section {
  background: var(--surface-muted);
  padding: 3rem 0;
}

.tool-cta-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(17, 54, 214, 0.14);
  padding: 2.4rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.tool-cta-card h2 {
  margin: 0 0 0.8rem;
}

.tool-cta-card p {
  margin: 0 0 1.6rem;
  color: var(--ink-500);
}

.tool-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.chat-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.1rem 1.4rem 1.4rem;
  border-top: 1px solid var(--stroke);
}

.chat-form .chat-cta-button {
  width: 100%;
  text-align: center;
}

.chat-form textarea {
  resize: none;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(17, 54, 214, 0.25);
  padding: 0.85rem;
  font-size: 0.95rem;
  min-height: 90px;
}

.chat-form textarea:focus {
  outline: 2px solid rgba(17, 54, 214, 0.35);
}

.chat-widget.open .chat-panel {
  display: flex;
  flex-direction: column;
}

.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;
}

/* --- Offres page adjustments --- */

body.offres-page .hero {
  padding: 5.2rem 0 3.8rem;
}

body.offres-page .section {
  padding: 4rem 0;
}

body.offres-page .section.light-section {
  padding: 3.6rem 0;
}

body.offres-page .section-header {
  margin-bottom: 2.4rem;
}

/* --- Domains index --- */

body.sectors-page .hero {
  padding: 3.6rem 0 2.2rem;
}

.hero-compact {
  padding: 3.6rem 0 2.2rem;
}

.hero-tools .hero-actions {
  margin: 1.6rem 0 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-tools .hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 0.7rem 0 0;
  list-style: none;
}

.hero-tools .hero-highlights li {
  background: var(--surface-muted);
  border: 1px solid rgba(17, 54, 214, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.85rem;
  font-size: 0.93rem;
  color: var(--ink-500);
}

body.sectors-page .section {
  padding: 2.8rem 0;
}

body.sectors-page .hero-compact + .section {
  padding-top: 1.6rem;
}

body.sectors-page .section-header {
  margin-bottom: 1.4rem;
}

.hero-tools {
  padding-bottom: 1.4rem;
}

body.sectors-page .section-header h2 {
  margin-bottom: 0.6rem;
}

body.sectors-page .section-header p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

body.sectors-page .sector-grid {
  gap: 0.95rem;
}

body.sectors-page .hero-content {
  grid-column: span 12;
}

.section.section-no-top {
  padding-top: 0;
  margin-top: -0.3rem;
}

.tool-section {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.tool-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.tool-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}

.tool-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 54, 214, 0.12);
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px -32px rgba(21, 52, 130, 0.35);
}

.tool-card__icon {
  font-size: 1.6rem;
}

.tool-card h3 {
  margin: 0;
  font-weight: 600;
}

.tool-card p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.95rem;
}

.tool-card ul {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
  color: var(--ink-600);
  font-size: 0.94rem;
  line-height: 1.45;
}

.tool-card ul li + li {
  margin-top: 0.35rem;
}

.tool-card.compact p {
  color: var(--accent-strong);
}

.tool-card__cta {
  margin-top: auto;
  font-weight: 600;
  color: var(--accent-strong);
}

.tool-card__cta:hover {
  color: var(--accent);
}

.tool-card.compact {
  gap: 0.6rem;
}

.tool-note {
  margin: 1.6rem 0 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-500);
}

.tool-note {
  margin: 0.8rem 0 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-500);
}


.sectors-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.sector-item {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.sector-item span {
  display: block;
}

.sector-item .sector-icon {
  font-size: 1.9rem;
}

.sector-item .sector-title {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ink-900);
}

.sector-item .sector-desc {
  color: var(--ink-500);
  font-size: 0.92rem;
}

.sector-item .sector-link {
  margin-top: auto;
  font-weight: 600;
  color: var(--accent-strong);
}

/* --- Sector detail pages --- */

body.sector-page .hero {
  padding: 5.5rem 0 4rem;
}

.sector-hero {
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--stroke);
  padding: 3rem;
  box-shadow: var(--shadow-card);
}

.sector-hero-header {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.sector-hero-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sector-hero-title span {
  font-size: 2.4rem;
}

.sector-hero-title h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3vw, 2.8rem);
}

.sector-subtitle {
  max-width: 720px;
  color: var(--ink-500);
  font-size: 1.05rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 600;
  font-size: 0.85rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.feature-card h3 {
  margin: 0;
  font-family: var(--font-heading);
}

.feature-card p {
  color: var(--ink-500);
  margin: 0;
}

.feature-card ul {
  list-style: disc;
  padding-left: 1.2rem;
  color: var(--ink-500);
}

.module-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.3rem;
  margin-top: 1.8rem;
}

.module-chip {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  padding: 1.1rem;
  color: var(--ink-700);
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.data-table {
  margin-top: 2rem;
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.data-table thead {
  background: var(--surface-muted);
}

.data-table th,
.data-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--stroke);
}

.data-table th {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:nth-child(even) {
  background: rgba(17, 54, 214, 0.035);
}

.sector-cta {
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--stroke);
  padding: 2.6rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.sector-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.sector-cta p {
  color: var(--ink-500);
  margin: 0 auto 2rem;
  max-width: 560px;
}

/* --- Responsive --- */

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: repeat(12, 1fr);
  }

  .hero-content,
  .hero-panel {
    grid-column: span 12;
  }

  .hero-panel {
    margin-top: 1.6rem;
  }

  .contact-intro,
  .contact-card {
    grid-column: span 12;
  }

  .contact-card {
    padding: 2.2rem;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case {
    grid-template-columns: repeat(12, 1fr);
  }

  .case-story,
  .case-panel {
    grid-column: span 12;
  }

  .case-panel {
    margin-top: 1.8rem;
  }
}

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guarantees {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .module-list {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .footer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    width: min(320px, 92vw);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    background: #fff;
    border: 1px solid var(--stroke);
    border-radius: var(--radius-md);
    padding: 1.4rem;
    box-shadow: var(--shadow-card);
    display: none;
  }

  .nav-links[data-open='true'] {
    display: flex;
  }

  .nav-links .btn {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 5rem 0 3.6rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-metrics {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
  }

  .hero-panel {
    padding: 1.9rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section {
    padding: 4.4rem 0;
  }

  .section-header {
    margin-bottom: 2.4rem;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    padding: 1.7rem;
  }

  .card-grid,
  .guarantees,
  .module-list,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .case-metrics {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .chat-widget {
    right: 1.1rem;
    bottom: 1.1rem;
  }
}

@media (max-width: 680px) {
  .tool-card-grid {
    grid-template-columns: 1fr;
  }

  .tool-section-head {
    text-align: left;
  }

  .tool-hero-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .tool-hero-icon {
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
  }

  .tool-detail-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .hero {
    padding: 4.4rem 0 3rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 2.6rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.6rem 0;
  }

  .timeline-step {
    padding: 1.5rem;
  }

  .method-highlights .container {
    gap: 1.2rem;
  }

  .method-highlight {
    padding: 1.5rem;
  }

  .hero-panel {
    padding: 1.6rem;
  }

  .cta-card,
  .sector-cta {
    padding: 1.9rem;
  }

  .module-list {
    grid-template-columns: 1fr;
  }

  .chat-toggle,
  .btn {
    width: 100%;
  }
}
.brand-highlight--blue {
  background: rgba(26, 71, 255, 0.12);
  color: var(--accent-strong);
}

.marketplace-hero {
  background: radial-gradient(circle at top right, rgba(26, 71, 255, 0.18), transparent 45%), var(--surface);
  border-bottom: 1px solid var(--stroke);
}

.marketplace-section .section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.marketplace-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 54, 214, 0.12);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.marketplace-card__header {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.marketplace-card__icon {
  font-size: 1.8rem;
}

.marketplace-card__tag {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-strong);
}

.marketplace-card h3 {
  margin: 0;
}

.marketplace-card ul {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
  color: var(--ink-600);
  font-size: 0.95rem;
  line-height: 1.55;
}

.marketplace-card__note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-500);
}

.marketplace-card__cta {
  margin-top: auto;
  font-weight: 600;
  color: var(--accent-strong);
}

.marketplace-card__cta:hover {
  color: var(--accent);
}

.request-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.request-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 54, 214, 0.1);
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: var(--shadow-soft);
}

.request-card__tag {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-strong);
}

.request-card h3 {
  margin: 0;
}

.request-card p {
  margin: 0;
  color: var(--ink-600);
}

.request-card ul {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
  color: var(--ink-600);
  font-size: 0.95rem;
}

.request-card__note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-500);
}

.marketplace-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.step-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.step-card__tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-strong);
}

.step-card h3 {
  margin: 0;
}

.step-card p {
  margin: 0;
  color: var(--ink-600);
}

.marketplace-cta {
  margin-top: 2.5rem;
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 54, 214, 0.18);
  background: rgba(26, 71, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.marketplace-cta p {
  margin: 0;
  max-width: 520px;
  font-weight: 500;
}

.marketplace-cta__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .marketplace-card,
  .request-card,
  .step-card {
    padding: 1.25rem;
  }
}
