:root {
  --c-bg: #f4f5f7;
  --c-dark: #0d1b2a;
  --c-navy: #1a2e44;
  --c-primary: #1e3a5f;
  --c-accent: #2e7de9;
  --c-accent-light: #5a9cf5;
  --c-grid: rgba(30,58,95,0.07);
  --c-text: #1a2e44;
  --c-text-muted: #5a6a7a;
  --c-border: rgba(30,58,95,0.12);
  --c-white: #ffffff;
  --c-surface: #eef1f5;
  --shadow-sm: 0 1px 3px rgba(13,27,42,0.06), 0 1px 2px rgba(13,27,42,0.04);
  --shadow-md: 0 4px 12px rgba(13,27,42,0.08), 0 2px 6px rgba(13,27,42,0.05);
  --shadow-lg: 0 12px 32px rgba(13,27,42,0.12), 0 4px 12px rgba(13,27,42,0.07);
  --shadow-xl: 0 20px 48px rgba(13,27,42,0.16), 0 8px 20px rgba(13,27,42,0.09);
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }


.PageHero-gridPattern,
.InnerHero-gridPattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,125,233,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,125,233,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}


.Container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


.MobileMenu {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  background: var(--c-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
}
.MobileMenu.is-open {
  transform: translateY(0);
  pointer-events: all;
}
.MobileMenu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 2rem;
}
.MobileMenu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
}
.MobileMenu-link {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  padding: 0.75rem 2rem;
  letter-spacing: -0.01em;
  transition: color 0.25s ease, transform 0.25s ease;
  transform: translateY(-30px);
  opacity: 0;
  display: block;
  text-align: center;
}
.MobileMenu.is-open .MobileMenu-link {
  transform: translateY(0);
  opacity: 1;
}
.MobileMenu.is-open .MobileMenu-link:nth-child(1) { transition-delay: 0.1s; }
.MobileMenu.is-open .MobileMenu-link:nth-child(2) { transition-delay: 0.15s; }
.MobileMenu.is-open .MobileMenu-link:nth-child(3) { transition-delay: 0.2s; }
.MobileMenu.is-open .MobileMenu-link:nth-child(4) { transition-delay: 0.25s; }
.MobileMenu.is-open .MobileMenu-link:nth-child(5) { transition-delay: 0.3s; }
.MobileMenu-link:hover { color: var(--c-accent); transform: translateY(-2px); }
.MobileMenu-close {
  margin-top: 2.5rem;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  padding: 0.75rem 2rem;
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  font-family: 'Instrument Sans', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.25s ease, border-color 0.25s ease;
  min-height: 44px;
}
.MobileMenu-close:hover { color: var(--c-white); border-color: rgba(255,255,255,0.5); }


.SiteHeader-hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.SiteHeader-hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.SiteHeader-hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.PageHero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--c-dark);
  padding: 8rem 1.5rem 6rem;
}
.PageHero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.PageHero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(46,125,233,0.15);
  border: 1px solid rgba(46,125,233,0.3);
  color: var(--c-accent-light);
  padding: 0.375rem 1rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.PageHero-badgeDot {
  width: 6px;
  height: 6px;
  background: var(--c-accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.PageHero-heading {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.PageHero-accent {
  color: var(--c-accent);
  position: relative;
}
.PageHero-sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}
.PageHero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.PageHero-meta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.PageHero-metaItem {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}
.PageHero-metaItem i { color: var(--c-accent); }
.PageHero-scrollIndicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}
.PageHero-scrollIndicator span {
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}


.Btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6875rem 1.5rem;
  border-radius: var(--r-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  min-height: 44px;
  font-family: 'Instrument Sans', sans-serif;
  letter-spacing: 0.01em;
}
.Btn--primary {
  background: var(--c-accent);
  color: var(--c-white);
  box-shadow: 0 2px 8px rgba(46,125,233,0.35);
}
.Btn--primary:hover {
  background: var(--c-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,125,233,0.45);
}
.Btn--ghost {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
}
.Btn--ghost:hover {
  background: rgba(255,255,255,0.14);
  color: var(--c-white);
}
.Btn--outline {
  background: transparent;
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.3);
}
.Btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}
.Btn--lg { padding: 0.875rem 2rem; font-size: 1rem; }
.Btn--full { width: 100%; justify-content: center; }


