/* ============================================
   AMALY Universe — Brand-aligned Styles
   Colors & identity from amalykidsclub.com
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* AMALY Brand Palette — exact logo tile colors */
  --coral:    #E8716A;   /* A — coral salmon */
  --mint:     #7ECBB5;   /* M — sage mint */
  --peach:    #8BADD4;   /* A — periwinkle blue */
  --yellow:   #F0B870;   /* L — warm peach */
  --lavender: #A07EC8;   /* Y — medium purple */

  /* Primary action color (exact from amalykidsclub.com) */
  --primary:  #fb6b47;
  --primary-dark: #abcd52;   /* AMALY signature: orange→lime hover */

  /* Navy from top bar + teal accent from site */
  --navy:     #3E3E7A;
  --navy-dark:#2E2E5E;
  --teal:     #01a2a6;

  /* Neutrals */
  --white:    #FFFFFF;
  --cream:    #FFF8F4;   /* warm off-white */
  --light:    #FFF3EE;
  --border:   #F0E8E0;
  --text:     #3A3A3A;
  --gray:     #888888;
  --gray-lt:  #BBBBBB;

  --font-head:  'Londrina Solid', cursive;
  --font-body:  'Lato', sans-serif;

  --radius:     14px;
  --radius-lg:  22px;
  --radius-xl:  32px;
  --shadow:     0 4px 24px rgba(62,62,122,0.08);
  --shadow-lg:  0 8px 48px rgba(62,62,122,0.13);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(251,107,71,0.1);
  border: 1.5px solid rgba(251,107,71,0.22);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
  color: var(--navy);
  text-align: center;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 620px;
  margin: 0 auto 52px;
  text-align: center;
  line-height: 1.7;
}

section { padding: 96px 0; }

/* ============================================
   AMALY LOGO TILES
   ============================================ */
.logo-tiles {
  display: flex;
  align-items: center;
  gap: -4px; /* overlapping handled by margin */
}

.tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: white;
  letter-spacing: 0;
  line-height: 1;
  margin-right: -4px; /* overlapping tiles */
  position: relative;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.12);
}

/* Cascading tilt — matches the logo exactly */
.tile:nth-child(1) { transform: rotate(-6deg) translateY(2px); z-index: 5; }
.tile:nth-child(2) { transform: rotate(-2deg) translateY(-2px); z-index: 4; }
.tile:nth-child(3) { transform: rotate(3deg) translateY(1px); z-index: 3; }
.tile:nth-child(4) { transform: rotate(5deg) translateY(3px); z-index: 2; }
.tile:nth-child(5) { transform: rotate(2deg) translateY(-1px); z-index: 1; margin-right: 0; }

.tile-coral   { background: #E8716A; } /* A — coral salmon */
.tile-mint    { background: #7ECBB5; } /* M — sage mint */
.tile-peach   { background: #8BADD4; } /* A — periwinkle blue */
.tile-yellow  { background: #F0B870; color: white; } /* L — warm peach */
.tile-lavender{ background: #A07EC8; } /* Y — medium purple */

.tile-dot {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--primary);
  margin-left: 10px;
  margin-top: 8px;
}

/* Large logo variant */
.logo-tiles.lg .tile {
  width: 58px; height: 58px;
  border-radius: 16px;
  font-size: 2rem;
  margin-right: -6px;
}
.logo-tiles.lg .tile-dot {
  font-size: 1rem;
  margin-top: 14px;
  margin-left: 14px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(240,123,63,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,123,63,0.45);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(62,62,122,0.25);
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2.5px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2.5px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-lg { padding: 17px 44px; font-size: 1.1rem; }

/* ============================================
   TOP STRIPE (brand accent bar)
   ============================================ */
.top-stripe {
  height: 8px;
  background: linear-gradient(90deg,
    #E8716A 0% 20%,
    #7ECBB5 20% 40%,
    #8BADD4 40% 60%,
    #F0B870 60% 80%,
    #A07EC8 80% 100%
  );
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 8px; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(62,62,122,0.1);
}

.navbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 158px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav-links a {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); }

.nav-cta {
  margin-left: 8px;
  padding: 10px 22px;
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 3px;
  transition: var(--transition);
}

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav a {
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: 800;
  transition: var(--transition);
  text-transform: uppercase;
}

.mobile-nav a:hover { color: var(--primary); }

.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
  background: none;
  border: none;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.mobile-nav-close:hover { background: var(--light); }

/* ============================================
   HERO — HOME
   ============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #FFF5EE 0%, #FFF8F4 55%, #F0EDFF 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 168px; /* navbar + stripe */
}

/* Wavy bottom edge like the original site */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 60px, 100% 0, 100% 60px);
}

/* Decorative blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  pointer-events: none;
}

.hero-blob-1 {
  width: 500px; height: 500px;
  background: var(--coral);
  top: -100px; right: 5%;
}

.hero-blob-2 {
  width: 350px; height: 350px;
  background: var(--mint);
  bottom: 0; left: -80px;
}

.hero-blob-3 {
  width: 280px; height: 280px;
  background: var(--yellow);
  top: 30%; right: 20%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 2px solid var(--border);
  color: var(--navy);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-title .highlight {
  color: var(--primary);
  position: relative;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.hero-stat-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  text-align: center;
  min-width: 110px;
}

.hero-stat-card strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-card span {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-visual {
  position: absolute;
  right: 0; top: 76px; bottom: 0;
  width: 44%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* Floating activity cards */
.floating-cards { position: relative; width: 380px; height: 460px; }

.float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-lg);
  border: 2px solid transparent;
  animation: floatUp 6s ease-in-out infinite;
}

