/* ============================================================
   ORYX Landing Page - Pixel-perfect CSS from Figma
   ============================================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #10b981;
  --green-dark: #022318;
  --green-deep: #053e2b;
  --green-bg: #e1f3ed;
  --green-icon-bg: rgba(16, 185, 129, 0.14);
  --green-icon-bg-light: rgba(16, 185, 129, 0.08);
  --text-dark: #061543;
  --text-heading: #022318;
  --text-body: #5e6282;
  --text-muted: #8e92ae;
  --text-label: #096647;
  --bg-page: #f5f5f5;
  --white: #ffffff;
  --card-shadow: -6px 8px 20px 0px rgba(2, 35, 24, 0.08);
  --card-shadow-green: -2px 0px 20px 0px rgba(16, 185, 129, 0.2);
  --card-shadow-sm: -2px 2px 10px 0px rgba(2, 35, 24, 0.08);
}

html {
  scroll-behavior: smooth;
}

/* ---------- Scroll animations ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for children */
.animate-delay-1 {
  transition-delay: 0.1s;
}

.animate-delay-2 {
  transition-delay: 0.2s;
}

.animate-delay-3 {
  transition-delay: 0.3s;
}

.animate-delay-4 {
  transition-delay: 0.4s;
}

/* Scale up */
.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-scale.animate-visible {
  opacity: 1;
  transform: scale(1);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-page);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Content wrapper ---------- */
.container {
  width: min(90%, 1320px);
  margin-inline: auto;
  padding: 1.5rem 0;
}

main {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 5rem;
  margin: 5rem auto;
}

.hero-robot {
  display: none;
}

/* ---------- Section labels & titles ---------- */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: normal;
  color: var(--green);
  text-transform: uppercase;
}

.section-label--light {
  color: var(--green);
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.7rem;
  line-height: normal;
}

.section-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: normal;
  color: var(--text-body);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.section-header--left {
  align-items: flex-start;
  text-align: left;
}

.section-header--center {
  align-items: center;
  text-align: center;
}

/* Gradient text utilities */
.gradient-text-dark {
  background: linear-gradient(90deg, #022318 29.45%, #d8e3e0 66.63%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-dark-h {
  background: linear-gradient(90deg, #022318 67.61%, #d8e3e0 112.5%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-dark-left {
  background: linear-gradient(90deg, #022318 78.69%, #d8e3e0 109.32%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-dark-vision {
  background: linear-gradient(111deg, #022318 77.61%, #d8e3e0 102.66%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  font-family: 'Sora', sans-serif;
}

/* ============================================================
   TOP NAV
   ============================================================ */
.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  width: 7.625rem;
  height: 2.5rem;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  /* 24px */
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  border-radius: 0.875rem;
  border: 1.5px solid var(--green);
  background: transparent;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--green);
  transition: background 0.2s, transform 0.2s;
}

.nav-contact:hover {
  background: rgba(16, 185, 129, 0.08);
  transform: translateY(-1px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6.25rem;
  position: relative;
  overflow: visible;
}

.hero-content {
  display: flex;
  align-items: flex-end;
  width: 100%;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -140px;
  width: 100%;
  height: 350px;
  left: -70px;
  background: radial-gradient(ellipse at center,
      rgba(16, 185, 129, 0.15) 0%,
      rgba(16, 185, 129, 0.06) 70%,
      transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.875rem 1.25rem;
  border-radius: 1rem;
  background: var(--green-bg);
  border: 1px solid var(--white);
  width: fit-content;
}

.hero-tag span {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-label);
  text-transform: capitalize;
  line-height: normal;
}

.hero-text>.hero-tag+.hero-title {
  margin-top: -1.5rem;
}

.hero-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 2.125rem;
  letter-spacing: -1.2px;
  background: linear-gradient(163.95deg, #053e2b 41.22%, #a1c1b6 91.69%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.4;
  color: var(--text-body);
  width: 606px;
  max-width: 100%;
  width: 100%;
  margin-top: -0.625rem;
  margin-bottom: 0.9375rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: -24px;
  width: 100%;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  height: 3.75rem;
  padding: 0.875rem 1.375rem;
  border-radius: 1.25rem;
  background: linear-gradient(170deg, #7fddbe 3.78%, #10b981 75.98%, #07533a 167.55%);
  box-shadow: 0px 20px 35px 0px rgba(16, 185, 129, 0.15);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
  justify-content: center;
}

.btn-primary span {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--white);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 1.5rem 1.5rem 2.5rem 0px rgba(16, 185, 129, 0.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  gap: 0.625rem;
  height: 3.75rem;
  padding: 0.875rem 1.375rem;
  border-radius: 1.25rem;
  border: 1.5px solid var(--green);
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(20px);
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}

.btn-outline span {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--green);
  white-space: nowrap;
}

.btn-outline:hover {
  transform: translateY(-2px);
  background: rgba(16, 185, 129, 0.06);
}

/* Scroll indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  height: 3.75rem;
  padding: 0.625rem;
  cursor: pointer;
}

.scroll-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--text-muted);
}

.scroll-indicator .icon-32 {
  animation: bounce 2s infinite;
}

@keyframes bounce {

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

  40% {
    transform: translateY(-8px);
  }

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

/* ============================================================
   CONSTAT SECTION
   ============================================================ */
.constat-section {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  border-radius: 1.25rem;
}

.constat-section .section-header {
  gap: 0.5rem;
}

.constat-section .section-header .section-title {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
}

.constat-section .section-desc {
  margin-top: 0.5rem;
}

.question-bubbles,
.question-mascot {
  display: none;
}

/* Feature pills */
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
  justify-content: center;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 1rem;
  background: var(--green-bg);
  border: 1px solid var(--white);
  width: 100%;
}

.pill-icon {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  border-radius: 0.625rem;
  background: var(--green-icon-bg);
  flex-shrink: 0;
}

.feature-pill span {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.blur-accent {
  position: absolute;
  width: 16.0625rem;
  height: 21.625rem;
  top: -294px;
  left: 25.0625rem;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.blur-accent img {
  width: 7.110625rem;
  height: 7.6875rem;
  object-fit: cover;
  position: absolute;
  top: -0.614375rem;
  left: -0.31875rem;
}

.blur-accent::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(245, 245, 244, 0) 20.19%, #f5f5f4 92.79%);
}

/* ============================================================
   STEPS SECTION (Comment ça marche)
   ============================================================ */
.steps-section {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  align-items: center;
  padding-bottom: 2.25rem;
}

.steps-section .section-header {
  text-align: center;
}

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  height: auto;
}

.step-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 24px;
  border-radius: 0.625rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
  border: 1px solid var(--white);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.step-number {
  position: absolute;
  top: 0.5625rem;
  right: 1.5rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 3rem;
  color: #e9e9e9;
  line-height: normal;
}

.step-icon {
  width: 7.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.step-icon-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.step-icon-crystal {
  width: 6.25rem;
  object-fit: cover;
  object-position: center;
}

.step-icon-ribbons {
  width: 3.9375rem;
  transform: rotate(15deg);
}

.step-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-text h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-heading);
  line-height: normal;
}

.step-text p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: normal;
}

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.benefits-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.125rem;
  align-items: center;
  padding-bottom: 2.25rem;
  position: relative;
}

