/* ===================================================================
   MEHIN — Award-Winning Landing Page Styles
   Premium RTL Hebrew Educational Platform
   =================================================================== */

/* ----- Custom Properties ----- */
:root {
  --bg: #f3f7ff;
  --bg-dark: #080e1a;
  --surface: #ffffff;
  --surface-soft: #ebf2fd;
  --surface-glass: rgba(255,255,255,0.06);
  --text: #111f35;
  --text-light: #f7fbff;
  --muted: #526382;
  --line: #d2ddf0;
  --brand: #00d5a3;
  --brand-deep: #00886d;
  --brand-dark: #042e25;
  --brand-glow: rgba(0,213,163,0.35);
  --indigo: #6f85ff;
  --cyan: #4bc8ff;
  --hero-text: #f7fbff;
  --hero-muted: rgba(247,251,255,0.88);
  --max: 1200px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scrollbar-color: var(--brand) transparent;
  scrollbar-width: thin;
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brand), var(--indigo));
  border-radius: 999px;
}

body {
  font-family: "Heebo", sans-serif;
  font-weight: 400;
  background: linear-gradient(180deg, #f7faff 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.mobile-nav-active {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img, video {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

/* ----- Scroll Progress Bar ----- */
#scroll-progress {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), var(--indigo), var(--cyan));
  z-index: 100;
  transition: none;
  will-change: width;
  pointer-events: none;
}

/* ----- Layout Shell ----- */
.shell {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ----- BG Decorations ----- */
.bg-orb {
  position: fixed;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -3;
  opacity: 0.7;
}

.orb-a {
  top: -200px;
  inset-inline-end: -200px;
  background: radial-gradient(circle, rgba(111, 133, 255, 0.28), rgba(111, 133, 255, 0.08));
}

.orb-b {
  inset-inline-start: -200px;
  bottom: -240px;
  background: radial-gradient(circle, rgba(0, 213, 163, 0.28), rgba(0, 213, 163, 0.08));
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: 0.12;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.4'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ===================================================================
   HEADER & NAVIGATION
   =================================================================== */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 90;
  background: rgba(8, 18, 36, 0.12);
  border-bottom: 1px solid rgba(243, 250, 255, 0.12);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  transition: background-color 320ms var(--ease-out),
              border-color 320ms var(--ease-out),
              box-shadow 320ms var(--ease-out);
}

.site-header.scrolled {
  background: rgba(8, 18, 36, 0.62);
  border-bottom-color: rgba(243, 250, 255, 0.22);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  transition: opacity 200ms ease;
}

.brand:hover {
  opacity: 0.85;
}

.brand img {
  width: 38px;
  height: 38px;
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  color: rgba(244, 251, 255, 0.88);
  font-weight: 500;
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.3rem;
  transition: color 220ms var(--ease-out);
}

.main-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand), var(--cyan));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 280ms var(--ease-out);
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

/* ----- Mobile Menu Button ----- */
#mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  z-index: 95;
  transition: border-color 200ms ease;
}

#mobile-menu-btn:hover {
  border-color: rgba(255,255,255,0.4);
}

#mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 300ms var(--ease-out), opacity 200ms ease;
  transform-origin: center;
}

/* Animated hamburger to X */
.mobile-nav-active #mobile-menu-btn span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav-active #mobile-menu-btn span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-nav-active #mobile-menu-btn span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----- Mobile Nav Overlay ----- */
#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 89;
  background: rgba(6, 14, 28, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms var(--ease-out);
}

#mobile-nav a {
  color: var(--hero-text);
  font-family: "Rubik", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 300ms var(--ease-out), transform 300ms var(--ease-out), color 200ms ease;
}

#mobile-nav a:hover {
  color: var(--brand);
}