.float-card:nth-child(1) { background: rgba(232,113,106,0.12); border-color: rgba(232,113,106,0.28); }
.float-card:nth-child(2) { background: rgba(126,203,181,0.14); border-color: rgba(126,203,181,0.3); }
.float-card:nth-child(3) { background: rgba(139,173,212,0.14); border-color: rgba(139,173,212,0.3); }
.float-card:nth-child(4) { background: rgba(240,184,112,0.14); border-color: rgba(240,184,112,0.3); }
.float-card:nth-child(5) { background: rgba(160,126,200,0.14); border-color: rgba(160,126,200,0.3); }

.float-card:nth-child(1) { top: 10px; left: 0; width: 158px; animation-delay: 0s; }
.float-card:nth-child(2) { top: 60px; right: 0; width: 148px; animation-delay: 1.8s; }
.float-card:nth-child(3) { top: 50%; left: 50%; transform: translateX(-50%) translateY(-50%); width: 160px; animation-delay: 2.8s; }
.float-card:nth-child(4) { bottom: 70px; left: 0; width: 155px; animation-delay: 3.6s; }
.float-card:nth-child(5) { bottom: 10px; right: 0; width: 152px; animation-delay: 4.8s; }

.float-card:nth-child(3):hover { transform: translateX(-50%) translateY(calc(-50% - 10px)); }

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

.float-icon { font-size: 1.9rem; margin-bottom: 8px; }

.float-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--navy);
}

.float-sub {
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 3px;
}

.float-pill {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  color: white;
}

/* ============================================
   SECTION: FIVE PROMISES
   ============================================ */
.promises { background: #FFFAF7; text-align: center; }

.promises-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.promise-card {
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.promise-card:nth-child(1) { background: rgba(232,113,106,0.09); border-color: rgba(232,113,106,0.2); }
.promise-card:nth-child(2) { background: rgba(126,203,181,0.1); border-color: rgba(126,203,181,0.22); }
.promise-card:nth-child(3) { background: rgba(139,173,212,0.1); border-color: rgba(139,173,212,0.22); }
.promise-card:nth-child(4) { background: rgba(240,184,112,0.1); border-color: rgba(240,184,112,0.22); }
.promise-card:nth-child(5) { background: rgba(160,126,200,0.1); border-color: rgba(160,126,200,0.22); }

.promise-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 0;
}
.promise-card:nth-child(1)::before { background: var(--coral); }
.promise-card:nth-child(2)::before { background: var(--mint); }
.promise-card:nth-child(3)::before { background: var(--peach); }
.promise-card:nth-child(4)::before { background: var(--yellow); }
.promise-card:nth-child(5)::before { background: var(--lavender); }

.promise-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.promise-card:nth-child(1):hover { border-color: var(--coral); }
.promise-card:nth-child(2):hover { border-color: var(--mint); }
.promise-card:nth-child(3):hover { border-color: var(--peach); }
.promise-card:nth-child(4):hover { border-color: var(--yellow); }
.promise-card:nth-child(5):hover { border-color: var(--lavender); }

.promise-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.promise-card:nth-child(1) .promise-icon { background: rgba(232,113,106,0.18); }
.promise-card:nth-child(2) .promise-icon { background: rgba(126,203,181,0.2); }
.promise-card:nth-child(3) .promise-icon { background: rgba(139,173,212,0.2); }
.promise-card:nth-child(4) .promise-icon { background: rgba(240,184,112,0.2); }
.promise-card:nth-child(5) .promise-icon { background: rgba(160,126,200,0.2); }

.promise-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--navy); }
.promise-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.55; }

/* ============================================
   SECTION: EXPERIENCE
   ============================================ */
.experience { background: linear-gradient(160deg, #EDF6FF 0%, #E8F5F0 100%); text-align: center; }

.experience-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.exp-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.exp-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
}
.exp-card:nth-child(1)::before { background: var(--coral); }
.exp-card:nth-child(2)::before { background: var(--mint); }
.exp-card:nth-child(3)::before { background: var(--peach); }
.exp-card:nth-child(4)::before { background: var(--yellow); }
.exp-card:nth-child(5)::before { background: var(--lavender); }
.exp-card:nth-child(6)::before { background: var(--primary); }

.exp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.exp-card:nth-child(1):hover { border-color: var(--coral); }
.exp-card:nth-child(2):hover { border-color: var(--mint); }
.exp-card:nth-child(3):hover { border-color: var(--peach); }
.exp-card:nth-child(4):hover { border-color: var(--yellow); }
.exp-card:nth-child(5):hover { border-color: var(--lavender); }
.exp-card:nth-child(6):hover { border-color: var(--primary); }

.exp-icon { font-size: 2.2rem; margin-bottom: 14px; }
.exp-card h3 { font-size: 0.92rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.exp-card p { font-size: 0.78rem; color: var(--gray); }

/* ============================================
   SECTION: JOURNEY TIMELINE (Explore & Impact)
   ============================================ */
.themes { background: var(--white); text-align: center; }

.journey-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
  padding-bottom: 24px;
}

/* Horizontal connecting line */
.journey-line {
  position: absolute;
  top: calc(50% - 2px);
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg,
    #E8716A, #7ECBB5, #8BADD4, #F0B870, #A07EC8);
  border-radius: 3px;
  z-index: 0;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.journey-dot {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--step-color, var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15), 0 0 0 5px white, 0 0 0 7px var(--step-color, var(--primary));
  z-index: 2;
  transition: transform 0.25s ease;
}

.journey-dot span {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.journey-step:hover .journey-dot { transform: scale(1.15); }

.journey-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  border-top: 3px solid var(--step-color, var(--primary));
  width: 100%;
  max-width: 180px;
  transition: var(--transition);
}

.journey-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--step-color, var(--primary));
}

