/* ============================================================
   EVRLO — Design System
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,700;0,800;1,400&family=Playfair+Display:ital@1&display=swap');

/* --- Tokens --- */
:root {
  /* Palette */
  --navy: #12122B;
  --navy-mid: #1A1A3A;
  --navy-light: #22224A;
  --indigo: #3A13E5;
  --indigo-dim: rgba(58, 19, 229, 0.15);
  --lavender: #B8B5FF;
  --periwinkle: #9B98F5;
  --white: #FFFFFF;
  --off-white: #F6F6FC;
  --charcoal: #2D2D4E;
  --muted: #6B6B9A;
  --border-dark: rgba(184, 181, 255, 0.12);
  --border-light: rgba(58, 19, 229, 0.12);

  /* Gradient */
  --gradient-hero: linear-gradient(135deg, #3A13E5 0%, #12122B 60%);
  --gradient-cta: linear-gradient(135deg, #3A13E5 0%, #1E0FA0 100%);
  --gradient-card: linear-gradient(135deg, rgba(58, 19, 229, 0.08) 0%, rgba(18, 18, 43, 0.0) 100%);

  /* Typography */
  --font-base: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-pad: clamp(5rem, 10vw, 9rem);
  --container: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 220ms;
  --dur-med: 380ms;
}

/* --- Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-base);
  background: var(--navy);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* --- Page loader overlay --- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(circle at top, rgba(58, 19, 229, 0.22), #050510);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity var(--dur-med) var(--ease-out),
    visibility var(--dur-med) var(--ease-out);
}

.page-loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.page-loader .page-loader-logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  transform-origin: center;
  animation: page-logo-pulse 1.1s var(--ease-in-out) infinite;
}

@media (min-width: 768px) {
  .page-loader .page-loader-logo {
    font-size: 2.5rem;
  }
}

.page-loader-spinner {
  display: none;
}

@keyframes page-logo-pulse {
  0% {
    opacity: 0.4;
    transform: translateY(2px) scale(0.96);
    letter-spacing: -0.12em;
  }
  40% {
    opacity: 1;
    transform: translateY(0) scale(1.05);
    letter-spacing: -0.03em;
  }
  100% {
    opacity: 0.55;
    transform: translateY(2px) scale(0.98);
    letter-spacing: -0.08em;
  }
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Typography scale --- */
.display {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
}

.h4 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.body-lg {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  line-height: 1.75;
}

.body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}

.small {
  font-size: 0.875rem;
  font-weight: 500;
}

.label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Playfair accent — wrap key words */
.serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.serif-accent-md {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05em;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* --- Contour SVG background --- */
.contour-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.contour-bg svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

/* --- Navbar --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--dur-med) var(--ease-out), padding var(--dur-med) var(--ease-out), border-color var(--dur-med);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(18, 18, 43, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-dark);
  padding: 0.85rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  transition: opacity var(--dur-fast);
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--dur-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--lavender);
  transition: width var(--dur-med) var(--ease-out);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  width: 100%;
  background: var(--indigo);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur-med) var(--ease-out), opacity var(--dur-fast);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}

.nav-mobile.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile a {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--dur-fast);
}

.nav-mobile a:hover {
  color: var(--white);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-base);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 1.6rem;
  border-radius: 9999px;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast), background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
  cursor: pointer;
  letter-spacing: 0.01em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:focus-visible {
  outline: 2px solid var(--lavender);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--gradient-cta);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(58, 19, 229, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 36px rgba(58, 19, 229, 0.5);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--indigo);
  border: 1.5px solid var(--border-light);
}

.btn-ghost-dark:hover {
  border-color: var(--indigo);
  transform: translateY(-2px);
  background: var(--indigo-dim);
}

.btn-lg {
  font-size: 1rem;
  padding: 1rem 2.2rem;
}

.btn-sm {
  font-size: 0.8rem;
  padding: 0.55rem 1.2rem;
}

/* --- Section base --- */
section {
  position: relative;
  overflow: hidden;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-mid {
  background: var(--navy-mid);
  color: var(--white);
}

.section-light {
  background: var(--off-white);
  color: var(--charcoal);
}

.section-white {
  background: var(--white);
  color: var(--charcoal);
}

.section-pad {
  padding-block: var(--section-pad);
}

.section-pad-sm {
  padding-block: clamp(3rem, 6vw, 5rem);
}

/* --- Label chip --- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(58, 19, 229, 0.12);
  border: 1px solid rgba(58, 19, 229, 0.3);
  color: var(--lavender);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
}

.chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lavender);
}

.chip-light {
  background: rgba(58, 19, 229, 0.07);
  border-color: rgba(58, 19, 229, 0.18);
  color: var(--indigo);
}

.chip-light .chip-dot {
  background: var(--indigo);
}

/* --- Hero section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero-text .chip {
  margin-bottom: 1.75rem;
}

.hero-heading {
  margin-bottom: 1.5rem;
}

.hero-body {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
  max-width: 46ch;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* --- Start options (3-path flow) --- */
.start-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.start-option-card {
  background: rgba(18, 18, 43, 0.5);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-fast), box-shadow var(--dur-med);
}

.start-option-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 181, 255, 0.28);
  box-shadow: 0 18px 36px rgba(5, 5, 16, 0.35);
}