.mobile-nav-active #mobile-nav {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-active #mobile-nav a {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger mobile nav links */
.mobile-nav-active #mobile-nav a:nth-child(1) { transition-delay: 80ms; }
.mobile-nav-active #mobile-nav a:nth-child(2) { transition-delay: 130ms; }
.mobile-nav-active #mobile-nav a:nth-child(3) { transition-delay: 180ms; }
.mobile-nav-active #mobile-nav a:nth-child(4) { transition-delay: 230ms; }
.mobile-nav-active #mobile-nav a:nth-child(5) { transition-delay: 280ms; }
.mobile-nav-active #mobile-nav a:nth-child(6) { transition-delay: 330ms; }
.mobile-nav-active #mobile-nav a:nth-child(7) { transition-delay: 380ms; }

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Heebo", sans-serif;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  transition: transform 300ms var(--ease-out),
              box-shadow 300ms var(--ease-out),
              border-color 300ms var(--ease-out),
              background 300ms var(--ease-out);
}

.btn:active {
  transform: scale(0.97) !important;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  font-size: 1rem;
  padding: 0.78rem 1.55rem;
}

.btn-primary {
  background: linear-gradient(135deg, #8dffe8 0%, var(--brand) 60%, var(--brand-deep) 100%);
  color: #04251d;
  box-shadow: 0 8px 24px rgba(0, 213, 163, 0.3),
              0 2px 6px rgba(0, 213, 163, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 36px rgba(0, 213, 163, 0.42),
              0 4px 12px rgba(0, 213, 163, 0.2);
}

.btn-secondary {
  border: 1.5px solid var(--line);
  color: #1b3558;
  background: linear-gradient(180deg, #fff 0%, #f0f6ff 100%);
  box-shadow: 0 4px 12px rgba(12, 28, 50, 0.06);
}

.btn-secondary:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: #9db6da;
  box-shadow: 0 8px 24px rgba(12, 28, 50, 0.12);
}

.btn-ghost {
  border: 1.5px solid rgba(243, 251, 255, 0.45);
  color: #fff;
  background: rgba(8, 22, 41, 0.3);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(243, 251, 255, 0.75);
  background: rgba(8, 22, 41, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-mini {
  background: linear-gradient(135deg, #89ffe5 0%, var(--brand) 100%);
  color: #05251d;
  font-size: 0.88rem;
  padding: 0.5rem 1.1rem;
  font-weight: 700;
}

.btn-mini:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 18px rgba(0, 213, 163, 0.3);
}

.btn-glow {
  animation: btn-glow-pulse 2.4s ease-in-out infinite;
}

@keyframes btn-glow-pulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(0, 213, 163, 0.3),
                0 0 0 0 rgba(0, 213, 163, 0);
  }
  50% {
    box-shadow: 0 8px 24px rgba(0, 213, 163, 0.3),
                0 0 0 10px rgba(0, 213, 163, 0),
                0 0 40px rgba(0, 213, 163, 0.2);
  }
}

/* ===================================================================
   TYPOGRAPHY
   =================================================================== */
h1, h2, h3 {
  margin: 0;
  font-family: "Rubik", sans-serif;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 900;
  max-width: 13ch;
  letter-spacing: -0.02em;
}

h1 span {
  display: block;
  background: linear-gradient(125deg, #ccfff0 0%, #7cd2ff 40%, #a5b4ff 70%, #c9d4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  font-weight: 800;
  max-width: 21ch;
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.32rem);
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: rgba(199, 255, 241, 0.96);
}

.eyebrow-dark {
  color: var(--brand-deep);
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand), var(--indigo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===================================================================
   HERO SECTION
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
  contain: layout;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  contain: strict;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* Highlight keyword animation base styles */
.highlight {
  color: var(--brand);
  font-weight: 700;
  background-image: linear-gradient(120deg, rgba(0,213,163,0.22) 0%, rgba(75,200,255,0.18) 100%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: 0% 100%;
  padding: 0.05em 0.25em;
  border-radius: 4px;
  transition: background-size 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reduce-motion .highlight {
  background-size: 100% 100%;
  transition: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5, 16, 34, 0.12) 0%, rgba(5, 16, 34, 0.06) 50%, rgba(5, 16, 34, 0.42) 100%),
    linear-gradient(105deg, rgba(5, 16, 34, 0.38) 0%, rgba(5, 16, 34, 0.10) 45%, rgba(5, 16, 34, 0.35) 100%),
    radial-gradient(ellipse at 80% 15%, rgba(0, 213, 163, 0.18), transparent 50%),
    radial-gradient(ellipse at 20% 55%, rgba(111, 133, 255, 0.20), transparent 55%);
}

.hero-gridline {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 80%);
  opacity: 0.3;
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: right;
  padding-top: 6rem;
  padding-bottom: 4.5rem;
  min-height: calc(100vh - 6rem);
  min-height: calc(100dvh - 6rem);
}

.hero-copy {
  color: var(--hero-text);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 620px;
}

.hero-text {
  margin: 1.1rem 0 1.8rem;
  max-width: 38ch;
  color: var(--hero-muted);
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.hero-pills {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-pills li {
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(247, 252, 255, 0.94);
  border: 1px solid rgba(247, 252, 255, 0.22);
  background: rgba(8, 22, 41, 0.32);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 0.38rem 0.82rem;
  transition: border-color 250ms ease, background 250ms ease;
}

.hero-pills li:hover {
  border-color: rgba(247, 252, 255, 0.45);
  background: rgba(8, 22, 41, 0.5);
}

.hero-social-proof {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--hero-muted);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.2rem;
  inset-inline-start: 50%;
  transform: translateX(50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  animation: indicator-fade-in 1.2s 2.5s var(--ease-out) both;
}

/* --- Mouse outline --- */
.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  position: relative;
  display: flex;
  justify-content: center;
  transition: border-color 0.3s ease;
}

.hero-scroll-indicator:hover .scroll-mouse {
  border-color: var(--brand);
}

/* --- Animated wheel dot --- */
.scroll-wheel {
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--brand);
  position: absolute;
  top: 7px;
  animation: scroll-wheel 2s var(--ease-out) infinite;
  box-shadow: 0 0 6px rgba(0, 213, 163, 0.5);
}

/* --- Text label --- */
.scroll-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.hero-scroll-indicator:hover .scroll-label {
  color: rgba(255, 255, 255, 0.9);
}

/* --- Chevrons below --- */
.scroll-chevrons {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s ease;
}

.hero-scroll-indicator:hover .scroll-chevrons {
  color: var(--brand);
}

.chevron-1 {
  animation: chevron-pulse 2s ease-in-out infinite;
}

.chevron-2 {
  animation: chevron-pulse 2s 0.3s ease-in-out infinite;
}

/* --- Keyframes --- */
@keyframes scroll-wheel {
  0%   { opacity: 1; top: 7px; }
  50%  { opacity: 0.3; top: 20px; }
  100% { opacity: 1; top: 7px; }
}

@keyframes chevron-pulse {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50%      { opacity: 0.7; transform: translateY(3px); }
}

@keyframes indicator-fade-in {
  from { opacity: 0; transform: translateX(50%) translateY(12px); }
  to   { opacity: 1; transform: translateX(50%) translateY(0); }
}

/* ----- Hero Cards ----- */
.hero-cards {
  display: grid;
  gap: 0.9rem;
}

.glass-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(240, 250, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.2rem;
  color: #f4fbff;
  background: linear-gradient(145deg, rgba(15, 35, 58, 0.5), rgba(15, 35, 58, 0.22));
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 18px 40px rgba(8, 20, 42, 0.25),
              inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 350ms var(--ease-out),
              box-shadow 350ms var(--ease-out),
              border-color 350ms var(--ease-out);
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 250, 255, 0.35);
  box-shadow: 0 24px 48px rgba(8, 20, 42, 0.32),
              inset 0 1px 0 rgba(255,255,255,0.12),
              0 0 0 1px rgba(0, 213, 163, 0.1);
}

.glass-card p {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(190, 255, 241, 0.95);
}

.glass-card strong {
  display: block;
  margin: 0.3rem 0 0.35rem;
  font-family: "Rubik", sans-serif;
  font-size: clamp(1.5rem, 3.6vw, 2.2rem);
  font-weight: 800;
}

.glass-card span {
  color: rgba(241, 250, 255, 0.85);
  font-size: 0.92rem;
}

/* ===================================================================
   SECTIONS — GENERAL
   =================================================================== */
.section {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  scroll-margin-top: 5rem;
  contain: layout;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  line-height: 1.7;
}

/* ----- Social proof in hero ----- */
.proof-stars {
  color: #ffd166;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.proof-divider {
  color: rgba(247, 252, 255, 0.35);
  font-weight: 300;
}

/* ===================================================================
   JOURNEY SECTION — "From Summons to Course"
   =================================================================== */
.section-journey {
  background: linear-gradient(180deg, #080e1a 0%, #0d1829 50%, #080e1a 100%);
  color: var(--text-light);
  overflow: hidden;
}

.journey-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.journey-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: "Rubik", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.journey-title {
  font-family: "Rubik", sans-serif;
  font-size: clamp(1.65rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-light);
  margin: 0 auto 1rem;
  text-align: center;
}

.journey-title .gradient-text {
  background: linear-gradient(135deg, var(--brand), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.journey-subtitle {
  font-family: "Heebo", sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.75;
  color: rgba(247, 251, 255, 0.65);
  max-width: 560px;
  margin: 0 auto;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.journey-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.journey-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: var(--text-light);
  cursor: pointer;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.journey-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 213, 163, 0.2), 0 0 40px rgba(0, 213, 163, 0.06);
}

.journey-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.journey-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.journey-card:hover .journey-card__image img {
  transform: scale(1.05);
}

.journey-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(8, 14, 26, 0.92) 0%, rgba(8, 14, 26, 0.6) 40%, rgba(8, 14, 26, 0.25) 100%);
  transition: background 0.45s var(--ease-out);
}

.journey-card:hover .journey-card__overlay {
  background: linear-gradient(0deg, rgba(8, 14, 26, 0.95) 0%, rgba(8, 14, 26, 0.55) 40%, rgba(8, 14, 26, 0.2) 100%);
}

.journey-card__content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.journey-card__number {
  font-family: "Rubik", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.journey-card__number::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--brand);
  opacity: 0.5;
}

