:root {
  --purple: #554b9a;
  --purple-dark: #2f275c;
  --purple-soft: #cbc8e1;
  --ink: #1c1a27;
  --muted: #5e5a6b;
  --bg: #fbfaf8;
  --surface: #ffffff;
  --surface-soft: #f5f3ef;
  --line: rgba(28, 26, 39, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1000px 500px at 8% 8%, rgba(85, 75, 154, 0.12), transparent 60%),
    radial-gradient(700px 420px at 88% 20%, rgba(203, 200, 225, 0.32), transparent 62%),
    linear-gradient(180deg, #fcfbfa 0%, #fbfaf8 45%, #f7f5f2 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.12;
  background-image: radial-gradient(rgba(85, 75, 154, 0.6) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
}

.site-header,
.hero,
.method,
.services,
.adn,
.portage-bridge,
.community,
.careers,
.faq,
.contact,
.footer {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 14px;
  margin-top: 26px;
  z-index: 8;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 12px 28px rgba(39, 32, 74, 0.08);
}

.logo img {
  height: 42px;
}

.site-nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  align-items: center;
}

.site-nav a:hover,
.nav-group:hover > a {
  color: var(--purple);
}

.site-nav a {
  position: relative;
}

.site-nav > a::after,
.nav-group > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #8b82ca 0%, #5f55a9 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav > a:hover::after,
.nav-group:hover > a::after {
  transform: scaleX(1);
}

.nav-group {
  position: relative;
  padding: 10px 0;
}

.nav-dropdown {
  position: absolute;
  left: 50%;
  top: 34px;
  width: 190px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 30px rgba(39, 32, 74, 0.14);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-group:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
}

.nav-dropdown a:hover {
  background: #f5f3fb;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background: var(--purple-dark);
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  font-size: 13px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  color: var(--purple);
  background: #fff;
}

.btn-solid {
  padding: 14px 22px;
  background: linear-gradient(135deg, #5f55a9 0%, #7a71bf 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(85, 75, 154, 0.24);
}

.btn-outline {
  padding: 13px 21px;
  border: 1px solid rgba(85, 75, 154, 0.34);
  color: var(--purple);
  background: #fff;
}

.btn-outline.dark {
  color: var(--purple);
  border-color: rgba(85, 75, 154, 0.35);
  background: #fff;
}

.btn-outline.light {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
  background: transparent;
}

.hero {
  margin-top: 36px;
  padding: 92px 72px;
  border-radius: 40px;
  border: 1px solid var(--line);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(140deg, rgba(42, 33, 79, 0.95) 0%, rgba(54, 43, 102, 0.92) 52%, rgba(36, 28, 71, 0.95) 100%);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  box-shadow: 0 26px 46px rgba(39, 31, 76, 0.3);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.16;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -90px;
  top: -120px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  opacity: 0.65;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  animation: drift 9s ease-in-out infinite alternate;
}

.orb-1 {
  width: 220px;
  height: 220px;
  top: -80px;
  left: -40px;
  background: rgba(203, 200, 225, 0.48);
}

.orb-2 {
  width: 160px;
  height: 160px;
  top: 36%;
  right: 18%;
  background: rgba(255, 255, 255, 0.2);
  animation-delay: 0.8s;
}

.orb-3 {
  width: 280px;
  height: 280px;
  bottom: -150px;
  right: -60px;
  background: rgba(85, 75, 154, 0.34);
  animation-delay: 1.6s;
}

@keyframes drift {
  from { transform: translateY(0) translateX(0) scale(1); }
  to { transform: translateY(-16px) translateX(10px) scale(1.08); }
}

.kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.78);
}

.method .kicker,
.services .kicker,
.adn .kicker,
.community .kicker,
.careers .kicker,
.faq .kicker {
  color: var(--purple);
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 720px;
}

.hero h1 span {
  color: #d5d0ff;
}

.hero-lead {
  margin-top: 26px;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  font-size: 18px;
}

.hero-ctas {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-kpis {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-kpis article {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.hero-kpis strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
}

.hero-kpis span {
  margin-top: 5px;
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.hero-panel {
  align-self: center;
  border-radius: 28px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.17) 0%, rgba(255, 255, 255, 0.08) 100%);
  backdrop-filter: blur(8px);
}

.hero-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span {
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.mini-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: #e6e2ff;
}

.hero-panel h3 {
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.2;
}

.hero-panel ul {
  margin-top: 18px;
  margin-left: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.quote {
  margin-top: 24px;
  font-size: 17px;
  color: #ffffff;
  font-style: italic;
}

.hero-panel span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 36px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: inline-flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 9px;
  background: rgba(255, 255, 255, 0.08);
}

.scroll-indicator span {
  width: 4px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
  animation: scrollDot 1.5s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(18px); opacity: 0.2; }
}