.start-option-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--lavender);
}

.start-option-card p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.9rem;
}

.start-option-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.start-options-footnote {
  margin-top: 1.25rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 420px;
  height: 360px;
}

.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-card-main {
  background: linear-gradient(140deg, rgba(58, 19, 229, 0.25) 0%, rgba(18, 18, 43, 0.9) 100%);
  width: 300px;
  left: 0;
  top: 30px;
  z-index: 2;
}

.hero-card-back {
  background: rgba(26, 26, 58, 0.7);
  width: 280px;
  right: 0;
  top: 0;
  z-index: 1;
  border-color: rgba(184, 181, 255, 0.08);
}

.hero-card-accent {
  background: linear-gradient(135deg, rgba(58, 19, 229, 0.5), rgba(184, 181, 255, 0.15));
  width: 200px;
  bottom: 10px;
  right: 30px;
  z-index: 3;
  padding: 1.25rem;
}

.card-metric {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.card-metric-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.25rem;
}

.card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 1rem;
}

.card-bar-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card-bar {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.card-bar-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.card-bar-track {
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  overflow: hidden;
}

.card-bar-fill {
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--indigo), var(--lavender));
}

/* --- Stats row --- */
.stats-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.stat-item {
  flex: 1;
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border-dark);
  transition: background var(--dur-med);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(184, 181, 255, 0.04);
}

.stat-num {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-num span {
  color: var(--indigo);
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.4rem;
}

/* --- Service cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--navy-mid);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med), border-color var(--dur-med), background var(--dur-med);
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
  opacity: 0;
  transition: opacity var(--dur-med);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(18, 18, 43, 0.5), 0 0 0 1px rgba(58, 19, 229, 0.25);
  border-color: rgba(58, 19, 229, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(58, 19, 229, 0.12);
  border: 1px solid rgba(58, 19, 229, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--lavender);
  position: relative;
  z-index: 1;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.service-tag {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

/* --- Feature list --- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse>* {
  direction: ltr;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(58, 19, 229, 0.1);
  border: 1px solid rgba(58, 19, 229, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lavender);
  margin-top: 0.1rem;
}

.feature-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* Light section overrides for feature icons */
.section-light .feature-icon {
  background: rgba(58, 19, 229, 0.06);
  border-color: rgba(58, 19, 229, 0.15);
  color: var(--indigo);
}

.section-light .feature-text h4 {
  color: var(--charcoal);
}

.section-light .feature-text p {
  color: rgba(45, 45, 78, 0.6);
}

/* --- Process steps --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: steps;
}

.process-step {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--navy-mid);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med);
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(58, 19, 229, 0.25);
}

.step-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--indigo);
  margin-bottom: 1rem;
}

.process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.step-connector {
  display: none;
}

/* --- About --- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
  background: rgba(184, 181, 255, 0.03);
  transition: border-color var(--dur-med), background var(--dur-med);
}

.value-item:hover {
  border-color: rgba(58, 19, 229, 0.25);
  background: rgba(58, 19, 229, 0.05);
}

.value-icon {
  flex-shrink: 0;
  color: var(--lavender);
  margin-top: 0.1rem;
}

.value-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.value-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--navy-mid);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(18, 18, 43, 0.4);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-inline: auto;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--indigo), var(--lavender));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  border: 2px solid rgba(184, 181, 255, 0.2);
}

.team-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.team-card p {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* --- Service detail (services page) --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.service-cta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
}

.service-cta-row .btn {
  width: 100%;
  justify-content: center;
}

.service-cta-row .service-cta-secondary {
  grid-column: 1 / -1;
}


.sfl-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.sfl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--indigo);
  flex-shrink: 0;
}

/* light section overrides */
.section-light .sfl-item {
  color: rgba(45, 45, 78, 0.75);
}

.section-light .sfl-dot {
  background: var(--indigo);
}

.section-light .service-tag {
  color: rgba(45, 45, 78, 0.45);
}

.section-light h2,
.section-light h3 {
  color: var(--charcoal);
}

.section-light p {
  color: rgba(45, 45, 78, 0.7);
}

/* Pricing badge */
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(58, 19, 229, 0.1);
  border: 1px solid rgba(58, 19, 229, 0.22);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  margin-top: 2rem;
}