.journey-card--top { margin-bottom: 16px; }
.journey-card--bottom { margin-top: 16px; }

.journey-spacer {
  flex: 1;
  min-height: 90px;
}

.journey-emoji {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.journey-week {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--step-color, var(--primary));
  margin-bottom: 6px;
}

.journey-card h3 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.25;
}

.journey-card p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ============================================
   SECTION: COMPETENCIES
   ============================================ */
.competencies { background: var(--cream); }

.comp-header { text-align: center; }

.comp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.comp-pillar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  border: 2.5px solid var(--border);
  transition: var(--transition);
}

.comp-pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.comp-pillar:nth-child(1) { border-top: 4px solid var(--coral); }
.comp-pillar:nth-child(2) { border-top: 4px solid var(--mint); }
.comp-pillar:nth-child(3) { border-top: 4px solid var(--peach); }
.comp-pillar:nth-child(4) { border-top: 4px solid var(--yellow); }
.comp-pillar:nth-child(5) { border-top: 4px solid var(--lavender); }

.comp-pillar-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.comp-emoji { font-size: 1.5rem; }
.comp-pillar-header h3 { font-size: 0.95rem; color: var(--navy); }

.comp-desc {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 14px;
}

.comp-tags { display: flex; flex-wrap: wrap; gap: 7px; }

.research-note {
  margin-top: 52px;
  text-align: center;
  padding: 20px 32px;
  border-top: 1px solid var(--border);
}

.research-note p {
  font-size: 0.82rem;
  color: var(--gray-lt);
  font-style: italic;
}

.comp-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 100px;
}