.journey-card__heading {
  font-family: "Rubik", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}

.journey-card__desc {
  font-family: "Heebo", sans-serif;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(247, 251, 255, 0.7);
  margin: 0;
}

.journey-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
  font-family: "Rubik", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  transition: gap 0.3s var(--ease-out);
}

.journey-card:hover .journey-card__cta {
  gap: 0.65rem;
}

.journey-card__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-out);
}

.journey-card:hover .journey-card__cta svg {
  transform: translateX(-3px);
}

.journey-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  z-index: 3;
  background: linear-gradient(90deg, var(--brand), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.journey-card:hover::before {
  opacity: 1;
}

@media (max-width: 960px) {
  .journey-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
    gap: 1.25rem;
  }
  .journey-card { min-height: 340px; }
  .journey-header { margin-bottom: 2.5rem; }
}

@media (max-width: 480px) {
  .journey-card { min-height: 300px; border-radius: var(--radius-md); }
  .journey-card__content { padding: 1.5rem 1.25rem; }
  .journey-title { font-size: 1.5rem; }
}

/* ===================================================================
   APP EXPERIENCE SECTION
   =================================================================== */
.section-experience {
  background: var(--bg);
  overflow: hidden;
}

.section-experience .eyebrow {
  color: var(--brand-deep);
  font-family: "Rubik", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
}

