/* ═══════════════════════════════════════════════
   ALANA 2 — TUYỂN SINH
   Diagonal clip-path · Glassmorphism cards
   Cascade stagger · Vertical timeline
   Completely unique layout from Alana & Alana_3
═══════════════════════════════════════════════ */

:root {
  /* Brand palette — shared with other Alana pages */
  --c-blue: #2196f3;
  --c-navy: #1565c0;
  --c-orange: #ff9500;
  --c-magenta: #e91e63;
  --c-purple: #9c27b0;
  --c-lime: #adde2b;
  --c-yellow: #ffd700;
  --c-cyan: #00bcd4;
  --c-teal: #009688;

  /* Unique warm-accent tone for this page */
  --c-peach: #ffb088;
  --c-rose: #ff6b8a;
  --c-sun: #ffb347;

  /* Backgrounds */
  --bg-cream: #faf7f2;
  --bg-warm: #f5f0e8;
  --bg-cool: #e8f1fa;
  --bg-paper: #fffcf8;
  --bg-dark: #1a1a2e;
  --bg-darker: #0e0e1e;

  /* Text */
  --t-strong: #1a1a2e;
  --t-mid: #2d2d4a;
  --t-soft: #62627a;

  /* Fonts */
  --f-display: "Lora", Georgia, serif;
  --f-body: "Be Vietnam Pro", sans-serif;

  /* Utilities */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 40px;
  --grad-bar: linear-gradient(
    90deg,
    var(--c-blue),
    var(--c-orange),
    var(--c-magenta),
    var(--c-lime)
  );
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
body {
  font-family: var(--f-body);
  background: var(--bg-cream);
  color: var(--t-strong);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Keyframe Animations ── */
@keyframes floatBlob {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-15px, 15px) scale(0.97);
  }
}
@keyframes floatBlobR {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-25px, 20px) scale(1.04);
  }
  66% {
    transform: translate(20px, -10px) scale(0.96);
  }
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 4px 24px rgba(255, 149, 0, 0.3);
  }
  50% {
    box-shadow: 0 8px 40px rgba(255, 149, 0, 0.55);
  }
}
@keyframes shimmerBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes scrollDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  75% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 0;
    transform: translateY(16px);
  }
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gentleBreathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}
@keyframes dotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(33, 150, 243, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(33, 150, 243, 0);
  }
}
@keyframes counterUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════
   NAV — Transparent → solid on scroll
═══════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3rem;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s;
  border-bottom: 2px solid transparent;
}
#nav.scrolled {
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(20px) saturate(1.5);
  border-image: var(--grad-bar) 1;
  box-shadow: 0 4px 24px rgba(33, 150, 243, 0.12);
}
.nav-logo img {
  height: 42px;
  width: auto;
  transition: transform 0.3s;
}
.nav-logo:hover img {
  transform: scale(1.06);
}
.nav-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--t-strong);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  transition: color 0.25s;
}
#nav.scrolled .nav-links a {
  color: var(--t-strong);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--c-orange), var(--c-magenta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover {
  color: var(--c-yellow);
}
#nav.scrolled .nav-links a:hover {
  color: var(--c-blue);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-cta {
  padding: 0.6rem 1.45rem;
  background: linear-gradient(135deg, var(--c-orange), var(--c-magenta), var(--c-purple));
  background-size: 200% auto;
  background-position: left center;
  color: #fff;
  border: none;
  border-radius: var(--r-xl);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 16px rgba(255, 149, 0, 0.35);
}
.nav-cta:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233, 30, 99, 0.45);
}
.nav-cta:active {
  transform: translateY(1px) scale(0.96);
  box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

/* ═══════════════════════════════════════
   HERO — Split: Image LEFT · Text RIGHT
   Warm gradient bg · Decorative image frame
   REVERSED from Alana/Alana_3 (text-left/img-right)
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  padding: 110px max(4vw, 1.5rem) 60px;
  background: linear-gradient(
    168deg,
    var(--bg-cool) 0%,
    var(--bg-cream) 45%,
    #fff8f0 75%,
    var(--bg-warm) 100%
  );
}
/* Decorative blobs */
.hero::before {
  content: "";
  position: absolute;
  top: 8%;
  right: -6%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(33, 150, 243, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: floatBlob 20s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 5%;
  left: -5%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 149, 0, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: floatBlobR 18s ease-in-out infinite;
}
.hero > * {
  position: relative;
  z-index: 1;
}

.hero-inner {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem 4rem;
  align-items: center;
}

/* ── Image frame with gradient border ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-frame {
  position: relative;
  border-radius: var(--r-lg) var(--r-xl) var(--r-lg) var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 26, 46, 0.16);
  animation: gentleBreathe 6s ease-in-out infinite;
  /* Gradient border via outline trick */
  outline: 3px solid transparent;
  outline-offset: 4px;
  background-clip: padding-box;
}
.hero-img-frame::after {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    var(--c-blue),
    var(--c-orange),
    var(--c-magenta),
    var(--c-lime)
  );
  background-size: 300% 300%;
  animation: shimmerBorder 5s ease infinite;
  opacity: 0.4;
}
.hero-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

