/* ============================================
   Y3A — Landing Page Styles v4
   Brand assets: Clash Display + Satoshi + IBM Plex Mono
   Colors: Ink + Paper + Terra (#DD0000)
   ============================================ */

/* === TOKENS === */
:root {
  --bg-primary: #FAFAF8;
  --bg-secondary: #FFFFFF;
  --bg-alt: #F2F2F0;
  --bg-dark: #000000;
  --text-primary: #000000;
  --text-secondary: #555555;
  --text-muted: #999999;
  --text-light: #FAFAF8;
  --accent: #DD0000;
  --accent-hover: #AA0000;
  --accent-light: #FF5544;
  --divider: #EBEBEB;
  --font-heading: 'Clash Display', system-ui, sans-serif;
  --font-body: 'Satoshi', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --container: 1200px;
  --gap: 16px;
  --radius: 10px;
  --radius-sm: 8px;
  --radius-pill: 100px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === @property for animated gradient angle === */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-primary);
}

/* Webkit scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-hover);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
  background-color: var(--bg-secondary);
  position: relative;
}

/* === GRAIN TEXTURE OVERLAY === */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

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

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

ul {
  list-style: none;
}

/* === UTILITIES === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1280px) {
  .container {
    padding: 0 24px;
  }
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 48px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--text-primary);
  color: var(--text-light);
}

.btn--primary:hover {
  background: var(--accent);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn--accent {
  background: var(--accent);
  color: #fff;
}

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

.btn--cta {
  background: var(--text-light);
  color: var(--text-primary);
}

.btn--cta:hover {
  background: #FFFFFF;
  transform: translateY(-1px);
}

.btn--sm {
  font-size: 13px;
  padding: 12px 28px;
}

.btn--lg {
  font-size: 13px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
}

@media (min-width: 768px) {
  .btn--lg {
    font-size: 14px;
    padding: 16px 36px;
  }
}

/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* === 1. NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), padding var(--transition), border-bottom var(--transition);
}

.nav .nav__link {
  color: var(--text-primary);
}

.nav .nav__link:hover {
  color: var(--accent);
}

/* Scrolled state: solid background */
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider);
  padding: 12px 0;
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 64px;
  width: auto;
  transition: filter var(--transition);
}

.nav__links {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav:has(.nav__links.is-open) {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: var(--bg-primary) !important;
  border-bottom: none;
  transition: none;
}

.nav__links.is-open {
  opacity: 1;
  visibility: visible;
}

.nav__links.is-open .nav__link {
  color: var(--text-primary);
}

.nav__link {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  transition: color var(--transition);
}

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

.nav__cta-desktop {
  display: none;
}

.nav__cta-mobile {
  margin-top: 16px;
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1003;
  position: relative;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav__hamburger.is-active span {
  background: var(--text-primary);
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
    position: static;
    background: none;
    flex-direction: row;
    gap: 32px;
    opacity: 1;
    visibility: visible;
    transition: none;
  }

  .nav__link {
    font-size: 15px;
  }

  .nav__cta-desktop {
    display: inline-flex;
  }

  .nav__cta-mobile {
    display: none;
  }

  .nav__hamburger {
    display: none;
  }
}

/* === 2. HERO (Light background) === */
.hero {
  background: var(--bg-primary);
  color: var(--text-primary);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding: 180px 0 140px;
  }
}

/* Hero warm glow behind title */
.hero__glow {
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(221, 0, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 768px) {
  .hero__glow {
    width: 900px;
    height: 900px;
  }
}

.hero__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 100%;
  text-align: center;
}

.hero__content--centered {
  max-width: 800px;
  margin: 0 auto;
}

.hero__content--centered .hero__subtitle {
  margin: 0 auto 40px;
}

@media (min-width: 768px) {
  .hero__content {
    max-width: 60%;
    text-align: left;
  }

  .hero__content--centered {
    max-width: 800px;
    text-align: center;
  }
}