.section-experience h2 {
  font-family: "Rubik", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
  margin: 0 0 1rem;
}

.section-experience .experience-subtitle {
  font-family: "Heebo", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 2.2rem;
  max-width: 440px;
}

.experience-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.experience-copy { order: 1; }

.experience-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.experience-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-family: "Heebo", sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  color: var(--text);
  line-height: 1.6;
}

.experience-feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0, 213, 163, 0.12), rgba(0, 213, 163, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.experience-feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--brand-deep);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.experience-phone {
  order: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.experience-device {
  position: relative;
  width: 320px;
  max-width: 100%;
}

.experience-device-frame {
  position: relative;
  border-radius: 36px;
  background: #1a1a2e;
  padding: 12px;
  box-shadow: 0 25px 60px rgba(17, 31, 53, 0.18), 0 8px 24px rgba(17, 31, 53, 0.10), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.experience-device-frame::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 20px;
  background: #1a1a2e;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}

.experience-device-screen {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: #0d0d1a;
  aspect-ratio: 9 / 19.5;
}

.experience-device-screen video,
.experience-device-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.experience-phone-bg {
  position: absolute;
  width: 220px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(17, 31, 53, 0.14), 0 4px 12px rgba(17, 31, 53, 0.08);
  top: 50%;
  transform: translateY(-50%) rotate(-4deg);
  opacity: 0.45;
  z-index: -1;
}

[dir="rtl"] .experience-phone-bg {
  left: -30px;
  right: auto;
}

.experience-phone-bg img {
  width: 100%;
  height: auto;
  display: block;
}

.experience-phone::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
  pointer-events: none;
}

.experience-cta { display: inline-flex; }

@media (max-width: 860px) {
  .experience-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .experience-copy { order: 1; }
  .experience-phone { order: 2; }
  .section-experience .experience-subtitle { max-width: 100%; margin-inline: auto; }
  .experience-features { align-items: center; }
  .experience-feature { max-width: 340px; text-align: start; }
  .experience-cta { justify-content: center; width: 100%; }
  .experience-cta .btn { width: 100%; max-width: 320px; }
  .experience-phone-bg { display: none; }
}

@media (max-width: 480px) {
  .experience-device { width: 300px; }
  .experience-device-frame { border-radius: 32px; padding: 10px; }
  .experience-device-screen { border-radius: 24px; }
  .experience-device-frame::before { width: 70px; height: 18px; border-radius: 0 0 12px 12px; top: 10px; }
}

/* ===================================================================
   PREP INTERVIEWS SECTION
   =================================================================== */
.section-prep {
  background: linear-gradient(180deg, #060c17 0%, #0b1526 50%, #060c17 100%);
  color: var(--text-light);
  overflow: hidden;
  position: relative;
}

.section-prep::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}

.section-prep > .shell { position: relative; z-index: 1; }

.prep-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.prep-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.prep-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 14, 26, 0.55) 0%, rgba(8, 14, 26, 0.15) 50%, rgba(0, 213, 163, 0.08) 100%);
  pointer-events: none;
}