/* Floating accent card */
.hero-float-card {
  position: absolute;
  top: -20px;
  right: -18px;
  background: #fff;
  border: 2px solid var(--c-magenta);
  border-radius: var(--r-md);
  padding: 0.85rem 1.1rem;
  box-shadow: 0 12px 36px rgba(233, 30, 99, 0.18);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  animation: floatCard 4s ease-in-out infinite;
  z-index: 2;
}
.hero-float-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.12), rgba(156, 39, 176, 0.08));
  color: var(--c-magenta);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero-float-card strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--t-strong);
  line-height: 1.1;
}
.hero-float-card > div > span {
  font-size: 0.72rem;
  color: var(--t-soft);
}

/* ── Text content (right side) ── */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(233, 30, 99, 0.06));
  border: 1.5px solid rgba(33, 150, 243, 0.22);
  color: var(--c-blue);
  padding: 0.35rem 1rem;
  border-radius: 40px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}
.hero-eyebrow i {
  font-size: 0.82rem;
  color: var(--c-orange);
}
.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--t-strong);
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
}
.hero h1 em {
  color: var(--c-magenta);
  font-style: italic;
}
.hero h1 .highlight-underline {
  position: relative;
  display: inline-block;
}
.hero h1 .highlight-underline::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--c-orange),
    var(--c-magenta),
    var(--c-purple)
  );
  border-radius: 2px;
  animation: shimmerBorder 3s ease infinite;
  background-size: 200% 100%;
}
.hero-desc {
  font-size: 1.02rem;
  color: var(--t-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 500px;
  text-wrap: pretty;
}
.hero-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.hero-chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(33, 150, 243, 0.18);
  padding: 0.3rem 0.78rem;
  border-radius: 40px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--t-strong);
}
.hero-chips i {
  font-size: 0.8rem;
  color: var(--c-blue);
}
.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.3rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: var(--r-xl);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--c-orange), var(--c-magenta), var(--c-purple));
  background-size: 200% auto;
  background-position: left center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 149, 0, 0.4);
}
.btn-primary:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(233, 30, 99, 0.5);
}
.btn-primary:active {
  transform: translateY(1px) scale(0.97);
  box-shadow: 0 2px 10px rgba(233, 30, 99, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--t-strong);
  border: 2px solid rgba(26, 26, 46, 0.2);
}
.btn-ghost:hover {
  background: rgba(33, 150, 243, 0.07);
  border-color: var(--c-blue);
  color: var(--c-blue);
  transform: translateY(-2px);
}
.btn-ghost:active {
  transform: translateY(1px) scale(0.97);
}

