/* Hero Variants System - Unique Designs Per Page */

/* Base Hero Reset */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: var(--spacing-3xl) 0;
  width: 100%;
  max-width: 100vw;
  margin-bottom: 0;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

/* Readability Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

/* Stronger overlay in light theme for better text readability */
[data-theme="light"] .hero-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* Hero Content Base */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Hero Image Background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.3) 0%, rgba(245, 158, 11, 0.2) 100%);
}

/* Wave Divider */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 3;
  overflow: hidden;
  max-width: 100%;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
  fill: var(--color-bg);
}

/* ============================================
   HERO VARIANT: HOME (Cinematic + Trust)
   ============================================ */
.hero--home {
  min-height: 600px;
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
  margin-bottom: 0;
}

/* Make sections flow together - reduce gaps */
.hero + .section {
  margin-top: 0;
  padding-top: var(--spacing-2xl);
}

.section + .hero {
  margin-top: 0;
  padding-top: var(--spacing-2xl);
}

/* Remove bottom margin from all hero sections */
.hero {
  margin-bottom: 0 !important;
}

/* Ensure sections flow together */
.hero + .section,
.section + .hero {
  margin-top: 0;
  padding-top: var(--spacing-2xl);
}

/* Add spacing only after non-hero sections */
.section + .hero,
.hero + .section {
  margin-top: 0;
}

.hero--home .hero-bg {
  animation: heroParallax 20s ease-in-out infinite;
}

@keyframes heroParallax {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.05) translateY(-10px); }
}

[data-theme="dark"] .hero--home .hero-bg::after {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero--home .hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Container */
.hero--home .container {
  position: relative;
}

/* ============================================
   HERO VARIANT: ABOUT (Split + Story)
   ============================================ */
.hero--about {
  background: var(--color-bg-secondary);
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
}

.hero--about .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.hero--about .hero-text {
  position: relative;
  z-index: 2;
}

.hero--about .hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero--about .hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.hero--about .hero-pattern {
  position: absolute;
  top: -50px;
  right: var(--spacing-lg);
  width: 200px;
  height: 200px;
  opacity: 0.1;
  z-index: 0;
}

[dir="rtl"] .hero--about .hero-pattern {
  right: auto;
  left: var(--spacing-lg);
}

.hero--about .hero-stats {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
  flex-wrap: wrap;
}

.hero--about .hero-stat {
  flex: 1;
  min-width: 120px;
  background: var(--color-surface);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--color-border-light);
}

/* ============================================
   HERO VARIANT: KINDERGARTEN (Playful + Premium)
   ============================================ */
.hero--kg {
  min-height: 600px;
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
  position: relative;
  overflow: hidden;
}

.hero--kg .hero-bg {
  background-image: url('../public/kindergarten-journey-morning.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero--kg .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero--kg .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-2xl) 0;
}

.hero--kg .hero-title {
  color: white;
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero--kg .hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* ============================================
   HERO VARIANT: PRIMARY (Structured + Confident)
   ============================================ */
/* ============================================
   HERO VARIANT: PRIMARY (Modern Premium Design)
   ============================================ */
.primary-hero {
  /* Layer A: Base Gradient */
  background: linear-gradient(120deg, #0B1630 0%, #123B9B 45%, #1A6FE3 100%);
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: var(--spacing-3xl) 0;
}

/* Layer B: Soft Glow Overlay */
.primary-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 35%, rgba(56, 189, 248, 0.25), transparent 55%);
  pointer-events: none;
  z-index: 1;
}

[dir="rtl"] .primary-hero::before {
  background: radial-gradient(circle at 75% 35%, rgba(56, 189, 248, 0.25), transparent 55%);
}

/* Layer C: Abstract Background Shapes */
.primary-hero-shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.18;
  animation: float-shape 15s ease-in-out infinite;
}

.primary-hero-shape-1 {
  /* Blob behind checklist card */
  width: 380px;
  height: 380px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.4) 0%, rgba(37, 99, 235, 0.3) 100%);
  top: 30%;
  left: 5%;
  animation-delay: 0s;
}

[dir="rtl"] .primary-hero-shape-1 {
  left: auto;
  right: 5%;
}

.primary-hero-shape-2 {
  /* Angled panel behind right image */
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.35) 0%, rgba(59, 130, 246, 0.25) 100%);
  bottom: 15%;
  right: 10%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  transform: rotate(-15deg);
  animation-delay: 5s;
  filter: blur(50px);
}

[dir="rtl"] .primary-hero-shape-2 {
  right: auto;
  left: 10%;
  transform: rotate(15deg);
}

.primary-hero-shape-3 {
  /* Small circle glow near bottom corner */
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.3) 0%, transparent 70%);
  bottom: -50px;
  left: 20%;
  animation-delay: 10s;
  filter: blur(30px);
}

[dir="rtl"] .primary-hero-shape-3 {
  left: auto;
  right: 20%;
}