.prep-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prep-image-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 213, 163, 0.12), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.prep-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.prep-eyebrow {
  margin: 0;
  font-family: "Rubik", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: rgba(0, 213, 163, 0.9);
}

.prep-headline {
  font-family: "Rubik", sans-serif;
  font-size: clamp(1.65rem, 3.2vw, 2.55rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-light);
  margin: 0;
}

.prep-desc {
  font-family: "Heebo", sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  color: rgba(247, 251, 255, 0.68);
  line-height: 1.75;
  margin: 0;
  max-width: 540px;
}

.prep-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.prep-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.prep-feature:hover {
  border-color: rgba(0, 213, 163, 0.25);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.prep-feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0, 213, 163, 0.15), rgba(0, 213, 163, 0.05));
  color: var(--brand);
}

.prep-feature-icon svg { width: 18px; height: 18px; }

.prep-feature-body { display: flex; flex-direction: column; gap: 0.2rem; }

.prep-feature-title {
  font-family: "Rubik", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-light);
  margin: 0;
  line-height: 1.35;
}

.prep-feature-text {
  font-family: "Heebo", sans-serif;
  font-size: 0.82rem;
  color: rgba(247, 251, 255, 0.52);
  line-height: 1.55;
  margin: 0;
}

.prep-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.prep-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.82rem 1.75rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #8dffe8 0%, var(--brand) 60%, var(--brand-deep) 100%);
  color: #04251d;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0, 213, 163, 0.28), 0 2px 8px rgba(0, 213, 163, 0.12);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.prep-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 40px rgba(0, 213, 163, 0.4), 0 4px 14px rgba(0, 213, 163, 0.18);
}

.prep-cta:active { transform: scale(0.97); }

.prep-cta-icon { width: 18px; height: 18px; display: flex; flex-shrink: 0; }