.benefits-section::before {
  content: '';
  position: absolute;
  left: -27.125rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28.125rem;
  height: 36.25rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0.05) 40%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.benefits-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  flex-shrink: 0;
}

.benefits-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-card {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 24px;
  border-radius: 0.625rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
  border: 1px solid var(--white);
  box-shadow: var(--card-shadow);
}

.benefit-icon-wrap {
  display: flex;
  align-items: center;
  padding: 0.529375rem;
  border-radius: 0.661875rem;
  background: var(--green-icon-bg-light);
  flex-shrink: 0;
  align-self: stretch;
}

.benefit-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefit-text h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-heading);
  line-height: normal;
}

.benefit-text p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: normal;
}

/* ============================================================
   COMPARISON SECTION (Avant / Après)
   ============================================================ */
.comparison-section {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  align-items: center;
  padding-bottom: 2.25rem;
}

.comparison-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  height: auto;
}

.comparison-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: 0.625rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
}

.comparison-before {
  border: 1px solid var(--white);
  box-shadow: var(--card-shadow);
}

.comparison-after {
  border: 1px solid #fcfcfc;
  box-shadow: var(--card-shadow-green);
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
}

.comparison-title-before {
  flex: 1;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #a54848;
  line-height: normal;
}

.comparison-title-after {
  flex: 1;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--green);
  line-height: normal;
}

.comparison-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
}

.comparison-item-icon {
  display: flex;
  align-items: center;
  padding-top: 0.1875rem;
  flex-shrink: 0;
}

.comparison-item p {
  flex: 1;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: normal;
}

/* ============================================================
   VISION / QUOTE SECTION
   ============================================================ */
.vision-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  padding: 3rem 0;
  border-radius: 1.25rem;
}

.vision-section .section-header {
  gap: 0.5rem;
}

.vision-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  padding: 0 1.5rem;
}

.vision-tag {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border-radius: 1rem;
  background: var(--green-bg);
  border: 1px solid var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--text-dark);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  align-items: center;
  padding-bottom: 1.5rem;
}

.faq-section .section-title {
  width: 100%;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  padding: 0;
}

.faq-item {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: 0.625rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
  border: 1px solid var(--white);
  box-shadow: var(--card-shadow-sm);
  cursor: pointer;
  transition: box-shadow 0.3s;
}