/* Floating Animation for Shapes */
@keyframes float-shape {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  33% {
    transform: translateY(-15px) translateX(10px);
  }
  66% {
    transform: translateY(10px) translateX(-8px);
  }
}

.primary-hero-shape-2 {
  animation-name: float-shape-rotate;
}

@keyframes float-shape-rotate {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(-15deg);
  }
  33% {
    transform: translateY(-12px) translateX(8px) rotate(-12deg);
  }
  66% {
    transform: translateY(8px) translateX(-6px) rotate(-18deg);
  }
}

[dir="rtl"] .primary-hero-shape-2 {
  animation-name: float-shape-rotate-rtl;
}

@keyframes float-shape-rotate-rtl {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(15deg);
  }
  33% {
    transform: translateY(-12px) translateX(-8px) rotate(12deg);
  }
  66% {
    transform: translateY(8px) translateX(6px) rotate(18deg);
  }
}

/* Content Container */
.primary-hero .hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

/* Text Area with Subtle Backdrop */
.primary-hero-text {
  position: relative;
  animation: fade-slide-up 0.8s ease-out;
}

.primary-hero-text::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: rgba(11, 22, 48, 0.25);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.6;
  pointer-events: none;
}

/* Title & Subtitle Styling */
.primary-hero .hero-title {
  color: #F8FAFC;
  font-size: clamp(var(--font-size-3xl), 4vw, var(--font-size-5xl));
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
  line-height: var(--line-height-tight);
  animation: fade-slide-up 0.8s ease-out 0.1s both;
}

.primary-hero .hero-subtitle {
  color: rgba(248, 250, 252, 0.95);
  font-size: clamp(var(--font-size-base), 2vw, var(--font-size-lg));
  margin-bottom: var(--spacing-xl);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: var(--line-height-relaxed);
  animation: fade-slide-up 0.8s ease-out 0.2s both;
}

/* Premium Checklist Card */
.primary-hero .hero-checklist {
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  margin-top: var(--spacing-lg);
  animation: fade-slide-up 0.8s ease-out 0.3s both;
}

.primary-hero .hero-checklist-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #F8FAFC;
}

.primary-hero .hero-checklist-item:last-child {
  border-bottom: none;
}

.primary-hero .hero-checklist-item::before {
  content: '✓';
  color: #38BDF8;
  font-weight: bold;
  font-size: var(--font-size-xl);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 189, 248, 0.15);
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.primary-hero .hero-checklist-item span {
  color: #F8FAFC;
  font-weight: var(--font-weight-medium);
}

/* Hero Image Frame */
.primary-hero-image-wrapper {
  animation: fade-slide-in 0.8s ease-out 0.2s both;
}

[dir="rtl"] .primary-hero-image-wrapper {
  animation: fade-slide-in-rtl 0.8s ease-out 0.2s both;
}

.primary-hero .hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(56, 189, 248, 0.18);
  background: rgba(255, 255, 255, 0.05);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.primary-hero .hero-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(56, 189, 248, 0.25);
}

.primary-hero .hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* Entrance Animations */
@keyframes fade-slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-slide-in {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fade-slide-in-rtl {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .primary-hero-shape {
    animation: none;
  }
  
  .primary-hero-text,
  .primary-hero .hero-title,
  .primary-hero .hero-subtitle,
  .primary-hero .hero-checklist,
  .primary-hero-image-wrapper {
    animation: none;
  }
  
  .primary-hero .hero-image {
    transition: none;
  }
  
  .primary-hero .hero-image:hover {
    transform: none;
  }
}

/* ============================================
   HERO VARIANT: SCHOOL LIFE (Gallery-first)
   ============================================ */
.hero--life {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: var(--spacing-3xl) 0;
}

.hero--life .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../public/school-life-hallway-moments.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(2px);
  transform: scale(1.05);
  transition: filter var(--transition-slow), transform var(--transition-slow);
}

.hero--life .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.25) 100%);
  z-index: 1;
}

.hero--life .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  color: white;
}

.hero--life .hero-title {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  color: white;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero--life .hero-subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  margin: 0 auto;
}

.hero--life .hero-chips {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  flex-wrap: wrap;
  justify-content: center;
}

