/* ============================================================
   CREO — Global CSS
   Variables, Reset y Estilos Base
   ============================================================ */

/* ─── FONTS ─────────────────────────────────────────────────── */
@font-face {
  font-family: 'Montecatini';
  src: url('/assets/fonts/montecatini-pro-ampio-ultra.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Google Fonts — Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap');

:root {
  /* ─── COLORES ──────────────────────────────────────────── */
  --creo-dark-blue: #08102A;
  --creo-navy: #0b173d;
  --creo-dark: var(--creo-dark-blue);
  --creo-accent: #FF6A00;
  --creo-accent-hover: #e05e00;
  --creo-accent-glow: rgba(255, 106, 0, 0.25);
  --creo-light: #efe5cf;
  --creo-mid: #d8cfb8;
  --creo-text: #0b173d;
  --creo-muted: #5c5c5c;
  --creo-white: #FFFFFF;
  --creo-success: #22C55E;
  --creo-error: #EF4444;
  --creo-card-bg: #f8f4ed;

  /* ─── TIPOGRAFÍA ───────────────────────────────────────── */
  --font-display: 'Montecatini', system-ui, serif;
  --font-body: 'Roboto', system-ui, Arial, sans-serif;

  /* ─── ESPACIADO ────────────────────────────────────────── */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-8: 64px;
  --space-12: 96px;
  --space-15: 120px;

  /* ─── BORDES ───────────────────────────────────────────── */
  --radius-btn: 10px;
  --radius-container: 18px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --border-light: 1px solid var(--creo-mid);

  /* ─── SOMBRAS ──────────────────────────────────────────── */
  --shadow-sm: 0 1px 3px rgba(11, 23, 61, 0.08);
  --shadow-md: 0 4px 16px rgba(11, 23, 61, 0.10);
  --shadow-lg: 0 8px 40px rgba(11, 23, 61, 0.14);
  --shadow-accent: 0 4px 24px rgba(255, 106, 0, 0.35);
  --shadow-xl: 0 20px 60px rgba(11, 23, 61, 0.18);

  /* ─── TRANSICIONES ─────────────────────────────────────── */
  --transition-base: all 0.2s ease;
  --transition-slow: all 0.35s ease;

  /* ─── LAYOUT ───────────────────────────────────────────── */
  --container-max: 1280px;
  --header-h: 80px;
}

/* ─── RESET ────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--creo-text);
  background: var(--creo-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

input,
textarea,
select {
  font-family: var(--font-body);
}

/* ─── TIPOGRAFÍA BASE ──────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ─── REDUCE MOTION ────────────────────────────────────────── */
/* @media (prefers-reduced-motion: reduce) fue removido para prevenir 
   que sistemas con ahorro de energía aceleren las animaciones a 0.01ms */
/* ─── UTILIDADES GLOBALES ───────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 8px 16px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--creo-accent);
  color: var(--creo-white);
  border-radius: var(--radius-md);
  z-index: 9999;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

/* ─── SECCIONES ─────────────────────────────────────────────── */
.section-dark {
  background: var(--creo-dark);
  color: var(--creo-white);
}

.section-light {
  background: var(--creo-light);
  color: var(--creo-text);
}

.section-white {
  background: var(--creo-white);
  color: var(--creo-text);
}

.section-card {
  background: var(--creo-card-bg);
  color: var(--creo-text);
}

/* ─── ANIMACIONES SCROLL ────────────────────────────────────── */
/* By default, elements are visible. We only hide them if JS is enabled 
   (class added via JS at the top of the body/html) to avoid content being
   permanently hidden if JS fails or is disabled. */
.js-enabled [data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.js-enabled [data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="1"] {
  transition-delay: 0.1s;
}

[data-animate-delay="2"] {
  transition-delay: 0.2s;
}

[data-animate-delay="3"] {
  transition-delay: 0.3s;
}

[data-animate-delay="4"] {
  transition-delay: 0.4s;
}

[data-animate-delay="5"] {
  transition-delay: 0.5s;
}

[data-animate="fade-left"] {
  transform: translateX(-32px);
}

[data-animate="fade-right"] {
  transform: translateX(32px);
}

[data-animate="scale-up"] {
  transform: scale(0.93);
}

[data-animate="fade-left"].animate-in,
[data-animate="fade-right"].animate-in,
[data-animate="scale-up"].animate-in {
  transform: translateX(0) scale(1);
}

/* ─── GRADIENTES DE MARCA ────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--creo-accent), #ff9a4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-accent {
  background: linear-gradient(135deg, var(--creo-accent) 0%, #e05e00 100%);
}

/* ─── PROBLEM SECTION ─────────────────────────────────────────── */
.band {
  background: var(--creo-dark);
  overflow: hidden;
}

.band-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
  padding: 15px 0;
}

.band-track span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--creo-light);
  padding: 0 36px;
  white-space: nowrap;
}

.band-track span.sep {
  color: var(--creo-accent);
  padding: 0 4px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.problem-section {
  position: relative;
  padding: 100px 60px 130px;
  background: var(--creo-light);
  overflow: hidden;
}

.problem-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 23, 61, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 23, 61, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.problem-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 65% at 50% 38%, transparent 30%, var(--creo-light) 100%);
  pointer-events: none;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(11, 23, 61, 0.2);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.7);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--creo-accent);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}

.badge span {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--creo-dark);
}

.headline {
  font-size: clamp(44px, 7.5vw, 90px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--font-display);
}

.word-strike {
  position: relative;
  display: inline-block;
  color: rgba(11, 23, 61, 0.25);
}

.word-strike::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  height: 5px;
  background: var(--creo-dark);
  border-radius: 2px;
  transform-origin: left center;
  animation: strikeLoop 4s ease-in-out infinite 1s;
}

@keyframes strikeLoop {
  0% {
    transform: scaleX(0);
    opacity: 0;
    transform-origin: left center;
  }

  20% {
    transform: scaleX(1);
    opacity: 1;
  }

  70% {
    transform: scaleX(1);
    opacity: 1;
  }

  85% {
    transform: scaleX(0);
    opacity: 0;
    transform-origin: right center;
  }

  100% {
    transform: scaleX(0);
    opacity: 0;
    transform-origin: left center;
  }
}

.headline-line2 {
  display: block;
}

.word-trust {
  display: inline-block;
  color: var(--creo-accent);
  font-weight: 900;
  animation: trustPulse 4s ease-in-out infinite 1.5s;
}