.pricing-badge .pricing-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.pricing-badge .pricing-model {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.section-light .pricing-badge {
  background: rgba(58, 19, 229, 0.06);
  border-color: rgba(58, 19, 229, 0.15);
}

.section-light .pricing-badge .pricing-model {
  color: var(--indigo);
}

.section-light .pricing-badge .pricing-label {
  color: var(--muted);
}

/* Service visual block */
.svc-visual {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
  overflow: hidden;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}

.svc-visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(58, 19, 229, 0.3) 0%, rgba(18, 18, 43, 0.95) 100%);
}

.svc-visual-inner {
  position: relative;
  z-index: 1;
  padding: 2rem;
  width: 100%;
}

/* Reversed service detail (replaces RTL hack) */
.service-detail--reversed {
  grid-template-columns: 1.1fr 1fr;
}

.service-detail--reversed> :first-child {
  order: 2;
}

.service-detail--reversed> :last-child {
  order: 1;
}


/* Service body text — replaces inline rgba colors */
.svc-body {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
  line-height: 1.75;
}

.svc-body+.svc-body {
  margin-top: 0.75rem;
}

.section-light .svc-body {
  color: rgba(45, 45, 78, 0.7);
}

/* Service jump-nav */
.service-jump-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.service-jump-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  padding: 0.45rem 1.15rem;
  border-radius: 9999px;
  border: 1px solid var(--border-dark);
  transition: color var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast);
}

.service-jump-nav a:hover {
  color: var(--white);
  border-color: rgba(184, 181, 255, 0.3);
  background: rgba(58, 19, 229, 0.08);
}