/* Hero decorative rings (hidden when hero is centered) */
.hero__visual {
  display: none;
}

.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(221, 0, 0, 0.06);
}

.hero__ring--1 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  animation: hero-ring-pulse 6s ease-in-out infinite;
}

.hero__ring--2 {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  border-color: rgba(221, 0, 0, 0.08);
  animation: hero-ring-pulse 6s ease-in-out infinite 1s;
}

.hero__ring--3 {
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30%;
  border-color: rgba(221, 0, 0, 0.12);
  animation: hero-ring-pulse 6s ease-in-out infinite 2s;
}

@keyframes hero-ring-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

/* Hero badge */
.hero__label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: #FFF5F5;
  border: 1px solid #FFCCCC;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.hero__title em {
  font-style: italic;
}

.hero__comma {
  color: var(--accent);
  font-style: normal;
}

.hero__subtitle-line {
  font-size: 1em;
  color: var(--text-primary);
  font-weight: 500;
  font-style: normal;
}

.accent-comma {
  color: var(--accent);
}

.section-title s {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 400;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 0 40px;
  line-height: 1.75;
}

@media (max-width: 767px) {
  .hero__subtitle {
    margin: 0 auto 40px;
  }
}

.hero__proof {
  margin-top: 40px;
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

/* === 3. LOGOS BAR === */
.logos-bar {
  background: var(--bg-primary);
  padding: 40px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--divider);
}

.logos-bar__track {
  display: flex;
  width: max-content;
  animation: scroll-logos 25s linear infinite;
}

.logos-bar__slide {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0 24px;
}

.logos-bar__slide img {
  height: 24px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: opacity var(--transition);
}

.logos-bar__slide img:hover {
  opacity: 0.7;
}

.logos-bar__slide img[alt="Ultramize"] {
  height: 64px;
}

.logos-bar__slide img[alt="Radar"] {
  height: 48px;
}

.logos-bar__slide img[alt="Korak"] {
  height: 20px;
}