@keyframes trustPulse {

  0%,
  100% {
    letter-spacing: -0.04em;
    text-shadow: none;
  }

  40%,
  60% {
    letter-spacing: 0.01em;
    text-shadow: 0 0 48px rgba(255, 106, 0, 0.4);
  }
}

.word-dot {
  color: var(--creo-accent);
}

.subtext {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(11, 23, 61, 0.35);
  margin-bottom: 64px;
  font-family: var(--font-body);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
}

.problem-card {
  background: var(--creo-light);
  border: 1.5px solid rgba(11, 23, 61, 0.1);
  border-radius: 18px;
  padding: 40px 34px 52px;
  text-align: left;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform var(--transition-slow),
    opacity var(--transition-slow),
    box-shadow 0.4s,
    border-color 0.3s;
}

.problem-card:nth-child(1),
.problem-card:nth-child(3) {
  background: #f5efe3;
}

.problem-card:nth-child(2) {
  background: var(--creo-dark);
  border-color: var(--creo-accent);
  box-shadow: 0 0 0 1px var(--creo-accent), 0 28px 64px rgba(11, 23, 61, 0.22);
}

.problem-card::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 117, 31, 0.18) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.problem-card:nth-child(2)::before {
  opacity: 1;
}

.problem-card.floating-1 {
  animation: float1 6s ease-in-out infinite !important;
}

.problem-card.floating-2 {
  animation: float2 6s ease-in-out infinite 0.4s !important;
}

.problem-card.floating-3 {
  animation: float3 6s ease-in-out infinite 0.8s !important;
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 1px var(--creo-accent), 0 28px 64px rgba(11, 23, 61, 0.22);
  }

  50% {
    transform: translateY(-9px);
    box-shadow: 0 0 0 1px var(--creo-accent), 0 40px 80px rgba(11, 23, 61, 0.3);
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.spotlight {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 117, 31, 0.15) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.problem-card:nth-child(2) .spotlight {
  background: radial-gradient(circle, rgba(255, 117, 31, 0.28) 0%, transparent 70%);
}

.border-sweep {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--creo-accent), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.corner-glow {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 117, 31, 0.2) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.problem-card.is-hovered {
  border-color: rgba(255, 117, 31, 0.5);
}

.problem-card:nth-child(2).is-hovered {
  border-color: var(--creo-accent);
}

.problem-card.is-hovered .spotlight,
.problem-card.is-hovered .border-sweep,
.problem-card.is-hovered .corner-glow {
  opacity: 1;
}

.problem-card.is-hovered .corner-glow {
  transform: scale(1);
}

.problem-card.is-hovered .icon-box {
  transform: scale(1.12) rotate(-6deg);
  background: rgba(255, 117, 31, 0.12);
  border-color: rgba(255, 117, 31, 0.5);
}

.problem-card.is-hovered .icon-box svg {
  stroke: var(--creo-accent) !important;
}

.problem-card.is-hovered .card-title {
  letter-spacing: 0.19em;
}

.problem-card:nth-child(2).is-hovered .card-title {
  letter-spacing: 0.19em;
  color: #fff;
}

.problem-card.is-hovered .card-num {
  opacity: 0.12;
  transform: scale(1.06) translateY(-4px);
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 1.5px solid rgba(11, 23, 61, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  background: rgba(255, 255, 255, 0.7);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s, border-color 0.3s;
}

.problem-card:nth-child(2) .icon-box {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 117, 31, 0.35);
}

.problem-card:nth-child(1) .icon-box,
.problem-card:nth-child(3) .icon-box {
  background: rgba(255, 255, 255, 0.55);
}

.icon-box svg {
  width: 22px;
  height: 22px;
  transition: stroke 0.3s;
  stroke: var(--creo-dark);
}

.card-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--creo-dark);
  margin-bottom: 16px;
  transition: letter-spacing 0.3s ease, color 0.3s;
  font-family: var(--font-body);
}

.problem-card:nth-child(2) .card-title {
  color: #fff;
}

.card-body {
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(11, 23, 61, 0.58);
  font-family: var(--font-body);
}

.problem-card:nth-child(2) .card-body {
  color: rgba(239, 229, 207, 0.65);
}

.card-num {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 96px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--creo-dark);
  opacity: 0.08;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  font-family: var(--font-display);
}

.problem-card:nth-child(2) .card-num {
  color: #fff;
  opacity: 0.06;
}

.problem-card:nth-child(1) .card-num,
.problem-card:nth-child(3) .card-num {
  color: var(--creo-dark);
  opacity: 0.06;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

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

@media (max-width: 860px) {
  .problem-section {
    padding: 72px 24px 90px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
}

/* ─── APPROACH SECTION ─────────────────────────────────────────── */
.approach-section {
  position: relative;
  padding: 110px 64px 140px;
  background: var(--creo-light);
  overflow: hidden;
}

.stripes {
  position: absolute;
  inset: 0;
  display: flex;
  pointer-events: none;
  z-index: 0;
}

.stripe {
  flex: 1;
  border-right: 1px solid rgba(11, 23, 61, 0.07);
}

.stripe:last-child {
  border-right: none;
}

.approach-section .section-inner {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
}

.left-col {
  text-align: left;
}

.approach-section .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(11, 23, 61, 0.2);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.7);
  text-align: left;
}

.approach-section .badge span {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--creo-dark);
  text-align: left;
}

.approach-section .headline {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  text-transform: uppercase;
  color: var(--creo-dark);
  font-family: var(--font-display);
  text-align: left;
}

.approach-section .headline .highlight {
  font-style: italic;
  color: var(--creo-dark);
}

.not-word {
  position: relative;
  display: inline-block;
  color: var(--creo-accent);
}

.approach-section .right-col {
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
  gap: 16px;
}

.approach-section .subtext {
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(11, 23, 61, 0.62);
  max-width: 400px;
  text-align: right;
  font-family: var(--font-body);
  text-transform: lowercase;
  letter-spacing: 0;
  margin: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--creo-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 100px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  font-family: var(--font-body);
}

.cta-btn:hover {
  background: var(--creo-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 106, 0, 0.35);
}

.cta-btn svg {
  transition: transform 0.25s;
}

.cta-btn:hover svg {
  transform: translateX(4px);
}

.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: end;
}