.faq-item--open {
  border-color: #aff4dd;
  box-shadow: var(--card-shadow-green);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
}

.faq-question span {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-heading);
  line-height: normal;
}

.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item--open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}

.faq-item--open .faq-answer {
  max-height: 200px;
  margin-top: 0.75rem;
}

.faq-answer p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: normal;
}

/* ============================================================
   CTA FOOTER SECTION
   ============================================================ */
.cta-footer-section {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  position: relative;
}

.cta-3d-element {
  position: absolute;
  width: 40.875rem;
  height: 23.875rem;
  left: 50%;
  top: -200px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.cta-3d-element img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 3.75rem 2rem;
  border-radius: 2.5rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: radial-gradient(ellipse at 50% -25%,
      rgba(16, 185, 129, 1) 0%,
      rgba(12, 140, 98, 1) 17%,
      rgba(8, 95, 66, 1) 34%,
      rgba(6, 73, 51, 1) 43%,
      rgba(4, 50, 35, 1) 51%,
      rgba(2, 28, 19, 1) 60%,
      rgba(1, 17, 12, 1) 64%,
      rgba(0, 6, 4, 1) 68%);
}

.cta-box-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: center;
}

.cta-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.625rem;
  line-height: normal;
  text-align: center;
  width: 100%;
}

.cta-title-light {
  font-weight: 200;
  background: linear-gradient(126deg, #ffffff 77.61%, #d8e3e0 102.66%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-title-bold {
  font-weight: 600;
  background: linear-gradient(126deg, #ffffff 77.61%, #d8e3e0 102.66%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #aaaaaa;
  text-align: center;
  width: 37.875rem;
  max-width: 100%;
  line-height: normal;
}

.cta-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-feature svg {
  flex-shrink: 0;
}

.cta-feature span {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--white);
  white-space: nowrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  height: 60px;
  padding: 0.875rem 1.375rem;
  border-radius: 1.25rem;
  background: var(--green);
  border: 1px solid #ace3d1;
  box-shadow: 0px 20px 35px 0px rgba(16, 185, 129, 0.15);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button span {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--white);
  white-space: normal;
  text-align: center;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 24px 40px 0px rgba(16, 185, 129, 0.3);
}

/* Footer nav */
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-logo-img {
  height: 1.25rem;
  width: auto;
  display: block;
}

.footer-tagline {
  display: block;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-muted);
}

.footer-copy {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-muted);
}

