/* CC-IT — Static HTML/CSS port of the TanStack Start app
   Single dark theme, brand cyan #00B7C3
------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --background: #070d1f;
  --foreground: #f5f7fa;
  --surface: #131922;
  --surface-elevated: #151b2d;
  --muted: #1a2230;
  --muted-foreground: #c9ced4;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --primary: #00b7c3;
  --primary-glow: #28d4e0;
  --primary-foreground: #06141a;
  --secondary: #f5f7fa;
  --secondary-glow: #c5ccd4;
  --secondary-foreground: #0b0f14;
  --radius: 12px;

  --shadow-glow: 0 0 40px rgba(0, 183, 195, 0.22);
  --shadow-glow-sm: 0 0 18px rgba(0, 183, 195, 0.28);
  --shadow-glow-lg: 0 0 80px rgba(0, 183, 195, 0.32);
  --shadow-elevated: 0 20px 60px -10px rgba(0, 0, 0, 0.6);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  --grad-text: linear-gradient(180deg, #fbfcfd, #c5ccd4);
  --grad-glow: linear-gradient(135deg, #00b7c3, #28d4e0);
  --grad-hero: radial-gradient(ellipse 70% 55% at 75% 45%, rgba(0, 183, 195, 0.22), transparent 70%);
  --grad-glass: linear-gradient(140deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html {
  font-size: 17px;
}

body {
  margin: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

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

::selection {
  background: rgba(0, 183, 195, 0.3);
  color: var(--foreground);
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(0, 183, 195, 0.6);
}

.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gradient-glow {
  background: var(--grad-glow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.muted {
  color: var(--muted-foreground);
}

.balance {
  text-wrap: balance;
}

.pretty {
  text-wrap: pretty;
}

/* ---------- Listes de contenu (intro / risques) ---------- */
.intro-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.intro-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--foreground);
  font-size: 1rem;
  line-height: 1.5;
}

.intro-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(0, 183, 195, 0.6);
}

.risk-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
}

@media (max-width: 700px) {
  .risk-list {
    grid-template-columns: 1fr;
  }
}

.risk-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--foreground);
  font-size: 0.975rem;
  line-height: 1.55;
}

.risk-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: -0.05em;
  font-size: 0.85em;
  color: #ff6b6b;
}

.intro-list--2col {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
}

@media (max-width: 700px) {
  .intro-list--2col {
    grid-template-columns: 1fr;
  }
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: var(--surface);
  padding: 1.25rem 1.5rem;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.faq-item:hover,
.faq-item:focus-within {
  border-color: var(--primary);
  background: var(--surface-elevated);
  box-shadow: 0 0 24px rgba(0, 183, 195, 0.15);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  color: var(--foreground);
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.faq-item:hover summary,
.faq-item:focus-within summary {
  color: var(--primary);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  color: var(--primary);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 1rem;
}

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

.faq-item p {
  margin-top: 0.9rem;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.6;
}

.text-block {
  max-width: min(72ch, 100%);
  display: grid;
  gap: 1.25rem;
}

.benefit-block {
  text-align: center;
}

.benefit-block__text {
  max-width: 40rem;
  margin: 1rem auto 0;
  font-size: 1.25rem;
  color: var(--foreground);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
}

.card__link svg.icon {
  width: 16px;
  height: 16px;
}

.card__link:hover {
  opacity: 0.8;
}

.grid-lines {
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent 80%);
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent 80%);
}

/* ---------- Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(11, 15, 20, 0.6);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.site-header__inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 500;
  font-size: 15px;
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid rgba(0, 183, 195, 0.4);
  background: var(--surface);
  color: var(--primary);
  box-shadow: var(--shadow-glow-sm);
}

.brand-mark svg {
  width: 16px;
  height: 16px;
}

.site-nav {
  display: none;
  gap: 2.25rem;
  align-items: center;
}

.site-nav a {
  font-size: 15px;
  color: var(--foreground);
  transition: var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--primary);
  box-shadow: var(--primary-glow);
}

.cta-pill {
  display: none;
  align-items: center;
  gap: 0.375rem;
  border: 1px solid var(--border-strong);
  background: rgba(11, 22, 32, 0.072);
  border-radius: 999px;
  padding: 0.375rem 1rem;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
  color: var(--primary);
}

.cta-pill:hover {
  border-color: rgba(0, 183, 195, 0.5);
  color: var(--primary);
}

.cta-pill svg {
  width: 14px;
  height: 14px;
}

@media (min-width: 768px) {
  .site-nav,
  .cta-pill {
    display: inline-flex;
  }
}

/* ---------- Buttons ---------- */
.btn-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
}

.btn-primary:hover {
  box-shadow: var(--shadow-glow-lg);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.btn-primary:hover svg {
  transform: translateX(2px);
}

.btn-primary--lg {
  padding: 1rem 2rem;
  font-size: 15px;
  box-shadow: var(--shadow-glow-lg);
}

.btn-primary--lg:hover {
  transform: scale(1.02);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border-strong);
  background: rgba(11, 22, 32, 0.054);
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--foreground);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.btn-ghost:hover {
  border-color: rgba(0, 183, 195, 0.5);
  color: var(--primary);
}

.btn-ghost svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  transition: var(--transition);
}

.btn-ghost:hover svg {
  opacity: 1;
  transform: translateX(2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border-strong);
  background: rgba(11, 22, 32, 0.072);
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-foreground);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: rgba(0, 183, 195, 0.5);
  color: var(--primary);
}

.btn-secondary svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  transition: var(--transition);
}

.btn-secondary:hover svg {
  opacity: 1;
  transform: translateX(2px);
}

.btn-secondary--lg {
  padding: 1rem 2rem;
  font-size: 15px;
}

.btn-secondary--lg:hover {
  transform: scale(1.02);
}

/* ---------- Sections ---------- */
section {
  position: relative;
}

.section-divider {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.section {
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 10rem 0;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right 30%;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.35) 28%,
    rgba(0, 0, 0, 0.85) 55%,
    #000 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.35) 28%,
    rgba(0, 0, 0, 0.85) 55%,
    #000 100%
  );
  transition: object-position 0.6s ease;
}

/* Dark vignette on the left for title readability */
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse 80% 120% at 18% 50%,
    rgba(11, 15, 20, 0.96) 0%,
    rgba(11, 15, 20, 0.78) 30%,
    rgba(11, 15, 20, 0.35) 55%,
    transparent 78%
  );
  pointer-events: none;
}

/* Lighthouse beam sweep toward the title */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: conic-gradient(
    from 188deg at 82% 28%,
    transparent 0deg,
    rgba(230, 247, 255, 0.15) 10deg,
    rgba(0, 183, 195, 0.1) 20deg,
    transparent 32deg
  );
  filter: blur(22px);
  opacity: 0.75;
  mix-blend-mode: screen;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero__bg img {
    object-position: 88% 25%;
    mask-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.3) 35%,
      rgba(0, 0, 0, 0.8) 70%,
      #000 100%
    );
    -webkit-mask-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.3) 35%,
      rgba(0, 0, 0, 0.8) 70%,
      #000 100%
    );
  }
  .hero__bg::before {
    background: radial-gradient(
      ellipse 100% 100% at 10% 50%,
      rgba(11, 15, 20, 0.98) 0%,
      rgba(11, 15, 20, 0.85) 35%,
      rgba(11, 15, 20, 0.45) 60%,
      transparent 82%
    );
  }
  .hero__bg::after {
    background: conic-gradient(
      from 200deg at 92% 26%,
      transparent 0deg,
      rgba(230, 247, 255, 0.1) 12deg,
      rgba(0, 183, 195, 0.07) 22deg,
      transparent 34deg
    );
  }
}
.hero__inner {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 10rem;
  padding: 8rem 1.5rem 6rem;
}

.hero__content {
  max-width: 760px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border: 1px solid var(--border);
  background: rgba(11, 22, 32, 0.072);
  border-radius: 999px;
  padding: 0.375rem 0.875rem;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  backdrop-filter: blur(8px);
  margin-bottom: 2.5rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 1400px) {
  .hero__inner {
    margin: 0 4rem;
  }
}