.hero--life .hero-chip {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero--life .hero-scroll-hint {
  position: absolute;
  bottom: var(--spacing-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  color: white;
  opacity: 0.8;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ============================================
   HERO VARIANT: ACHIEVEMENTS (Celebration)
   ============================================ */
.hero--achievements {
  position: relative;
  min-height: 550px;
}

.hero--achievements .hero-bg {
  filter: brightness(0.7);
}

.hero--achievements .hero-content {
  text-align: center;
  color: white;
  max-width: 700px;
  margin: 0 auto;
}

.hero--achievements .hero-trophy {
  font-size: 5rem;
  margin-bottom: var(--spacing-lg);
  display: inline-block;
  animation: trophyFloat 3s ease-in-out infinite;
}

@keyframes trophyFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.hero--achievements .hero-card {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-surface);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  max-width: 400px;
  z-index: 3;
  text-align: center;
}

.hero--achievements .hero-card h3 {
  margin-bottom: var(--spacing-sm);
}

/* ============================================
   HERO VARIANT: ADMISSIONS (Action-Oriented)
   ============================================ */
.hero--admissions {
  background: var(--gradient-primary);
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
  color: white;
  position: relative;
}

.hero--admissions .hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero--admissions .hero-stepper {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin: var(--spacing-2xl) 0;
  flex-wrap: wrap;
}

.hero--admissions .hero-stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  flex: 1;
  min-width: 120px;
}

.hero--admissions .hero-stepper-number {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: var(--font-size-lg);
}

.hero--admissions .hero-cta-group {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-xl);
}

.hero--admissions .btn {
  background: white;
  color: var(--color-primary);
  border: none;
}

.hero--admissions .btn:hover {
  background: var(--color-bg-secondary);
  transform: translateY(-2px);
}

/* ============================================
   HERO VARIANT: CONTACT (Map + Quick Actions)
   ============================================ */
.hero--contact {
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 50%, #ddd6fe 100%);
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
  position: relative;
  overflow: hidden;
}

.hero--contact .hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero--contact .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero--contact .hero-text {
  padding-top: var(--spacing-lg);
}

.hero--contact .hero-title {
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
}

.hero--contact .hero-subtitle {
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-xl);
}

.hero--contact .hero-map-wrapper {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 450px;
  background: var(--color-bg-secondary);
  border: 3px solid white;
}

.hero--contact .hero-map {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.hero--contact .hero-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================
   ANIMATIONS & RESPONSIVE
   ============================================ */

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title,
.hero-subtitle {
  animation: fadeInUp 0.6s ease-out both;
}

.hero-subtitle {
  animation-delay: 0.2s;
}

.hero-cta {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .hero--home .hero-bg,
  .hero--achievements .hero-trophy,
  .hero--life .hero-scroll-hint {
    animation: none;
  }
  
  .hero-title,
  .hero-subtitle,
  .hero-cta {
    animation: none;
  }
}

/* Responsive */
@media (max-width: 968px) {
  .hero {
    min-height: 400px;
    padding: var(--spacing-xl) 0;
    margin-bottom: 0;
  }
  
  .hero--home,
  .hero--achievements {
    min-height: 450px;
  }
  
  .hero--about .hero-content,
  .hero--kg .hero-content,
  .primary-hero {
    min-height: 500px;
    padding: var(--spacing-2xl) 0;
  }
  
  .primary-hero-shape-1,
  .primary-hero-shape-2,
  .primary-hero-shape-3 {
    width: 250px;
    height: 250px;
    filter: blur(30px);
  }
  
  .primary-hero-shape-1 {
    top: 20%;
    left: 2%;
  }
  
  [dir="rtl"] .primary-hero-shape-1 {
    left: auto;
    right: 2%;
  }
  
  .primary-hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 5%;
  }
  
  [dir="rtl"] .primary-hero-shape-2 {
    right: auto;
    left: 5%;
  }
  
  .primary-hero-shape-3 {
    width: 150px;
    height: 150px;
    bottom: -30px;
  }
  
  .primary-hero .hero-image img {
    height: 300px;
  }
  
  .primary-hero .hero-content,
  .hero--contact .hero-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .hero--kg {
    min-height: 500px;
  }
  
  .hero--kg .hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .hero--kg .hero-subtitle {
    font-size: var(--font-size-base);
  }
  
  .hero--life {
    min-height: 400px;
  }
  
  .hero--life .hero-title {
    font-size: var(--font-size-4xl);
  }
  
  .hero--life .hero-subtitle {
    font-size: var(--font-size-base);
  }
  
  .hero--contact .hero-actions {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-base);
  }
}

@media (max-width: 480px) {
  .hero--kg {
    min-height: 400px;
  }
  
  .hero--kg .hero-title {
    font-size: var(--font-size-2xl);
  }
  
  .hero--kg .hero-subtitle {
    font-size: var(--font-size-sm);
  }
  
  .hero--life {
    min-height: 300px;
  }
  
  .hero--life .hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .hero--life .hero-subtitle {
    font-size: var(--font-size-sm);
  }
  
  .primary-hero {
    min-height: 450px;
    padding: var(--spacing-xl) 0;
  }
  
  .primary-hero-shape-1,
  .primary-hero-shape-2,
  .primary-hero-shape-3 {
    width: 180px;
    height: 180px;
    filter: blur(25px);
    opacity: 0.12;
  }
  
  .primary-hero .hero-image img {
    height: 250px;
  }
  
  .hero--achievements .hero-card {
    position: static;
    transform: none;
    margin-top: var(--spacing-xl);
  }
}
