/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, #87CEEB 0%, #B8E4F9 30%, #FFE4B5 70%, #FFCC80 100%);
  padding: 60px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background: 
    radial-gradient(circle at 20% 80%, var(--orange) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, var(--yellow) 0%, transparent 40%),
    radial-gradient(circle at 60% 60%, var(--coral) 0%, transparent 30%);
}

.hero-float {
  position: absolute;
  animation: float 3s ease-in-out infinite;
  z-index: 1;
}

.hero-float-1 { top: 15%; left: 10%; font-size: 2rem; animation-duration: 3s; }
.hero-float-2 { top: 60%; left: 5%; font-size: 1.5rem; animation-duration: 4s; }
.hero-float-3 { top: 25%; right: 15%; font-size: 1.2rem; animation-duration: 3.5s; }
.hero-float-4 { bottom: 20%; right: 10%; font-size: 1.8rem; animation-duration: 2.8s; }

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-box {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg), 0 0 0 4px rgba(245, 132, 31, 0.3);
  border: 3px dashed var(--yellow);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--orange);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--orange);
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 3px 3px 0px rgba(245, 132, 31, 0.2);
}

.hero-description {
  font-size: 1.2rem;
  color: var(--dark-blue);
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-description strong {
  color: var(--dark-blue);
}

.hero-description .highlight-orange { color: var(--orange); font-weight: 700; }
.hero-description .highlight-teal { color: var(--teal); font-weight: 700; }
.hero-description .highlight-coral { color: var(--coral); font-weight: 700; }

.hero-cta {
  background: linear-gradient(135deg, var(--orange) 0%, #FF9A4D 100%);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: var(--radius-round);
  font-family: var(--font-display);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-orange), 0 4px 0 var(--orange-dark);
  transition: all var(--transition-normal);
  animation: pulse 2s ease-in-out infinite;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(245, 132, 31, 0.5), 0 6px 0 var(--orange-dark);
}

.hero-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #888;
  font-weight: 600;
}

/* Mascot Area */
.hero-mascot {
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mascot-circle {
  width: 300px;
  height: 300px;
  border-radius: var(--radius-circle);
  background: linear-gradient(135deg, #FF6B6B, #F5841F, #FFD93D, #4ECDC4, #7B68EE, #FF6B6B);
  padding: 6px;
  animation: wiggle 3s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(245, 132, 31, 0.3);
}

.mascot-circle-inner {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-circle);
  background: linear-gradient(180deg, #87CEEB 0%, #B8E4F9 50%, #FFE4B5 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mascot-circle-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mascot-emoji {
  font-size: 8rem;
  margin-top: -20px;
}

.mascot-feather {
  position: absolute;
  top: 15px;
  right: 60px;
  font-size: 2rem;
  transform: rotate(30deg);
}

.mascot-label {
  background: var(--orange);
  border-radius: var(--radius-sm);
  padding: 8px 20px;
  margin-top: -30px;
}

.mascot-label span {
  font-family: var(--font-display);
  color: white;
  font-size: 1.1rem;
}

.mascot-speech {
  background: white;
  border-radius: var(--radius-md);
  padding: 12px 20px;
  margin-top: 15px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.mascot-speech::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}

.mascot-speech p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--dark-blue);
  font-weight: 600;
  font-style: italic;
}

/* ============================================
   THE LABS SECTION
   ============================================ */
.labs-section {
  padding: var(--spacing-xl) var(--spacing-lg);
  background: linear-gradient(180deg, #FFFAF5 0%, #FFF5EB 100%);
  position: relative;
}

.labs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F5841F' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* ============================================
   QUICK ACCESS SECTION
   ============================================ */
.quick-access-section {
  padding: var(--spacing-xl) var(--spacing-lg);
  background: linear-gradient(180deg, #E8F8F8 0%, #D4F1F4 100%);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-section {
  padding: var(--spacing-xl) var(--spacing-lg);
  background: linear-gradient(180deg, #FFF9F0 0%, #FFFAF5 100%);
  text-align: center;
}

.how-container {
  max-width: 900px;
  margin: 0 auto;
}

/* ============================================
   MEET APPA SECTION
   ============================================ */
.appa-section {
  padding: var(--spacing-xl) var(--spacing-lg);
  background: linear-gradient(180deg, var(--orange) 0%, #FF9A4D 100%);
  color: white;
}

.appa-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.appa-image {
  flex: 0 0 200px;
  height: 200px;
  border-radius: var(--radius-circle);
  background: white;
  padding: 8px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.appa-image-inner {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-circle);
  background: linear-gradient(135deg, #87CEEB 0%, #B8E4F9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;
}

.appa-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.appa-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin: 0 0 20px 0;
}

.appa-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 15px;
  opacity: 0.95;
}

.appa-btn {
  background: white;
  color: var(--orange);
  border: none;
  padding: 15px 35px;
  border-radius: var(--radius-xl);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-normal);
  margin-top: 10px;
}

.appa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
  padding: var(--spacing-xl) var(--spacing-lg);
  background: linear-gradient(180deg, #87CEEB 0%, #B8E4F9 100%);
  text-align: center;
}

.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--dark-blue);
  margin-bottom: 15px;
}

.newsletter-subtitle {
  font-size: 1.2rem;
  color: var(--dark-blue);
  margin-bottom: 30px;
}

.newsletter-message {
  margin-top: 15px;
  font-size: 1rem;
  font-weight: 700;
  min-height: 24px;
}

.newsletter-message.success {
  color: #2E7D32;
}

.newsletter-message.error {
  color: #C62828;
}

.newsletter-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--dark-blue);
  opacity: 0.8;
}