@media (max-width: 1100px) {
  .hero__inner {
    margin: 0 2rem;
    padding: 7rem 1.5rem 5rem;
  }
}

@media (max-width: 768px) {
  .hero__inner {
    margin: 0 auto;
    min-height: auto;
    padding: 6rem 1.25rem 4rem;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__badge {
    font-size: 11px;
    padding: 0.3rem 0.75rem;
    margin-bottom: 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero__inner {
    padding: 5rem 1rem 3rem;
  }

  .hero__badge {
    font-size: 10px;
    gap: 0.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
  }
}

.final_cto__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border: 1px solid var(--primary);
  background: rgba(11, 22, 32, 0.072);
  border-radius: 999px;
  padding: 0.375rem 0.875rem;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  backdrop-filter: blur(8px);
  margin-bottom: 2.5rem;
}

.dot {
  position: relative;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: var(--shadow-glow);
  animation: pulse-glow 4s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.4rem, 6.4vw, 5.5rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
}

.hero p {
  margin-top: 2.25rem;
  max-width: 36rem;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted-foreground);
}

.hero__actions {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero__horizon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 183, 195, 0.4), transparent);
  pointer-events: none;
}

.particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ---------- Section heads ---------- */
.section-head {
  margin-bottom: 5rem;
  max-width: 100%;
}

.section-head--row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .section-head--row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    max-width: 100%;
  }
}

.section-head h2 {
  margin: 1.25rem 0 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: min(38ch, 100%);
}

.section-head__text {
  max-width: 28rem;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* ---------- Trust / journey ---------- */
.journey {
  position: relative;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .journey {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .journey {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.journey::before {
  content: "";
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 183, 195, 0.4), transparent);
}

@media (min-width: 1024px) {
  .journey::before {
    display: block;
  }
}

.journey__item {
  position: relative;
}

.icon-circle {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.icon-circle svg {
  width: 24px;
  height: 24px;
}

.journey__item:hover .icon-circle {
  border-color: rgba(0, 183, 195, 0.6);
  box-shadow: var(--shadow-glow);
}

.journey__num {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(0, 183, 195, 0.8);
}

.journey__title {
  margin: 0.5rem 0 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.journey__desc {
  margin: 0.75rem 0 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted-foreground);
}

/* ---------- Solutions / cards ---------- */
.card__more {
  margin-top: auto;
  color: var(--primary);
  font-weight: 500;
  padding-top: 1rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 300px));
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
}

@media (min-width: 1200px) {
  .card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

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

/* Si il n'y a qu'une seule card, elle prend toute la largeur disponible */
.card-grid:has(> .card:only-child) {
  grid-template-columns: 1fr;
}

.card-grid > .card:only-child {
  max-width: none;
  width: 100%;
}

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

@media (min-width: 640px) {
  .card-grid--1 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .card-grid--1 {
    grid-template-columns: 1fr;
  }
}

.card-grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .card-grid--3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-grid--5 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .card-grid--5 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .card-grid--5 {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
  }
}

.card--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1.25rem;
  min-height: 0;
}

.card--centered .card__icon-row {
  justify-content: center;
  margin-bottom: 0.5rem;
}

.card--centered .icon-tile {
  width: 40px;
  height: 40px;
}

.card--centered .icon-tile svg.icon {
  width: 18px;
  height: 18px;
}

.card--centered h3 {
  font-size: 1rem;
  margin: 0.25rem 0;
}

.card--centered .card__text {
  font-size: 0.875rem;
  line-height: 1.45;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--grad-glass);
  backdrop-filter: blur(20px) saturate(140%);
  padding: 2rem;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .card {
    padding: 2.5rem;
  }
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 183, 195, 0.4);
  box-shadow: var(--shadow-elevated);
}

.card__beam {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 183, 195, 0.7), transparent);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.card:hover .card__beam {
  opacity: 1;
}

.card__glow {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  background: rgba(0, 183, 195, 0);
  filter: blur(60px);
  transition: var(--transition);
  pointer-events: none;
}

.card:hover .card__glow {
  background: rgba(0, 183, 195, 0.15);
}

.card__icon-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.icon-tile {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  /* Garde tes variables existantes */
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--primary);
}

.icon-tile svg.icon {
  width: 20px;
  height: 20px;
  display: block;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

@media (max-width: 560px) {
  .values__grid {
    grid-template-columns: 1fr;
  }
}

.values__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.values__title {
  margin-top: 1.25rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary);
  text-shadow: 0 0 20px rgba(0, 183, 195, 0.5);
}

.values__desc {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.card__arrow {
  width: 20px;
  height: 20px;
  color: var(--muted-foreground);
  transition: var(--transition);
}

.card:hover .card__arrow {
  transform: translateX(4px);
  color: var(--primary);
}

.card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.card__desc {
  margin: 0.75rem 0 0;
  max-width: 28rem;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.card__list {
  margin: 2rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 15px;
  color: var(--muted-foreground);
}

.card__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: var(--shadow-glow-sm);
  flex-shrink: 0;
}

/* ---------- Human-centered ---------- */
.human {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 1024px) {
  .human {
    grid-template-columns: 7fr 5fr;
    gap: 5rem;
  }
}

.human__image-wrap {
  position: relative;
}

.human__image-wrap::before {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: -1;
  background: rgba(0, 183, 195, 0.1);
  filter: blur(60px);
}

.human__image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-elevated);
}

.human__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.human__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(246, 248, 251, 0.6), transparent);
}

.human__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border-strong);
  background: rgba(246, 248, 251, 0.7);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 12.5px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  z-index: 1;
}

.human__badge svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.human h2 {
  margin: 1.25rem 0 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.human p {
  margin: 1.75rem 0 0;
  max-width: 32rem;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted-foreground);
}

.human__dl {
  margin: 2.5rem 0 0;
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .human__dl {
    grid-template-columns: 1fr 1fr;
  }
}

.human__dl > div {
  background: var(--background);
  padding: 1.25rem;
  transition: var(--transition);
}

.human__dl > div:hover {
  background: rgba(11, 22, 32, 0.08);
}

.human__dl dt {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 13px;
  font-weight: 500;
}

.human__dl dt span {
  color: var(--foreground);
}

.human__dl dt svg {
  width: 16px;
  height: 16px;
}

.human__dl dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted-foreground);
}

/* ---------- Partner preview / grid ---------- */
.partner-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.75rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  transition: var(--transition);
}

.partner-card-link:hover {
  gap: 0.625rem;
}

.partner-card-link svg {
  width: 14px;
  height: 14px;
}

.partner-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--foreground);
}

.partner-logo__mark {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid var(--border-strong);
  background: rgba(11, 22, 32, 0.08);
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-glow-sm);
}

.partner-logo__img {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
  border-radius: 10px;
  padding: 0.35rem;
}

.partner-logo__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.partner-logo__link img {
  display: block;
}

.partner-logo__name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.tag {
  display: inline-flex;
  margin-top: 1.25rem;
  border: 1px solid var(--border-strong);
  background: rgba(11, 22, 32, 0.072);
  border-radius: 999px;
  padding: 0.25rem 0.625rem;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-foreground);
}

.tag--primary {
  border-color: rgba(0, 183, 195, 0.3);
  background: rgba(0, 183, 195, 0.05);
  color: rgba(0, 183, 195, 0.9);
}

.card__text {
  margin: 1.25rem 0 0;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted-foreground);
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

/* Filter chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.chip {
  border: 1px solid var(--border-strong);
  background: rgba(11, 22, 32, 0.054);
  color: var(--muted-foreground);
  border-radius: 999px;
  padding: 0.375rem 1rem;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.chip:hover {
  border-color: rgba(0, 183, 195, 0.4);
  color: var(--foreground);
}

.chip.is-active {
  border-color: rgba(0, 183, 195, 0.6);
  background: rgba(0, 183, 195, 0.1);
  color: var(--primary);
  box-shadow: var(--shadow-glow-sm);
}

/* ---------- Partner hero ---------- */
.partner-hero {
  position: relative;
  isolate: isolate;
  overflow: hidden;
  padding: 8rem 0 5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .partner-hero {
    padding: 11rem 0 7rem;
  }
}

