/* YANA Foundation - New Home Page Styles */

/* ============================================
   Color Variables
   ============================================ */
:root {
  --yana-red: #eb1313;
  --yana-orange: #f97a1f;
  --yana-yellow: #f9c21f;
  --yana-green: #5bb72d;
  --yana-navy: #062c79;
  
  --yana-red-dark: #bc0f0f;
  --yana-orange-dark: #df6005;
  --yana-yellow-dark: #dfa905;
  --yana-green-dark: #478e23;
  --yana-navy-dark: #031a48;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3.5rem;
  }
}

.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.section-description {
  font-size: 1.125rem;
  color: #666;
  max-width: 42rem;
  margin: 0 auto;
}

.white-text {
  color: white;
}

.orange-text {
  color: var(--yana-orange);
}

.green-text {
  color: var(--yana-green);
}

.navy-text {
  color: var(--yana-navy);
}

.gradient-text {
  background: linear-gradient(135deg, var(--yana-red), var(--yana-orange), var(--yana-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-red-orange-yellow {
  background: linear-gradient(135deg, var(--yana-red), var(--yana-orange), var(--yana-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-orange-yellow-green {
  background: linear-gradient(135deg, var(--yana-orange), var(--yana-yellow), var(--yana-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-green-navy-red {
  background: linear-gradient(135deg, var(--yana-green), var(--yana-navy), var(--yana-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-navy-green-navy {
  background: linear-gradient(135deg, var(--yana-navy), var(--yana-green), var(--yana-navy));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-navy-green-orange {
  background: linear-gradient(135deg, var(--yana-navy), var(--yana-green), var(--yana-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--yana-red), var(--yana-orange), var(--yana-yellow));
}

.floating-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.geometric-pattern-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.1;
}

.geometric-pattern-overlay svg {
  width: 100%;
  height: 100%;
}

.animated-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(80px);
}

.shape-1 {
  width: 24rem;
  height: 24rem;
  top: 5rem;
  right: 2.5rem;
  animation: float 10s ease-in-out infinite;
}

.shape-2 {
  width: 31.25rem;
  height: 31.25rem;
  bottom: 5rem;
  left: 2.5rem;
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.2);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  padding: 2rem 0;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 9999px;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.badge .icon {
  width: 1.125rem;
  height: 1.125rem;
}

.hero-headline {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .hero-headline {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-headline {
    font-size: 5rem;
  }
}

.headline-word {
  display: inline-block;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  max-width: 48rem;
  line-height: 1.6;
  font-weight: 300;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-description {
    font-size: 1.875rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.75rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: white;
  color: var(--yana-red);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid white;
  color: white;
  background: transparent;
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: white;
  color: var(--yana-red);
}

.btn-outline-white {
  border: 2px solid white;
  color: white;
  background: transparent;
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: white;
  color: var(--yana-red);
}

.btn-green {
  background: var(--yana-green);
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-green:hover {
  background: var(--yana-green-dark);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--yana-navy);
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-navy:hover {
  background: var(--yana-navy-dark);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.scroll-indicator-text {
  margin-top: 4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255, 255, 255, 0.8);
  animation: bounce 1.8s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(12px);
  }
}

.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.wave-divider svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   Sections
   ============================================ */
section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ============================================
   Three Pillars Section
   ============================================ */
.pillars-section {
  background: white;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.pillar-card {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  will-change: transform;
  contain: layout style paint;
  min-height: 600px;
  position: relative;
}

.pillar-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

.pillar-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  position: relative;
}

.pillar-image-wrapper {
  position: relative;
  height: 600px;
  overflow: hidden;
  flex-shrink: 0;
}

.pillar-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  will-change: transform;
}

.pillar-card:hover .pillar-image-wrapper img {
  transform: scale(1.1);
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.8;
  transition: opacity 0.5s ease;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
}

.pillar-card:hover .gradient-overlay {
  opacity: 0.9;
}

.gradient-red-orange {
  background: linear-gradient(to top, var(--yana-red), var(--yana-orange));
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.gradient-green-navy {
  background: linear-gradient(to top, var(--yana-green), var(--yana-navy));
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.gradient-yellow-orange {
  background: linear-gradient(to top, var(--yana-yellow), var(--yana-orange));
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.pillar-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
  min-height: fit-content;
}

.success-snapshot {
  margin-bottom: 1.5rem;
}

.snapshot-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.snapshot-metric {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.snapshot-label {
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.pillar-content h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pillar-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.learn-more-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.pillar-card:hover .learn-more-link {
  gap: 1rem;
}

.orange-link {
  color: var(--yana-orange);
}

/* ============================================
   Metrics Section
   ============================================ */
.metrics-section {
  background: linear-gradient(135deg, var(--yana-navy), var(--yana-navy-dark));
  position: relative;
  overflow: hidden;
}

.metrics-background-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.metrics-background-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
  background-size: 50px 50px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.metric-card {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.metric-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.metric-value {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  display: block;
}

@media (min-width: 640px) {
  .metric-value {
    font-size: 4.5rem;
  }
}

.metric-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.metric-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Inspired Section
   ============================================ */
.inspired-section {
  background: #f9fafb;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.feature-image-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 1.5rem;
}

.feature-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  will-change: transform;
}

.feature-card:hover .feature-image-wrapper img {
  transform: scale(1.1);
}

.feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-card:hover .feature-overlay {
  opacity: 1;
}

.feature-content h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-content h3 {
  color: var(--yana-orange);
}

.feature-content p {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ============================================
   Programs Section
   ============================================ */
.programs-section {
  background: white;
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .programs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.program-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  cursor: pointer;
}

.program-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

.program-large {
  grid-column: span 1;
  grid-row: span 2;
}

@media (min-width: 1024px) {
  .program-large {
    grid-column: span 2;
  }
}

.program-medium {
  height: 400px;
}

.program-small {
  height: 300px;
}

.program-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.program-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  will-change: transform;
}

.program-card:hover img {
  transform: scale(1.1);
}

.program-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
}

.program-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: white;
}

.program-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.program-card:hover .program-content h3 {
  color: var(--yana-yellow);
}

.program-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.program-learn-more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.program-card:hover .program-learn-more {
  opacity: 1;
}

.text-center {
  text-align: center;
}

/* ============================================
   Digital Section
   ============================================ */
.digital-section {
  background: linear-gradient(135deg, #e6eefd, white, #eff9ea);
  position: relative;
  overflow: hidden;
}

.digital-background-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.digital-background-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(45deg, transparent 48%, currentColor 49%, currentColor 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, currentColor 49%, currentColor 51%, transparent 52%);
  background-size: 40px 40px;
}

.digital-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .digital-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.digital-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6, 44, 121, 0.1);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

.digital-badge svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--yana-navy);
}

.digital-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--yana-navy);
}

.digital-subtitle {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.digital-description {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.digital-illustration {
  position: relative;
}

.illustration-decorative {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.decorative-1 {
  width: 10rem;
  height: 10rem;
  top: -2.5rem;
  right: -2.5rem;
  background: rgba(91, 183, 45, 0.2);
}

.decorative-2 {
  width: 10rem;
  height: 10rem;
  bottom: -2.5rem;
  left: -2.5rem;
  background: rgba(6, 44, 121, 0.2);
}

.illustration-container {
  position: relative;
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 2rem;
  border: 1px solid #f3f4f6;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.illustration-container svg {
  width: 100%;
  height: 100%;
}

.illustration-badge {
  position: absolute;
  background: var(--yana-green);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.badge-1 {
  top: 1rem;
  right: 1rem;
}

.badge-2 {
  bottom: 1rem;
  left: 1rem;
  background: var(--yana-navy);
}

/* ============================================
   Certifications Section
   ============================================ */
.certifications-section {
  background: #f9fafb;
  position: relative;
  overflow: hidden;
}

.certifications-background-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.certifications-background-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, currentColor 1px, transparent 0);
  background-size: 40px 40px;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .certifications-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .certifications-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.certification-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.certification-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: scale(1.05);
}

.certification-card svg {
  margin-bottom: 1rem;
}

.certification-card p {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
}

.certifications-info {
  margin-top: 4rem;
  text-align: center;
}

.certifications-info p {
  font-size: 1.125rem;
  color: #666;
  max-width: 48rem;
  margin: 0 auto;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--yana-red), var(--yana-orange), var(--yana-yellow));
  position: relative;
  overflow: hidden;
}

.cta-decorative {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(80px);
}

.cta-shape-1 {
  width: 24rem;
  height: 24rem;
  top: 0;
  right: 0;
}

.cta-shape-2 {
  width: 24rem;
  height: 24rem;
  bottom: 0;
  left: 0;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.cta-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 40px 40px, white 30px, transparent 15px),
    radial-gradient(circle at 40px 40px, white 15px, transparent 0);
  background-size: 80px 80px;
}

.cta-content {
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.cta-label {
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.cta-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 4.5rem;
  }
}

.cta-description {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  line-height: 1.6;
  font-weight: 300;
}

@media (min-width: 640px) {
  .cta-description {
    font-size: 1.875rem;
  }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 640px) {
  .cta-contact-info {
    flex-direction: row;
  }
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
}

.contact-item svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-divider {
  display: none;
}

@media (min-width: 640px) {
  .contact-divider {
    display: block;
    width: 0.25rem;
    height: 0.25rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
  }
}

/* ============================================
   Scroll Reveal Animation
   ============================================ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.scroll-reveal[data-direction="right"] {
  transform: translateX(40px);
}

.scroll-reveal[data-direction="right"].revealed {
  transform: translateX(0);
}

.scroll-reveal[data-direction="left"] {
  transform: translateX(-40px);
}

.scroll-reveal[data-direction="left"].revealed {
  transform: translateX(0);
}