@media (min-width: 768px) {
  .logos-bar__slide {
    gap: 64px;
  }

  .logos-bar__slide img {
    height: 28px;
    max-width: 140px;
  }
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* === 3b. STATS BANNER === */
.stats {
  background: var(--bg-secondary);
  padding: 64px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.stats__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (min-width: 768px) {
  .stats__container {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }
}

.stats__item {
  text-align: center;
  flex: 1;
  max-width: 300px;
}

.stats__number {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(32px, 5vw, 36px);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.stats__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 220px;
  margin: 0 auto;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.stats__divider {
  display: none;
}

@media (min-width: 768px) {
  .stats__divider {
    display: block;
    width: 1px;
    height: 72px;
    flex-shrink: 0;
    margin: 0 48px;
    background: linear-gradient(to bottom, transparent, var(--divider) 30%, var(--divider) 70%, transparent);
  }
}

/* === 4. PROBLEMS WE SOLVE === */
.problems {
  padding: 80px 0;
  background: var(--bg-secondary);
}

@media (min-width: 768px) {
  .problems {
    padding: 96px 0;
  }
}

.problems__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .problems__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.problems__card {
  background: var(--bg-primary);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}

.problems__card:hover {
  border-color: #DDDDDD;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.problems__card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.problems__card-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* === 5. PHASES (How we work) === */
.phases {
  padding: 80px 0;
  background: var(--bg-secondary);
}

@media (min-width: 768px) {
  .phases {
    padding: 120px 0;
  }
}

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

.phases .section-label,
.phases .section-title {
  text-align: center;
}

.phases__list {
  width: 100%;
  max-width: 750px;
  margin: 48px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.phases__item {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.phases__number-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.phases__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--bg-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* Vertical line connecting numbers */
.phases__item:not(:last-child) .phases__number-col::after {
  content: '';
  position: absolute;
  top: calc(50% + 22px);
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(50% - 22px + 24px);
  background: var(--accent);
}

.phases__item:not(:first-child) .phases__number-col::before {
  content: '';
  position: absolute;
  bottom: calc(50% + 22px);
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(50% - 22px);
  background: var(--accent);
}

.phases__card {
  background: var(--bg-secondary);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  flex: 1;
}

.phases__item:last-child .phases__card {
  margin-bottom: 0;
}

.phases__card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.phases__card-desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: #444444;
  line-height: 1.75;
}

.phases__card-context {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: #999999;
  font-style: italic;
  margin-top: 16px;
}

.phases__highlight {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
  max-width: 650px;
  margin: 48px auto 0;
  letter-spacing: -0.02em;
}

/* Mobile: number inline with card */
@media (max-width: 767px) {
  .phases__item {
    gap: 16px;
  }

  .phases__card {
    padding: 24px;
  }
}

/* === 7. RESULTATS (Carousel) === */
.results {
  padding: 80px 0;
  background: var(--bg-primary);
  overflow: hidden;
}

@media (min-width: 768px) {
  .results {
    padding: 120px 0;
  }
}

.results__header {
  margin-bottom: 48px;
}

.results__carousel {
  position: relative;
  max-width: 100%;
}

.results__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: grab;
}

.results__track.is-dragging {
  transition: none;
  cursor: grabbing;
}

.results__card {
  flex: 0 0 85%;
  max-width: 560px;
  background: var(--bg-secondary);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 32px;
  margin: 0 12px;
  display: flex;
  flex-direction: column;
  transition: opacity var(--transition), transform var(--transition);
  opacity: 0.35;
  transform: scale(0.95);
}

.results__card.is-active {
  opacity: 1;
  transform: scale(1);
}

@media (min-width: 768px) {
  .results__card {
    flex: 0 0 560px;
    margin: 0 16px;
  }
}

.results__card-header {
  margin-bottom: 16px;
}

.results__card-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: #FFF5F5;
  border: 1px solid #FFCCCC;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.results__card-company {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-primary);
}

.results__card-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}

.results__card-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-top: auto;
}

.results__card-number {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1;
  white-space: nowrap;
}

.results__card-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Arrows */
.results__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2;
}

.results__arrow:hover {
  background: #1A1A1A;
  transform: translateY(-50%) scale(1.08);
}

.results__arrow:disabled {
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}

.results__arrow--prev {
  left: max(16px, calc(50% - 330px));
}

.results__arrow--next {
  right: max(16px, calc(50% - 330px));
}

@media (max-width: 767px) {
  .results__arrow {
    display: none;
  }
}

/* Dots */
.results__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.results__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--divider);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.results__dot.is-active {
  background: var(--bg-dark);
  transform: scale(1.25);
}

/* === 8. STACK === */
.stack {
  padding: 80px 0;
  background: var(--bg-alt);
}

@media (min-width: 768px) {
  .stack {
    padding: 96px 0;
  }
}

.stack__container {
  text-align: center;
}

.stack__category {
  margin-top: 40px;
}

.stack__category:first-of-type {
  margin-top: 48px;
}

.stack__category-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.stack__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.stack__item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border: 1px solid var(--divider);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  transition: all var(--transition);
  width: 88px;
  height: 88px;
}

.stack__item:hover {
  transform: translateY(-2px);
  border-color: #DDDDDD;
}

.stack__item img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  opacity: 0.7;
  transition: all var(--transition);
}

.stack__item:hover img {
  opacity: 1;
}

@media (min-width: 768px) {
  .stack__item img {
    width: 44px;
    height: 44px;
  }
}

/* === 9. COMPARAISON === */
.comparison {
  padding: 80px 0;
  background: var(--bg-primary);
}

@media (min-width: 768px) {
  .comparison {
    padding: 120px 0;
  }
}

.comparison__container {
  text-align: center;
}

.comparison__table-wrap {
  overflow-x: auto;
  margin-top: 56px;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
}