.partner-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.partner-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  opacity: 0.9;
}

.partner-hero__container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.beacon {
  width: 64px;
  height: 64px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.beacon__inner {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(0, 183, 195, 0.4);
  background: rgba(11, 22, 32, 0.08);
  color: var(--primary);
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(8px);
}

.beacon__inner svg {
  width: 28px;
  height: 28px;
}

.beacon::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: rgba(0, 183, 195, 0.2);
  filter: blur(40px);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
}

.partner-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.partner-hero p {
  margin: 1.75rem auto 0;
  max-width: 36rem;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted-foreground);
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.final-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.final-cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--background), rgba(11, 15, 20, 0.45), var(--background)), var(--grad-hero);
}

.final-cta__inner {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  padding: 8rem 1.5rem;
}

@media (min-width: 768px) {
  .final-cta__inner {
    padding: 12rem 1.5rem;
  }
}

.final-cta__beacon {
  width: 80px;
  height: 80px;
  margin: 0 auto 3rem;
  position: relative;
}

.final-cta__beacon::before {
  content: "";
  position: absolute;
  inset: -24px;
  background: rgba(0, 183, 195, 0.2);
  filter: blur(40px);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
}

.final-cta__beacon-inner {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(0, 183, 195, 0.4);
  background: rgba(11, 22, 32, 0.08);
  color: var(--primary);
  box-shadow: var(--shadow-glow-lg);
  backdrop-filter: blur(8px);
  position: relative;
}

.final-cta__beacon-inner svg {
  width: 36px;
  height: 36px;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.final-cta p {
  margin: 1.75rem auto 0;
  max-width: 36rem;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted-foreground);
}

.final-cta__hint {
  margin-top: 2rem;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
}

.final-cta__actions {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

/* ---------- Lansweeper / minimal page ---------- */
.minimal-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 6rem;
}

@media (min-width: 768px) {
  .minimal-page {
    padding: 11rem 1.5rem 8rem;
  }
}

.minimal-page__inner {
  max-width: 40rem;
}

.minimal-page h1 {
  margin: 1.5rem 0 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.minimal-page p {
  margin: 1.5rem 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted-foreground);
}

.minimal-page__actions {
  margin-top: 2.5rem;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem 0;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer__links a {
  font-size: 13px;
  color: var(--muted-foreground);
  transition: var(--transition);
}

.site-footer__links a:hover {
  color: var(--foreground);
}

@media (min-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.site-footer__brand .muted {
  display: none;
  font-size: 13px;
}

@media (min-width: 640px) {
  .site-footer__brand .muted {
    display: inline;
  }
}

.site-footer__copy {
  font-size: 13px;
  color: var(--muted-foreground);
  margin: 0;
}

/* ---------- Animations ---------- */
@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.55;
  }

  50% {
    opacity: 1;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-rise {
  animation: rise-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ---------- SVG icon defaults ---------- */
svg.icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
}

/* Zero-specificity fallback size so bare <svg class="icon"> renders on mobile
   even when no context rule sets width/height. Any class-based override
   (.icon-bento, .icon-tile svg.icon, .back-link .icon, etc.) still wins. */
:where(svg.icon) {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

/* ===== Additions for extended site ===== */
.card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.card-link .card__desc {
  flex: 1 1 auto;
}

.card-link .partner-card-link {
  margin-top: auto;
}

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

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 183, 195, 0.12);
  border: 1px solid rgba(0, 183, 195, 0.28);
  color: var(--foreground);
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.chip:hover {
  background: rgba(0, 183, 195, 0.24);
  border-color: rgba(0, 183, 195, 0.55);
  color: var(--foreground);
}

.chip svg {
  width: 14px;
  height: 14px;
}

.subpage-hero {
  position: relative;
  padding: 9rem 0 4rem;
  overflow: hidden;
}

.subpage-hero .container {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.subpage-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.1;
  margin: 0.6rem 0 1.2rem;
}

.subpage-hero p {
  font-size: 1.1rem;
  max-width: 720px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form {
  display: grid;
  gap: 1.1rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  color: #9fb4b8;
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--foreground);
  font: inherit;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(0, 183, 195, 0.6);
  background: rgba(0, 183, 195, 0.06);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-info {
  display: grid;
  gap: 1.2rem;
  padding: 1.6rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color: var(--foreground);
}

.contact-info a {
  color: var(--foreground);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 183, 195, 0.45);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 820px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-card {
  padding: 1.6rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(0, 183, 195, 0.35), rgba(0, 183, 195, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  font-weight: 600;
  font-size: 1.5rem;
  border: 1px solid rgba(0, 183, 195, 0.35);
}

.team-card h4 {
  margin: 0.2rem 0;
  font-size: 1.05rem;
}

.team-card .role {
  color: #9fb4b8;
  font-size: 0.88rem;
}

.service-domain {
  padding: 2.6rem 0;
}

.service-domain h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin: 0.4rem 0 0.6rem;
}

.service-domain .lede {
  color: #bcd1d4;
  max-width: 760px;
}

.blog-meta {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  color: #9fb4b8;
  font-size: 0.82rem;
  margin-bottom: 0.6rem;
}

.blog-meta time {
  color: #9fb4b8;
}

.blog-note {
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: rgba(0, 183, 195, 0.06);
  border: 1px solid rgba(0, 183, 195, 0.2);
  color: var(--foreground);
  font-size: 0.92rem;
}

.cta-strip {
  padding: 4rem 0 6rem;
  text-align: center;
}

.cta-strip h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.cta-strip p {
  color: #bcd1d4;
  max-width: 600px;
  margin: 0 auto 1.6rem;
}

.card-grid--1 .card {
  display: grid;
  grid-template-columns: 175px 1fr;
  gap: 0 2.5rem;
  align-items: start;
  padding: 2.5rem;
}

.card-grid--1 .partner-logo {
  grid-column: 1;
  grid-row: 1 / 99;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0.875rem;
  padding-top: 0.25rem;
}

.card-grid--1 .partner-logo__img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 16px;
  background: #ffffff;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.card-grid--1 .partner-logo__name {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: var(--foreground);
  letter-spacing: -0.01em;
}

.card-grid--1 .partner-logo__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.card-grid--1 .card__text {
  grid-column: 2;
  margin-top: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(138, 152, 168, 0.95);
}

.card-grid--1 .partner-card-link {
  grid-column: 2;
  margin-top: 1.25rem;
  display: inline-flex;
}

.card-grid--1 .card__beam,
.card-grid--1 .card__glow {
  grid-column: 1 / -1;
}

.card-grid--1 .card {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008));
}

/* ── Lookout-specific overrides ── */
.lookout-hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 183, 195, 0.13), transparent 70%);
}

.lookout-hero__logo {
  display: inline-block;
  background: #fff;
  border-radius: 18px;
  padding: 1.25rem 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}

.lookout-hero__logo img {
  height: 52px;
  width: auto;
  display: block;
}

.lookout-hero h1 {
  margin: 0 auto 1.5rem;
  max-width: 44rem;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.lookout-hero p {
  margin: 0 auto 2.5rem;
  max-width: 38rem;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.lookout-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Product sections ── */
.lookout-block {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.lookout-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lookout-block__inner--reverse {
  direction: rtl;
}

.lookout-block__inner--reverse > * {
  direction: ltr;
}

.lookout-block__media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
  background: #000;
}

.lookout-block__media video,
.lookout-block__media img {
  width: 100%;
  display: block;
}

.lookout-block__content .eyebrow {
  margin-bottom: 1rem;
}

.lookout-block__content h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.lookout-block__content p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted-foreground);
  margin: 0 0 2rem;
}