/* ============================================================
   SCROLL TO TOP BUTTON
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: none;
  background: var(--green);
  box-shadow: 0 0.25rem 1rem rgba(16, 185, 129, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.25rem);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  z-index: 100;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--green-deep);
  transform: translateY(-0.125rem);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (min-width: 768px) {
  .container {
    padding: 2.5rem 0;
  }

  .hero-title {
    font-size: 2.375rem;
    line-height: 2.75rem;
  }

  .hero-buttons {
    align-items: baseline;
  }

  .btn-primary {
    width: auto;
  }

  .section-title {
    font-size: 36px;
    font-weight: 700 !important;
  }
}

/* Laptop / Small Desktop */
@media (min-width: 1024px) {
  .container {
    padding: 3rem 0;
  }

  /* Slide from left */
  .animate-slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  }

  .animate-slide-left.animate-visible {
    opacity: 1;
    transform: translateX(0);
  }

  /* Slide from right */
  .animate-slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  }

  .animate-slide-right.animate-visible {
    opacity: 1;
    transform: translateX(0);
  }

  /* Hero robot entrance animation (preserves final translateY(-45%)) */
  .animate-robot {
    opacity: 0;
    transform: translateY(-45%) scale(0.3) rotate3d(0, 1, 0.2, 90deg);
    filter: blur(12px);
    transition: none;
    right: -3rem;
    top: 38.5%;
    width: 600px;
  }

  .animate-robot.animate-visible {
    animation: robotEntrance 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards, robotFloat 4s ease-in-out 1.8s infinite;
  }

  @keyframes robotEntrance {
    0% {
      opacity: 0;
      transform: translateY(-45%) scale(0.3) rotate3d(0, 1, 0.2, 90deg);
      filter: blur(12px);
    }

    40% {
      opacity: 1;
      filter: blur(0px);
    }

    70% {
      transform: translateY(-45%) scale(1.06) rotate3d(0, 0, 0, 0deg);
    }

    85% {
      transform: translateY(-45%) scale(0.97) rotate3d(0, 0, 0, 0deg);
    }

    100% {
      opacity: 1;
      transform: translateY(-45%) scale(1) rotate3d(0, 0, 0, 0deg);
      filter: blur(0px);
    }
  }

  @keyframes robotFloat {

    0%,
    100% {
      transform: translateY(-45%) scale(1) rotate(0deg);
    }

    25% {
      transform: translateY(calc(-45% - 8px)) scale(1) rotate(0.5deg);
    }

    50% {
      transform: translateY(calc(-45% + 2px)) scale(1) rotate(0deg);
    }

    75% {
      transform: translateY(calc(-45% - 5px)) scale(1) rotate(-0.4deg);
    }
  }

  /* Hero robot / 3D character */
  .hero-robot {
    display: block;
    position: absolute;
    transform: translateY(-45%);
    pointer-events: none;
    z-index: -1;
  }

  .hero-robot-mask {
    position: relative;
    width: 100%;
    overflow: visible;
    filter: drop-shadow(3.125rem 3.125rem 1.875rem rgba(2, 35, 24, 0.15));
  }

  .hero-robot-img {
    max-width: 100%;
    height: auto;
    display: block;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    filter: saturate(1.3) brightness(1.12) contrast(0.94);
    object-fit: cover;
    object-position: center;
  }

  .hero-robot-fade {
    display: none;
  }

  .hero-robot {
    display: block;
  }

  .hero-text {
    width: 60%;
  }

  .hero-title {
    font-size: 3rem;
    line-height: 3.375rem;
  }

  .hero-description {
    width: 90%;
  }

  /* Question bubbles */
  .constat-section {
    gap: 400px;
  }

  .question-bubbles,
  .question-mascot {
    display: block;
  }

  .question-bubbles {
    position: absolute;
    top: 1030px;
    left: 0;
    right: 0;
    height: 340px;
    pointer-events: none;
  }

  .question-mascot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: auto;
    z-index: -1;
  }

  .bubble {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 12px;
    background: linear-gradient(90deg, #5e6282, #8a94ac);
  }

  .bubble span {
    font-family: 'Silkscreen', cursive;
    font-weight: 400;
    font-size: 14px;
    color: var(--white);
    white-space: nowrap;
  }

  .bubble-1 {
    right: 62%;
    top: 78px;
    transform: rotate(5.12deg);
    opacity: 0;
  }

  .bubble-2 {
    right: 60%;
    top: 176px;
    transform: rotate(0.48deg);
    opacity: 0;
  }

  .bubble-3 {
    left: 78%;
    top: 130px;
    transform: translateX(-50%) rotate(-0.78deg);
    opacity: 0;
  }

  /* Triggered by JS on scroll */
  .question-bubbles.animate-visible .bubble-1 {
    animation: pop-in-1 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
  }

  .question-bubbles.animate-visible .bubble-2 {
    animation: pop-in-2 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
  }

  .question-bubbles.animate-visible .bubble-3 {
    animation: pop-in-3 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s both;
  }

  @keyframes pop-in-1 {
    0% {
      opacity: 0;
      transform: scale(0) rotate(5.12deg);
    }

    100% {
      opacity: 1;
      transform: scale(1) rotate(5.12deg);
    }
  }

  @keyframes pop-in-2 {
    0% {
      opacity: 0;
      transform: scale(0) rotate(0.48deg);
    }

    100% {
      opacity: 1;
      transform: scale(1) rotate(0.48deg);
    }
  }

  @keyframes pop-in-3 {
    0% {
      opacity: 0;
      transform: scale(0) translateX(-50%) rotate(-0.78deg);
    }

    100% {
      opacity: 1;
      transform: scale(1) translateX(-50%) rotate(-0.78deg);
    }
  }

  .feature-pill {
    width: 480px;
  }

  .steps-grid {
    flex-direction: row;
  }

  .benefits-section {
    flex-direction: row;
    align-items: center;
  }

  .benefits-left {
    width: 400px;
  }

  .comparison-grid {
    flex-direction: row;
  }

  .faq-list {
    padding: 0 6rem;
  }

  .cta-title {
    font-size: 2.3rem;
  }

  .cta-features {
    flex-direction: row;
  }
  
  .cta-button span {
    font-size: 1.15rem;
  }

  .hero-section::before {
    left: 50px;
  }

  .footer-nav {
    flex-direction: row;
    margin-bottom: 18px;
  }
  
}

@media (min-width: 1280px) {
  .hero-text {
    width: 60%;
  }

  .hero-title {
    font-size: 3.625rem;
    line-height: 4.2rem;
  }

  .hero-description {
    width: 80%;
  }

  .hero-robot {
    right: -1rem;
    top: 33%;
    width: 700px;
  }

  .bubble-1 {
    right: 59%;
  }

  .bubble-2 {
    right: 58%;
  }

  .bubble-3 {
    left: 73%;
  }

  .benefits-left {
    width: 476px;
  }

  .faq-list {
    padding: 0 12rem;
  }

  .hero-section::before {
    left: 63px;
  }
}

@media (min-width: 1460px) {
  .bubble-3 {
    left: 69%;
  }
}