.service-jump-nav .jump-divider {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

/* Browser chrome mock (Service 02 visual) */
.browser-chrome {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(58, 19, 229, 0.12);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(58, 19, 229, 0.08);
  position: relative;
  z-index: 1;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #f0f0f8;
  border-bottom: 1px solid rgba(58, 19, 229, 0.08);
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.browser-dot:nth-child(1) {
  background: #ff5f57;
}

.browser-dot:nth-child(2) {
  background: #ffbd2e;
}

.browser-dot:nth-child(3) {
  background: #28ca41;
}

.browser-url {
  margin-left: 10px;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--white);
  border: 1px solid rgba(58, 19, 229, 0.08);
  border-radius: 6px;
  padding: 4px 10px;
  flex: 1;
  max-width: 200px;
}

.browser-body {
  padding: 20px;
  background: var(--white);
  min-height: 140px;
  position: relative;
}

/* Wireframe skeleton lines inside browser body */
.wireframe-block {
  height: 10px;
  border-radius: 5px;
  background: rgba(58, 19, 229, 0.08);
  margin-bottom: 8px;
}

.wireframe-block.short {
  width: 45%;
}

.wireframe-block.med {
  width: 70%;
}

.wireframe-block.long {
  width: 90%;
}

.wireframe-block.full {
  width: 100%;
  height: 60px;
  border-radius: 8px;
  margin-top: 12px;
}

.wireframe-row {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.wireframe-card {
  flex: 1;
  height: 50px;
  border-radius: 6px;
  border: 1px solid rgba(58, 19, 229, 0.08);
  background: rgba(58, 19, 229, 0.03);
}

.wireframe-btn {
  display: inline-block;
  width: 80px;
  height: 26px;
  border-radius: 13px;
  background: var(--indigo);
  opacity: 0.7;
  margin-top: 10px;
}

/* --- CTA banner --- */
.cta-banner {
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.cta-banner-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Contact form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.booking-shell {
  max-width: 1520px;
  padding-inline: clamp(0.75rem, 2vw, 1.5rem);
}

.contact-grid-booking {
  grid-template-columns: 2fr 3fr;
  gap: 1.75rem;
}

.booking-embed-card {
  background:
    radial-gradient(circle at top right, rgba(58, 19, 229, 0.2), rgba(26, 26, 58, 0) 48%),
    linear-gradient(145deg, rgba(34, 34, 74, 0.92), rgba(18, 18, 43, 0.95));
  border: 1px solid rgba(184, 181, 255, 0.18);
  box-shadow: 0 24px 60px rgba(5, 5, 16, 0.45);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  min-height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.scarcity-badge {
  align-self: center;
  background: rgba(255, 71, 87, 0.12);
  color: #ff6b7a;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 71, 87, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.scarcity-dot {
  width: 6px;
  height: 6px;
  background: #ff4757;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

.booking-embed-wrap {
  flex-grow: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  position: relative;
  z-index: 1;
  min-height: 600px;
  height: clamp(600px, 72vh, 920px);
  border: 1px solid rgba(58, 19, 229, 0.15);
}

.booking-iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: block;
  border: 0;
}

.booking-embed-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.9rem;
  text-align: center;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.section-light label {
  color: rgba(45, 45, 78, 0.55);
}

input,
select,
textarea {
  font-family: var(--font-base);
  font-size: 0.95rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--dur-fast), background var(--dur-fast), box-shadow var(--dur-fast);
  width: 100%;
  appearance: none;
}

.section-light input,
.section-light select,
.section-light textarea {
  background: var(--white);
  border-color: var(--border-light);
  color: var(--charcoal);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--indigo);
  background: rgba(58, 19, 229, 0.05);
  box-shadow: 0 0 0 3px rgba(58, 19, 229, 0.12);
}

select option {
  background: var(--navy-mid);
  color: var(--white);
}

.section-light select option {
  background: var(--white);
  color: var(--charcoal);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  align-self: flex-start;
}

.form-debug-panel {
  margin-top: 0.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 0.9rem;
}

.section-light .form-debug-panel {
  background: rgba(58, 19, 229, 0.04);
  border-color: var(--border-light);
}

.form-debug-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
}

.section-light .form-debug-title {
  color: rgba(45, 45, 78, 0.55);
}

.form-debug-output {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.78rem;
  line-height: 1.4;
  white-space: pre-wrap;
  word-break: break-word;
  color: rgba(255, 255, 255, 0.78);
}

.section-light .form-debug-output {
  color: rgba(45, 45, 78, 0.82);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ci-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(58, 19, 229, 0.1);
  border: 1px solid rgba(58, 19, 229, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lavender);
  flex-shrink: 0;
}

.section-light .ci-icon {
  background: rgba(58, 19, 229, 0.06);
  border-color: rgba(58, 19, 229, 0.15);
  color: var(--indigo);
}

.ci-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.ci-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}

.section-light .ci-value {
  color: var(--charcoal);
}

/* --- Footer --- */
.footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-dark);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-dark);
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.75rem;
  max-width: 28ch;
  line-height: 1.6;
}