.SectionLabel {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.75rem;
  display: block;
}
.SectionHeading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--c-dark);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.SectionHeading--centered { text-align: center; }
.SectionBody {
  font-size: 1.0625rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.SectionBody--centered { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.SectionHeader { margin-bottom: 3.5rem; }
.TextLink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-accent);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
  margin-top: 0.5rem;
}
.TextLink:hover { gap: 0.75rem; color: var(--c-primary); }


.ContentCard {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ContentCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.ContentCard-icon {
  width: 48px;
  height: 48px;
  background: rgba(46,125,233,0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  transition: background 0.25s ease;
}
.ContentCard:hover .ContentCard-icon { background: rgba(46,125,233,0.18); }
.ContentCard-icon--lg { width: 60px; height: 60px; font-size: 1.5rem; }
.ContentCard-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.ContentCard-title--lg { font-size: 1.5rem; margin-bottom: 1rem; }
.ContentCard-body {
  font-size: 0.9375rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.ContentCard-body:last-child { margin-bottom: 0; }
.ContentCard--large { grid-column: span 2; }


.IntroSection {
  padding: 6rem 0;
  background: var(--c-white);
  position: relative;
}
.IntroSection::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--c-border);
}
.IntroSection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.IntroSection-imageWrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.IntroSection-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.IntroSection-imageWrap:hover .IntroSection-img { transform: scale(1.03); }
.IntroSection-imageTag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(13,27,42,0.85);
  backdrop-filter: blur(8px);
  color: var(--c-white);
  padding: 0.5rem 1rem;
  border-radius: var(--r-md);
  font-size: 0.8125rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.IntroSection-imageTag i { color: var(--c-accent); }


.InfoBlocksSection {
  padding: 6rem 0;
  background: var(--c-bg);
  position: relative;
}
.InfoBlocks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}


.CourseWeeksSection {
  padding: 6rem 0;
  background: var(--c-dark);
  position: relative;
  overflow: hidden;
}
.CourseWeeksSection::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,125,233,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,125,233,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.CourseWeeksSection .SectionHeader { position: relative; z-index: 1; }
.CourseWeeksSection .SectionHeading { color: var(--c-white); }
.CourseWeeks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.CourseWeek-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 2rem;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.CourseWeek-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.CourseWeek-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(46,125,233,0.3);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
  font-variant-numeric: tabular-nums;
}
.CourseWeek-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 0.75rem;
}
.CourseWeek-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.CourseWeek-tag {
  display: inline-block;
  background: rgba(46,125,233,0.15);
  color: var(--c-accent-light);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(46,125,233,0.25);
}


.VisualSection {
  padding: 4rem 0;
  background: var(--c-surface);
}
.VisualSection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 1.25rem;
  align-items: stretch;
}
.VisualSection-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.VisualSection-imgCol--tall .VisualSection-img { height: 100%; min-height: 280px; }
.VisualSection-img:hover { transform: scale(1.02); box-shadow: var(--shadow-xl); }


.FeaturesSection {
  padding: 6rem 0;
  background: var(--c-white);
}
.FeaturesSection-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.FeatureList {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.FeatureItem {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.FeatureItem-icon {
  width: 28px;
  height: 28px;
  background: rgba(46,125,233,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.FeatureItem-text {
  font-size: 0.9375rem;
  color: var(--c-text);
  font-weight: 500;
}
.FeaturesCard {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.FeaturesCard-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.FeaturesCard-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(13,27,42,0.92) 0%, transparent 100%);
  display: flex;
  gap: 2.5rem;
}
.FeaturesCard-statNum {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.FeaturesCard-statLabel {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}


.SliderSection {
  padding: 6rem 0;
  background: var(--c-bg);
}
.TopicsSwiper { padding-bottom: 3.5rem !important; }
.TopicCard { height: 100%; }
.swiper-pagination-bullet { background: var(--c-accent); opacity: 0.3; }
.swiper-pagination-bullet-active { opacity: 1; }
.swiper-button-next,
.swiper-button-prev {
  color: var(--c-accent) !important;
  width: 40px !important;
  height: 40px !important;
  background: var(--c-white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}
.swiper-button-next::after,
.swiper-button-prev::after { font-size: 0.875rem !important; font-weight: 700; }


.CtaSection {
  padding: 6rem 0;
  background: var(--c-primary);
  position: relative;
  overflow: hidden;
}
.CtaSection::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.CtaSection-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.CtaSection-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}
.CtaSection-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 520px;
}
.CtaSection-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}


.SiteFooter {
  background: var(--c-dark);
  padding: 4rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.SiteFooter-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.SiteFooter-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--c-white);
  font-size: 1.125rem;
  font-weight: 700;
}
.SiteFooter-logo img { height: 32px; }
.SiteFooter-tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.45);
  max-width: 400px;
}
.SiteFooter-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
}
.SiteFooter-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.25s ease;
}
.SiteFooter-link:hover { color: var(--c-white); }
.SiteFooter-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
}
.SiteFooter-contact span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.SiteFooter-contact i { color: var(--c-accent); }
.SiteFooter-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  width: 100%;
}
.SiteFooter-legalLink {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.25s ease;
}
.SiteFooter-legalLink:hover { color: rgba(255,255,255,0.7); }
.SiteFooter-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.SiteFooter-info p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}
.SiteFooter-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}