.lookout-block__actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* ── CTA bottom block ── */
.lookout-cta {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.lookout-cta h2 {
  margin: 0 auto 1.25rem;
  max-width: 36rem;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.lookout-cta p {
  margin: 0 auto 2.5rem;
  max-width: 32rem;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .lookout-block__inner,
  .lookout-block__inner--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* Responsive : colonne unique sur mobile */
@media (max-width: 640px) {
  .card-grid--1 .card {
    grid-template-columns: 1fr;
  }

  .card-grid--1 .partner-logo {
    grid-row: auto;
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 1rem;
  }

  .card-grid--1 .partner-logo__img {
    width: 60px;
    height: 60px;
  }

  .card-grid--1 .card__text,
  .card-grid--1 .partner-card-link {
    grid-column: 1;
  }
}

/* ── Hero ── */
.symc-hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 183, 195, 0.12), transparent 70%);
}

.symc-hero__logo {
  display: inline-block;
  background: #fff;
  border-radius: 18px;
  padding: 1.25rem 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}

.symc-hero__logo img {
  height: 52px;
  width: auto;
  display: block;
}

.symc-hero h1 {
  margin: 0 auto 1.25rem;
  max-width: 44rem;
  font-size: clamp(1.9rem, 4.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.symc-hero p {
  margin: 0 auto 2.75rem;
  max-width: 40rem;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted-foreground);
}

/* ── Anchor nav ── */
.symc-anchors {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.symc-anchor-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding: 1.25rem 1.75rem;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--foreground);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  min-width: 130px;
}

.symc-anchor-btn:hover {
  border-color: var(--primary);
  background: rgba(0, 183, 195, 0.07);
  color: var(--primary);
}

.symc-anchor-btn svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* ── Generic section ── */
.symc-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.symc-section .eyebrow {
  margin-bottom: 1rem;
}

.symc-section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.symc-section > .container > p {
  max-width: 44rem;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted-foreground);
  margin: 0 0 3rem;
}

/* ── Enterprise Cloud overview grid ── */
.symc-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.symc-overview__img {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: #fff;
  padding: 1.5rem;
}

.symc-overview__img img {
  width: 100%;
  display: block;
}

.symc-overview__text h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 1rem;
  letter-spacing: -0.015em;
}

.symc-overview__text p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted-foreground);
  margin: 0;
}

/* ── 4-pillar cards ── */
.symc-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}

.symc-pillar {
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.025);
  text-decoration: none;
  color: var(--foreground);
  transition:
    border-color 0.2s,
    background 0.2s;
  display: block;
}

.symc-pillar:hover {
  border-color: var(--primary);
  background: rgba(0, 183, 195, 0.06);
}

.symc-pillar__img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 10px;
  padding: 0.5rem;
}

.symc-pillar h4 {
  margin: 0 0 0.625rem;
  font-size: 15px;
  font-weight: 500;
}

.symc-pillar p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted-foreground);
}

/* ── 3-col challenge/approach/solution layout ── */
.symc-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.symc-col__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.symc-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--border);
}

.symc-item:last-child {
  border-bottom: none;
}

.symc-item__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 0.3rem;
}

.symc-item__body {
  flex: 1;
}

.symc-item__title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.symc-item__text {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted-foreground);
  margin: 0;
}

/* ── Product grid (5 or 6 cols) ── */
.symc-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.symc-product {
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 0.2s;
}

.symc-product:hover {
  border-color: var(--primary);
}

.symc-product__img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 0.4rem;
  margin-bottom: 1rem;
}

.symc-product h4 {
  margin: 0 0 0.5rem;
  font-size: 14px;
  font-weight: 500;
}

.symc-product p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted-foreground);
}

/* ── Network: image + text intro ── */
.symc-intro-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.symc-intro-row__img {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: #fff;
  padding: 1rem;
}

.symc-intro-row__img img {
  width: 100%;
  display: block;
}

.symc-intro-row h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 0.875rem;
}

.symc-intro-row p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted-foreground);
  margin: 0;
}

/* ── Identity: prose block ── */
.symc-prose {
  max-width: 52rem;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.symc-prose ul {
  padding-left: 1.25rem;
  margin: 0.75rem 0;
}

.symc-prose li {
  margin-bottom: 0.375rem;
}

/* ── CTA banner ── */
.symc-cta {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.symc-cta h2 {
  margin: 0 auto 1.25rem;
  max-width: 36rem;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.symc-cta p {
  margin: 0 auto 2.5rem;
  max-width: 34rem;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.symc-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .symc-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .symc-cols {
    grid-template-columns: 1fr;
  }

  .symc-overview {
    grid-template-columns: 1fr;
  }

  .symc-intro-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .symc-pillars {
    grid-template-columns: 1fr 1fr;
  }

  .symc-anchor-btn {
    min-width: 100px;
    font-size: 12px;
    padding: 1rem;
  }
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  cursor: pointer;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.cta-pill--mobile {
  display: none;
}

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

  .cta-pill--desktop {
    display: none;
  }
  .cta-pill--mobile {
    display: inline-flex;
    margin-top: 0.5rem;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 0;
    z-index: 1000;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
  }
  .site-nav a:last-child {
    border-bottom: none;
  }
}

.section-head--bento {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
}

.eyebrow-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: var(--primary);
  opacity: 0.6;
}

.link-view-all {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: opacity 0.2s;
  padding-bottom: 0.5rem;
}

.link-view-all svg.icon {
  width: 18px;
  height: 18px;
}

.link-view-all:hover {
  opacity: 0.8;
}

.card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2.5rem 2rem;
  text-align: left;
}

.icon-bento {
  width: 40px;
  height: 30px;
  color: #00b7c3;
  margin-bottom: 1.5rem;
}

.card-link h3 {
  font-size: 1.5rem;
  line-height: 1.35;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.card-link .card__desc {
  margin-top: 0;
  flex: 1 1 auto;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.partner-card-link {
  margin-top: auto;
  color: #00b7c3;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* --- Responsive (Mobile) --- */
@media (max-width: 768px) {
  .section-head--bento {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.showroom-frame {
  position: relative;
  display: inline-block;
  padding: 3rem;
}

.showroom-frame img {
  display: block;
  position: relative;
  z-index: 2;
  border-radius: 16px;
  max-width: 100%;
  height: auto;
}

.showroom-frame::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  z-index: 1;
}

.showroom-frame::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 120px;
  border-bottom: 2px solid var(--primary);
  border-left: 2px solid var(--primary);
  z-index: 1;
}

.title-center {
  text-align: center;
  margin-bottom: 4rem;
}

.title-center h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.partner-cards {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.partner-card-img {
  text-align: center;
  margin-bottom: 1.5rem;
}

.partner-card-img img {
  height: 45px;
  margin: 0 auto;
}

/* ===== Showroom page overrides ===== */
.text-gradient {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  color: #dcd8f0 !important;
  filter: none !important;
  -webkit-text-fill-color: #dcd8f0 !important;
}
.text-gradient-glow {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  color: #00b7c3 !important;
  filter: none !important;
  -webkit-text-fill-color: #00b7c3 !important;
}

body.showroom .partner-cards .card {
  background: #0a3544 !important;
  background-image: none !important;
  border: 1px solid rgba(0, 183, 195, 0.25);
  box-shadow:
    0 0 0 1px rgba(0, 183, 195, 0.15),
    0 0 40px rgba(0, 183, 195, 0.35),
    0 20px 60px rgba(0, 0, 0, 0.5);
}

body.showroom .showroom-event-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(6, 20, 26, 0.95) 0%, rgba(6, 20, 26, 0.75) 55%, rgba(6, 20, 26, 0.45) 100%),
    url("images/blueprint-mesh.png") !important;
  background-size: cover, cover;
  background-position: center, center;
}

body.showroom .showroom-event-right {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0d4a52 !important;
  color: #fff;
}
body.showroom .showroom-event-icon {
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  color: #eaffff;
}
body.showroom .showroom-event-eyebrow {
  font-size: 11px;
  margin-bottom: 0.5rem;
  justify-content: center;
  color: #7fd8de;
}
body.showroom .showroom-event-eyebrow::before {
  background: rgba(127, 216, 222, 0.6);
}
body.showroom .showroom-event-date {
  font-size: 42px;
  font-weight: 600;
  margin: 0;
  color: #fff;
  letter-spacing: -0.01em;
}
body.showroom .showroom-event-year {
  font-size: 15px;
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.75);
}
body.showroom .showroom-event-time {
  font-size: 12px;
  font-weight: 500;
  display: block;
  margin-top: 2rem;
  padding-top: 1.25rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  width: 70%;
}

#itsaForm {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.grid-column-1 {
  grid-column: 1;
}
.grid-column-2 {
  grid-column: 2;
}

#itsaForm > div:not(.grid-column-1):not(.grid-column-2) {
  grid-column: span 2;
}