.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--dur-fast);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-badge {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-badge span {
  color: var(--lavender);
  font-weight: 700;
}

/* --- Scroll animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger siblings */
.fade-up:nth-child(2) {
  transition-delay: 0.1s;
}

.fade-up:nth-child(3) {
  transition-delay: 0.2s;
}

.fade-up:nth-child(4) {
  transition-delay: 0.3s;
}

.fade-up:nth-child(5) {
  transition-delay: 0.4s;
}

.fade-up:nth-child(6) {
  transition-delay: 0.5s;
}

/* --- Divider --- */
.divider {
  border: none;
  border-top: 1px solid var(--border-dark);
  margin: 0;
}

.divider-light {
  border-top-color: var(--border-light);
}

/* --- Heading group --- */
.section-header {
  max-width: 64ch;
}

.section-header .chip {
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header.center {
  text-align: center;
  max-width: 58ch;
  margin-inline: auto;
}

.section-header p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
}

.section-light .section-header p {
  color: rgba(45, 45, 78, 0.65);
}

.section-header.center p {
  max-width: 52ch;
  margin-inline: auto;
}

/* --- Responsive --- */
@media (min-width: 1025px) and (max-width: 1366px) {
  .display {
    font-size: clamp(2.2rem, 4.4vw, 3.7rem);
    line-height: 1.08;
  }

  .h1 {
    font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  }

  .h2 {
    font-size: clamp(1.45rem, 2.5vw, 2.05rem);
  }

  .hero {
    min-height: 90vh;
    padding-top: 6.25rem;
    padding-bottom: 3.25rem;
  }

  .hero-inner {
    gap: 2.5rem;
  }

  .hero-body {
    margin-bottom: 2rem;
    max-width: 42ch;
  }

  .section-header p {
    font-size: 0.98rem;
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .start-options-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail--reversed {
    grid-template-columns: 1fr;
  }

  .service-detail--reversed> :first-child {
    order: 0;
  }

  .service-detail--reversed> :last-child {
    order: 0;
  }

  .service-cta-row {
    grid-template-columns: 1fr;
  }

  .service-cta-row .service-cta-secondary {
    grid-column: auto;
  }

  .service-jump-nav {
    flex-wrap: wrap;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-row.reverse {
    direction: ltr;
  }

  .contact-grid-booking {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta .btn {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .start-options-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-grid-booking > :first-child {
    text-align: left;
  }

  .contact-info {
    max-width: 420px;
    margin-inline: auto;
    gap: 1.25rem;
  }

  .contact-info-item {
    align-items: center;
    text-align: left;
  }

  .booking-embed-card {
    min-height: auto;
    padding: 1rem;
  }

  .booking-embed-wrap {
    min-height: 560px;
    height: clamp(560px, 68vh, 880px);
  }

  .booking-iframe {
    min-height: 560px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .stats-row {
    flex-direction: column;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-dark);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-text,
  .section-header,
  .page-hero .container,
  .service-detail> :first-child,
  .about-intro> :first-child,
  .contact-grid> :first-child {
    text-align: center;
  }

  .hero-text .chip,
  .section-header .chip {
    margin-inline: auto;
  }

  .hero-ctas,
  .cta-banner-ctas {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner-ctas {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================================
   EVRLO — Add-ons for Full Site Pages
   (appended by ChatGPT)
   ============================================================ */

.page-hero {
  padding-top: 8rem;
  padding-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.kpi {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.kpi .num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.kpi .lbl {
  margin-top: 0.35rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

.section-header.center { text-align: center; margin-inline: auto; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pricing-card {
  background: var(--navy-mid);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med), border-color var(--dur-med);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(18, 18, 43, 0.5), 0 0 0 1px rgba(58, 19, 229, 0.25);
  border-color: rgba(58, 19, 229, 0.3);
}
.pricing-card.featured {
  background: linear-gradient(140deg, rgba(58, 19, 229, 0.22) 0%, rgba(26, 26, 58, 0.92) 100%);
  border-color: rgba(58,19,229,0.35);
}
.pricing-price {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-top: 0.75rem;
}
.pricing-sub {
  color: rgba(255,255,255,0.55);
  margin-top: 0.35rem;
}
.pricing-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.6rem;
}
.pricing-li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: rgba(255,255,255,0.68);
  line-height: 1.5;
}
.check {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(184,181,255,0.14);
  border: 1px solid rgba(184,181,255,0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  margin-top: 2px;
}
.check::before {
  content: "✓";
  font-size: 0.8rem;
  color: var(--lavender);
  line-height: 1;
}

/* Process timeline */
.timeline {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(58,19,229,0.14);
  border: 1px solid rgba(58,19,229,0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--lavender);
}

/* Work grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.work-card {
  background: var(--navy-mid);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med), border-color var(--dur-med);
  overflow: hidden;
  position: relative;
}
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(18, 18, 43, 0.5), 0 0 0 1px rgba(58, 19, 229, 0.25);
  border-color: rgba(58, 19, 229, 0.3);
}

.work-carousel-shell {
  margin-top: 0.75rem;
}

.work-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 36%);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}

.work-carousel-card {
  scroll-snap-align: start;
}

.work-carousel-link {
  display: block;
  background: var(--navy-mid);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med), border-color var(--dur-med);
}

.work-carousel-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(18, 18, 43, 0.5), 0 0 0 1px rgba(58, 19, 229, 0.25);
  border-color: rgba(58, 19, 229, 0.3);
}

.work-thumb {
  min-height: 190px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.45rem;
  border-bottom: 1px solid var(--border-dark);
}

.work-thumb-adept {
  background: linear-gradient(145deg, rgba(58, 19, 229, 0.42), rgba(18, 18, 43, 0.85));
}

.work-thumb-peaky {
  background: linear-gradient(145deg, rgba(27, 67, 180, 0.4), rgba(18, 18, 43, 0.9));
}

.work-thumb-rene {
  background: linear-gradient(145deg, rgba(106, 52, 179, 0.45), rgba(18, 18, 43, 0.9));
}

.work-thumb-chip {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
}

.work-thumb-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.work-thumb-sub {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  max-width: 30ch;
}

.work-carousel-body {
  padding: 1.25rem 1.25rem 1.35rem;
}

.work-carousel-body p {
  color: rgba(255, 255, 255, 0.62);
  margin-top: 0.55rem;
}

.work-carousel-note {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.84rem;
  text-align: center;
}
.work-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.pill {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dark);
  color: rgba(255,255,255,0.68);
}

/* FAQ */
.faq {
  margin-top: 2.25rem;
  display: grid;
  gap: 1rem;
}
.faq details {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p {
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-dark);
  padding: 3.5rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-title {
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 1.25rem;
}
.footer-links {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin-top: 0.75rem;
}
.footer-links a { color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: rgba(255,255,255,0.92); }
.footer-note { color: rgba(255,255,255,0.5); margin-top: 1rem; }

/* Responsive */
@media (max-width: 900px) {
  .pricing-grid, .work-grid, .kpi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .work-carousel-track {
    grid-auto-columns: 80%;
  }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; }
  .step-num { width: 48px; height: 48px; border-radius: 14px; }

  .work-carousel-track {
    grid-auto-columns: 88%;
  }
}

/* Cookie consent banner */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  padding: 1rem clamp(1rem, 4vw, 1.75rem);
  background: rgba(18, 18, 43, 0.97);
  border-top: 1px solid var(--border-dark);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
}
.cookie-consent-inner {
  max-width: var(--container, 1200px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}
.cookie-consent-text {
  flex: 1 1 280px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 62ch;
}
.cookie-consent-text a {
  color: #b8b5ff;
  text-decoration: underline;
}
.cookie-consent-text a:hover {
  color: #fff;
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.25rem;
}
.footer-social a {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}
.footer-social a:hover {
  color: rgba(255, 255, 255, 0.92);
}

.cookie-prefs-btn:focus-visible {
  outline: 2px solid #b8b5ff;
  outline-offset: 2px;
}
