/* =============================================
   LEARN PAGE — learn.css
   ============================================= */

/* Active nav link (shared with services) */
.nav-active {
  position: relative;
}
.nav-active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(1) !important;
  transform-origin: left !important;
}

/* ─── LEARN HERO ─── */
.learn-hero {
  min-height: 80vh;
  padding: 200px 60px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.learn-hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.learn-float {
  position: absolute;
  opacity: 0.3;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

.lf-1 { top: 10%; left: 4%;  width: clamp(80px, 11vw, 170px); animation: learnFloat1 9s ease-in-out infinite; }
.lf-2 { bottom: 12%; left: 15%; width: clamp(65px, 9vw, 140px); animation: learnFloat2 11s ease-in-out infinite; }
.lf-3 { top: 18%; right: 6%; width: clamp(85px, 13vw, 190px); animation: learnFloat3 8s ease-in-out infinite; }
.lf-4 { bottom: 8%; right: 12%; width: clamp(55px, 8vw, 130px); animation: learnFloat1 10s ease-in-out infinite; }

@keyframes learnFloat1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(16px, -20px) rotate(5deg); }
}
@keyframes learnFloat2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(-12px, 18px) rotate(-4deg); }
}
@keyframes learnFloat3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(10px, 14px) rotate(3deg); }
}

.learn-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.learn-hero-label {
  display: inline-block;
  background: var(--accent-red);
  color: white;
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 35px;
}

.learn-hero h1 {
  font-size: clamp(52px, 10vw, 120px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -3px;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 30px;
}

.learn-hero-desc {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.65;
  color: var(--text-main);
  opacity: 0.75;
  max-width: 580px;
  margin: 0 auto;
}

/* ─── TRANSITION FROM → TO ─── */
.learn-transition {
  padding: 100px 60px;
  background: var(--accent-red);
  color: white;
  border-radius: 40px;
  margin: 0 20px 80px;
}

.learn-transition-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.learn-transition-col h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
  opacity: 0.7;
}

.learn-transition-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.learn-transition-col ul li {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
  padding-left: 22px;
}

.learn-transition-col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}

.learn-transition-to ul li::before {
  background: white;
}

.learn-transition-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

/* ─── PHILOSOPHY ─── */
.learn-philosophy {
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.learn-philosophy-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.learn-phil-shape {
  position: absolute;
  opacity: 0.35;
}

.lps-1 { top: -5%; left: -3%; width: 160px; animation: learnFloat2 10s ease-in-out infinite; }
.lps-2 { bottom: -5%; right: 5%; width: 200px; animation: learnFloat1 12s ease-in-out infinite; }
.lps-3 { top: 30%; right: -4%; width: 90px; animation: learnFloat3 9s ease-in-out infinite; }
.lps-4 { bottom: 10%; left: 8%; width: 120px; animation: learnFloat1 8s ease-in-out infinite; }

.learn-philosophy-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.learn-philosophy-content h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 40px;
}

.learn-philosophy-content h2 em {
  font-style: italic;
  color: var(--accent-red);
}

.learn-philosophy-content blockquote {
  font-size: clamp(18px, 2.2vw, 24px);
  font-style: italic;
  line-height: 1.6;
  color: var(--accent-red);
  font-weight: 500;
  margin: 0 0 35px;
  padding: 30px 40px;
  border-left: 4px solid var(--accent-red);
  text-align: left;
  background: rgba(177, 31, 35, 0.04);
  border-radius: 0 16px 16px 0;
}

.learn-philosophy-content p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-main);
  opacity: 0.75;
}

/* ─── SECTION LABEL (shared) ─── */
.learn-section-label {
  display: inline-block;
  background: var(--accent-red);
  color: white;
  padding: 8px 22px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 20px;
}

/* ─── LEARNING FORMATS ─── */
.learn-formats {
  padding: 120px 60px;
  background: #111;
  color: white;
}

.learn-formats-header {
  text-align: center;
  margin-bottom: 80px;
}

.learn-formats-header .learn-section-label {
  background: rgba(177, 31, 35, 0.2);
}

.learn-formats-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
}

.learn-formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.learn-format-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px 35px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.learn-format-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.learn-format-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(177, 31, 35, 0.3);
  transform: translateY(-6px);
}

.learn-format-card:hover::before {
  transform: scaleX(1);
}

.learn-format-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--accent-red);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.learn-format-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
}

.learn-format-card p {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.65;
}

.learn-format-badge {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 14px;
  background: rgba(177, 31, 35, 0.15);
  color: var(--accent-red);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
}

/* ─── WHO THIS IS FOR ─── */
.learn-audience {
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.learn-audience-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.learn-aud-shape {
  position: absolute;
  opacity: 0.35;
}

.las-1 { top: 5%; right: -3%; width: 150px; animation: learnFloat1 10s ease-in-out infinite; }
.las-2 { bottom: -5%; left: 5%; width: 130px; animation: learnFloat2 9s ease-in-out infinite; }
.las-3 { top: 40%; left: -3%; width: 100px; animation: learnFloat3 11s ease-in-out infinite; }

.learn-audience-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.learn-audience-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-main);
}

.learn-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.learn-audience-card {
  background: #fff;
  border-radius: 24px;
  padding: 50px 40px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.learn-audience-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.learn-audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: transparent;
}

.learn-audience-card:hover::after {
  transform: scaleX(1);
}

.learn-audience-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 25px;
}

.learn-aud-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.learn-audience-card h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 8px;
}

.learn-audience-subtitle {
  font-size: 15px;
  font-style: italic;
  color: var(--accent-red);
  font-weight: 500;
  margin-bottom: 25px;
}

.learn-audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.learn-audience-list li {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
  opacity: 0.75;
  padding-left: 20px;
  position: relative;
}

.learn-audience-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
}

/* ─── LEARN CTA ─── */
.learn-cta {
  padding: 150px 60px;
  text-align: center;
  background: var(--accent-red);
  color: white;
  border-radius: 40px;
  margin: 0 20px 0;
}

.learn-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.learn-cta .learn-section-label {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}

.learn-cta-content h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
}

.learn-cta-content p {
  font-size: 19px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 45px;
}

.learn-cta-btn {
  display: inline-block;
  background: white;
  color: var(--accent-red);
  padding: 20px 60px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.learn-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .learn-formats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .learn-hero {
    padding: 140px 20px 60px;
    min-height: 60vh;
  }
  .learn-hero h1 {
    font-size: clamp(40px, 12vw, 72px);
  }
  .learn-transition {
    padding: 60px 30px;
    margin: 0 10px 60px;
    border-radius: 24px;
  }
  .learn-transition-inner {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }
  .learn-transition-arrow {
    transform: rotate(90deg);
    padding: 0;
  }
  .learn-transition-col ul li {
    padding-left: 0;
    font-size: 18px;
  }
  .learn-transition-col ul li::before {
    display: none;
  }
  .learn-philosophy {
    padding: 80px 20px;
  }
  .learn-philosophy-content blockquote {
    padding: 20px 25px;
    font-size: 17px;
  }
  .learn-formats {
    padding: 80px 20px;
  }
  .learn-formats-grid {
    grid-template-columns: 1fr;
  }
  .learn-audience {
    padding: 80px 20px;
  }
  .learn-audience-grid {
    grid-template-columns: 1fr;
  }
  .learn-audience-card {
    padding: 35px 30px;
  }
  .learn-cta {
    padding: 80px 20px;
    margin: 0 10px 0;
    border-radius: 24px;
  }
}