#itsaForm label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
}

#itsaForm input[type="text"],
#itsaForm textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(6, 20, 26, 0.4); /* Fond sombre transparent */
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #ffffff;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.25s ease;
}

#itsaForm input[type="text"]::placeholder,
#itsaForm textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* Effet de lueur au focus (utilise votre couleur --primary) */
#itsaForm input[type="text"]:focus,
#itsaForm textarea:focus {
  outline: none;
  border-color: var(--primary, #00b7c3);
  box-shadow: 0 0 12px rgba(0, 183, 195, 0.2);
  background: rgba(6, 20, 26, 0.7);
}

#itsaForm textarea {
  min-height: 100px;
  resize: vertical;
}

/* ==================== BOUTONS RADIOS (ANREDE) ==================== */
.grid-column-1 > div {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  height: 44px;
}

.grid-column-1 > div div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#itsaForm input[type="radio"],
#itsaForm input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  margin: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  display: grid;
  place-content: center;
}

#itsaForm input[type="radio"] {
  border-radius: 50%;
}
#itsaForm input[type="checkbox"] {
  border-radius: 4px;
}

#itsaForm input[type="radio"]::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: scale(0);
  transition: 0.15s transform ease-in-out;
  background-color: var(--primary, #00b7c3);
}
#itsaForm input[type="radio"]:checked::before {
  transform: scale(1);
}

#itsaForm input[type="checkbox"]::before {
  content: "✓";
  font-size: 12px;
  color: #06141a;
  font-weight: bold;
  transform: scale(0);
  transition: 0.15s transform ease-in-out;
}
#itsaForm input[type="checkbox"]:checked::before {
  transform: scale(1);
}

#itsaForm input[type="radio"]:checked,
#itsaForm input[type="checkbox"]:checked {
  border-color: var(--primary, #00b7c3);
}
#itsaForm input[type="checkbox"]:checked {
  background: var(--primary, #00b7c3);
}

#itsaForm label[for="herr"],
#itsaForm label[for="frau"],
#itsaForm label[for="divers"] {
  margin-bottom: 0;
  cursor: pointer;
}

.interests {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.interests div label {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0;
  cursor: pointer;
}

.submit-btn {
  margin-top: 1rem;
}

.itsa-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--primary, #00b7c3);
  border: none;
  border-radius: 8px;
  color: #06141a; /* Écrit en sombre sur le fond lumineux */
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 183, 195, 0.25);
}

.itsa-btn bb {
  font-weight: 700;
  text-transform: uppercase;
}

.itsa-btn:hover {
  background: #ffffff;
  color: #06141a;
  box-shadow: 0 4px 25px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.itsa-btn:active {
  transform: translateY(0);
}

@media (max-width: 680px) {
  #itsaForm {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  .grid-column-1,
  .grid-column-2,
  #itsaForm > div:not(.grid-column-1):not(.grid-column-2) {
    grid-column: span 1 !important;
  }
  .grid-column-1 > div {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
  }
}

.message-popup {
  opacity: 1;
  transition:
    visibility 1s,
    opacity 0.5s linear;
  visibility: hidden;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  text-align: center;
  background: #ff6c6c;
  margin: 1rem;
  padding: 0.125rem 2.5rem;
  border-radius: 10px;
  color: var(--white);
}
/* =====================================================================
   DEPTH PASS — additive enhancements (same core palette, more layers)
   ===================================================================== */

:root {
  /* Tonal surface ramp (same blue-black family) */
  --surface-1: #0f1620;
  --surface-2: #141d2a;
  --surface-3: #1a2536;
  --surface-4: #212e42;

  /* Deep accents used in gradients/shadows only */
  --accent-deep: #006970;
  --accent-violet: #1a2350;

  /* Layered shadows */
  --shadow-depth: 0 30px 80px -30px rgba(0, 0, 0, 0.75), 0 8px 24px -12px rgba(0, 0, 0, 0.55);
  --shadow-inset-top: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  --shadow-inset-bottom: inset 0 -1px 0 rgba(0, 0, 0, 0.4);
  --shadow-ring: 0 0 0 1px rgba(255, 255, 255, 0.05);
  --shadow-color-glow: 0 20px 60px -20px rgba(0, 183, 195, 0.45), 0 0 40px -10px rgba(40, 212, 224, 0.25);

  /* Gradients */
  --grad-surface: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.045) 0%,
    rgba(255, 255, 255, 0.015) 40%,
    rgba(0, 0, 0, 0.15) 100%
  );
  --grad-surface-strong: linear-gradient(155deg, #1a2536 0%, #131b28 55%, #0f1620 100%);
  --grad-mesh:
    radial-gradient(60% 45% at 15% 20%, rgba(0, 183, 195, 0.22), transparent 65%),
    radial-gradient(50% 40% at 85% 30%, rgba(40, 212, 224, 0.18), transparent 70%),
    radial-gradient(55% 50% at 50% 100%, rgba(26, 35, 80, 0.55), transparent 70%);
  --grad-border: linear-gradient(
    140deg,
    rgba(0, 183, 195, 0.55),
    rgba(255, 255, 255, 0.08) 40%,
    rgba(40, 212, 224, 0.35) 100%
  );
  --grad-text-rich: linear-gradient(180deg, #ffffff 0%, #dbe3ec 55%, #7fd8e0 100%);
  --grad-hairline: linear-gradient(90deg, transparent, rgba(0, 183, 195, 0.55), transparent);

  /* Subtle noise (SVG data URI) */
  --noise: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* --- Body: layered ambient depth --- */
body {
  background:
    radial-gradient(70% 55% at 12% -5%, rgba(0, 183, 195, 0.1), transparent 60%),
    radial-gradient(60% 50% at 105% 12%, rgba(40, 212, 224, 0.08), transparent 65%),
    radial-gradient(80% 60% at 50% 115%, rgba(26, 35, 80, 0.35), transparent 70%), var(--background);
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: var(--noise);
  opacity: 0.5;
  mix-blend-mode: overlay;
  z-index: 0;
}
main,
header,
footer {
  position: relative;
  z-index: 1;
}

/* --- Section rhythm: banded backgrounds --- */
.section {
  position: relative;
}
.section:nth-of-type(even) {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(15, 22, 32, 0.6) 15%,
    rgba(15, 22, 32, 0.6) 85%,
    transparent 100%
  );
}
.section-divider {
  height: 1px !important;
  background: var(--grad-hairline) !important;
  border: 0 !important;
  opacity: 0.7;
}

/* --- Hero surfaces: mesh + faint grid --- */
.subpage-hero {
  position: relative;
  background-image: var(--grad-mesh);
  overflow: hidden;
}
.subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
  opacity: 0.55;
  z-index: 0;
}
.subpage-hero > :not(.particles):not(.hero__bg):not(.grid-lines),
.hero > :not(.particles):not(.hero__bg):not(.grid-lines) {
  position: relative;
  z-index: 1;
}

.subpage-hero h1,
.hero h1 {
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.4),
    0 20px 60px rgba(0, 183, 195, 0.15);
  letter-spacing: -0.02em;
}
.text-gradient {
  background-image: var(--grad-text-rich) !important;
}

/* --- Cards: gradient border, layered shadow, embossed hover --- */
.card {
  background: var(--grad-surface-strong) !important;
  box-shadow: var(--shadow-depth), var(--shadow-inset-top), var(--shadow-ring);
  position: relative;
  isolation: isolate;
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: var(--grad-border);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.35;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 2;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-depth), var(--shadow-color-glow), var(--shadow-inset-top);
}
.card:hover::before {
  opacity: 0.9;
}