/* Trust bar */
.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(33, 150, 243, 0.14);
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--t-mid);
}
.hero-trust i {
  color: var(--c-blue);
  font-size: 0.88rem;
}

/* ═══════════════════════════════════════
   EMPATHY STRIP — warm gradient diagonal
═══════════════════════════════════════ */
.empathy-strip {
  position: relative;
  padding: 5rem 3rem;
  background: linear-gradient(156deg, #fff8f0 0%, #fef0e5 30%, #f0ecff 70%, #e8f4ff 100%);
  clip-path: polygon(0 0, 100% 3vw, 100% calc(100% - 3vw), 0 100%);
  margin-top: -3vw;
  text-align: center;
}
.empathy-strip::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 8%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 149, 0, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
  animation: floatBlob 18s ease-in-out infinite;
}
.empathy-inner {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.empathy-quote-mark {
  font-family: var(--f-display);
  font-size: 7rem;
  line-height: 0.6;
  color: var(--c-orange);
  opacity: 0.12;
  display: block;
  margin-bottom: -0.5rem;
}
.empathy-strip blockquote {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--t-strong);
  line-height: 1.65;
  text-wrap: pretty;
}
.empathy-strip blockquote span {
  color: var(--c-magenta);
  font-style: italic;
}
.empathy-sub {
  margin-top: 1.2rem;
  font-size: 0.92rem;
  color: var(--t-soft);
  line-height: 1.75;
}

/* ═══════════════════════════════════════
   METHOD — Glassmorphism cards
   Slide-in from left/right alternately
═══════════════════════════════════════ */
.method {
  position: relative;
  padding: 6rem 3rem;
  background: linear-gradient(180deg, var(--bg-paper) 0%, var(--bg-cream) 100%);
  overflow: hidden;
}
.method::before {
  content: "";
  position: absolute;
  top: -5%;
  right: -8%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(33, 150, 243, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
  animation: floatBlobR 22s ease-in-out infinite;
}
.method-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 0.8rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-orange));
  flex-shrink: 0;
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
  margin-top: 0.4rem;
}
.section-title em {
  font-style: italic;
  color: var(--c-magenta);
}
.section-sub {
  margin-top: 0.8rem;
  font-size: 0.96rem;
  color: var(--t-soft);
  line-height: 1.8;
}

/* Glassmorphism card */
.glass-cards {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.glass-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem 2.25rem;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px) saturate(1.3);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--r-lg);
  box-shadow: 0 8px 32px rgba(26, 26, 46, 0.05);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--c-blue),
    var(--c-orange),
    var(--c-magenta)
  );
  background-size: 300% 100%;
  animation: shimmerBorder 4s ease infinite;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.glass-card:hover::before {
  transform: scaleX(1);
}
.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(33, 150, 243, 0.12);
  border-color: rgba(33, 150, 243, 0.2);
}
.glass-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.glass-icon.blue {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.15), rgba(0, 188, 212, 0.1));
  color: var(--c-blue);
  border: 1.5px solid rgba(33, 150, 243, 0.2);
}
.glass-icon.orange {
  background: linear-gradient(135deg, rgba(255, 149, 0, 0.15), rgba(255, 215, 0, 0.1));
  color: var(--c-orange);
  border: 1.5px solid rgba(255, 149, 0, 0.2);
}
.glass-icon.magenta {
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.12), rgba(156, 39, 176, 0.08));
  color: var(--c-magenta);
  border: 1.5px solid rgba(233, 30, 99, 0.2);
}
.glass-icon.lime {
  background: linear-gradient(135deg, rgba(173, 222, 43, 0.15), rgba(76, 175, 80, 0.08));
  color: var(--c-lime);
  border: 1.5px solid rgba(173, 222, 43, 0.2);
}
.glass-card-body h3 {
  font-family: var(--f-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--t-strong);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}