.prep-secondary {
  font-family: "Heebo", sans-serif;
  font-size: 0.85rem;
  color: rgba(247, 251, 255, 0.45);
  transition: color 0.25s var(--ease-out);
}

.prep-secondary a {
  color: rgba(0, 213, 163, 0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 213, 163, 0.2);
  transition: color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.prep-secondary a:hover { color: var(--brand); border-color: var(--brand); }

@media (max-width: 960px) {
  .prep-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .prep-image-wrap { max-height: 340px; aspect-ratio: 16 / 9; order: -1; }
  .prep-features { grid-template-columns: 1fr 1fr; }
  .prep-headline { font-size: clamp(1.5rem, 4.5vw, 2rem); }
}

@media (max-width: 600px) {
  .prep-features { grid-template-columns: 1fr; }
  .prep-image-wrap { max-height: 240px; border-radius: var(--radius-md); }
  .prep-actions { align-items: stretch; }
  .prep-cta { justify-content: center; width: 100%; }
  .prep-secondary { text-align: center; }
}

/* ===================================================================
   CRITICS SECTION — Testimonials
   =================================================================== */
.section-critics {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(235, 243, 255, 0.5) 100%);
}

.critics-head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.critics-head .eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--brand-deep);
  font-family: "Rubik", sans-serif;
  margin: 0 0 0.85rem;
}

.critics-head h2 {
  font-family: "Rubik", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin: 0;
  max-width: none;
}

.critics-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.critics-grid .critic-card {
  flex: 0 1 calc((100% - 2.5rem) / 3);
}

.critic-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff 0%, #f9fbff 100%);
  padding: 2rem 1.6rem 1.6rem;
  box-shadow: 0 6px 20px rgba(12, 28, 50, 0.05);
  transition: transform 350ms var(--ease-out), box-shadow 350ms var(--ease-out);
}

.critic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(12, 28, 50, 0.1);
}

.critic-quote-mark {
  position: absolute;
  top: -0.15rem;
  inset-inline-start: 1.4rem;
  font-family: "Rubik", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--brand);
  opacity: 0.15;
  pointer-events: none;
  user-select: none;
}

.critic-text {
  margin: 0;
  color: #324865;
  line-height: 1.8;
  font-size: 1.02rem;
  font-family: "Heebo", sans-serif;
}

.critic-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.critic-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
}