.comp-pillar:nth-child(1) .comp-tag { background: rgba(240,122,122,0.12); color: #C05050; }
.comp-pillar:nth-child(2) .comp-tag { background: rgba(126,202,188,0.15); color: #3A8A7A; }
.comp-pillar:nth-child(3) .comp-tag { background: rgba(245,170,111,0.12); color: #B06020; }
.comp-pillar:nth-child(4) .comp-tag { background: rgba(245,200,74,0.15); color: #8A7000; }
.comp-pillar:nth-child(5) .comp-tag { background: rgba(196,168,223,0.15); color: #7050A0; }

/* ============================================
   SECTION: GALLERY
   ============================================ */
.gallery { background: var(--white); text-align: center; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 210px);
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.gallery-placeholder .gallery-icon { font-size: 2.2rem; opacity: 0.5; }

.gallery-placeholder span {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  opacity: 0.5;
}

.gallery-item:nth-child(1) { background: linear-gradient(135deg, #FFE0D8, #FFD0C4); }
.gallery-item:nth-child(2) { background: linear-gradient(135deg, #D8F2EE, #C0EAE4); }
.gallery-item:nth-child(3) { background: linear-gradient(135deg, #FFE8D0, #FFD8B8); }
.gallery-item:nth-child(4) { background: linear-gradient(135deg, #FFF5C0, #FFEDA0); }
.gallery-item:nth-child(5) { background: linear-gradient(135deg, #EAE0F5, #DDD0F0); }

/* ============================================
   SOCIAL CHANNELS SECTION
   ============================================ */
.social-channels { background: #FFFAF7; text-align: center; }

.social-channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.social-channel-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  text-decoration: none;
  transition: var(--transition);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.social-channel-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
}

.sc-youtube { background: rgba(255,0,0,0.05); border-color: rgba(255,0,0,0.12); }
.sc-youtube::before { background: #FF0000; }
.sc-youtube:hover { border-color: #FF0000; transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.sc-instagram { background: rgba(225,48,108,0.05); border-color: rgba(225,48,108,0.12); }
.sc-instagram::before { background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.sc-instagram:hover { border-color: #dc2743; transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.sc-linkedin { background: rgba(0,119,181,0.05); border-color: rgba(0,119,181,0.12); }
.sc-linkedin::before { background: #0077B5; }
.sc-linkedin:hover { border-color: #0077B5; transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.sc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.sc-logo {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  flex-shrink: 0;
  padding: 8px;
}

.sc-logo img { width: 28px; height: 28px; display: block; }

.sc-platform {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
}

.sc-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.sc-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
}

.sc-cta {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary);
  margin-top: 4px;
}

/* ============================================
   HOME FINAL CTA
   ============================================ */
.home-cta {
  background: var(--navy);
  text-align: center;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.home-cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(240,123,63,0.15) 0%, transparent 70%);
  top: -150px; right: -100px;
  border-radius: 50%;
}

.home-cta .section-label { color: var(--yellow); background: rgba(240,184,112,0.2); border-color: rgba(240,184,112,0.35); }
.home-cta .section-title { color: white !important; }
.home-cta .section-sub { color: rgba(255,255,255,0.75) !important; }
.home-cta .section-sub,
.home-cta p { color: rgba(255,255,255,0.75); }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.55);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255,255,255,0.5);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-link {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  overflow: hidden;
}

.social-link img {
  width: 22px; height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: var(--transition);
}

.social-link:hover { background: var(--primary); }
.social-link:hover img { opacity: 1; }

footer h4 {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 20px;
}

footer ul li + li { margin-top: 11px; }

footer ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  font-weight: 600;
}

footer ul li a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a { color: var(--primary); }

/* ============================================
   SUMMER CAMP PAGE — HERO
   ============================================ */
.camp-hero {
  min-height: 88vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding-top: 168px;
  position: relative;
  overflow: hidden;
}

.camp-hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(240,123,63,0.15) 0%, transparent 65%);
  top: -200px; right: -100px;
  border-radius: 50%;
}

.camp-hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(126,202,188,0.1) 0%, transparent 65%);
  bottom: -100px; left: 5%;
  border-radius: 50%;
}

.camp-hero .hero-title { color: white; }
.camp-hero .hero-sub { color: rgba(255,255,255,0.7); }
.camp-hero .hero-badge {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: white;
}

.camp-stats-bar {
  display: flex;
  margin-top: 52px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 580px;
}

.camp-stat {
  flex: 1;
  padding: 18px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.camp-stat:last-child { border-right: none; }

.camp-stat strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.camp-stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
}

/* ============================================
   CAMP EXPERIENCE
   ============================================ */
.camp-experience { background: var(--white); text-align: center; }

.camp-exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.camp-exp-item {
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.camp-exp-item:nth-child(1) { background: rgba(232,113,106,0.09); border-color: rgba(232,113,106,0.2); }
.camp-exp-item:nth-child(2) { background: rgba(126,203,181,0.1); border-color: rgba(126,203,181,0.22); }
.camp-exp-item:nth-child(3) { background: rgba(139,173,212,0.1); border-color: rgba(139,173,212,0.22); }
.camp-exp-item:nth-child(4) { background: rgba(240,184,112,0.1); border-color: rgba(240,184,112,0.22); }
.camp-exp-item:nth-child(5) { background: rgba(160,126,200,0.1); border-color: rgba(160,126,200,0.22); }
.camp-exp-item:nth-child(6) { background: rgba(251,107,71,0.08); border-color: rgba(251,107,71,0.2); }

.camp-exp-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.camp-exp-item:nth-child(1)::before { background: var(--coral); }
.camp-exp-item:nth-child(2)::before { background: var(--mint); }
.camp-exp-item:nth-child(3)::before { background: var(--peach); }
.camp-exp-item:nth-child(4)::before { background: var(--yellow); }
.camp-exp-item:nth-child(5)::before { background: var(--lavender); }
.camp-exp-item:nth-child(6)::before { background: var(--primary); }

.camp-exp-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.camp-exp-item .icon { font-size: 2.2rem; margin-bottom: 14px; }
.camp-exp-item h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.camp-exp-item p { font-size: 0.83rem; color: var(--gray); }

/* ============================================
   WEEKLY THEMES — TIMELINE
   ============================================ */
.camp-themes { background: var(--cream); }

.timeline {
  position: relative;
  margin-top: 64px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  gap: 24px;
  margin-bottom: 40px;
  align-items: center;
}

.timeline-item:nth-child(even) .timeline-content-left { order: 3; }
.timeline-item:nth-child(even) .timeline-dot { order: 2; }
.timeline-item:nth-child(even) .timeline-content-right { order: 1; }

.timeline-content-left, .timeline-content-right {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
}

.timeline-content-right { visibility: hidden; }
.timeline-item:nth-child(even) .timeline-content-left { visibility: hidden; }
.timeline-item:nth-child(even) .timeline-content-right { visibility: visible; }

.timeline-dot {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: white;
  font-family: var(--font-head);
  justify-self: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.timeline-item:nth-child(1) .timeline-dot { background: var(--coral); }
.timeline-item:nth-child(2) .timeline-dot { background: var(--mint); }
.timeline-item:nth-child(3) .timeline-dot { background: var(--peach); }
.timeline-item:nth-child(4) .timeline-dot { background: var(--yellow); color: #5a4500; }
.timeline-item:nth-child(5) .timeline-dot { background: var(--lavender); }
.timeline-item:nth-child(6) .timeline-dot { background: var(--primary); }

.timeline-week {
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 8px;
}

.timeline-content-left h3,
.timeline-content-right h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 8px; }

.timeline-content-left p,
.timeline-content-right p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; margin-bottom: 8px; }

.timeline-question {
  font-style: italic;
  font-size: 0.82rem !important;
  color: var(--primary) !important;
  margin-bottom: 6px !important;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.timeline-tags span {
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--light);
  color: var(--navy);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* Outcomes block */
.camp-outcomes {
  margin-top: 64px;
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  text-align: center;
}

.camp-outcomes h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 28px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  text-align: left;
  max-width: 860px;
  margin: 0 auto;
}

.outcome-item {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  padding: 10px 16px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* ============================================
   WEEK CARDS GRID
   ============================================ */
.weeks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

/* Last 2 cards (week 4 & 5) centered in a 3-col grid */
.weeks-grid .week-card:nth-child(4) {
  grid-column: 1;
}
.weeks-grid .week-card:nth-child(5) {
  grid-column: 2;
}
/* Override: push 4+5 to be centered (cols 1-2 of 3) — use subgrid trick */
.weeks-grid {
  grid-template-columns: repeat(6, 1fr);
}
.weeks-grid .week-card:nth-child(1) { grid-column: 1 / 3; }
.weeks-grid .week-card:nth-child(2) { grid-column: 3 / 5; }
.weeks-grid .week-card:nth-child(3) { grid-column: 5 / 7; }
.weeks-grid .week-card:nth-child(4) { grid-column: 2 / 4; }
.weeks-grid .week-card:nth-child(5) { grid-column: 4 / 6; }

.week-card {
  background: white;
  border-radius: var(--radius-lg);
  border-top: 5px solid var(--week-color, var(--primary));
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.week-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.week-card-festival {
  grid-column: span 1;
  background: linear-gradient(135deg, #fdf6ff 0%, #f0f4ff 100%);
}

.week-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--border);
}

.week-num {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--week-color, var(--primary));
  margin-bottom: 6px;
}

.week-header h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.week-question {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--gray);
  line-height: 1.5;
}

.week-body { padding: 20px 24px 24px; }

.week-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.week-focus span {
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--light);
  color: var(--navy);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.week-activities {
  list-style: none;
  margin-bottom: 16px;
}

.week-activities li {
  font-size: 0.82rem;
  color: var(--gray);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.week-activities li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--week-color, var(--primary));
  font-size: 0.75rem;
}

.week-artifact {
  background: var(--light);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.artifact-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
}

.artifact-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
}

.week-workshop {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--week-color, var(--primary));
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

/* Continuous Challenges */
.continuous-challenges {
  margin-top: 56px;
  text-align: center;
  padding: 40px;
  background: var(--light);
  border-radius: var(--radius-lg);
}

.continuous-challenges h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.challenges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}

.challenge-pill {
  font-size: 0.88rem;
  font-weight: 700;
  background: white;
  color: var(--navy);
  padding: 8px 20px;
  border-radius: 100px;
  border: 2px solid var(--border);
}

.clubs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.club-badge {
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 100px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--navy); }
.testimonials .section-label { background: rgba(251,107,71,0.25); border-color: rgba(251,107,71,0.4); color: var(--yellow); }
.testimonials .section-title { color: white; }
.testimonials .section-sub { color: rgba(255,255,255,0.65); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.yt-placeholder { background: var(--navy); }

.yt-thumb {
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  cursor: pointer;
  position: relative;
}

.yt-play {
  width: 52px; height: 52px;
  background: #FF0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  padding-left: 4px;
  box-shadow: 0 4px 16px rgba(255,0,0,0.4);
}

.yt-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonial-body { padding: 20px; }

.testimonial-quote {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-quote::before { content: '"'; color: var(--primary); font-size: 1.2rem; }
.testimonial-quote::after  { content: '"'; color: var(--primary); font-size: 1.2rem; }

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author strong { font-size: 0.88rem; color: var(--navy); }
.testimonial-author span   { font-size: 0.78rem; color: var(--gray); }

/* Responsive weeks */
@media (max-width: 1024px) {
  .weeks-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .weeks-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================
   WEEKLY RHYTHM
   ============================================ */
.weekly-rhythm { background: var(--white); text-align: center; }

.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.rhythm-day {
  background: var(--cream);
  border: 2.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 10px;
  text-align: center;
  transition: var(--transition);
}

.rhythm-day:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(240,123,63,0.12); }

.rhythm-day:nth-child(1):hover { border-color: var(--coral); }
.rhythm-day:nth-child(2):hover { border-color: var(--mint); }
.rhythm-day:nth-child(3):hover { border-color: var(--peach); }
.rhythm-day:nth-child(4):hover { border-color: var(--yellow); }
.rhythm-day:nth-child(5):hover { border-color: var(--lavender); }
.rhythm-day:nth-child(6):hover { border-color: var(--primary); }
.rhythm-day:nth-child(7):hover { border-color: var(--coral); }

.day-name {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 10px;
}

.day-icon { font-size: 1.8rem; margin-bottom: 10px; }

.day-activity {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

/* ============================================
   PACKAGE COMPARISON
   ============================================ */
.packages { background: var(--cream); }
.packages-header { text-align: center; }

.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.package-card {
  background: var(--white);
  border: 2.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.package-card.featured {
  border-color: var(--primary);
  box-shadow: 0 8px 40px rgba(240,123,63,0.15);
}

.package-card:hover { box-shadow: var(--shadow-lg); }

.package-badge {
  position: absolute;
  top: -1px; right: 28px;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 0 0 10px 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.package-header {
  padding: 32px 32px 22px;
  border-bottom: 2px solid var(--border);
}

.package-name {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  margin-bottom: 8px;
}

.package-title { font-size: 2rem; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.package-sub { font-size: 0.875rem; color: var(--gray); line-height: 1.6; }

.package-features { padding: 24px 32px; }

.package-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}

.package-features li:last-child { border-bottom: none; }

.feat-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
  font-weight: 900;
}

.feat-check.yes { background: rgba(126,202,188,0.2); color: #3A8A7A; }
.feat-check.no  { background: rgba(187,187,187,0.15); color: var(--gray-lt); }

.package-cta { padding: 20px 32px 32px; }
.package-cta .btn { width: 100%; justify-content: center; }

/* Comparison Table */
.comparison-table-wrap { margin-top: 56px; overflow-x: auto; }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table th {
  padding: 18px 24px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
}

.comparison-table th:first-child { text-align: left; background: var(--cream); }
.comparison-table th:nth-child(2) { background: var(--cream); }
.comparison-table th:nth-child(3) { background: var(--primary); color: white; }

.comparison-table td {
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.comparison-table td:first-child { text-align: left; color: var(--navy); }
.comparison-table tbody tr:hover td { background: var(--cream); }

.check-yes { color: #3A8A7A; font-size: 1.1rem; font-weight: 900; }
.check-no  { color: var(--gray-lt); font-size: 1.1rem; }

/* ============================================
   REGISTRATION FORM
   ============================================ */
.register-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.register-hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(240,123,63,0.12), transparent 65%);
  top: -100px; right: 0;
  border-radius: 50%;
}

.register-section { padding: 80px 0; background: var(--cream); }

.register-container { max-width: 760px; margin: 0 auto; }

.form-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}

.progress-step { display: flex; align-items: center; }

.step-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--border);
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  transition: var(--transition);
  position: relative; z-index: 1;
}

.step-dot.active { background: var(--primary); color: white; }
.step-dot.done   { background: var(--mint); color: white; }

.step-label {
  margin-left: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray);
}

.step-label.active { color: var(--primary); }

.step-line {
  width: 52px; height: 2px;
  background: var(--border);
  margin: 0 8px;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  border: 2px solid var(--border);
}

.form-card-title { font-size: 1.4rem; margin-bottom: 6px; color: var(--navy); }
.form-card-sub { font-size: 0.88rem; color: var(--gray); margin-bottom: 32px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label { font-size: 0.87rem; font-weight: 700; color: var(--navy); }
.form-group label .required { color: var(--primary); margin-left: 2px; }

.form-control {
  padding: 12px 16px;
  border: 2.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(240,123,63,0.1);
}

select.form-control { cursor: pointer; }

.package-options { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }

.package-option { position: relative; }
.package-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

.package-option label {
  display: block;
  border: 2.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  cursor: pointer;
  transition: var(--transition);
  background: var(--cream);
}

.package-option input:checked + label {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(240,123,63,0.08);
}

.package-option label .pkg-name { font-weight: 800; font-size: 1.05rem; margin-bottom: 4px; color: var(--navy); }
.package-option label .pkg-desc { font-size: 0.8rem; color: var(--gray); }

.package-option label .pkg-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 100px;
  background: var(--primary);
  color: white;
  margin-top: 10px;
}

#address-section {
  display: none;
  border-top: 2px dashed var(--border);
  padding-top: 28px;
  margin-top: 8px;
}

#address-section.visible { display: block; }

.address-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(126,202,188,0.1);
  border: 1.5px solid rgba(126,202,188,0.35);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 24px;
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 600;
}

.agreements-list { display: flex; flex-direction: column; gap: 14px; }

.agreement-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.agreement-item input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}

.agreement-item .agreement-text { font-size: 0.875rem; color: var(--text); line-height: 1.55; font-weight: 600; }
.agreement-item.optional .agreement-text { color: var(--gray); font-weight: 600; }

.agreements-divider {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  margin: 6px 0;
}

.form-submit-area { text-align: center; margin-top: 32px; }
.form-submit-area .btn { width: 100%; justify-content: center; max-width: 420px; }

.form-submit-note { font-size: 0.8rem; color: var(--gray); margin-top: 16px; line-height: 1.6; }

/* ============================================
   FAQ
   ============================================ */
.faq-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-section { padding: 80px 0; background: var(--cream); }
.faq-container { max-width: 760px; margin: 0 auto; }

.faq-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.faq-cat-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 2.5px solid var(--border);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray);
  font-family: var(--font-body);
}

.faq-cat-btn.active, .faq-cat-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.faq-group { margin-bottom: 44px; }

.faq-group-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2.5px solid var(--border);
}

.faq-item {
  border: 2.5px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}

.faq-item.open { border-color: var(--primary); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  gap: 16px;
}

.faq-chevron {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 0.75rem;
  color: var(--gray);
}

.faq-item.open .faq-chevron {
  background: var(--primary);
  color: white;
  transform: rotate(180deg);
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; background: var(--cream); }
.faq-answer.open { max-height: 500px; }

.faq-answer-inner {
  padding: 18px 22px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.75;
  font-weight: 600;
}

/* ============================================
   ABOUT
   ============================================ */
.about-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-mission { padding: 96px 0; background: var(--white); }

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-mission-visual {
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
}

/* colored tile grid for visual */
.mission-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.mission-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-radius: var(--radius-lg);
}