.glass-card-body p {
  font-size: 0.9rem;
  color: var(--t-soft);
  line-height: 1.75;
}
.glass-card-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.65rem;
}
.glass-card-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(33, 150, 243, 0.08);
  color: var(--c-blue);
  border: 1px solid rgba(33, 150, 243, 0.15);
}

/* Slide-in variants */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-left.in,
.reveal-right.in,
.reveal-up.in {
  opacity: 1;
  transform: none;
}
.reveal-d1 {
  transition-delay: 0.12s;
}
.reveal-d2 {
  transition-delay: 0.24s;
}
.reveal-d3 {
  transition-delay: 0.36s;
}
.reveal-d4 {
  transition-delay: 0.48s;
}

/* ═══════════════════════════════════════
   DIFFERENCE — Split layout
   Image left + checklist right
   Diagonal clip-path top
═══════════════════════════════════════ */
.difference {
  position: relative;
  padding: 7rem 3rem 6rem;
  background: linear-gradient(160deg, #1e1e3a 0%, var(--bg-dark) 50%, #151530 100%);
  color: #fff;
  clip-path: polygon(0 3vw, 100% 0, 100% 100%, 0 calc(100% - 3vw));
  margin-top: -3vw;
  overflow: hidden;
}
.difference::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-bar);
  z-index: 2;
}
.difference::after {
  content: "";
  position: absolute;
  top: 15%;
  right: -8%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(233, 30, 99, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
  animation: floatBlob 20s ease-in-out infinite;
}

.diff-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.diff-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.35);
}
.diff-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.diff-visual:hover img {
  transform: scale(1.04);
}
.diff-visual-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
}
.diff-visual-badge i {
  font-size: 1.1rem;
  color: var(--c-lime);
}
.diff-visual-badge strong {
  font-size: 0.82rem;
  font-weight: 700;
}

.diff-content .eyebrow {
  color: var(--c-cyan);
}
.diff-content .eyebrow::before {
  background: linear-gradient(90deg, var(--c-cyan), var(--c-lime));
}
.diff-content .section-title {
  color: #fff;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}
.diff-content .section-title em {
  color: var(--c-yellow);
}

.diff-checklist {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.diff-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--r-md);
  border-left: 3px solid var(--c-orange);
  transition: all 0.3s var(--ease);
}
.diff-checklist li:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(5px);
  border-left-color: var(--c-lime);
}
.diff-check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-lime), var(--c-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--t-strong);
  font-size: 0.65rem;
  font-weight: 800;
}
.diff-checklist li strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
}
.diff-checklist li span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
.diff-highlight {
  margin-top: 1.5rem;
  padding: 1.1rem 1.3rem;
  background: linear-gradient(
    135deg,
    rgba(33, 150, 243, 0.12),
    rgba(233, 30, 99, 0.08)
  );
  border: 1px solid rgba(33, 150, 243, 0.22);
  border-radius: var(--r-md);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.diff-highlight i {
  color: var(--c-yellow);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.diff-highlight p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
}
.diff-highlight strong {
  color: #fff;
}
.diff-highlight em {
  color: var(--c-yellow);
}

/* ═══════════════════════════════════════
   TIMELINE — "Sau 8 tuần"
   Vertical timeline with animated dots
═══════════════════════════════════════ */
.timeline-section {
  position: relative;
  padding: 6rem 3rem;
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
  margin-top: -3vw;
  overflow: hidden;
}
.timeline-section::before {
  content: "";
  position: absolute;
  bottom: 10%;
  left: -4%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 149, 0, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
  animation: floatBlob 16s ease-in-out infinite;
}
.timeline-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  position: relative;
  z-index: 1;
}
.timeline-header .section-title em {
  color: var(--c-orange);
}

.timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
/* Vertical line */
.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--c-blue),
    var(--c-orange),
    var(--c-magenta),
    var(--c-lime)
  );
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-left: 64px;
  padding-bottom: 2rem;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