.method,
.services,
.adn,
.portage-bridge,
.community,
.careers,
.faq {
  margin-top: 86px;
}

.section-title h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 760px;
  color: var(--purple);
}

.method-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.glass-card {
  border-radius: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f8f7fc 100%);
  box-shadow: 0 10px 24px rgba(85, 75, 154, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(85, 75, 154, 0.14);
}

.glass-card h3 {
  font-size: 20px;
  color: var(--purple);
}

.glass-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.service-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

/* Cœur d’expertise — layout: titre à gauche, visuel 3D en haut à droite (réf. maquette) */
.service-card {
  min-height: 0;
  height: 100%;
  align-self: stretch;
  border-radius: 20px;
  padding: 26px 24px 22px;
  border: 1px solid rgba(28, 26, 39, 0.06);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  box-shadow: 0 4px 24px rgba(74, 59, 141, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(74, 59, 141, 0.12);
}

.service-head {
  display: grid;
  grid-template-columns: 1fr minmax(100px, 42%);
  gap: 8px 12px;
  align-items: start;
  margin-bottom: 4px;
}

.service-card h3 {
  margin: 0;
  padding-top: 2px;
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--purple);
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.service-figure {
  margin: -6px -4px 0 0;
  padding: 0;
  justify-self: end;
  width: min(160px, 100%);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  line-height: 0;
  transition: transform 0.35s ease;
}

.service-card:hover .service-figure {
  transform: scale(1.04);
}

.service-figure img {
  width: auto;
  height: 100%;
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: right center;
}

.cloud-card .service-figure img {
  filter: drop-shadow(0 12px 20px rgba(61, 100, 176, 0.22));
}

.cyber-card .service-figure img {
  filter: drop-shadow(0 12px 20px rgba(75, 47, 137, 0.22));
}

.kinaxis-card .service-figure img {
  filter: drop-shadow(0 12px 20px rgba(116, 75, 34, 0.18));
}

.service-desc {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 15px;
}

.service-pills {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-pills span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 500;
  color: #6b6580;
  border: 1px solid rgba(28, 26, 39, 0.1);
  background: #fafafa;
}

.service-cta {
  margin-top: 14px;
  color: #4a3b8d;
  font-weight: 600;
  font-size: 14px;
  align-self: flex-start;
}

.service-cta:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.adn-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.adn-card {
  border-radius: 20px;
  border: 1px solid rgba(85, 75, 154, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #f8f6fd 100%);
  padding: 24px;
  box-shadow: 0 10px 22px rgba(85, 75, 154, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.adn-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(85, 75, 154, 0.16);
}

.adn-card h3 {
  font-size: 21px;
  color: var(--purple);
}

.adn-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.58;
  font-size: 15px;
}

.portage-bridge .bridge-content {
  border-radius: 24px;
  border: 1px solid rgba(85, 75, 154, 0.16);
  background: linear-gradient(150deg, #f3f1fa 0%, #ffffff 100%);
  padding: 34px;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.portage-bridge h2 {
  margin-top: 10px;
  color: var(--purple);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.portage-bridge p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.community {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 28px;
  align-items: stretch;
}

.community-copy h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  color: var(--purple);
}

.community-copy p {
  margin-top: 20px;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.65;
}

.community-widget {
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  color: #fff;
  background: linear-gradient(165deg, #3a316c 0%, #1f1a39 100%);
  box-shadow: 0 16px 34px rgba(36, 29, 67, 0.34);
  position: relative;
  overflow: hidden;
}

.community-widget h3 {
  font-size: 24px;
  margin-bottom: 24px;
}

.widget-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.widget-row span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.widget-row strong {
  font-size: 18px;
}

.progress-group {
  margin-top: 16px;
}

.progress-group label {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  margin-bottom: 8px;
}

.progress {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8e83d2 0%, #d8d4f0 100%);
}

.activity-bars {
  margin-top: 18px;
  height: 66px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding-top: 6px;
}

.activity-bars span {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, rgba(216, 212, 240, 0.9) 0%, rgba(141, 130, 202, 0.9) 100%);
}

.careers .section-lead {
  margin-top: 16px;
  max-width: 900px;
  color: var(--muted);
  line-height: 1.65;
}

.careers-list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.careers-list article {
  border-radius: 18px;
  border: 1px solid rgba(85, 75, 154, 0.16);
  background: #fff;
  padding: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.careers-list article:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(85, 75, 154, 0.13);
}

.careers-list h3 {
  color: var(--purple);
  font-size: 20px;
}

.careers-list p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.careers-list a {
  margin-top: 14px;
  display: inline-block;
  color: var(--purple);
  font-weight: 600;
}

.faq-list {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}

.faq details {
  border-radius: 20px;
  border: 1px solid rgba(28, 26, 39, 0.08);
  background: #fff;
  padding: 18px 22px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq details:hover {
  border-color: rgba(85, 75, 154, 0.28);
  box-shadow: 0 10px 20px rgba(85, 75, 154, 0.08);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: var(--purple);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(85, 75, 154, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq details[open] summary {
  color: var(--purple-dark);
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.contact {
  margin-top: 90px;
  margin-bottom: 24px;
}

.contact-inner {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 46px;
  background:
    radial-gradient(120% 140% at 90% 100%, rgba(203, 200, 225, 0.22) 0%, transparent 55%),
    linear-gradient(140deg, rgba(46, 38, 87, 0.95) 0%, rgba(30, 25, 57, 0.95) 100%);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
}

.contact h2 {
  color: var(--surface-soft);
  margin-top: 10px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.contact p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.contact-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.contact-card p {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.footer {
  margin-bottom: 24px;
  margin-top: 24px;
  color: #736f86;
  font-size: 13px;
}

.footer-grid {
  border-top: 1px solid rgba(85, 75, 154, 0.2);
  padding-top: 30px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 16px;
}

.footer-grid img {
  height: 42px;
}

.footer-grid h4 {
  color: var(--purple);
  margin-bottom: 8px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 7px 0;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: var(--purple);
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(85, 75, 154, 0.14);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom a,
.footer-bottom span {
  color: var(--muted);
}

/* Dedicated pages */
.detail-page main > section,
.detail-footer {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 25px));
  margin-left: auto;
  margin-right: auto;
}

.detail-hero {
  margin-top: 36px;
  padding: 58px 64px 68px;
  border-radius: 40px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(680px 360px at 78% 18%, rgba(203, 200, 225, 0.28), transparent 64%),
    linear-gradient(140deg, rgba(42, 33, 79, 0.96) 0%, rgba(64, 50, 118, 0.94) 52%, rgba(29, 24, 55, 0.98) 100%);
  box-shadow: 0 26px 46px rgba(39, 31, 76, 0.28);
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.15;
}

.detail-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 42px;
  align-items: center;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.breadcrumb span::before,
.breadcrumb strong::before {
  content: ">";
  margin-right: 10px;
  opacity: 0.5;
}

.breadcrumb strong {
  color: #fff;
  font-weight: 700;
}

.detail-hero h1 {
  margin-top: 18px;
  max-width: 780px;
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.detail-lead {
  margin-top: 24px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.65;
}

.detail-visual {
  min-height: 360px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.detail-visual img {
  width: min(230px, 58%);
  height: auto;
  filter: drop-shadow(0 24px 34px rgba(10, 8, 24, 0.34));
  animation: floatAsset 5s ease-in-out infinite alternate;
}

@keyframes floatAsset {
  from { transform: translateY(0) rotate(-1deg); }
  to { transform: translateY(-12px) rotate(2deg); }
}

.visual-ring {
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.visual-ring::after {
  content: "";
  position: absolute;
  inset: 34px;
  border-radius: inherit;
  border: 1px dashed rgba(255, 255, 255, 0.24);
}

.visual-stat {
  position: absolute;
  min-width: 128px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.visual-stat:nth-of-type(1) {
  left: 24px;
  bottom: 28px;
}

.visual-stat:nth-of-type(2) {
  right: 24px;
  top: 28px;
}

.visual-stat strong {
  display: block;
  font-size: 24px;
}

.visual-stat span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.offer-section,
.story-section,
.cooptation-section,
.tripartite-section,
.simulator-section,
.ambassadors-section,
.lead-band {
  margin-top: 86px;
}

.detail-page .section-title .kicker,
.offer-section .kicker,
.tripartite-section .kicker,
.simulator-section .kicker,
.ambassadors-section .kicker,
.story-section .kicker,
.cooptation-section .kicker,
.lead-band .kicker,
.modal-shell .kicker {
  color: var(--purple);
}

.offer-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.offer-card {
  min-height: 380px;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(85, 75, 154, 0.14);
  background: linear-gradient(180deg, #fff 0%, #f8f6fd 100%);
  box-shadow: 0 12px 26px rgba(85, 75, 154, 0.09);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(85, 75, 154, 0.14);
}

.offer-card > span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f0eef8;
  color: var(--purple);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
}

.offer-card h3 {
  margin-top: 26px;
  color: var(--purple);
  font-size: 24px;
  line-height: 1.15;
}

.offer-card p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.65;
}

.offer-card strong {
  margin-top: auto;
  padding-top: 24px;
  color: #3d356c;
  line-height: 1.45;
}

.lead-band {
  padding: 38px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    radial-gradient(700px 300px at 95% 0%, rgba(203, 200, 225, 0.22), transparent 60%),
    linear-gradient(140deg, rgba(46, 38, 87, 0.96), rgba(30, 25, 57, 0.96));
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.lead-band h2 {
  margin-top: 10px;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.lead-band .kicker {
  color: rgba(255, 255, 255, 0.72);
}

.lead-band p {
  margin-top: 12px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.community-orbit,
.salary-snapshot {
  min-height: 330px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  backdrop-filter: blur(8px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 26px;
}

.community-orbit div {
  border-radius: 20px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.community-orbit strong,
.salary-snapshot strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
}

.community-orbit span,
.salary-snapshot span {
  color: rgba(255, 255, 255, 0.72);
}

.story-section,
.cooptation-section,
.simulator-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: 28px;
  align-items: stretch;
}

.story-copy,
.simulator-copy,
.cooptation-section > div {
  padding: 10px 0;
}

.story-copy h2,
.cooptation-section h2,
.simulator-copy h2,
.ambassadors-section h2 {
  margin-top: 12px;
  color: var(--purple);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.story-copy p,
.cooptation-section p,
.simulator-copy p,
.section-lead {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.media-player {
  min-height: 340px;
  padding: 28px;
  border-radius: 28px;
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(145deg, #3d336e, #1f1a39);
  background-size: 34px 34px, 34px 34px, auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 18px 34px rgba(36, 29, 67, 0.24);
}

.play-button {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  box-shadow: 0 14px 30px rgba(255, 255, 255, 0.18);
}

.play-button::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 24px;
  border-left: 20px solid var(--purple);
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}

.media-player p {
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.media-player h3 {
  margin-top: 10px;
  font-size: 26px;
  line-height: 1.15;
}

.cooptation-form {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(85, 75, 154, 0.14);
  background: #fff;
  box-shadow: 0 14px 30px rgba(85, 75, 154, 0.1);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cooptation-form label,
.simulator-card label {
  display: grid;
  gap: 8px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 700;
}

.cooptation-form input,
.cooptation-form textarea {
  width: 100%;
  border: 1px solid rgba(85, 75, 154, 0.18);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fbfaf8;
}

.cooptation-form input:focus,
.cooptation-form textarea:focus {
  outline: 2px solid rgba(85, 75, 154, 0.26);
  border-color: rgba(85, 75, 154, 0.36);
}

.full-field,
.cooptation-form .btn {
  grid-column: 1 / -1;
}

.portage-page body,
.portage-page {
  background:
    radial-gradient(900px 420px at 10% 10%, rgba(85, 75, 154, 0.12), transparent 60%),
    radial-gradient(760px 380px at 90% 20%, rgba(171, 151, 115, 0.16), transparent 60%),
    linear-gradient(180deg, #fcfbfa 0%, #fbfaf8 55%, #f3f1ee 100%);
}

.salary-snapshot {
  justify-content: center;
}

.salary-snapshot p {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.snapshot-lines {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.snapshot-lines i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.snapshot-lines i:nth-child(1) { width: 80%; }
.snapshot-lines i:nth-child(2) { width: 62%; }
.snapshot-lines i:nth-child(3) { width: 92%; }

.tripartite-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.tripartite-grid article {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(85, 75, 154, 0.14);
  box-shadow: 0 12px 26px rgba(85, 75, 154, 0.08);
}

.tripartite-grid article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  color: var(--purple);
  font-size: 32px;
  font-weight: 700;
}

.tripartite-grid span {
  color: var(--purple);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.tripartite-grid h3 {
  margin-top: 12px;
  color: var(--purple);
  font-size: 24px;
}

.tripartite-grid p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.62;
}

.simulator-card {
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(85, 75, 154, 0.14);
  background: #fff;
  box-shadow: 0 16px 34px rgba(85, 75, 154, 0.12);
}

.simulator-card label + label {
  margin-top: 20px;
}

.simulator-card input[type="range"] {
  accent-color: var(--purple);
  width: 100%;
}

.simulator-card label span {
  color: var(--muted);
  font-weight: 600;
}

.simulator-card b {
  color: var(--purple);
}

.simulator-results {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.simulator-results article {
  padding: 16px;
  border-radius: 18px;
  background: #f7f5fb;
  border: 1px solid rgba(85, 75, 154, 0.12);
}

.simulator-results span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.simulator-results strong {
  display: block;
  margin-top: 8px;
  color: var(--purple);
  font-size: 20px;
}

.simulator-results .highlight {
  background: linear-gradient(145deg, #5f55a9, #332b66);
  color: #fff;
}

.simulator-results .highlight span,
.simulator-results .highlight strong {
  color: #fff;
}

.ambassador-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ambassador-grid article {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(85, 75, 154, 0.14);
  background: #fff;
  box-shadow: 0 12px 26px rgba(85, 75, 154, 0.08);
}

.avatar {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(145deg, #5f55a9, #332b66);
}

.ambassador-grid h3 {
  margin-top: 18px;
  color: var(--purple);
  font-size: 24px;
}

.ambassador-grid p {
  margin-top: 8px;
  color: var(--muted);
}

.ambassador-grid a {
  margin-top: 16px;
  display: inline-block;
  color: var(--purple);
  font-weight: 700;
}

.simulator-modal {
  width: min(760px, calc(100% - 32px));
  border: 0;
  border-radius: 30px;
  padding: 0;
  background: transparent;
  margin: auto;
}

.simulator-modal::backdrop {
  background: rgba(17, 14, 32, 0.58);
  backdrop-filter: blur(8px);
}

.modal-shell {
  position: relative;
  padding: 34px;
  border-radius: 30px;
  background: #fbfaf8;
  box-shadow: 0 30px 70px rgba(15, 12, 30, 0.3);
}

.modal-shell h2 {
  margin-top: 10px;
  color: var(--purple);
  font-size: clamp(2rem, 4vw, 3rem);
}

.modal-shell p {
  margin-top: 10px;
  color: var(--muted);
}

.modal-shell .simulator-card {
  margin-top: 24px;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(85, 75, 154, 0.16);
  border-radius: 50%;
  background: #fff;
  color: var(--purple);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .hero,
  .contact-inner,
  .community,
  .method-grid,
  .service-grid,
  .adn-grid,
  .careers-list,
  .footer-grid,
  .detail-hero-grid,
  .offer-grid,
  .story-section,
  .cooptation-section,
  .simulator-section,
  .tripartite-grid {
    grid-template-columns: 1fr;
  }

  .tripartite-grid article:not(:last-child)::after {
    display: none;
  }

  .portage-bridge .bridge-content {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 72px 28px;
  }

  .scroll-indicator {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    background: var(--bg);
    border-top: 1px solid var(--line);
    box-shadow: 0 26px 44px rgba(39, 32, 74, 0.12);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-header.nav-open .site-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav > a,
  .site-nav > .nav-group {
    border-bottom: 1px solid var(--line);
  }

  .site-nav > a,
  .site-nav .nav-group > a {
    display: block;
    text-align: center;
    padding: 16px 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--purple);
  }

  .site-nav > a::after,
  .site-nav .nav-group > a::after {
    display: none;
  }

  .site-nav .nav-dropdown {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

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

  .lead-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    border-radius: 20px;
    align-items: flex-start;
  }

  .site-header .btn {
    width: auto;
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions .open-simulator {
    display: none;
  }

  body > .btn,
  .hero .btn,
  main .btn,
  .contact-card .btn,
  .bridge-content .btn,
  .modal-shell .btn {
    width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .method,
  .services,
  .adn,
  .portage-bridge,
  .community,
  .careers,
  .faq,
  .contact {
    margin-top: 64px;
  }

  .contact-inner {
    padding: 28px;
  }

  .detail-hero {
    padding: 42px 24px 48px;
    border-radius: 28px;
  }

  .detail-visual,
  .community-orbit,
  .salary-snapshot {
    min-height: 290px;
  }

  .cooptation-form,
  .simulator-results,
  .ambassador-grid {
    grid-template-columns: 1fr;
  }

  .service-head {
    grid-template-columns: 1fr minmax(88px, 36%);
  }

  .service-figure {
    width: min(132px, 100%);
    height: 104px;
  }
}

/* Contact page */
.contact-page .contact-hero .hero-ctas {
  margin-top: 28px;
}

.contact-promises {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-promises li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.35;
}

.contact-promises li span {
  flex: 0 0 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-orbit {
  min-height: 360px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  backdrop-filter: blur(8px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 26px;
  align-content: center;
}

.contact-orbit div {
  border-radius: 20px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-orbit strong {
  display: block;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  letter-spacing: -0.02em;
  color: #fff;
}

.contact-orbit span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.contact-roles-section {
  margin-top: 86px;
}

.contact-roles {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.role-card {
  position: relative;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(85, 75, 154, 0.14);
  background: linear-gradient(180deg, #fff 0%, #f8f6fd 100%);
  box-shadow: 0 12px 26px rgba(85, 75, 154, 0.09);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.role-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(85, 75, 154, 0.16);
}

.role-badge {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f0eef8;
  color: var(--purple);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.role-card h3 {
  margin-top: 4px;
  color: var(--purple);
  font-size: 22px;
  line-height: 1.2;
}

.role-card p {
  color: var(--muted);
  line-height: 1.6;
}

.role-cta {
  margin-top: auto;
  padding-top: 18px;
  color: var(--purple);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.role-cta:hover {
  color: var(--purple-dark);
}

.contact-section {
  margin-top: 86px;
}

.contact-section .section-title {
  text-align: left;
}

.contact-section .section-title .kicker {
  color: var(--purple);
}

.contact-section .section-lead {
  margin-top: 14px;
  max-width: 680px;
  color: var(--muted);
  line-height: 1.65;
}

.contact-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.contact-form {
  padding: 30px;
  border-radius: 26px;
  border: 1px solid rgba(85, 75, 154, 0.14);
  background: #fff;
  box-shadow: 0 16px 34px rgba(85, 75, 154, 0.1);
  display: grid;
  gap: 22px;
}

.contact-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.contact-form legend {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--purple);
  font-weight: 700;
  margin-bottom: 14px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 700;
}

.contact-form label > span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.contact-form label em {
  color: #c0413c;
  font-style: normal;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(85, 75, 154, 0.18);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fbfaf8;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image: linear-gradient(45deg, transparent 50%, var(--purple) 50%),
    linear-gradient(135deg, var(--purple) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
  line-height: 1.55;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(85, 75, 154, 0.55);
  box-shadow: 0 0 0 4px rgba(85, 75, 154, 0.14);
}

.contact-form input:invalid:not(:placeholder-shown),
.contact-form textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(192, 65, 60, 0.5);
}

.form-hint {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(85, 75, 154, 0.16);
  background: #faf9fd;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--purple);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
}

.form-actions .form-hint {
  margin: 0;
}

.form-actions .form-hint a {
  color: var(--purple);
  font-weight: 700;
}

.contact-info {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 96px;
}

.info-card {
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(85, 75, 154, 0.14);
  background: #fff;
  box-shadow: 0 14px 30px rgba(85, 75, 154, 0.1);
}

.info-card .kicker {
  color: var(--purple);
}

.info-card h3 {
  margin-top: 10px;
  color: var(--purple-dark);
  font-size: 22px;
  line-height: 1.2;
}

.info-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.info-list li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 10px 0;
  border-top: 1px solid rgba(85, 75, 154, 0.1);
}

.info-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.info-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}

.info-value {
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
}

a.info-value:hover {
  color: var(--purple);
}

.info-card-dark {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(120% 140% at 90% 100%, rgba(203, 200, 225, 0.22) 0%, transparent 55%),
    linear-gradient(140deg, rgba(46, 38, 87, 0.96) 0%, rgba(30, 25, 57, 0.96) 100%);
  color: #fff;
  display: grid;
  gap: 12px;
}

.info-card-dark .mini-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.info-card-dark h4 {
  font-size: 20px;
  line-height: 1.25;
}

.info-card-dark p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.info-card-dark .btn {
  align-self: flex-start;
}

.contact-faq {
  margin-top: 86px;
}

.contact-lead-band {
  margin-bottom: 60px;
}

@media (max-width: 1080px) {
  .contact-promises,
  .contact-roles,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    position: static;
  }

  .contact-orbit {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .contact-form {
    padding: 22px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .info-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-orbit {
    grid-template-columns: 1fr;
  }

  .contact-roles-section,
  .contact-section,
  .contact-faq {
    margin-top: 64px;
  }

  .form-actions .btn {
    width: 100%;
  }
}