.approach-card {
  background: var(--creo-light);
  border: 1.5px solid rgba(11, 23, 61, 0.1);
  border-radius: 20px;
  padding: 40px 32px 44px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform var(--transition-slow),
    opacity var(--transition-slow),
    background 0.45s ease,
    border-color 0.35s ease,
    box-shadow 0.4s ease;
}

.approach-card:nth-child(1),
.approach-card:nth-child(2),
.approach-card:nth-child(3) {
  min-height: 340px;
}

.approach-card.hovered {
  background: var(--creo-dark);
  border-color: transparent;
  box-shadow:
    0 0 0 1.5px rgba(255, 106, 0, 0.6),
    0 0 30px 6px rgba(255, 106, 0, 0.25),
    0 0 80px 16px rgba(255, 106, 0, 0.12),
    0 32px 64px rgba(11, 23, 61, 0.35);
}

.approach-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg,
      rgba(255, 106, 0, 0.5) 0%,
      rgba(255, 106, 0, 0.3) 40%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.approach-card.hovered::before {
  opacity: 1;
}

.card-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.approach-card.hovered .card-glow {
  opacity: 1;
}

.card-fill {
  position: absolute;
  inset: 0;
  background: var(--creo-dark);
  border-radius: 20px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 0;
}

.approach-card.hovered .card-fill {
  transform: translateY(0);
}

.approach-card .card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
}

.approach-card .card-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--creo-accent);
  display: block;
  transition: color 0.3s;
  font-family: var(--font-body);
}

.approach-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1.5px solid rgba(11, 23, 61, 0.13);
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  transition: background 0.35s, border-color 0.35s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.approach-card .card-icon svg {
  width: 20px;
  height: 20px;
  transition: stroke 0.3s;
  stroke: var(--creo-dark);
}

.approach-card.hovered .card-icon {
  background: rgba(255, 106, 0, 0.18);
  border-color: rgba(255, 106, 0, 0.4);
  transform: rotate(-6deg) scale(1.08);
}

.approach-card.hovered .card-icon svg {
  stroke: var(--creo-accent);
}

.card-bottom-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-top: 28px;
}

.card-left {
  width: 100%;
  text-align: left;
}

.approach-card .card-title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--creo-dark);
  transition: color 0.3s;
  font-family: var(--font-body);
  text-align: left;
  margin-bottom: 8px;
}

.approach-card.hovered .card-title {
  color: #fff;
}

.approach-card .card-tagline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--creo-accent);
  display: block;
  transition: color 0.3s;
  font-family: var(--font-body);
  text-align: left;
}

.approach-card.hovered .card-tagline {
  color: #ffb88c;
}

.approach-card .card-body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(11, 23, 61, 0.55);
  transition: color 0.3s;
  font-family: var(--font-body);
  text-align: left;
  text-transform: lowercase;
  margin-top: 14px;
}

.approach-card.hovered .card-body {
  color: rgba(239, 229, 207, 0.65);
}

.card-watermark {
  position: absolute;
  bottom: 8px;
  right: 18px;
  font-size: 100px;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--creo-dark);
  opacity: 0.04;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  transition: opacity 0.3s, color 0.3s;
  z-index: 1;
  font-family: var(--font-display);
}

.approach-card.hovered .card-watermark {
  color: #fff;
  opacity: 0.06;
}

@media (max-width: 900px) {
  .approach-section {
    padding: 72px 24px 90px;
  }

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

  .cards-row {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .approach-card:nth-child(2) {
    margin-top: 0;
  }
}

/* ─── SERVICES SECTION ─────────────────────────────────────────── */
.services-section {
  position: relative;
  padding: 100px 48px 120px;
  background: var(--creo-light);
  overflow: hidden;
}

.services-section .stripes {
  position: absolute;
  inset: 0;
  display: flex;
  pointer-events: none;
  z-index: 0;
}

.services-section .stripe {
  flex: 1;
  border-right: 1px solid rgba(11, 23, 61, 0.055);
}

.services-section .stripe:last-child {
  border-right: none;
}

.services-section .section-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-section .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(11, 23, 61, 0.2);
  border-radius: 100px;
  padding: 7px 20px;
  margin-bottom: 24px;
  background: rgba(239, 229, 207, 0.8);
}

.services-section .badge span {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--creo-dark);
  font-family: var(--font-body);
}

.services-section .headline {
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  text-transform: uppercase;
  text-align: center;
  color: var(--creo-dark);
  margin-bottom: 18px;
  font-family: var(--font-display);
}

.services-section .headline em {
  font-style: italic;
  color: var(--creo-accent);
}

.services-section .subtext {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(11, 23, 61, 0.5);
  text-align: center;
  max-width: 500px;
  margin-bottom: 52px;
  font-family: var(--font-body);
}

.app-window {
  width: 100%;
  background: #FAF6EE;
  border: 1.5px solid rgba(11, 23, 61, 0.11);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.8) inset, 0 32px 80px rgba(11, 23, 61, 0.11), 0 8px 24px rgba(11, 23, 61, 0.05);
}

.titlebar {
  display: flex;
  align-items: center;
  background: var(--creo-light);
  border-bottom: 1.5px solid rgba(11, 23, 61, 0.11);
  padding: 0 20px;
  height: 44px;
  position: relative;
}

.traffic-lights {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 20px;
}

.tl {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.tl-red {
  background: #FF5F57;
}

.tl-yellow {
  background: #FEBC2E;
}

.tl-green {
  background: #28C840;
}

.win-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(11, 23, 61, 0.38);
  text-transform: uppercase;
  font-family: var(--font-body);
}

.tabbar {
  display: flex;
  align-items: flex-end;
  background: var(--creo-light);
  border-bottom: 1.5px solid rgba(11, 23, 61, 0.11);
  padding: 0 24px;
  gap: 4px;
}

.tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(11, 23, 61, 0.42);
  border-radius: 9px 9px 0 0;
  cursor: pointer;
  border: 1.5px solid transparent;
  border-bottom: none;
  margin-bottom: -1.5px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  user-select: none;
  font-family: var(--font-body);
}

.tab:hover {
  color: var(--creo-dark);
  background: rgba(11, 23, 61, 0.04);
}

.tab.active {
  background: #FAF6EE;
  color: var(--creo-dark);
  border-color: rgba(11, 23, 61, 0.11);
  font-weight: 700;
}

.tab-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(11, 23, 61, 0.18);
  flex-shrink: 0;
  transition: background 0.2s;
}