.mission-tile:nth-child(1) { background: rgba(240,122,122,0.2); }
.mission-tile:nth-child(2) { background: rgba(126,202,188,0.2); }
.mission-tile:nth-child(3) { background: rgba(245,200,74,0.2); }
.mission-tile:nth-child(4) { background: rgba(196,168,223,0.2); }

.about-values { background: var(--cream); text-align: center; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card:nth-child(1) { background: rgba(232,113,106,0.08); border-color: rgba(232,113,106,0.18); }
.value-card:nth-child(2) { background: rgba(126,203,181,0.09); border-color: rgba(126,203,181,0.2); }
.value-card:nth-child(3) { background: rgba(139,173,212,0.09); border-color: rgba(139,173,212,0.2); }
.value-card:nth-child(4) { background: rgba(240,184,112,0.09); border-color: rgba(240,184,112,0.2); }
.value-card:nth-child(5) { background: rgba(160,126,200,0.09); border-color: rgba(160,126,200,0.2); }
.value-card:nth-child(6) { background: rgba(251,107,71,0.07); border-color: rgba(251,107,71,0.18); }

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.value-card:nth-child(1)::before { background: var(--coral); }
.value-card:nth-child(2)::before { background: var(--mint); }
.value-card:nth-child(3)::before { background: var(--peach); }
.value-card:nth-child(4)::before { background: var(--yellow); }
.value-card:nth-child(5)::before { background: var(--lavender); }
.value-card:nth-child(6)::before { background: var(--primary); }

.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-card:nth-child(1):hover { border-color: var(--coral); }
.value-card:nth-child(2):hover { border-color: var(--mint); }
.value-card:nth-child(3):hover { border-color: var(--peach); }
.value-card:nth-child(4):hover { border-color: var(--yellow); }
.value-card:nth-child(5):hover { border-color: var(--lavender); }
.value-card:nth-child(6):hover { border-color: var(--primary); }

.value-icon { font-size: 2.4rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--navy); }
.value-card p { font-size: 0.83rem; color: var(--gray); line-height: 1.65; }