/* Dot */
.timeline-dot {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--c-blue);
  box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all 0.4s var(--ease);
}
.timeline-item:nth-child(2) .timeline-dot {
  border-color: var(--c-orange);
  box-shadow: 0 0 0 4px rgba(255, 149, 0, 0.15);
}
.timeline-item:nth-child(3) .timeline-dot {
  border-color: var(--c-magenta);
  box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.12);
}
.timeline-item:nth-child(4) .timeline-dot {
  border-color: var(--c-purple);
  box-shadow: 0 0 0 4px rgba(156, 39, 176, 0.12);
}
.timeline-item:nth-child(5) .timeline-dot {
  border-color: var(--c-lime);
  box-shadow: 0 0 0 4px rgba(173, 222, 43, 0.15);
}
.timeline-dot-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-blue);
}
.timeline-item:nth-child(2) .timeline-dot-inner {
  background: var(--c-orange);
}
.timeline-item:nth-child(3) .timeline-dot-inner {
  background: var(--c-magenta);
}
.timeline-item:nth-child(4) .timeline-dot-inner {
  background: var(--c-purple);
}
.timeline-item:nth-child(5) .timeline-dot-inner {
  background: var(--c-lime);
}
.timeline-item.in .timeline-dot {
  animation: dotPulse 2s ease-in-out 0.5s 1;
}

.timeline-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 20px rgba(26, 26, 46, 0.04);
  transition: all 0.35s var(--ease);
}
.timeline-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(33, 150, 243, 0.1);
  border-color: rgba(33, 150, 243, 0.2);
}
.timeline-card h3 {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--t-strong);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.timeline-card h3 i {
  font-size: 0.92rem;
}
.timeline-item:nth-child(1) .timeline-card h3 i { color: var(--c-blue); }
.timeline-item:nth-child(2) .timeline-card h3 i { color: var(--c-orange); }
.timeline-item:nth-child(3) .timeline-card h3 i { color: var(--c-magenta); }
.timeline-item:nth-child(4) .timeline-card h3 i { color: var(--c-purple); }
.timeline-item:nth-child(5) .timeline-card h3 i { color: var(--c-lime); }
.timeline-card p {
  font-size: 0.86rem;
  color: var(--t-soft);
  line-height: 1.65;
}

.timeline-cta {
  text-align: center;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}
.timeline-hope {
  font-family: var(--f-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--t-mid);
  font-style: italic;
  margin-bottom: 0.4rem;
}
.timeline-hope em {
  color: var(--c-magenta);
}

/* ═══════════════════════════════════════
   FACILITY — Image showcase + floating stats
═══════════════════════════════════════ */
.facility {
  position: relative;
  padding: 6rem 3rem;
  background: linear-gradient(180deg, var(--bg-cool) 0%, var(--bg-paper) 100%);
  overflow: hidden;
}
.facility::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -5%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(33, 150, 243, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
  animation: floatBlobR 18s ease-in-out infinite;
}
.facility-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.facility-media {
  position: relative;
}
.facility-media-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26, 26, 46, 0.12);
}
.facility-media-frame img {
  width: 100%;
  height: auto;
  transition: transform 0.6s var(--ease);
}
.facility-media-frame:hover img {
  transform: scale(1.03);
}

/* Floating stat badges */
.facility-stat {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-radius: var(--r-md);
  padding: 0.8rem 1.1rem;
  box-shadow: 0 8px 28px rgba(26, 26, 46, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  animation: gentleBreathe 4s ease-in-out infinite;
}
.facility-stat.pos-tl {
  top: -16px;
  right: -16px;
}
.facility-stat.pos-bl {
  bottom: -16px;
  left: -16px;
  animation-delay: 1.5s;
}
.facility-stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.facility-stat-icon.blue {
  background: rgba(33, 150, 243, 0.12);
  color: var(--c-blue);
}
.facility-stat-icon.orange {
  background: rgba(255, 149, 0, 0.12);
  color: var(--c-orange);
}
.facility-stat strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--t-strong);
  line-height: 1.1;
}
.facility-stat span {
  font-size: 0.72rem;
  color: var(--t-soft);
}