/* --- Icon tile: embossed feel --- */
.icon-tile {
  background: linear-gradient(
    160deg,
    rgba(0, 183, 195, 0.22),
    rgba(40, 212, 224, 0.06) 60%,
    rgba(0, 0, 0, 0.2)
  ) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35),
    0 8px 20px -8px rgba(0, 183, 195, 0.45);
  border: 1px solid rgba(0, 183, 195, 0.25) !important;
}

/* --- Buttons: gradient sheen --- */
.btn-primary {
  background: linear-gradient(135deg, #00b7c3 0%, #28d4e0 50%, #00b7c3 100%) !important;
  background-size: 200% 100% !important;
  box-shadow:
    0 10px 30px -8px rgba(0, 183, 195, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  transition:
    background-position 0.6s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.btn-primary:hover {
  background-position: 100% 0 !important;
  transform: translateY(-2px);
  box-shadow:
    0 16px 40px -10px rgba(0, 183, 195, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* --- CTA pill: glassy --- */
.cta-pill {
  background: rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow:
    var(--shadow-inset-top),
    0 8px 24px -12px rgba(0, 0, 0, 0.5);
}
.cta-pill:hover {
  background: rgba(0, 183, 195, 0.12) !important;
  border-color: rgba(0, 183, 195, 0.4) !important;
  box-shadow:
    0 0 0 1px rgba(0, 183, 195, 0.35),
    0 10px 30px -10px rgba(0, 183, 195, 0.4);
}

/* --- Header: glass on scroll --- */
.site-header {
  transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    border-color 0.4s ease;
}
.site-header.is-scrolled,
.site-header.scrolled {
  background: rgba(11, 15, 20, 0.72) !important;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.6);
}

/* --- Footer polish --- */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(15, 22, 32, 0.9)) !important;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad-hairline);
}
.brand-mark {
  box-shadow: 0 0 24px rgba(0, 183, 195, 0.4);
}

/* --- CTA strip: mesh background --- */
.cta-strip {
  position: relative;
  background-image: var(--grad-mesh) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- Scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== Solid text colors (override later gradient rules) ===== */
.text-gradient,
.text-gradient-glow {
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  filter: none !important;
}
.text-gradient {
  color: #dcd8f0 !important;
  -webkit-text-fill-color: #dcd8f0 !important;
}
.text-gradient-glow {
  color: #00b7c3 !important;
  -webkit-text-fill-color: #00b7c3 !important;
}

/* ===== Back-to-parent link (subpages) ===== */
.back-link {
  padding: 1rem 0 0;
}
.back-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.95rem;
}
.back-link a:hover {
  color: #dcd8f0;
}
.back-link .icon {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.back-link .icon--flip {
  transform: rotate(180deg);
}

/* ===== Showroom compaction + tagline ===== */
body.showroom .hero {
  padding-bottom: 2rem;
}
body.showroom .section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
body.showroom .title-center {
  margin-bottom: 2rem;
}
body.showroom .showroom-frame {
  padding: 1.5rem;
}
body.showroom .hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 900px) {
  body.showroom .hero__inner {
    grid-template-columns: 1.1fr 1fr;
  }
}
body.showroom .showroom-event-icon {
  margin-bottom: 0.75rem !important;
}
body.showroom .showroom-event-time {
  margin-top: 1rem !important;
}
body.showroom .showroom-event-left,
body.showroom .showroom-event-right {
  padding: 1.75rem;
}

.showroom-tagline {
  text-align: center;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 13px;
  margin: 2.5rem 0 0;
}

/* Showroom ITSA Ticket buttons: white text */
body.showroom .btn-primary {
  color: #ffffff;
}
body.showroom .btn-primary:hover {
  color: #ffffff;
}

/* =====================================================================
   Fixes pass — partner logos, CTA lightness, wide-screen text widths
   ===================================================================== */

/* 1. Partner cards — enlarge logo tile on the Partner page */
.card-grid--1 .partner-logo__img {
  width: 200px;
  height: 200px;
  padding: 1.5rem;
}
.card-grid--1 .partner-logo {
  gap: 1.1rem;
}
.card-grid--1 .partner-logo__name {
  font-size: 15px;
}
.card-grid--1 .card {
  grid-template-columns: 240px 1fr;
  gap: 0 3rem;
}
@media (max-width: 767px) {
  .card-grid--1 .partner-logo__img {
    width: 150px;
    height: 150px;
    padding: 1.1rem;
  }
  .card-grid--1 .card {
    grid-template-columns: 1fr;
  }
}

/* 3. CTA strip — brighten the background so it reads as luminous */
.cta-strip {
  background-image:
    radial-gradient(120% 80% at 50% 0%, rgba(0, 183, 195, 0.22), transparent 60%),
    radial-gradient(80% 60% at 50% 100%, rgba(0, 183, 195, 0.12), transparent 70%),
    linear-gradient(180deg, #123845 0%, #0e2a35 100%) !important;
  border-top-color: rgba(0, 183, 195, 0.18);
  border-bottom-color: rgba(0, 183, 195, 0.18);
}
.cta-strip p {
  color: #d6e6e9;
}

/* 4. Wide-screen text widths — use more of the container on large desktops */
@media (min-width: 1200px) {
  .text-block {
    max-width: 62rem;
  }
  .section-head__text {
    max-width: 34rem;
  }
  .service-domain .lede {
    max-width: 58rem;
  }
}
@media (min-width: 1440px) {
  .text-block {
    max-width: 68rem;
  }
  .section-head__text {
    max-width: 36rem;
  }
}

/* ---------- Partner cards: uniform height + expandable description ---------- */
.card-grid--1 .card__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(1.75em * 4);
}
.card-grid--1 .card__text.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
  text-overflow: clip;
  min-height: 0;
}
.card__text-toggle {
  grid-column: 2;
  justify-self: start;
  margin-top: 0.75rem;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-style: italic;
  text-decoration: underline;
  color: var(--primary);
  transition: var(--transition);
}
.card__text-toggle:hover {
  opacity: 0.8;
}
@media (max-width: 640px) {
  .card-grid--1 .card__text {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    min-height: calc(1.75em * 3);
  }
}
/* ---------- Bewerbungsprozess slider ---------- */
.hiring-process {
  padding: 4rem 0 5rem;
}
.hiring-process > .pt-sm-7 {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1.5rem;
}
.hiring-process h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  color: #dcd8f0;
}
.hiring-process .gradient-color {
  color: #00b7c3;
}

.process-slider {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4rem;
  outline: none;
}
.process-slider__viewport {
  overflow: hidden;
  padding: 1rem 0;
}
.process-slider__track {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.process-slider .step {
  flex: 0 0 calc(50% - 0.75rem);
  min-width: 0;
}
.process-slider .step > div {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(160deg, rgba(19, 25, 34, 0.95), rgba(10, 15, 22, 0.95));
  border: 1px solid rgba(0, 183, 195, 0.18);
  border-radius: 28px;
  padding: 2.5rem 2rem;
  min-height: 340px;
  box-shadow:
    0 20px 60px -20px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.process-slider .step > div:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 183, 195, 0.4);
  box-shadow:
    0 30px 70px -20px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(0, 183, 195, 0.18);
}
.process-slider .right-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.process-slider .label {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(0, 183, 195, 0.08);
  border: 1px solid rgba(0, 183, 195, 0.3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.process-slider .label .gradient-color {
  color: #00b7c3;
}
.process-slider .title {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #dcd8f0;
}
.process-slider .description {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #a4b0bd;
}
.process-slider .description b {
  color: #dcd8f0;
  font-weight: 600;
}
.process-slider .picto {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 10px 30px rgba(0, 183, 195, 0.25));
}
.process-slider .picto img {
  max-width: 100%;
  height: auto;
  max-height: 200px;
}

@media (max-width: 900px) {
  .process-slider .step {
    flex: 0 0 100%;
  }
  .process-slider .step > div {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    min-height: 0;
  }
  .process-slider .picto {
    order: -1;
  }
  .process-slider .picto img {
    max-height: 140px;
  }
}
.process-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  color: #dcd8f0;
  border: 1px solid rgba(0, 183, 195, 0.35);
  cursor: pointer;
  z-index: 3;
  backdrop-filter: blur(6px);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}