.ecosystem-section { padding: 96px 0; background: var(--white); text-align: center; }

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.eco-item {
  background: var(--cream);
  border: 2.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 18px;
  transition: var(--transition);
  text-align: center;
}

.eco-item:hover { border-color: var(--mint); transform: translateY(-4px); box-shadow: var(--shadow); }
.eco-icon { font-size: 2rem; margin-bottom: 12px; }
.eco-item h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 6px; color: var(--navy); }
.eco-item p { font-size: 0.8rem; color: var(--gray); }

/* ============================================
   CONTACT
   ============================================ */
.contact-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  text-align: center;
}

.contact-section { padding: 80px 0; background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}

.contact-info h2 { font-size: 1.8rem; margin-bottom: 20px; color: var(--navy); }

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}

.contact-method-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(240,123,63,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-method h4 { font-size: 0.85rem; font-weight: 800; margin-bottom: 3px; color: var(--navy); }
.contact-method p, .contact-method a { font-size: 0.88rem; color: var(--gray); font-weight: 600; }

.follow-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: var(--transition);
}

.follow-link:hover { border-color: var(--primary); box-shadow: 0 2px 12px rgba(251,107,71,0.12); }

.follow-link img {
  width: 20px; height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  filter: none !important;
}

.follow-link[href*="instagram"] img { filter: none !important; }
.follow-link[href*="youtube"] img { filter: none !important; }
.follow-link[href*="linkedin"] img { filter: none !important; }