.InnerHero {
  padding: 9rem 0 5rem;
  background: var(--c-dark);
  position: relative;
  overflow: hidden;
}
.InnerHero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.InnerHero-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.InnerHero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}


.NarrativeSection {
  padding: 6rem 0;
  background: var(--c-white);
}
.NarrativeSection-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}
.NarrativeBlock {
  margin-bottom: 3rem;
}
.NarrativeBlock:last-child { margin-bottom: 0; }
.NarrativeBlock-heading {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--c-dark);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--c-border);
}
.NarrativeBlock p {
  font-size: 1rem;
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.NarrativeBlock p:last-child { margin-bottom: 0; }
.AsideCard {
  background: var(--c-surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.AsideCard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.AsideCard:last-child { margin-bottom: 0; }
.AsideCard-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.AsideCard-body { padding: 1.5rem; }
.AsideCard-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 0.75rem;
}
.AsideCard-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.AsideCard-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--c-text-muted);
}
.AsideCard-list i { color: var(--c-accent); font-size: 0.875rem; }
.AsideCard--accent { background: var(--c-primary); border-color: transparent; }
.AsideCard--accent .AsideCard-title { color: var(--c-white); }
.AsideCard--accent p { font-size: 0.9375rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 1rem; }
.AsideCard-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.AsideCard-meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}
.AsideCard-meta i { color: var(--c-accent-light); }


.TimelineSection {
  padding: 6rem 0;
  background: var(--c-bg);
}
.Timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.Timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-accent), rgba(46,125,233,0.1));
}
.Timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}
.Timeline-item:last-child { margin-bottom: 0; }
.Timeline-marker {
  width: 56px;
  height: 56px;
  background: var(--c-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--c-bg), 0 4px 12px rgba(46,125,233,0.4);
}
.Timeline-marker span {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-white);
}
.Timeline-content {
  padding-top: 0.75rem;
  flex: 1;
}
.Timeline-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}
.Timeline-content p {
  font-size: 0.9375rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}


.GallerySection {
  padding: 4rem 0;
  background: var(--c-surface);
}
.GallerySection-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.25rem;
}
.GallerySection-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.GallerySection-img--wide { height: 260px; }
.GallerySection-img:hover { transform: scale(1.02); box-shadow: var(--shadow-xl); }


.ServicesDetailSection { padding: 6rem 0; background: var(--c-white); }
.ServicesDetail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.ServiceDetailCard { display: flex; flex-direction: column; }
.ServiceDetailCard-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.25rem; }
.ServiceDetailCard-badge {
  background: rgba(46,125,233,0.1);
  color: var(--c-accent);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(46,125,233,0.2);
}
.ServiceDetailCard-features { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.ServiceDetailCard-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--c-text-muted);
}
.ServiceDetailCard-feature i { color: var(--c-accent); margin-top: 3px; flex-shrink: 0; font-size: 0.75rem; }


.SpeseTipoSection {
  padding: 6rem 0;
  background: var(--c-dark);
  position: relative;
  overflow: hidden;
}
.SpeseTipoSection::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,125,233,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,125,233,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.SpeseTipoSection .SectionHeader { position: relative; z-index: 1; }
.SpeseTipoSection .SectionHeading { color: var(--c-white); }
.SpeseTipoSection .SectionBody { color: rgba(255,255,255,0.6); }
.SpeseTipo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.SpeseTipo-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  padding: 2rem;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, transform 0.3s ease;
}
.SpeseTipo-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.SpeseTipo-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
}
.SpeseTipo-icon--fixed { background: rgba(46,125,233,0.2); color: var(--c-accent-light); }
.SpeseTipo-icon--var { background: rgba(90,156,245,0.15); color: #7db8ff; }
.SpeseTipo-icon--disc { background: rgba(46,125,233,0.1); color: rgba(90,156,245,0.8); }
.SpeseTipo-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 0.75rem;
}
.SpeseTipo-card p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.SpeseTipo-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.SpeseTipo-examples span {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.5);
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  font-size: 0.75rem;
  border: 1px solid rgba(255,255,255,0.08);
}