.process-slider__nav:hover:not(:disabled) {
  background: rgba(0, 183, 195, 0.15);
  color: #00b7c3;
  box-shadow: 0 0 20px rgba(0, 183, 195, 0.35);
}
.process-slider__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.process-slider__nav .icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.process-slider__nav--prev {
  left: 0;
}
.process-slider__nav--prev .icon {
  transform: rotate(180deg);
}
.process-slider__nav--next {
  right: 0;
}
.process-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.process-slider__dot {
  width: 28px;
  height: 6px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition:
    background 0.2s ease,
    width 0.2s ease;
}
.process-slider__dot:hover {
  background: rgba(0, 183, 195, 0.5);
}
.process-slider__dot.is-active {
  background: #00b7c3;
  width: 40px;
  box-shadow: 0 0 12px rgba(0, 183, 195, 0.6);
}
@media (max-width: 720px) {
  .process-slider {
    padding: 0 0.5rem;
  }
  .process-slider__nav {
    width: 38px;
    height: 38px;
    top: auto;
    bottom: -56px;
    transform: none;
  }
  .process-slider__nav--prev {
    left: 25%;
  }
  .process-slider__nav--next {
    right: 25%;
  }
  .process-slider__dots {
    margin-top: 4rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .process-slider__track {
    transition: none;
  }
}

/* ===== Services hero (Figma redesign) ===== */
.services-hero {
  position: relative;
  overflow: hidden;
}
.services-hero .hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .services-hero .hero__inner {
    grid-template-columns: 1.05fr 1fr;
  }
}
.services-hero .hero__content .eyebrow {
  margin-bottom: 1.25rem;
}
.services-hero .hero__content h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
}
.services-hero .hero__content p {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  color: var(--muted-foreground, #8a94a6);
  max-width: 46ch;
}
.services-hero .showroom-frame {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 3;
  padding: 18px;
}
.services-hero .showroom-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.55);
}
/* Cyan L-brackets around the image */
.services-hero .showroom-frame::before,
.services-hero .showroom-frame::after {
  content: "";
  position: absolute;
  width: 46%;
  height: 46%;
  border: 2px solid #00b7c3;
  pointer-events: none;
}
.services-hero .showroom-frame::before {
  top: -14px;
  right: -14px;
  border-left: 0;
  border-bottom: 0;
}
.services-hero .showroom-frame::after {
  bottom: -14px;
  left: -14px;
  border-right: 0;
  border-top: 0;
}
@media (max-width: 640px) {
  .services-hero .showroom-frame {
    max-width: 100%;
  }
  .services-hero .showroom-frame::before,
  .services-hero .showroom-frame::after {
    width: 38%;
    height: 38%;
  }
}

/* ============================================================
   Services Bento Grid (Figma tokens)
   ============================================================ */
.services-bento {
  --bento-cyan: #00e5ff;
}

.services-bento .bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.services-bento .bento-card--strategy {
  grid-column: span 7;
}
.services-bento .bento-card--assessment {
  grid-column: span 5;
}
.services-bento .bento-card--operations {
  grid-column: span 5;
}
.services-bento .bento-card--human {
  grid-column: span 7;
}
@media (max-width: 900px) {
  .services-bento .bento-grid {
    grid-template-columns: 1fr;
  }
  .services-bento .bento-card {
    grid-column: 1 / -1 !important;
  }
}

.services-bento .bento-card {
  position: relative;
  border-radius: 8px;
  border: 1px solid var(--primary);
  background: rgba(25, 31, 49, 0.4);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
.services-bento .bento-card--human {
  grid-template-columns: 1.4fr 0.85fr;
}
@media (max-width: 1100px) {
  .services-bento .bento-card--human {
    grid-template-columns: 1fr;
  }
}

.services-bento .bento-card__body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  justify-content: space-between;
}
@media (max-width: 640px) {
  .services-bento .bento-card__body {
    padding: 28px;
  }
}

.services-bento .bento-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: rgba(0, 229, 255, 0.1);
  color: var(--bento-cyan);
}
.services-bento .bento-card__icon .icon {
  width: 24px;
  height: 24px;
}

.services-bento .bento-card h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--bento-cyan) !important;
  background: none !important;
  -webkit-text-fill-color: var(--bento-cyan) !important;
  text-shadow: none !important;
}

.services-bento .bento-card__desc {
  margin: 0;
  color: #dcd8f0;
  opacity: 0.9;
  max-width: 44ch;
  line-height: 1.6;
}

.services-bento .bento-card__points {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem 1.5rem;
}
.services-bento .bento-card__points--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 560px) {
  .services-bento .bento-card__points--two {
    grid-template-columns: 1fr;
  }
}
.services-bento .bento-card__points li {
  position: relative;
  padding-left: 1.75rem;
  color: #dcd8f0;
  line-height: 1.45;
}
.services-bento .bento-card__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bento-cyan);
}
.services-bento .bento-card__points li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  width: 8px;
  height: 4px;
  border-left: 1.5px solid #0b1629;
  border-bottom: 1.5px solid #0b1629;
  transform: rotate(-45deg);
}

.services-bento .bento-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.25rem;
}
.services-bento .bento-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 229, 255, 0.25);
  background: rgba(11, 22, 41, 0.6);
  color: #dcd8f0;
  text-decoration: none;
  font-size: 0.95rem;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}
.services-bento .bento-chip .icon {
  width: 18px;
  height: 18px;
  color: var(--bento-cyan);
}
.services-bento .bento-chip:hover {
  border-color: var(--bento-cyan);
  background: rgba(0, 229, 255, 0.08);
  transform: translateY(-1px);
}

.services-bento .bento-card__cta {
  margin-top: 0.5rem;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--bento-cyan) !important;
  font-weight: 600;
  text-decoration: none;
}
.services-bento .bento-card__cta .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}
.services-bento .bento-card__cta:hover .icon {
  transform: translateX(4px);
}

.services-bento .bento-card__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}
.services-bento .bento-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.services-bento .bento-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 22, 41, 0.9) 0%, rgba(11, 22, 41, 0.2) 45%, transparent 100%),
    linear-gradient(180deg, rgba(0, 229, 255, 0.18), rgba(0, 229, 255, 0.04));
  mix-blend-mode: multiply;
}
@media (max-width: 1100px) {
  .services-bento .bento-card__media {
    display: none;
  }
}

/* ===== Services page: Vorgehensweise (Approach) ===== */
.services-page .approach-section {
  background: transparent;
  padding: 96px 0;
  position: relative;
}
.services-page .approach-section::before,
.services-page .approach-section::after {
  display: none !important;
}
.services-page .approach-header {
  text-align: center;
  margin-bottom: 72px;
}
.services-page .approach-header .eyebrow {
  color: #00e5ff;
  letter-spacing: 0.22em;
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 16px;
  display: block;
}
.services-page .approach-header h2 {
  color: #dcd8f0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  background: none;
  -webkit-text-fill-color: #dcd8f0;
}
.services-page .approach-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  align-items: start;
}
.services-page .approach-steps::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: #00e5ff;
  opacity: 0.6;
  z-index: 0;
}
.services-page .approach-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.services-page .approach-step__tile {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  background: #0b1629;
  border: 1.5px solid #00e5ff;
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.35);
  display: grid;
  place-items: center;
  color: #ffffff;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 22px;
  font-weight: 600;
}
.services-page .approach-step__label {
  color: #dcd8f0;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 780px) {
  .services-page .approach-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
  .services-page .approach-steps::before {
    display: none;
  }
}