.tab.active .tab-dot {
  background: var(--creo-accent);
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  min-height: 480px;
}

.panel-left {
  padding: 40px 44px 44px;
  border-right: 1.5px solid rgba(11, 23, 61, 0.11);
  display: flex;
  flex-direction: column;
}

.services-section .service-panel {
  display: none;
}

.services-section .service-panel.active {
  display: contents;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }

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

.panel-animate {
  animation: panelIn 0.3s ease both;
}

.panel-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(11, 23, 61, 0.32);
  margin-bottom: 10px;
  font-family: var(--font-body);
  text-align: left;
}

.panel-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--creo-dark);
  margin-bottom: 14px;
  font-family: var(--font-display);
  text-align: left;
}

.panel-title em {
  font-style: italic;
  color: var(--creo-accent);
}

.panel-body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(11, 23, 61, 0.55);
  max-width: 480px;
  margin-bottom: 26px;
  font-family: var(--font-body);
  text-align: left;
  text-transform: lowercase;
}

.stages-label {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(11, 23, 61, 0.3);
  margin-bottom: 12px;
  font-family: var(--font-body);
  text-align: left;
}

.stages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.stage-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--creo-light);
  border: 1.5px solid rgba(11, 23, 61, 0.12);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--creo-dark);
  letter-spacing: 0.02em;
  transition: background 0.2s, border-color 0.2s;
  font-family: var(--font-body);
  text-align: left;
}

.stage-pill:hover {
  background: rgba(255, 117, 31, 0.1);
  border-color: var(--creo-accent);
}

.stage-num {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--creo-accent);
  min-width: 16px;
}

.media-block {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid rgba(11, 23, 61, 0.11);
  background: var(--creo-light);
  aspect-ratio: 16/7;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 28px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.media-block:hover {
  border-color: rgba(255, 117, 31, 0.4);
  box-shadow: 0 8px 24px rgba(11, 23, 61, 0.08);
}

.media-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.4;
}

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

.media-inner span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--creo-dark);
  font-family: var(--font-body);
}

.media-block::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1.5px dashed rgba(11, 23, 61, 0.18);
  border-radius: 8px;
  pointer-events: none;
}

.panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--creo-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 8px;
  width: fit-content;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  font-family: var(--font-body);
}

.panel-cta:hover {
  background: var(--creo-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.3);
}

.panel-cta svg {
  transition: transform 0.2s;
  width: 16px;
  height: 16px;
}

.panel-cta:hover svg {
  transform: translateX(4px);
}

.panel-right {
  padding: 32px 28px;
  background: rgba(239, 229, 207, 0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.right-label {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(11, 23, 61, 0.3);
  margin-bottom: 20px;
  font-family: var(--font-body);
  text-align: left;
}

.services-section .process-list {
  display: none;
  flex-direction: column;
  width: 100%;
}

.services-section .process-list.active {
  display: flex;
  animation: panelIn 0.3s ease both;
}

.process-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(11, 23, 61, 0.07);
  transition: background 0.2s;
  align-items: flex-start;
}

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

.process-item:hover {
  opacity: 0.85;
}

.p-num {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--creo-accent);
  min-width: 22px;
  flex-shrink: 0;
}

.p-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--creo-dark);
  margin-bottom: 4px;
  font-family: var(--font-body);
  text-align: left;
}

.p-desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(11, 23, 61, 0.5);
  font-family: var(--font-body);
  text-align: left;
}

.statusbar {
  border-top: 1.5px solid rgba(11, 23, 61, 0.11);
  background: var(--creo-light);
  padding: 7px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.status-item {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(11, 23, 61, 0.35);
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
}

.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #28C840;
}

@media (max-width: 860px) {
  .services-section {
    padding: 72px 16px 90px;
  }

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

  .panel-left {
    border-right: none;
    border-bottom: 1.5px solid rgba(11, 23, 61, 0.11);
  }

  .panel-right {
    padding: 24px 20px;
  }
}

/* ─── IMPACT / ROI SECTION ─────────────────────────────────────── */
.impact-section {
  position: relative;
  padding: 110px 64px 130px;
  background: var(--creo-light);
  overflow: hidden;
}

.impact-section .stripes {
  position: absolute;
  inset: 0;
  display: flex;
  pointer-events: none;
  z-index: 0;
}

.impact-section .stripe {
  flex: 1;
  border-right: 1px solid rgba(11, 23, 61, 0.055);
}

.impact-section .stripe:last-child {
  border-right: none;
}

.impact-section .section-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.impact-section .top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.impact-section .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(11, 23, 61, 0.2);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.7);
  text-align: left;
}

.impact-section .badge span {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--creo-dark);
  font-family: var(--font-body);
}

.impact-section .headline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--creo-dark);
  font-family: var(--font-display);
  text-align: left;
}

.impact-section .headline em {
  font-style: italic;
  color: var(--creo-accent);
}

.impact-section .headline .strike {
  position: relative;
  color: rgba(11, 23, 61, 0.28);
}

.impact-section .headline .strike::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  height: 4px;
  background: var(--creo-dark);
  border-radius: 2px;
}

.impact-section .right-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  text-align: right;
  padding-left: 90px;
}

.impact-section .subtext {
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(11, 23, 61, 0.5);
  font-family: var(--font-body);
  text-transform: lowercase;
  letter-spacing: 0;
  margin: 0;
}

.impact-section .subtext strong {
  color: var(--creo-dark);
  font-weight: 700;
  text-transform: lowercase;
}

.impact-section .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--creo-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 100px;
  width: fit-content;
  margin-top: 20px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  font-family: var(--font-body);
}

.impact-section .cta-btn:hover {
  background: var(--creo-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 106, 0, 0.3);
}

.impact-section .cta-btn svg {
  transition: transform 0.2s;
}

.impact-section .cta-btn:hover svg {
  transform: translateX(4px);
}