.facility-copy h2 {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--t-strong);
  margin-bottom: 1rem;
}
.facility-copy h2 em {
  color: var(--c-blue);
  font-style: italic;
}
.facility-copy > p {
  font-size: 0.94rem;
  color: var(--t-soft);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.facility-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.facility-feat {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.55);
  border-radius: var(--r-sm);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
}
.facility-feat:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(4px);
}
.facility-feat i {
  color: var(--c-blue);
  font-size: 1rem;
  flex-shrink: 0;
}
.facility-feat span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--t-strong);
  line-height: 1.5;
}
.facility-feat strong {
  font-weight: 700;
}

/* ═══════════════════════════════════════
   REGISTER — Centered form
   Animated gradient border wrapper
═══════════════════════════════════════ */
.register {
  position: relative;
  padding: 6rem 3rem 5rem;
  background: linear-gradient(
    160deg,
    #2a2850 0%,
    var(--bg-dark) 40%,
    #1a1835 100%
  );
  overflow: hidden;
  clip-path: polygon(0 3vw, 100% 0, 100% 100%, 0 100%);
  margin-top: -3vw;
}
.register::before {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 149, 0, 0.08) 0%,
    transparent 55%
  );
  pointer-events: none;
  animation: floatBlobR 16s ease-in-out infinite;
}
.register::after {
  content: "";
  position: absolute;
  top: 15%;
  left: -5%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(33, 150, 243, 0.08) 0%,
    transparent 55%
  );
  pointer-events: none;
  animation: floatBlob 18s ease-in-out infinite;
}

.register-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.register-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.register-header .eyebrow {
  color: var(--c-cyan);
}
.register-header .eyebrow::before {
  background: linear-gradient(90deg, var(--c-cyan), var(--c-lime));
}
.register-header .section-title {
  color: #fff;
}
.register-header .section-title em {
  color: var(--c-yellow);
}
.register-header .section-sub {
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0.6rem auto 0;
}

.register-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: stretch;
}

/* Left: info panel */
.register-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.8rem;
}
.reg-info-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.reg-info-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(33, 150, 243, 0.3);
}
.reg-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.reg-info-icon.age {
  background: rgba(33, 150, 243, 0.15);
  color: var(--c-blue);
}
.reg-info-icon.class {
  background: rgba(255, 149, 0, 0.15);
  color: var(--c-orange);
}
.reg-info-icon.size {
  background: rgba(233, 30, 99, 0.15);
  color: var(--c-magenta);
}
.reg-info-icon.fee {
  background: rgba(173, 222, 43, 0.15);
  color: var(--c-lime);
}
.reg-info-card strong {
  display: block;
  font-size: 0.86rem;
  color: #fff;
  margin-bottom: 0.15rem;
}
.reg-info-card span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}