/* ===== Services page: Final CTA card ===== */
.services-page .services-final-cta {
  padding: 80px 0 120px;
}
.services-page .services-final-cta__card {
  background: linear-gradient(135deg, #0b1b2a 0%, #0f2436 100%);
  border-radius: 16px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  box-shadow:
    0 0 60px rgba(0, 229, 255, 0.18),
    0 0 120px rgba(0, 229, 255, 0.08);
}
.services-page .services-final-cta__text h2 {
  color: #dcd8f0;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.2;
  background: none;
  -webkit-text-fill-color: #dcd8f0;
}
.services-page .services-final-cta__text h2 span {
  color: #00e5ff;
  -webkit-text-fill-color: #00e5ff;
}
.services-page .services-final-cta__text p {
  color: #dcd8f0;
  opacity: 0.85;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  max-width: 52ch;
}
.services-page .services-final-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #00e5ff;
  color: #0b1629 !important;
  font-weight: 600;
  font-size: 16px;
  padding: 20px 40px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow:
    0 0 32px rgba(0, 229, 255, 0.55),
    0 0 64px rgba(0, 229, 255, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  white-space: nowrap;
}
.services-page .services-final-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 40px rgba(0, 229, 255, 0.7),
    0 0 80px rgba(0, 229, 255, 0.35);
}
@media (max-width: 780px) {
  .services-page .services-final-cta__card {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 28px;
    text-align: left;
  }
  .services-page .services-final-cta__btn {
    justify-self: start;
    padding: 18px 32px;
  }
}

/* ---------- Subpage hero CTA ---------- */
.subpage-hero .hero-cta {
  margin-top: 1.5rem;
}
.subpage-hero .hero-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ---------- Zoom / overflow safety ---------- */
html {
  -webkit-text-size-adjust: 100%;
}
body {
  overflow-x: clip;
}

/* ========================================================
   Density & large-screen adjustments
   - Tighten vertical rhythm site-wide
   - Better use of horizontal space on wide viewports
   ======================================================== */

/* Section rhythm: reduce vertical whitespace */
.section {
  padding: clamp(2rem, 5vw, 4rem) 0;
}
@media (min-width: 768px) {
  .section {
    padding: clamp(3rem, 6vw, 6rem) 0;
  }
}

/* Subpage hero: tighter and wider on large screens */
.subpage-hero {
  padding: clamp(6rem, 10vw, 8rem) 0 clamp(2rem, 4vw, 3.5rem);
}
.subpage-hero .container {
  max-width: min(1120px, 92%);
}
.subpage-hero p {
  max-width: min(78ch, 100%);
}

/* Homepage hero: reclaim horizontal space on wide screens */
@media (min-width: 1400px) {
  .hero__inner {
    margin: 0 auto;
    max-width: 1360px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .hero__content {
    max-width: min(880px, 62%);
  }
}
@media (min-width: 1800px) {
  .hero__inner {
    max-width: 1520px;
  }
  .hero__content {
    max-width: 900px;
  }
}

/* Text blocks & lead paragraphs: adapt to viewport, cap by characters */
.text-block {
  max-width: min(72ch, 100%);
}
.benefit-block__text {
  max-width: min(70ch, 100%);
}
.cta-strip p {
  max-width: min(68ch, 92%);
}

/* CTA / final CTA: tighter vertical padding */
.cta-strip {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 4.5rem);
}
.final-cta__inner {
  padding: clamp(4rem, 8vw, 6rem) 1.5rem;
}
@media (min-width: 768px) {
  .final-cta__inner {
    padding: clamp(5rem, 9vw, 7rem) 1.5rem;
  }
}

/* Partner hero */
.partner-hero {
  padding: clamp(5rem, 8vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 768px) {
  .partner-hero {
    padding: clamp(6rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  }
}

/* Minimal page */
.minimal-page {
  padding: clamp(5rem, 8vw, 7rem) 1.5rem clamp(3rem, 6vw, 5rem);
}
@media (min-width: 768px) {
  .minimal-page {
    padding: clamp(6rem, 10vw, 8rem) 1.5rem clamp(4rem, 7vw, 6rem);
  }
}

/* Wider container on very large screens for better balance */
@media (min-width: 1600px) {
  .container {
    max-width: 1360px;
  }
}

/* Showroom final IT-SA CTA button adjustments */
.showroom-final-cta .btn-primary {
  border: 2px solid #000000;
}

.showroom-final-cta .btn-primary,
.showroom-final-cta .btn-primary:hover,
.showroom-final-cta .btn-primary:focus {
  color: #000000 !important;
}

/* Cookie consent banner */
.cookie-overlay {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 9999;
  max-width: 420px;
  width: calc(100vw - 2.5rem);
  background: rgba(10, 15, 28, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.5rem 1.5rem 1.75rem;
  display: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  color: var(--foreground, #e6eef7);
  text-align: center;
}
.cookie-overlay.d-block {
  display: block;
}
.cookie-overlay .cookie-row {
  display: block;
  font-size: 0.95rem;
  line-height: 1.5;
}
.cookie-overlay a {
  color: var(--primary, #00b7c3);
  text-decoration: underline;
}
.cookie-overlay .close-cookies {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: transparent;
  border: none;
  color: var(--foreground, #e6eef7);
  cursor: pointer;
  font-size: 1.25rem;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  opacity: 0.75;
}
.cookie-overlay .close-cookies:hover {
  opacity: 1;
}
.cookie-overlay .cookie-actions {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 1.25rem auto 0;
}
.cookie-overlay .accept-cookies {
  cursor: pointer;
  background: var(--primary, #00b7c3);
  color: #001318;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 2.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
  box-shadow: 0 8px 24px -8px color-mix(in oklab, var(--primary, #00b7c3) 60%, transparent);
}
.cookie-overlay .accept-cookies:hover {
  transform: translateY(-1px);
  background: color-mix(in oklab, var(--primary, #00b7c3) 90%, white);
}
@media (max-width: 768px) {
  .cookie-overlay {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: auto;
    max-width: none;
    padding: 1.25rem;
    border-radius: 16px;
  }
  .cookie-overlay .cookie-row {
    font-size: 0.95rem;
  }
  .cookie-overlay .accept-cookies {
    width: 100%;
    padding: 0.75rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .cookie-overlay {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    padding: 1.1rem;
    border-radius: 14px;
  }
  .cookie-overlay .cookie-row {
    font-size: 0.9rem;
  }
}

/* ========================================================
   Mobile polish: wider content, less wasted horizontal space
   ======================================================== */
@media (max-width: 768px) {
  .container,
  .site-header__inner,
  .site-footer__inner,
  .hero__inner,
  .subpage-hero .container,
  .partner-hero__container,
  .final-cta__inner,
  .minimal-page__inner,
  .contact-grid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero__inner {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .card {
    padding: 1.5rem;
  }

  .card--centered {
    padding: 1.25rem 1rem;
  }

  .values__grid {
    gap: 1rem;
  }

  .values__title {
    font-size: 1.25rem;
  }

  .values__desc br {
    display: none;
  }
}

@media (max-width: 480px) {
  .container,
  .site-header__inner,
  .site-footer__inner,
  .hero__inner,
  .subpage-hero .container,
  .partner-hero__container,
  .final-cta__inner,
  .minimal-page__inner,
  .contact-grid {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .hero__inner {
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
  }

  .card {
    padding: 1.25rem;
  }

  .card h3 {
    font-size: 1.25rem;
  }

  .card__desc {
    font-size: 0.95rem;
  }

  .section-head h2 {
    font-size: 1.75rem;
  }

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

  .hero__actions .btn-primary,
  .hero__actions .btn-ghost {
    justify-content: center;
  }
}

/* ---- Kontakt form feedback ---- */
.message-popup.visible {
  visibility: visible;
  z-index: 1000;
}

.message-popup.bg-green {
  background: #0f9d76;
}

.contact-form input.invalid,
.contact-form textarea.invalid {
  border-color: #ff6c6c;
  box-shadow: 0 0 0 2px rgba(255, 108, 108, 0.18);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.form-consent input[type='checkbox'] {
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  accent-color: var(--primary, #00b7c3);
  flex: 0 0 auto;
}

.form-consent label {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #bcd1d4;
}

.form-consent label a {
  color: var(--primary, #00b7c3);
  text-decoration: underline;
}

.contact-form button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