/* ─── BENTO GRID ── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.b-card {
  background: #EDE3CB;
  border: 1.5px solid rgba(11, 23, 61, 0.08);
  border-radius: 20px;
  padding: 32px 28px 36px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.b-card:hover {
  border-color: rgba(255, 117, 31, 0.35);
  box-shadow: 0 20px 52px rgba(11, 23, 61, 0.11);
  transform: translateY(-5px);
}

.b-fill {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: var(--creo-dark);
  transform: translateY(101%);
  transition: transform 0.52s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 0;
}

.b-card:hover .b-fill {
  transform: translateY(0);
}

.b-card>*:not(.b-fill) {
  position: relative;
  z-index: 1;
}

.b1 {
  grid-column: span 5;
  background: var(--creo-dark);
  border-color: transparent;
  padding-left: 60px;
}

.b1:hover {
  border-color: rgba(255, 117, 31, 0.5);
}

.b1 .b-fill {
  background: #0d1f4a;
}

.b2 {
  grid-column: span 4;
}

.b3 {
  grid-column: span 3;
}

.b4 {
  grid-column: span 3;
}

.b5 {
  grid-column: span 3;
}

.b6 {
  grid-column: span 3;
}

.b7 {
  grid-column: span 3;
  background: var(--creo-accent);
  border-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.b1-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(239, 229, 207, 0.4);
  margin-bottom: 20px;
  display: block;
  font-family: var(--font-body);
}

.b1-title {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
  font-family: var(--font-display);
  text-align: left;
}

.b1-body {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(239, 229, 207, 0.55);
  font-family: var(--font-body);
  text-align: left;
}

.b1-title em {
  color: var(--creo-accent);
  font-style: italic;
}

.b1-body {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(239, 229, 207, 0.55);
  font-family: var(--font-body);
  text-align: left;
  padding-left: 20px;
}

.b1-icon {
  position: absolute;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 117, 31, 0.15);
  border: 1.5px solid rgba(255, 117, 31, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 117, 31, 0);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 8px rgba(255, 117, 31, 0.1);
  }
}

.stat-source {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(11, 23, 61, 0.3);
  background: rgba(11, 23, 61, 0.06);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 16px;
  transition: color 0.3s, background 0.3s;
  font-family: var(--font-body);
}

.b-card:hover .stat-source {
  color: rgba(239, 229, 207, 0.4);
  background: rgba(255, 255, 255, 0.07);
}

.stat-num {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--creo-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 2px;
  transition: color 0.3s;
  font-family: var(--font-display);
}

.b-card:hover .stat-num {
  color: #fff;
}

.stat-num .prefix {
  font-size: 0.42em;
  font-weight: 800;
  margin-top: 8px;
}

.stat-num .suffix {
  font-size: 0.44em;
  font-weight: 800;
  color: var(--creo-accent);
  margin-top: 6px;
}

.b-card:hover .stat-num .suffix {
  color: var(--creo-accent);
}

.stat-label {
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(11, 23, 61, 0.55);
  transition: color 0.3s;
  font-family: var(--font-body);
  text-align: left;
}

.b-card:hover .stat-label {
  color: rgba(239, 229, 207, 0.65);
}

.stat-label strong {
  font-weight: 700;
  color: var(--creo-dark);
  transition: color 0.3s;
}

.b-card:hover .stat-label strong {
  color: rgba(239, 229, 207, 0.9);
}

.b-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--creo-accent);
  transition: width 0.4s ease;
  z-index: 2;
  border-radius: 0 0 0 20px;
}

.b-card:hover::after {
  width: 100%;
}

.b1::after {
  width: 32px;
}

.b1:hover::after {
  width: 100%;
}

.b-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 1.5px solid rgba(11, 23, 61, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s, border-color 0.3s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.b-card:hover .b-icon {
  background: rgba(255, 117, 31, 0.15);
  border-color: rgba(255, 117, 31, 0.4);
  transform: rotate(-10deg) scale(1.1);
}

.b-icon svg {
  width: 20px;
  height: 20px;
  transition: stroke 0.3s;
  stroke: var(--creo-dark);
}

.b-card:hover .b-icon svg {
  stroke: var(--creo-accent) !important;
}

.b2 .b-icon svg {
  animation: spinY 4s ease-in-out infinite;
}

@keyframes spinY {

  0%,
  100% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(180deg);
  }
}

.b3 .b-icon svg {
  animation: exitBounce 3s ease-in-out infinite 0.5s;
}

@keyframes exitBounce {

  0%,
  70%,
  100% {
    transform: translateX(0);
  }

  40% {
    transform: translateX(5px);
  }

  55% {
    transform: translateX(-3px);
  }
}

.b4 .b-icon svg {
  animation: arrowRise 2.5s ease-in-out infinite 1s;
}

@keyframes arrowRise {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.b5 .b-icon svg {
  animation: eyeBlink 3.5s ease-in-out infinite 0.3s;
}

@keyframes eyeBlink {

  0%,
  40%,
  60%,
  100% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(0.1);
  }
}

.b6 .b-icon svg {
  animation: chartPop 3s ease-in-out infinite 0.8s;
}

@keyframes chartPop {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

.b7:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.b7 .b-fill {
  background: var(--creo-accent-hover);
}

.b7-question {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
  font-family: var(--font-display);
  text-align: left;
}

.b7-sub {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
  line-height: 1.5;
  font-family: var(--font-body);
  text-align: left;
}

.b7-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--creo-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 18px;
  border-radius: 100px;
  width: fit-content;
  margin-top: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: var(--font-body);
}

.b7-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.b7-btn svg {
  transition: transform 0.2s;
}

.b7-btn:hover svg {
  transform: translateX(4px);
}

.b7 .b-icon {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.b7:hover .b-icon {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: rotate(-10deg) scale(1.1);
}

.b7 .b-icon svg {
  stroke: #fff !important;
  animation: alarmShake 3s ease-in-out infinite 1.2s;
}

@keyframes alarmShake {

  0%,
  70%,
  100% {
    transform: rotate(0deg);
  }

  75% {
    transform: rotate(-12deg);
  }

  80% {
    transform: rotate(12deg);
  }

  85% {
    transform: rotate(-8deg);
  }

  90% {
    transform: rotate(8deg);
  }

  95% {
    transform: rotate(0deg);
  }
}

@media (max-width: 1024px) {
  .bento {
    grid-template-columns: repeat(6, 1fr);
  }

  .b1 {
    grid-column: span 6;
  }

  .b2,
  .b3 {
    grid-column: span 3;
  }

  .b4,
  .b5,
  .b6 {
    grid-column: span 2;
  }

  .b7 {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  .impact-section {
    padding: 72px 20px 90px;
  }

  .impact-section .top-row {
    grid-template-columns: 1fr;
  }

  .bento {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .b1,
  .b7 {
    grid-column: span 2;
  }

  .b2,
  .b3,
  .b4,
  .b5,
  .b6 {
    grid-column: span 1;
  }
}

/* ─── INDUSTRIES SECTION ──────────────────────────────────────── */
.industries-section {
  position: relative;
  padding: 110px 0 130px;
  background: var(--creo-light);
  overflow: hidden;
}