.follow-link strong { display: block; font-size: 0.85rem; color: var(--navy); margin-bottom: 2px; }
.follow-link span   { font-size: 0.78rem; color: var(--gray); line-height: 1.4; }
.contact-method a:hover { color: var(--primary); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
}

.contact-form-card h3 { font-size: 1.4rem; margin-bottom: 6px; color: var(--navy); }
.contact-form-card .sub { font-size: 0.875rem; color: var(--gray); margin-bottom: 28px; font-weight: 600; }

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--navy);
  color: white;
  padding: 14px 22px;
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast .toast-icon { font-size: 1.2rem; }

/* ============================================
   WHATSAPP CHAT WIDGET
   ============================================ */
.wa-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-bubble {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  width: 320px;
  overflow: hidden;
  transform: scale(0.85) translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease;
  transform-origin: bottom right;
}

.wa-bubble.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.wa-bubble-header {
  background: #25D366;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.wa-info strong {
  display: block;
  color: white;
  font-size: 0.95rem;
  font-weight: 800;
}

.wa-info span {
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
}

.wa-online {
  width: 8px; height: 8px;
  background: #a0f0a0;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}

.wa-body {
  padding: 20px;
  background: #ECE5DD;
}

.wa-msg {
  background: white;
  border-radius: 12px 12px 12px 0;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: #3A3A3A;
  line-height: 1.55;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  max-width: 88%;
  position: relative;
}

.wa-msg::before {
  content: '';
  position: absolute;
  left: -8px; bottom: 0;
  border: 8px solid transparent;
  border-right-color: white;
  border-bottom-color: white;
  border-left: 0;
  border-top: 0;
}

.wa-time {
  font-size: 0.7rem;
  color: #999;
  text-align: right;
  margin-top: 6px;
}

.wa-footer {
  padding: 14px 20px;
  background: white;
  display: flex;
  gap: 10px;
  align-items: center;
  border-top: 1px solid #f0f0f0;
}

.wa-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.9rem;
  color: var(--text);
  font-family: var(--font-body);
  background: transparent;
}