.critic-author-info strong {
  display: block;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.critic-author-info span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

@media (max-width: 900px) {
  .critics-grid .critic-card {
    flex: 0 1 100%;
    max-width: 520px;
  }
}

@media (max-width: 600px) {
  .critic-card { padding: 1.6rem 1.2rem 1.3rem; }
  .critic-quote-mark { font-size: 3.8rem; top: -0.1rem; inset-inline-start: 1rem; }
}

/* ===================================================================
   CONTACT / CTA SECTION — Dual Action
   =================================================================== */
.section-contact {
  background: linear-gradient(180deg, #0a1628 0%, var(--bg-dark) 40%, #0a1628 100%);
  color: var(--text-light);
  overflow: hidden;
}

.contact-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.contact-header .eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: rgba(0, 213, 163, 0.9);
  font-family: "Rubik", sans-serif;
}

.contact-header h2 {
  font-family: "Rubik", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.25;
  margin: 0;
  max-width: none;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-path {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.contact-path h3 {
  font-family: "Rubik", sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.4;
  margin: 0 0 1.5rem;
  text-align: center;
}

.store-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-family: "Heebo", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out);
  cursor: pointer;
  border: none;
}

.store-btn:hover { transform: translateY(-2px) scale(1.02); }

.store-btn--apple {
  background: linear-gradient(135deg, #8dffe8 0%, var(--brand) 60%, var(--brand-deep) 100%);
  color: #04251d;
  box-shadow: 0 8px 24px rgba(0, 213, 163, 0.3), 0 2px 6px rgba(0, 213, 163, 0.15);
}

.store-btn--apple:hover {
  box-shadow: 0 14px 36px rgba(0, 213, 163, 0.42), 0 4px 12px rgba(0, 213, 163, 0.2);
}

.store-btn--google {
  border: 1.5px solid rgba(243, 251, 255, 0.3);
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.store-btn--google:hover {
  border-color: rgba(243, 251, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.store-btn svg { width: 26px; height: 26px; flex-shrink: 0; }

.contact-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
  position: relative;
}

.contact-divider::before,
.contact-divider::after {
  content: "";
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.divider-text {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(247, 251, 255, 0.5);
  padding: 0.6rem 0;
  letter-spacing: 0.05em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: rgba(247, 251, 255, 0.7);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.72rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  font-family: "Heebo", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder { color: rgba(247, 251, 255, 0.3); }

.form-group input:focus,
.form-group select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
  background: rgba(255, 255, 255, 0.08);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f7fbff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='0.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
  padding-inline-start: 2.5rem;
}

.form-group select option { background: var(--bg-dark); color: var(--text-light); }

.form-submit {
  margin-top: 0.4rem;
  padding: 0.78rem 1.55rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #8dffe8 0%, var(--brand) 60%, var(--brand-deep) 100%);
  color: #04251d;
  font-family: "Heebo", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 213, 163, 0.3), 0 2px 6px rgba(0, 213, 163, 0.15);
  transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out);
}

.form-submit:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 36px rgba(0, 213, 163, 0.42), 0 4px 12px rgba(0, 213, 163, 0.2);
}

.form-submit:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

/* --- Form Validation States --- */
.form-group input.invalid,
.form-group select.invalid {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

.form-group input.valid,
.form-group select.valid {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
}

.form-error {
  font-family: "Heebo", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #ff6b6b;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 300ms var(--ease-out), opacity 200ms ease, transform 200ms ease;
  transform: translateY(-4px);
}

.form-error.visible {
  max-height: 2rem;
  opacity: 1;
  transform: translateY(0);
}

/* Shake animation for submit button */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-6px); }
  30% { transform: translateX(5px); }
  45% { transform: translateX(-4px); }
  60% { transform: translateX(3px); }
  75% { transform: translateX(-2px); }
  90% { transform: translateX(1px); }
}

.form-submit.shake {
  animation: shake 0.5s ease-in-out;
}

@media (max-width: 900px) {
  .contact-split { grid-template-columns: 1fr; gap: 0; }
  .contact-divider { flex-direction: row; padding: 0.75rem 0; }
  .contact-divider::before, .contact-divider::after { width: auto; height: 1px; flex: 1; background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent); }
  .divider-text { padding: 0 1rem; }
  .contact-path { text-align: center; }
  .contact-path h3 { text-align: center; }
  .store-buttons { align-items: center; }
  .store-btn { width: 100%; max-width: 320px; }
  .contact-form { max-width: 400px; margin-inline: auto; width: 100%; }
  .form-submit { width: 100%; }
}

@media (max-width: 600px) {
  .contact-path { padding: clamp(1.2rem, 3vw, 2rem); }
}

/* ===================================================================
   FAQ SECTION
   =================================================================== */
.section-faq {
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  padding: 0;
  overflow: hidden;
  transition: border-color 300ms var(--ease-out),
              background 300ms var(--ease-out),
              box-shadow 300ms var(--ease-out);
}

.faq-item[open] {
  border-color: rgba(0, 213, 163, 0.3);
  background: #fff;
  box-shadow: 0 6px 20px rgba(12, 28, 50, 0.06);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 200ms ease;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-inline-end: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(-45deg);
  transition: transform 300ms var(--ease-out);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--brand-deep);
}

.faq-item .faq-answer {
  padding: 0 1.15rem 1rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
}

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.5rem 0 1rem;
  font-size: 0.82rem;
  color: #5a6b87;
}

.footer-wrap p {
  margin: 0;
}

.asset-credit {
  font-size: 0.8rem;
  opacity: 0.72;
}

.footer-wrap a {
  transition: color 200ms ease;
}

.footer-wrap a:hover {
  color: var(--brand-deep);
}