.industries-section .top-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 64px;
  position: relative;
  z-index: 1;
  margin-bottom: 56px;
}

.industries-section .top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.industries-section .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(11, 23, 61, 0.2);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.7);
  text-align: left;
}

.industries-section .badge span {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--creo-dark);
  font-family: var(--font-body);
}

.industries-section .headline {
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  text-transform: uppercase;
  color: var(--creo-dark);
  font-family: var(--font-display);
  text-align: left;
}

.industries-section .headline em {
  font-style: italic;
  color: var(--creo-accent);
}

.industries-section .right-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
  padding-left: 90px;
}

.industries-section .subtext {
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(11, 23, 61, 0.5);
  max-width: 400px;
  font-family: var(--font-body);
  text-transform: lowercase;
  letter-spacing: 0;
}

.scroll-hint {
  font-size: 12px;
  font-weight: 600;
  color: rgba(11, 23, 61, 0.35);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
}

.carousel-outer {
  position: relative;
  z-index: 1;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  cursor: grab;
  padding-bottom: 40px;
  scrollbar-width: none;
}

.carousel-outer::-webkit-scrollbar {
  display: none;
}

.carousel-outer:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 20px;
  padding: 0 64px;
  width: max-content;
}

/* ─── ATTRACTIVE IND CARD ── */
.ind-card {
  flex-shrink: 0;
  width: 380px;
  border-radius: 24px;
  overflow: visible;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ind-card:hover {
  transform: translateY(-12px) scale(1.02);
}

.card-inner {
  background: var(--creo-dark);
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 106, 0, 0.15);
  box-shadow: 0 8px 40px rgba(11, 23, 61, 0.12);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.ind-card:hover .card-inner {
  box-shadow: 0 24px 60px rgba(11, 23, 61, 0.25), 0 0 0 1px var(--creo-accent);
  border-color: var(--creo-accent);
}

.card-visual {
  height: 260px;
  position: relative;
  overflow: hidden;
}

.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
  filter: brightness(0.7) saturate(1.1);
}

.ind-card:hover .card-visual img {
  transform: scale(1.08);
  filter: brightness(0.75) saturate(1.2);
}

.card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.15) 0%, transparent 50%, rgba(11, 23, 61, 0.4) 100%);
  pointer-events: none;
}

.card-ind-num {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255, 106, 0, 0.25);
  line-height: 1;
  font-family: var(--font-display);
  transition: color 0.4s, transform 0.4s;
}

.ind-card:hover .card-ind-num {
  color: rgba(255, 106, 0, 0.4);
  transform: translateY(-4px);
}

.card-visual-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  background: rgba(255, 106, 0, 0.2);
  padding: 6px 12px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ind-card .card-body {
  padding: 32px 28px 36px;
  position: relative;
}

.card-industry {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--creo-accent);
  margin-bottom: 12px;
  display: inline-block;
  font-family: var(--font-body);
  background: rgba(255, 106, 0, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
}

.ind-card .card-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--creo-light);
  margin-bottom: 16px;
  font-family: var(--font-display);
  text-align: left;
}

.card-case {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(239, 229, 207, 0.6);
  margin-bottom: 24px;
  font-family: var(--font-body);
  text-align: left;
}

.card-case strong {
  font-weight: 700;
  color: var(--creo-light);
}

.card-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.svc-pill {
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255, 106, 0, 0.25);
  border-radius: 100px;
  color: var(--creo-accent);
  background: rgba(255, 106, 0, 0.08);
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.svc-pill:hover {
  background: var(--creo-accent);
  color: #fff;
  border-color: var(--creo-accent);
  transform: translateY(-2px);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--creo-light);
  text-decoration: none;
  padding: 12px 20px;
  background: rgba(255, 106, 0, 0.15);
  border-radius: 100px;
  border: 1.5px solid rgba(255, 106, 0, 0.3);
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.card-link:hover {
  background: var(--creo-accent);
  border-color: var(--creo-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.3);
}

.card-link:hover svg {
  transform: translateX(4px);
}

.card-link svg {
  transition: transform 0.3s ease;
}

/* Floating accent */
.card-accent {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
}

.ind-card:hover .card-accent {
  opacity: 1;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .industries-section .top-wrap {
    padding: 0 24px;
  }

  .industries-section .top-row {
    grid-template-columns: 1fr;
  }

  .industries-section .right-col {
    padding-left: 0;
  }

  .carousel-track {
    padding: 0 24px;
  }

  .ind-card {
    width: 320px;
  }

  .card-visual {
    height: 200px;
  }
}

.industries-section .top-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 64px;
  position: relative;
  z-index: 1;
  margin-bottom: 56px;
}

.industries-section .top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}

.industries-section .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(11, 23, 61, 0.2);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.7);
}

.industries-section .badge span {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--creo-dark);
  font-family: var(--font-body);
}

.industries-section .headline {
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  text-transform: uppercase;
  color: var(--creo-dark);
  font-family: var(--font-display);
  text-align: left;
}

.industries-section .headline em {
  font-style: italic;
  color: var(--creo-accent);
}

.industries-section .right-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
  padding-left: 90px;
}

.industries-section .subtext {
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(11, 23, 61, 0.5);
  max-width: 400px;
  font-family: var(--font-body);
  text-transform: lowercase;
  letter-spacing: 0;
}

.scroll-hint {
  font-size: 12px;
  font-weight: 600;
  color: rgba(11, 23, 61, 0.35);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
}

.carousel-outer {
  position: relative;
  z-index: 1;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  cursor: grab;
  padding-bottom: 20px;
  scrollbar-width: none;
}

.carousel-outer::-webkit-scrollbar {
  display: none;
}

.carousel-outer:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 16px;
  padding: 0 64px 4px;
  width: max-content;
}

.ind-card {
  flex-shrink: 0;
  width: 400px;
  border-radius: 22px;
  overflow: hidden;
  border: 1.5px solid rgba(11, 23, 61, 0.09);
  background: var(--creo-light);
  transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.3s;
  position: relative;
  scroll-snap-align: start;
}

.ind-card:hover {
  box-shadow: 0 24px 60px rgba(11, 23, 61, 0.13);
  transform: translateY(-6px);
  border-color: rgba(255, 117, 31, 0.25);
}