/* Right: form with shimmer border */
.register-form-wrap {
  display: flex;
  align-items: stretch;
  padding: 3px;
  border-radius: var(--r-lg);
  background: linear-gradient(
    135deg,
    rgba(33, 150, 243, 0.35),
    rgba(255, 149, 0, 0.25),
    rgba(233, 30, 99, 0.3),
    rgba(173, 222, 43, 0.2),
    rgba(33, 150, 243, 0.35)
  );
  background-size: 300% 300%;
  animation: shimmerBorder 5s ease infinite;
}
.register-form-card {
  position: relative;
  flex: 1;
  width: 100%;
  background: linear-gradient(
    160deg,
    rgba(250, 248, 244, 0.97),
    rgba(240, 236, 230, 0.94)
  );
  border-radius: calc(var(--r-lg) - 3px);
  padding: 2rem 1.8rem 1.8rem;
  box-shadow: 0 14px 42px rgba(26, 26, 46, 0.08);
  overflow: hidden;
}
.register-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-bar);
}
.form-title {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--t-strong);
  margin-bottom: 0.3rem;
}
.form-sub {
  font-size: 0.82rem;
  color: var(--t-soft);
  margin-bottom: 1.3rem;
  line-height: 1.6;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  margin-bottom: 0.8rem;
}
.field label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--t-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.field input,
.field textarea {
  border: 2px solid rgba(26, 26, 46, 0.1);
  border-radius: var(--r-sm);
  padding: 0.62rem 0.85rem;
  font-family: var(--f-body);
  font-size: 0.91rem;
  color: var(--t-strong);
  background: #fff;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.submit-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 0.4rem;
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--c-orange), var(--c-magenta), var(--c-purple));
  background-size: 200% auto;
  background-position: left center;
  color: #fff;
  border: none;
  border-radius: var(--r-xl);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.96rem;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 18px rgba(255, 149, 0, 0.3);
}
.submit-btn:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.45);
}
.submit-btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 10px rgba(233, 30, 99, 0.3);
}
.submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  background-position: left center;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.pre-footer {
  height: 5px;
  background: var(--grad-bar);
  box-shadow: 0 2px 12px rgba(33, 150, 243, 0.2);
}
footer {
  background: linear-gradient(180deg, #0f0f1a 0%, #080812 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 3rem 1.4rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.footer-brand-name {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 0.55rem;
}
.footer-brand-subtitle {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.65;
  margin-bottom: 0.8rem;
  max-width: 34ch;
}
.footer-fb {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--c-blue);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-fb:hover {
  color: #64b5f6;
}
footer h4 {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.75rem;
}
footer p {
  font-size: 0.82rem;
  line-height: 1.7;
}
footer a {
  display: block;
  font-size: 0.84rem;
  color: var(--c-blue);
  text-decoration: none;
  margin-bottom: 0.24rem;
  transition: color 0.2s;
}
footer a:hover {
  color: #64b5f6;
}
.footer-bottom {
  text-align: center;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.32);
}
.footer-bottom span {
  color: var(--c-blue);
}

/* ═══════════════════════════════════════
   TOAST
═══════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  opacity: 0;
  background: var(--bg-dark);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast i {
  color: var(--c-lime);
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    padding: 100px 2rem 50px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-visual {
    max-width: 480px;
    margin: 0 auto;
  }
  .hero-content {
    align-items: center;
    text-align: center;
  }
  .hero-desc {
    max-width: 100%;
  }
  .hero-chips {
    justify-content: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero::before,
  .hero::after {
    display: none;
  }
  .diff-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .diff-visual {
    max-width: 520px;
    margin: 0 auto;
  }
  .facility-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .facility-media {
    max-width: 560px;
    margin: 0 auto;
  }
  .register-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .register-info {
    text-align: center;
    align-items: center;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  #nav {
    padding: 1rem 1.75rem;
  }
}
@media (max-width: 768px) {
  .hero,
  .empathy-strip,
  .method,
  .difference,
  .timeline-section,
  .facility,
  .register,
  footer {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }
  .hero-float-card {
    right: 8px;
    bottom: -12px;
  }
  .glass-card {
    grid-template-columns: 56px 1fr;
    gap: 1rem;
    padding: 1.5rem 1.25rem;
  }
  .glass-icon {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .empathy-strip,
  .difference,
  .register {
    clip-path: polygon(0 2vw, 100% 0, 100% 100%, 0 calc(100% - 2vw));
  }
  .facility-stat {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 90px 1rem 40px;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-chips {
    flex-direction: column;
    align-items: center;
  }
  .hero-float-card {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .empathy-strip,
  .difference,
  .register {
    clip-path: none;
    margin-top: 0;
  }
  .timeline::before {
    left: 16px;
  }
  .timeline-dot {
    left: 5px;
    width: 24px;
    height: 24px;
  }
  .timeline-item {
    padding-left: 48px;
  }
}