/* ----- Footer Layout ----- */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.footer-brand img {
  width: 22px;
  height: 22px;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-col h4 {
  font-family: "Rubik", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.footer-col a {
  font-size: 0.78rem;
  color: var(--muted);
  transition: color 200ms ease;
}

.footer-col a:hover {
  color: var(--brand-deep);
}

.footer-bottom {
  width: 100%;
  text-align: center;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  margin-top: 0.8rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ===================================================================
   FLOATING CTA (Mobile)
   =================================================================== */
.floating-cta {
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 80;
  padding: 0.75rem 1rem;
  background: rgba(8, 14, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateY(100%);
  transition: transform 400ms var(--ease-out);
  display: none;
}

.floating-cta.visible {
  transform: translateY(0);
}

.floating-cta .btn {
  width: 100%;
}

/* ===================================================================
   REVEAL ANIMATIONS
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms var(--ease-out),
              transform 600ms var(--ease-out);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children reveals */
.reveal:nth-child(2) { transition-delay: 60ms; }
.reveal:nth-child(3) { transition-delay: 120ms; }
.reveal:nth-child(4) { transition-delay: 180ms; }
.reveal:nth-child(5) { transition-delay: 240ms; }
.reveal:nth-child(6) { transition-delay: 300ms; }

/* CSS Scroll-Driven Animations (Progressive Enhancement) */
@supports (animation-timeline: scroll()) {
  .reveal {
    animation: reveal-up linear both;
    animation-timeline: view();
    animation-range: entry 10% entry 90%;
  }

  .reveal.in-view {
    animation: none;
    opacity: 1;
    transform: none;
  }

  @keyframes reveal-up {
    from {
      opacity: 0;
      transform: translateY(28px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ----- Tilt Card (3D) ----- */
.tilt-card {
  --rx: 0deg;
  --ry: 0deg;
  --glx: 50%;
  --gly: 50%;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 200ms var(--ease-out);
  will-change: transform;
}

.tilt-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--glx) var(--gly),
    rgba(255, 255, 255, 0.2), transparent 48%
  );
  opacity: 0;
  transition: opacity 250ms var(--ease-out);
}

.tilt-card:hover::after {
  opacity: 1;
}

/* ===================================================================
   KEYFRAMES
   =================================================================== */
@keyframes fade-reveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes progress {
  from { width: 0; }
  to { width: 100%; }
}

/* ===================================================================
   REDUCED MOTION
   =================================================================== */
.reduce-motion *,
.reduce-motion *::before,
.reduce-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

.reduce-motion .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reduce-motion .tilt-card {
  transform: none;
}

.reduce-motion .tilt-card::after {
  display: none;
}

.reduce-motion .btn-glow {
  animation: none;
}

.reduce-motion .hero-scroll-indicator,
.reduce-motion .scroll-wheel,
.reduce-motion .chevron-1,
.reduce-motion .chevron-2 {
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===================================================================
   RESPONSIVE — 1060px (Tablet Landscape)
   =================================================================== */
@media (max-width: 1060px) {
  .hero-copy {
    max-width: 100%;
  }
}

/* ===================================================================
   RESPONSIVE — 760px (Tablet Portrait / Large Phone)
   =================================================================== */
@media (max-width: 760px) {
  .shell {
    width: min(var(--max), calc(100% - 1.5rem));
  }

  .main-nav,
  .btn-mini {
    display: none;
  }

  #mobile-menu-btn {
    display: flex;
  }

  .floating-cta {
    display: block;
  }

  .hero {
    min-height: 94vh;
    min-height: 94dvh;
    align-items: end;
  }

  .hero-layout {
    padding-top: 5rem;
    padding-bottom: 2rem;
    min-height: calc(94vh - 5rem);
    min-height: calc(94dvh - 5rem);
  }

  .hero-scroll-indicator {
    display: none;
  }

  .footer-wrap {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .section {
    padding: clamp(3.5rem, 8vw, 5rem) 0;
  }
}

/* ===================================================================
   RESPONSIVE — 480px (Small Phone)
   =================================================================== */
@media (max-width: 480px) {
  .shell {
    width: calc(100% - 1.2rem);
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  h2 {
    font-size: clamp(1.6rem, 7vw, 1.9rem);
  }

  .btn-primary,
  .btn-secondary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.3rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-pills li {
    font-size: 0.8rem;
  }
}