.card-visual {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.82);
}

.ind-card:hover .card-visual img {
  transform: scale(1.05);
}

.card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 23, 61, 0.1) 0%, rgba(11, 23, 61, 0.55) 100%);
  pointer-events: none;
}

.card-ind-num {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
}

.card-visual-label {
  position: absolute;
  bottom: 18px;
  left: 22px;
  z-index: 2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
}

.ind-card .card-body {
  padding: 28px 28px 32px;
}

.card-industry {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--creo-accent);
  margin-bottom: 10px;
  display: block;
  font-family: var(--font-body);
}

.ind-card .card-title {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--creo-dark);
  margin-bottom: 12px;
  font-family: var(--font-display);
  text-align: left;
}

.card-case {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(11, 23, 61, 0.55);
  margin-bottom: 22px;
  font-family: var(--font-body);
  text-align: left;
}

.card-case strong {
  font-weight: 700;
  color: var(--creo-dark);
}

.card-services {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
}

.svc-pill {
  padding: 5px 13px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid rgba(11, 23, 61, 0.15);
  border-radius: 100px;
  color: rgba(11, 23, 61, 0.55);
  background: transparent;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  font-family: var(--font-body);
}

.svc-pill:hover {
  border-color: var(--creo-accent);
  color: var(--creo-accent);
  background: rgba(255, 117, 31, 0.06);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--creo-dark);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1.5px solid rgba(11, 23, 61, 0.2);
  transition: color 0.2s, border-color 0.2s;
  font-family: var(--font-body);
}

.card-link:hover {
  color: var(--creo-accent);
  border-color: var(--creo-accent);
}

/* ─── EXPANDABLE CARDS ─────────────────────────────────────────── */
.expandable-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.expand-card {
  background: var(--creo-dark);
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 106, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.expand-card:hover {
  border-color: rgba(255, 106, 0, 0.4);
  box-shadow: 0 20px 60px rgba(11, 23, 61, 0.2);
  transform: translateY(-4px);
}

.expand-visual {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.expand-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(1.1);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.expand-card:hover .expand-visual img {
  transform: scale(1.08);
  filter: brightness(0.65) saturate(1.2);
}

.expand-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.2) 0%, transparent 50%, rgba(11, 23, 61, 0.5) 100%);
  pointer-events: none;
}

.expand-header {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.expand-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255, 106, 0, 0.3);
  line-height: 1;
  transition: color 0.4s, transform 0.4s;
}

.expand-card:hover .expand-num {
  color: rgba(255, 106, 0, 0.5);
  transform: translateY(-4px);
}

.expand-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 106, 0, 0.2);
  padding: 6px 12px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.expand-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 106, 0, 0.2);
  border: 1.5px solid rgba(255, 106, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--creo-accent);
  transition: all 0.4s ease;
}

.expand-card:hover .expand-icon {
  background: var(--creo-accent);
  color: #fff;
  transform: scale(1.1);
}

.expand-content {
  padding: 28px 32px 32px;
}

.expand-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.expand-industry {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--creo-accent);
}

.expand-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--creo-light);
  text-align: left;
}

.expand-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(239, 229, 207, 0.5);
  cursor: pointer;
  transition: color 0.3s;
  margin-top: 4px;
}

.expand-toggle svg {
  transition: transform 0.3s;
}

.expand-card:hover .expand-toggle {
  color: var(--creo-accent);
}

.expand-full {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 16px;
}

.expand-card.is-open .expand-full {
  display: flex;
}

.expand-card.is-open .expand-toggle svg {
  transform: rotate(180deg);
}

.expand-desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(239, 229, 207, 0.6);
  text-align: left;
}

.expand-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.expand-services .svc-pill {
  font-family: var(--font-body);
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255, 106, 0, 0.25);
  border-radius: 100px;
  color: var(--creo-accent);
  background: rgba(255, 106, 0, 0.08);
  transition: all 0.3s ease;
}

.expand-services .svc-pill:hover {
  background: var(--creo-accent);
  color: #fff;
}

.expand-stats {
  display: flex;
  gap: 24px;
}

.expand-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.expand-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--creo-accent);
}

.expand-stat-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  color: rgba(239, 229, 207, 0.5);
  line-height: 1.4;
}

.expand-cta {
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 106, 0, 0.15);
  border: 1.5px solid rgba(255, 106, 0, 0.3);
  border-radius: 100px;
  padding: 12px 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--creo-light);
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.expand-cta:hover {
  background: var(--creo-accent);
  border-color: var(--creo-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.3);
}

.expand-cta svg {
  transition: transform 0.3s;
}

.expand-cta:hover svg {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .expandable-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 20px;
  }
}

/* ─── DIAGNOSTIC FORM ─────────────────────────────────────────── */
.diag-section {
  position: relative;
  z-index: 10;
  background: var(--creo-light);
  padding: 80px 0;
}

.diag-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: repeating-linear-gradient(90deg, transparent, transparent calc(8.33% - 1px), rgba(11, 23, 61, 0.05) calc(8.33% - 1px), rgba(11, 23, 61, 0.05) 8.33%);
}

.diag-section .diag-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.diag-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.diag-section .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1.5px solid rgba(11, 23, 61, 0.2);
  border-radius: 100px;
  padding: 7px 18px;
  background: rgba(255, 255, 255, 0.7);
  text-align: left;
}

.diag-section .badge span {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--creo-dark);
}

.big-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--creo-dark);
  margin: 0;
}

.big-title .word-orange {
  color: var(--creo-accent);
}

.big-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: charIn 0.5s ease forwards;
}

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

.diag-section .badge {
  opacity: 0;
  animation: fadeUp 0.5s ease forwards 0.1s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

.diag-desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(11, 23, 61, 0.5);
  max-width: 360px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.35s;
}

.left-stats {
  display: flex;
  gap: 28px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.5s;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.5);
  border: 1.5px solid rgba(11, 23, 61, 0.07);
  border-radius: 14px;
  flex: 1;
}

.diag-section .stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--creo-dark);
}

.diag-section .stat-num span {
  color: var(--creo-accent);
}

.diag-section .stat-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(11, 23, 61, 0.5);
  margin-top: 2px;
}

.diag-box {
  background: #ddd3b5;
  border: 1.5px solid rgba(11, 23, 61, 0.09);
  border-radius: 24px;
  padding: 40px 40px 36px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(11, 23, 61, 0.08);
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.3s;
}