.wa-input::placeholder { color: #aaa; }

.wa-send {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.wa-send:hover { background: #1ebe5a; }

.wa-send svg { width: 18px; height: 18px; fill: white; }

.wa-toggle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.wa-toggle:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }

.wa-toggle svg { width: 32px; height: 32px; fill: white; transition: opacity 0.2s; }

.wa-toggle .wa-close-icon { position: absolute; opacity: 0; }
.wa-toggle.active .wa-open-icon { opacity: 0; }
.wa-toggle.active .wa-close-icon { opacity: 1; }

.wa-notification {
  position: absolute;
  top: -4px; right: -4px;
  width: 20px; height: 20px;
  background: #FF3B30;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* ============================================
   FULLPAGE SCROLL NAVIGATION
   ============================================ */

/* Side dot navigation */
.fp-dots {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fp-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(62,62,122,0.25);
  border: 2px solid rgba(62,62,122,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.fp-dot:hover { background: var(--primary); border-color: var(--primary); transform: scale(1.25); }
.fp-dot.active { background: var(--primary); border-color: var(--primary); transform: scale(1.3); }

.fp-dot[data-label]:hover::before {
  content: attr(data-label);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
}

/* Scroll arrow hint */
.fp-arrow {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.6;
  transition: opacity 0.4s;
  pointer-events: none;
}

.fp-arrow.hidden { opacity: 0; }

.fp-arrow span {
  display: block;
  width: 10px; height: 10px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(45deg);
  animation: fp-bounce 1.4s infinite;
}

.fp-arrow span:nth-child(2) { animation-delay: 0.2s; margin-top: -6px; }

@keyframes fp-bounce {
  0%, 100% { opacity: 0.3; transform: rotate(45deg) translateY(-3px); }
  50% { opacity: 1; transform: rotate(45deg) translateY(3px); }
}

/* Section transition */
body.fp-scrolling { overflow: hidden; }

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.mt-48 { margin-top: 48px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .promises-grid { grid-template-columns: repeat(3, 1fr); }
  .experience-grid { grid-template-columns: repeat(3, 1fr); }
  .comp-grid { grid-template-columns: repeat(3, 1fr); }
  .ecosystem-grid { grid-template-columns: repeat(2, 1fr); }
  .social-channels-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-mission-grid { grid-template-columns: 1fr; }
  .about-mission-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: 2rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 12px; }

  .promises-grid { grid-template-columns: 1fr 1fr; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  /* Journey timeline → vertical on mobile */
  .journey-timeline {
    grid-template-columns: 1fr;
    margin-top: 40px;
    padding-left: 40px;
  }
  .journey-line {
    top: 0; bottom: 0;
    left: 20px; right: auto;
    width: 3px; height: auto;
  }
  .journey-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
  }
  .journey-dot { flex-shrink: 0; }
  .journey-spacer { display: none; }
  .journey-card--top,
  .journey-card--bottom {
    margin: 0;
    max-width: 100%;
    text-align: left;
    flex: 1;
  }
  .comp-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .ecosystem-grid { grid-template-columns: 1fr 1fr; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: 1 / -1; height: 200px; }

  .camp-exp-grid { grid-template-columns: 1fr 1fr; }

  .rhythm-grid { grid-template-columns: repeat(4, 1fr); }

  .timeline::before { display: none; }
  .timeline-item { grid-template-columns: 1fr; gap: 16px; }
  .timeline-content-right { visibility: visible !important; }
  .timeline-content-left { visibility: visible !important; }
  .timeline-item:nth-child(even) .timeline-content-left,
  .timeline-item:nth-child(even) .timeline-content-right { order: unset; }
  .timeline-dot { justify-self: start; }

  .packages-grid { grid-template-columns: 1fr; }

  .form-card { padding: 24px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .package-options { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .promises-grid { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .comp-grid { grid-template-columns: 1fr; }
  .rhythm-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }

  .tile { width: 28px; height: 28px; font-size: 0.9rem; border-radius: 7px; }
}

/* ============================================
   UX IMPROVEMENTS
   ============================================ */

/* Smoother focus states for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Improve hero stat cards on mobile */
.hero-stat {
  background: white;
  border-radius: var(--radius);
  padding: 12px 20px;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 2px;
}

.hero-stat span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Mobile nav improvements */
.mobile-nav {
  background: var(--navy);
}

.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 1.3rem;
  padding: 10px 20px;
  width: 100%;
  text-align: center;
  border-radius: var(--radius);
}

.mobile-nav a:hover, .mobile-nav a.active {
  color: white;
  background: rgba(255,255,255,0.1);
}

.mobile-nav-close {
  color: rgba(255,255,255,0.7);
}

.mobile-nav-close:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}

/* Section label centered block utility */
.section-header-center {
  text-align: center;
  margin-bottom: 0;
}

/* Improve promise/pillar icons */
.promise-icon {
  font-size: 2rem;
}

/* Better link underline on hover for content links */
.contact-method a:hover {
  text-decoration: underline;
}

/* Scroll to top on mobile — ensure hero btn is tappable */
@media (max-width: 768px) {
  .btn { min-height: 48px; }
  .nav-cta { display: none; }
  .fp-dots { display: none; }
  .wa-widget { bottom: 16px; right: 16px; }
  .wa-bubble { width: calc(100vw - 32px); }
  .hero { padding-top: 172px; min-height: 100svh; }
  .hero-stats { gap: 8px; }
  .hero-stat { padding: 10px 14px; }
  .hero-stat strong { font-size: 1.3rem; }
  .social-channels-grid { grid-template-columns: 1fr; }
  .section-sub { margin-bottom: 32px; }
  .journey-card h3 { font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .navbar-inner { height: 110px; }
  img[alt="AMALY"] { height: 96px !important; }
  .journey-step { gap: 12px; }
}