.FeedbackSection { padding: 6rem 0; background: var(--c-white); }
.FeedbackGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.FeedbackCard { display: flex; flex-direction: column; }
.FeedbackCard-quote {
  color: var(--c-accent);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}
.FeedbackCard-text {
  font-size: 0.9375rem;
  color: var(--c-text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.FeedbackCard-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--c-border);
}
.FeedbackCard-avatar {
  width: 40px;
  height: 40px;
  background: var(--c-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.FeedbackCard-name { font-size: 0.875rem; font-weight: 700; color: var(--c-dark); }
.FeedbackCard-role { font-size: 0.8125rem; color: var(--c-text-muted); }


.FaqSection { padding: 6rem 0; background: var(--c-bg); }
.Faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.FaqItem {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  border: 1px solid var(--c-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.FaqItem:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.FaqItem-q {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  line-height: 1.4;
}
.FaqItem-q i { color: var(--c-accent); flex-shrink: 0; margin-top: 2px; font-size: 0.9rem; }
.FaqItem-a { font-size: 0.9375rem; color: var(--c-text-muted); line-height: 1.7; }


.ContactSection { padding: 6rem 0; background: var(--c-white); }
.ContactSection-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.FormCard {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
}
.FormCard-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 0.5rem;
}
.FormCard-sub {
  font-size: 0.9375rem;
  color: var(--c-text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.FormGroup { margin-bottom: 1.25rem; }
.FormLabel {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}
.FormInput {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  font-family: 'Instrument Sans', sans-serif;
  color: var(--c-text);
  background: var(--c-white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  min-height: 44px;
}
.FormInput:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(46,125,233,0.12);
}
.FormSelect { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6a7a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.FormTextarea { resize: vertical; min-height: 120px; }
.FormGroup--checkbox .FormCheckLabel {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}
.FormGroup--checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--c-accent);
  cursor: pointer;
}
.FormLink { color: var(--c-accent); text-decoration: underline; }
.FormError {
  font-size: 0.875rem;
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--r-md);
  padding: 0.75rem 1rem;
}
.ContactInfo-card {
  background: var(--c-dark);
  border-radius: var(--r-xl);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.ContactInfo-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ContactInfo-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.ContactInfo-item:last-child { margin-bottom: 0; }
.ContactInfo-icon {
  width: 40px;
  height: 40px;
  background: rgba(46,125,233,0.15);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  flex-shrink: 0;
}
.ContactInfo-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
}
.ContactInfo-value {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.ContactInfo-value a {
  color: var(--c-accent-light);
  text-decoration: none;
  transition: color 0.25s ease;
}
.ContactInfo-value a:hover { color: var(--c-white); }
.ContactMap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }


.OfficeGallerySection { padding: 6rem 0; background: var(--c-bg); }
.OfficeGallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.OfficeGallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.OfficeGallery-img:hover { transform: scale(1.03); box-shadow: var(--shadow-xl); }


.LegalPage { padding-top: 72px; }
.LegalPage-header {
  background: var(--c-dark);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.LegalPage-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,125,233,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,125,233,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.LegalPage-header .Container { position: relative; z-index: 1; }
.LegalPage-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}
.LegalPage-meta {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
}
.LegalLayout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 4rem;
  padding: 4rem 0 6rem;
  align-items: start;
}
.LegalSidebar { position: sticky; top: 96px; }
.LegalSidebar-tocMobile { display: none; }
.LegalSidebar-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-muted);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--c-border);
}
.LegalSidebar-nav { display: flex; flex-direction: column; gap: 0.125rem; }
.LegalSidebar-link {
  display: block;
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  text-decoration: none;
  padding: 0.4375rem 0.75rem;
  border-radius: var(--r-sm);
  transition: color 0.2s ease, background 0.2s ease;
  border-left: 2px solid transparent;
  line-height: 1.4;
}
.LegalSidebar-link:hover { color: var(--c-accent); background: rgba(46,125,233,0.05); }
.LegalSidebar-link.active {
  color: var(--c-accent);
  background: rgba(46,125,233,0.08);
  border-left-color: var(--c-accent);
  font-weight: 600;
}
.LegalContent { max-width: none; }
.LegalSection {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--c-border);
  scroll-margin-top: 100px;
}
.LegalSection:last-child { border-bottom: none; margin-bottom: 0; }
.LegalSection h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--c-border);
}
.LegalSection p {
  font-size: 0.9375rem;
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.LegalSection p:last-child { margin-bottom: 0; }
.LegalSection a { color: var(--c-accent); text-decoration: underline; }
.LegalBox {
  background: var(--c-surface);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--c-border);
  margin: 1rem 0;
}
.LegalBox p { font-size: 0.9375rem; color: var(--c-text); line-height: 1.7; margin: 0; }
.LegalTable { overflow-x: auto; margin: 1rem 0; }
.LegalTable table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.LegalTable th, .LegalTable td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}
.LegalTable th {
  background: var(--c-surface);
  font-weight: 700;
  color: var(--c-dark);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.LegalTable td { color: var(--c-text-muted); }


.CookieConsent {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 9999;
  max-width: 320px;
  background: var(--c-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-xl);
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(12px);
}
.CookieConsent.is-visible { transform: translateX(0); }
.CookieConsent-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}
.CookieConsent-icon {
  width: 32px;
  height: 32px;
  background: rgba(46,125,233,0.2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-size: 0.875rem;
  flex-shrink: 0;
}
.CookieConsent-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-white);
}
.CookieConsent-text {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.CookieConsent-text a { color: var(--c-accent-light); text-decoration: underline; }
.CookieConsent-actions {
  display: flex;
  gap: 0.5rem;
}
.CookieConsent-btn {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border-radius: var(--r-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: 'Instrument Sans', sans-serif;
  transition: all 0.2s ease;
  min-height: 36px;
}
.CookieConsent-btn--accept {
  background: var(--c-accent);
  color: var(--c-white);
}
.CookieConsent-btn--accept:hover { background: var(--c-accent-light); }
.CookieConsent-btn--reject {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1);
}
.CookieConsent-btn--reject:hover { background: rgba(255,255,255,0.12); }
.CookieConsent-btn--settings {
  background: none;
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  flex: none;
  padding: 0.5rem;
  text-decoration: underline;
}
.CookieConsent-btn--settings:hover { color: rgba(255,255,255,0.8); }


.CookieModal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(13,27,42,0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.CookieModal.is-open { opacity: 1; pointer-events: all; }
.CookieModal-inner {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-xl);
}
.CookieModal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 0.5rem;
}
.CookieModal-sub {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.CookieModal-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--c-border);
}
.CookieModal-category:last-of-type { border-bottom: none; }
.CookieModal-catName {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 0.25rem;
}
.CookieModal-catDesc {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}
.CookieModal-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.CookieModal-toggle input { opacity: 0; width: 0; height: 0; }
.CookieModal-toggle-slider {
  position: absolute;
  inset: 0;
  background: #d1d5db;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.25s ease;
}
.CookieModal-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.CookieModal-
toggle input:checked + .CookieModal-toggle-slider { background: var(--c-accent); }
.CookieModal-toggle input:checked + .CookieModal-toggle-slider::before { transform: translateX(20px); }
.CookieModal-toggle input:disabled + .CookieModal-toggle-slider { opacity: 0.5; cursor: not-allowed; }
.CookieModal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.CookieModal-btn {
  flex: 1;
  padding: 0.6875rem 1.25rem;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: 'Instrument Sans', sans-serif;
  transition: all 0.25s ease;
  min-height: 44px;
}
.CookieModal-btn--save {
  background: var(--c-accent);
  color: var(--c-white);
}
.CookieModal-btn--save:hover { background: var(--c-accent-light); }
.CookieModal-btn--cancel {
  background: var(--c-surface);
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
}
.CookieModal-btn--cancel:hover { background: var(--c-border); }