.box-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.box-step-label {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(11, 23, 61, 0.35);
}

.box-xp {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--creo-accent);
  display: flex;
  align-items: center;
  gap: 5px;
}

.xp-pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--creo-accent);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.prog-track {
  height: 3px;
  background: rgba(11, 23, 61, 0.1);
  border-radius: 100px;
  margin-bottom: 28px;
  overflow: hidden;
}

.prog-fill {
  height: 100%;
  background: var(--creo-accent);
  border-radius: 100px;
  transition: width 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.step-screen {
  display: none;
  flex-direction: column;
  flex: 1;
  animation: stepIn 0.35s ease both;
}

.step-screen.active {
  display: flex;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateX(16px);
  }

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

.step-eyebrow {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--creo-accent);
  margin-bottom: 10px;
}

.step-q {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--creo-dark);
  margin-bottom: 6px;
}

.step-q em {
  font-style: italic;
  color: var(--creo-accent);
}

.step-hint {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(11, 23, 61, 0.42);
  margin-bottom: 20px;
}

.opts {
  display: grid;
  gap: 8px;
  flex: 1;
}

.opts.col2 {
  grid-template-columns: 1fr 1fr;
}

.opts.col1 {
  grid-template-columns: 1fr;
}

.opt {
  background: rgba(255, 255, 255, 0.5);
  border: 1.5px solid rgba(11, 23, 61, 0.1);
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: border-color 0.2s, background 0.2s, transform 0.18s;
  user-select: none;
}

.opt:hover {
  border-color: rgba(255, 117, 31, 0.4);
  background: rgba(255, 117, 31, 0.05);
  transform: translateY(-2px);
}

.opt.selected {
  border-color: var(--creo-accent);
  background: rgba(255, 117, 31, 0.08);
  transform: translateY(-2px);
}

.opt.selected .opt-ico {
  background: var(--creo-accent);
  color: #fff;
}

.opt-ico {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(11, 23, 61, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background 0.2s;
}

.opt-lbl {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--creo-dark);
  margin-bottom: 2px;
  line-height: 1.3;
}

.opt-sub {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 400;
  color: rgba(11, 23, 61, 0.42);
  line-height: 1.4;
}

.inp-wrap {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.diag-input {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--creo-dark);
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(11, 23, 61, 0.12);
  border-radius: 12px;
  padding: 13px 16px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}

.diag-input:focus {
  border-color: var(--creo-accent);
  background: rgba(255, 255, 255, 0.9);
}

.diag-input::placeholder {
  color: rgba(11, 23, 61, 0.28);
}

textarea.diag-input {
  resize: none;
  min-height: 80px;
  line-height: 1.6;
}

.budget-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.budget-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--creo-dark);
  text-align: center;
}

.budget-num span {
  color: var(--creo-accent);
}

.budget-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(11, 23, 61, 0.12);
  border-radius: 100px;
  outline: none;
}

.budget-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--creo-accent);
  cursor: pointer;
  border: 3px solid var(--creo-light);
  box-shadow: 0 2px 8px rgba(255, 117, 31, 0.35);
}

.budget-lbls {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  color: rgba(11, 23, 61, 0.32);
  letter-spacing: 0.04em;
  width: 100%;
}

.budget-continue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--creo-dark);
  border: none;
  border-radius: 12px;
  padding: 12px 22px;
  cursor: pointer;
  margin-top: 24px;
  width: fit-content;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(11, 23, 61, 0.15);
}

.budget-continue:hover {
  background: var(--creo-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.3);
}

.budget-continue svg {
  transition: transform 0.2s;
}

.budget-continue:hover svg {
  transform: translateX(3px);
}

.box-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  flex-shrink: 0;
}

.btn-back {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11, 23, 61, 0.35);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}

.btn-back:hover {
  color: var(--creo-dark);
}

.btn-back:disabled {
  opacity: 0;
  pointer-events: none;
}

.btn-next {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--creo-dark);
  border: none;
  padding: 13px 24px;
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-next:hover {
  background: var(--creo-accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 117, 31, 0.3);
}

.btn-next:hover svg {
  transform: translateX(3px);
}

.btn-next svg {
  transition: transform 0.2s;
}

.btn-next.orange {
  background: var(--creo-accent);
}

.btn-next.orange:hover {
  background: #e5650d;
}

.btn-next:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.confetti-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  border-radius: 24px;
}

.celebrate-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
  animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.celebrate-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 117, 31, 0.12);
  border: 2px solid rgba(255, 117, 31, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
  animation: iconBounce 2s ease-in-out infinite;
}

.celebrate-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--creo-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.celebrate-title em {
  color: var(--creo-accent);
  font-style: italic;
}

.celebrate-sub {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(11, 23, 61, 0.6);
  margin-bottom: 16px;
}

.celebrate-sub strong {
  font-weight: 700;
  color: var(--creo-dark);
}

.celebrate-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  margin-bottom: 20px;
}

.cel-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 1.5px solid rgba(11, 23, 61, 0.08);
  border-radius: 10px;
  padding: 10px 12px;
}

.cel-step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--creo-accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 900;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cel-step-text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--creo-dark);
  line-height: 1.4;
}

.cel-step-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  color: rgba(11, 23, 61, 0.5);
}

.celebrate-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--creo-accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.celebrate-cta:hover {
  background: #e5650d;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 117, 31, 0.3);
}

.celebrate-cta:hover svg {
  transform: translateX(4px);
}

.celebrate-cta svg {
  transition: transform 0.2s;
}

.spam-note {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: rgba(11, 23, 61, 0.35);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.xp-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  background: var(--creo-dark);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateY(-80px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
}

.xp-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.xp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--creo-accent);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@media (max-width: 900px) {
  .diag-section {
    padding: 60px 0;
  }

  .diag-section .diag-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 32px;
  }

  .opts.col2 {
    grid-template-columns: 1fr;
  }

  .left-stats {
    flex-wrap: wrap;
    gap: 12px;
  }

  .stat-item {
    padding: 12px 14px;
  }

  .diag-section .stat-num {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .industries-section .top-wrap {
    padding: 0 24px;
  }

  .industries-section .top-row {
    grid-template-columns: 1fr;
  }

  .carousel-track {
    padding: 0 24px;
  }

  .ind-card {
    width: 320px;
  }

  .card-visual {
    height: 200px;
  }
}