.comparison__table {
  width: 100%;
  min-width: 700px;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
  font-size: 14px;
}

@media (min-width: 768px) {
  .comparison__table {
    font-size: 15px;
  }
}

.comparison__table thead th {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  padding: 16px 20px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--divider);
  white-space: nowrap;
  color: var(--text-primary);
}

.comparison__table thead th:first-child {
  border-radius: var(--radius-sm) 0 0 0;
}

.comparison__table thead th:last-child {
  border-radius: 0 var(--radius-sm) 0 0;
}

/* Y3A column header: solid accent background, white text */
.comparison__table thead .comparison__highlight-col {
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 700;
}

.comparison__table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--divider);
  color: var(--text-secondary);
  vertical-align: middle;
  line-height: 1.5;
}

.comparison__table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 var(--radius-sm);
}

.comparison__table tbody tr:last-child td:last-child {
  border-radius: 0 0 var(--radius-sm) 0;
}

.comparison__row-label {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary) !important;
  white-space: nowrap;
}

/* Y3A column body: subtle terra highlight */
.comparison__highlight-col {
  background: #FFF5F5 !important;
  color: var(--text-primary) !important;
  font-weight: 500;
  border-left: 1px solid var(--accent);
}

/* Comparison icons */
.comparison__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  margin-right: 8px;
  flex-shrink: 0;
  vertical-align: middle;
}

.comparison__icon--yes {
  background: rgba(34, 154, 72, 0.12);
  color: #229A48;
}

.comparison__icon--no {
  background: rgba(200, 50, 50, 0.08);
  color: #C83232;
}

.comparison__icon--partial {
  background: rgba(140, 132, 121, 0.12);
  color: var(--text-secondary);
}

/* === 10. EQUIPE === */
.team {
  padding: 80px 0;
  background: var(--bg-primary);
}

@media (min-width: 768px) {
  .team {
    padding: 120px 0;
  }
}

.team__container {
  text-align: center;
}

.team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 700px;
  margin: 40px auto 40px;
}

@media (min-width: 768px) {
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.team__card {
  background: var(--bg-secondary);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
}

.team__card:hover {
  transform: translateY(-2px);
  border-color: #DDDDDD;
}

.team__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
}

.team__name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.team__role {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}

.team__bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.team__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

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

.team__linkedin svg {
  width: 16px;
  height: 16px;
}

.team__backstory {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.65;
}

/* === 11. FAQ === */
.faq {
  padding: 80px 0;
  background: var(--bg-primary);
}

@media (min-width: 768px) {
  .faq {
    padding: 120px 0;
  }
}

.faq__container {
  max-width: 800px;
}

.faq__list {
  margin-top: 16px;
}

.faq__item {
  border-bottom: 1px solid var(--divider);
}

.faq__item:first-child {
  border-top: 1px solid var(--divider);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  line-height: 1.4;
  gap: 16px;
  transition: color var(--transition);
}

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

.faq__icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
  width: 24px;
  text-align: center;
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item.is-open .faq__answer {
  max-height: 400px;
}

.faq__answer-inner {
  padding: 0 0 24px;
}

.faq__answer-inner p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* === 12. CTA FINAL (Light background with glow) === */
.cta-final {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-final {
    padding: 120px 0;
  }
}

.cta-final__container {
  position: relative;
  z-index: 1;
}

/* Soft glow behind CTA */
.cta-final__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(221, 0, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Decorative ring element */
.cta-final__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(221, 0, 0, 0.1);
  pointer-events: none;
  z-index: 0;
}

.cta-final__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

.cta-final__subtitle {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: #999999;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* === 13. FOOTER (dark - only dark section) === */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer__logo img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer__links a {
  font-size: 14px;
  color: #555555;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--text-light);
}

.footer__bottom {
  padding-top: 24px;
  text-align: center;
}

.footer__bottom p {
  font-size: 13px;
  color: #555555;
}