@media (max-width: 900px) {
  .SiteHeader-navLeft,
  .SiteHeader-navRight { display: none; }
  .SiteHeader-hamburger { display: flex; }
  .SiteHeader-logo { position: absolute; left: 50%; transform: translateX(-50%); }
}


@media (max-width: 1024px) {
  .InfoBlocks-grid { grid-template-columns: repeat(2, 1fr); }
  .CourseWeeks-grid { grid-template-columns: repeat(2, 1fr); }
  .FeaturesSection-inner { grid-template-columns: 1fr; gap: 3rem; }
  .FeaturesCard-img { height: 360px; }
  .ServicesDetail-grid { grid-template-columns: 1fr; }
  .ContentCard--large { grid-column: span 1; }
  .SpeseTipo-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .NarrativeSection-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ContactSection-grid { grid-template-columns: 1fr; gap: 3rem; }
  .LegalLayout { grid-template-columns: 200px 1fr; gap: 2.5rem; }
  .FeedbackGrid { grid-template-columns: repeat(2, 1fr); }
  .IntroSection-grid { grid-template-columns: 1fr; gap: 3rem; }
  .VisualSection-grid { grid-template-columns: 1fr 1fr; }
  .VisualSection-imgCol--tall { display: none; }
  .GallerySection-grid { grid-template-columns: 1fr 1fr; }
  .GallerySection-img--wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .InfoBlocks-grid { grid-template-columns: 1fr; }
  .CourseWeeks-grid { grid-template-columns: 1fr; }
  .FeedbackGrid { grid-template-columns: 1fr; }
  .Faq-grid { grid-template-columns: 1fr; }
  .OfficeGallery-grid { grid-template-columns: 1fr; }
  .VisualSection-grid { grid-template-columns: 1fr; }
  .GallerySection-grid { grid-template-columns: 1fr; }
  .GallerySection-img--wide { grid-column: span 1; }
  .CtaSection-inner { flex-direction: column; text-align: center; }
  .CtaSection-actions { justify-content: center; }
  .LegalLayout { grid-template-columns: 1fr; gap: 0; }
  .LegalSidebar { position: static; }
  .LegalSidebar-tocMobile { display: block; margin-bottom: 0; }
  .LegalSidebar-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--c-text);
    cursor: pointer;
    font-family: 'Instrument Sans', sans-serif;
    margin-bottom: 0.5rem;
    min-height: 44px;
  }
  .LegalSidebar-toggle i:last-child { transition: transform 0.3s ease; }
  .LegalSidebar-toggle[aria-expanded="true"] i:last-child { transform: rotate(180deg); }
  .LegalSidebar-nav {
    display: none;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    padding: 0.5rem;
    margin-bottom: 2rem;
  }
  .LegalSidebar-nav.is-open { display: flex; }
  .LegalSidebar-label { display: none; }
  .LegalLayout { padding-top: 2rem; }
  .PageHero-actions { flex-direction: column; align-items: center; }
  .PageHero-meta { flex-direction: column; gap: 0.75rem; }
  .CtaSection { padding: 4rem 0; }
  .IntroSection { padding: 4rem 0; }
  .InfoBlocksSection { padding: 4rem 0; }
  .CourseWeeksSection { padding: 4rem 0; }
  .FeaturesSection { padding: 4rem 0; }
  .SliderSection { padding: 4rem 0; }
  .NarrativeSection { padding: 4rem 0; }
  .TimelineSection { padding: 4rem 0; }
  .FeedbackSection { padding: 4rem 0; }
  .FaqSection { padding: 4rem 0; }
  .ContactSection { padding: 4rem 0; }
  .OfficeGallerySection { padding: 4rem 0; }
  .ServicesDetailSection { padding: 4rem 0; }
  .SpeseTipoSection { padding: 4rem 0; }
  .FormCard { padding: 1.75rem; }
  .CookieConsent { max-width: calc(100vw - 3rem); }
  .Timeline::before { left: 20px; }
  .Timeline-marker { width: 40px; height: 40px; }
  .Timeline-marker span { font-size: 0.9375rem; }
}

@media (max-width: 480px) {
  .Container { padding: 0 1rem; }
  .SiteFooter-links { flex-direction: column; gap: 0.5rem; }
  .SiteFooter-contact { flex-direction: column; gap: 0.5rem; }
  .CtaSection-actions { flex-direction: column; width: 100%; }
  .CtaSection-actions .Btn { width: 100%; justify-content: center; }
  .PageHero-actions .Btn { width: 100%; justify-content: center; }
  .CookieConsent { left: 1rem; right: 1rem; max-width: none; }
  .FeaturesCard-overlay { flex-direction: column; gap: 1rem; }
}