


:root {
  --primary: #0f1729;
  --primary-mid: #1a2847;
  --primary-light: #1e3060;
  --accent: #3d7fff;
  --accent-soft: #6fa3ff;
  --accent-dark: #2d6fe8;
  --gold: #e8c96a;
  --gold-soft: #f0d98a;
  --success: #4caf82;
  --warning: #f0a04b;

  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-bg-strong: rgba(255, 255, 255, 0.10);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-border-strong: rgba(255, 255, 255, 0.22);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.1);
  --glass-shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(61, 127, 255, 0.15), inset 0 1px 0 rgba(255,255,255,0.15);

  --text-primary: #f0f4ff;
  --text-secondary: rgba(240, 244, 255, 0.72);
  --text-muted: rgba(240, 244, 255, 0.48);
  --text-link: #6fa3ff;

  --nav-h: 72px;
  --section-pad: clamp(4rem, 8vw, 7rem);
  --container-max: 1280px;
  --gap-sm: 1rem;
  --gap-md: 1.5rem;
  --gap-lg: 2.5rem;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 100px;
}


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Work Sans', sans-serif;
  background: var(--primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--text-link);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--accent-soft);
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex !important;
  }

  .mobile-menu {
    display: block !important;
  }
}


.hero-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1020 0%, #112244 40%, #0f2860 70%, #1a0a3a 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(61, 127, 255, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(232, 201, 106, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(61, 127, 255, 0.08) 0%, transparent 40%);
}

.hero-img-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.2s 0.9s ease;
}

.hero-img-layer.revealed {
  opacity: 0.18;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s 0.9s ease, transform 0.7s 0.9s ease;
  padding-top: var(--nav-h);
}

.hero-content.revealed {
  opacity: 1;
  transform: translateY(0);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(61, 127, 255, 0.15);
  border: 1px solid rgba(61, 127, 255, 0.3);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent-soft);
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-badge i {
  font-size: 0.75rem;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.hero-typed-wrapper {
  display: inline-block;
  color: var(--gold);
  min-height: 1.2em;
}

.hero-typed-wrapper .typed-cursor {
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  animation: bounce-hint 2s ease-in-out infinite 2s;
}

@keyframes bounce-hint {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}


.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(61, 127, 255, 0.35);
}

.primary-action:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61, 127, 255, 0.5);
  color: #fff;
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, transform 0.2s ease;
}

.secondary-action:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
  color: var(--text-primary);
}

.ghost-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border-strong);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, border-color 0.25s;
}

.ghost-action:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: var(--text-primary);
}

.text-link {
  color: var(--accent-soft);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

.text-link:hover {
  gap: 0.7rem;
  color: var(--text-primary);
}

.submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
}


.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.glass-card:hover {
  box-shadow: var(--glass-shadow-hover);
  background: var(--glass-bg-strong);
}


.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.content-block {
  padding: var(--section-pad) 0;
}


.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 720px;
}

.section-subtext {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 3rem;
}

.narrow-text {
  max-width: 680px;
  margin-bottom: 1rem;
}

.highlight-text {
  color: var(--gold);
  font-weight: 600;
}


.section-intro .section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-question-block {
  max-width: 560px;
}

.intro-question-block p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

.intro-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(61, 127, 255, 0.1);
  border: 1px solid var(--glass-border);
}


.bento-section {
  background: linear-gradient(180deg, transparent 0%, rgba(26, 40, 71, 0.4) 50%, transparent 100%);
}

.bento-header {
  margin-bottom: 2.5rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.bento-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.bento-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.bento-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.bento-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(61, 127, 255, 0.15);
  border: 1px solid rgba(61, 127, 255, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--accent-soft);
}

.bento-2x2 {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-2x1 {
  grid-column: span 2;
}

.bento-1x1 {
  grid-column: span 1;
}

.bento-card-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: var(--radius-md) 0 var(--radius-lg) 0;
  opacity: 0.3;
}

.accent-card {
  background: rgba(61, 127, 255, 0.1);
  border-color: rgba(61, 127, 255, 0.25);
}

.highlight-card {
  background: linear-gradient(135deg, rgba(232, 201, 106, 0.08), rgba(61, 127, 255, 0.08));
  border-color: rgba(232, 201, 106, 0.2);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  transition: gap 0.2s ease;
}

.card-link:hover {
  gap: 0.7rem;
  color: var(--gold-soft);
}


.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.benefit-card {
  padding: 2rem 1.5rem;
  text-align: center;
}

.benefit-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(61, 127, 255, 0.2), rgba(61, 127, 255, 0.08));
  border: 1px solid rgba(61, 127, 255, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.3rem;
  color: var(--accent-soft);
}

.benefit-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}


.workflow-section {
  background: linear-gradient(180deg, transparent 0%, rgba(26, 40, 71, 0.5) 50%, transparent 100%);
}

.workflow-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  margin: 3rem auto 0;
}

.workflow-step {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  align-items: flex-start;
}

.workflow-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  min-width: 48px;
}

.workflow-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.workflow-body p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.workflow-arrow {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
  color: var(--accent);
  opacity: 0.4;
  font-size: 1rem;
}


.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  margin: 2.5rem 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
}

.comparison-table thead th {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: 1.25rem 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
}

.comparison-table thead th.table-feature-col {
  text-align: left;
}

.comparison-table tbody td {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody td.feature-label {
  text-align: left;
  font-weight: 500;
  color: var(--text-primary);
}

.comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.recommended-col {
  background: rgba(61, 127, 255, 0.06);
  border-left: 1px solid rgba(61, 127, 255, 0.15);
  border-right: 1px solid rgba(61, 127, 255, 0.15);
}

.rec-badge {
  display: block;
  font-size: 0.7rem;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-pill);
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.check-icon {
  color: var(--success);
  font-size: 1rem;
}

.minus-icon {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.comparison-cta {
  text-align: center;
  margin-top: 2rem;
}


.featured-image-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.5rem;
  align-items: start;
}

.featured-img-main {
  position: relative;
}

.featured-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
}

.featured-img-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  padding: 1.25rem 1.5rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
}

.featured-img-caption i {
  color: var(--accent-soft);
  margin-bottom: 0.5rem;
  display: block;
  font-size: 1.2rem;
}

.featured-img-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.featured-img-sm {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
}

.side-text-block {
  padding: 1.75rem;
}

.side-text-block h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.side-text-block p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
}


.cta-glass-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem;
  align-items: center;
}

.cta-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
}


.inner-hero {
  position: relative;
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  overflow: hidden;
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1020 0%, #112244 50%, #0f2860 100%);
  z-index: 0;
}

.inner-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(61, 127, 255, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(232, 201, 106, 0.08) 0%, transparent 45%);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  max-width: 760px;
}

.inner-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.inner-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}


.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.philosophy-text h2 {
  margin-bottom: 1.5rem;
}

.philosophy-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.philosophy-pillars {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pillar-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(61, 127, 255, 0.12);
  border: 1px solid rgba(61, 127, 255, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-soft);
  font-size: 0.95rem;
}

.pillar-text strong {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.93rem;
  margin-bottom: 0.25rem;
}

.pillar-text span {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.manifesto-block {
  padding: 3rem;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.manifesto-block h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.manifesto-block p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

.approach-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.approach-card {
  padding: 2rem;
}

.approach-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.approach-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.65rem;
}

.approach-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.who-for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.who-for-card {
  padding: 2rem;
}

.who-for-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.who-for-header i {
  font-size: 1.3rem;
}

.yes-card .who-for-header i {
  color: var(--success);
}

.no-card .who-for-header i {
  color: var(--warning);
}

.who-for-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.who-for-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.who-for-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.55;
}

.who-for-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent-soft);
  font-size: 1.2rem;
  line-height: 1.3;
}


.programs-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.programs-intro-grid h2 {
  margin-bottom: 1.25rem;
}

.programs-intro-grid p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.programs-intro-visual {
  padding: 2rem;
}

.level-indicator {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.level-bar {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.level-bar span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.bar-fill {
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
}

.level-1 .bar-fill { width: 33%; }
.level-2 .bar-fill { width: 66%; }
.level-3 .bar-fill { width: 100%; }

.level-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

.program-item {
  padding: 2.5rem;
  margin-bottom: 1.5rem;
}

.program-item:last-child {
  margin-bottom: 0;
}

.featured-program {
  border-color: rgba(61, 127, 255, 0.3);
  background: rgba(61, 127, 255, 0.05);
}

.program-header {
  margin-bottom: 2rem;
}

.program-level-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.85rem;
  margin-bottom: 0.75rem;
}

.level-badge-1 {
  background: rgba(76, 175, 130, 0.15);
  color: var(--success);
  border: 1px solid rgba(76, 175, 130, 0.25);
}

.level-badge-2 {
  background: rgba(61, 127, 255, 0.15);
  color: var(--accent-soft);
  border: 1px solid rgba(61, 127, 255, 0.25);
}

.level-badge-3 {
  background: rgba(232, 201, 106, 0.12);
  color: var(--gold);
  border: 1px solid rgba(232, 201, 106, 0.25);
}

.program-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.program-tagline {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.program-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}

.program-modules h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.module-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.module-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.module-item i {
  color: var(--accent-soft);
  font-size: 0.6rem;
  margin-top: 0.4rem;
  min-width: 12px;
}

.module-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.module-item span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.program-meta {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.meta-item i {
  color: var(--accent-soft);
  width: 16px;
  text-align: center;
}

.programs-image-block {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.programs-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.programs-image-text {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  padding: 2rem;
}

.programs-image-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.programs-image-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}


.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.tool-card {
  padding: 2rem;
}

.tool-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.tool-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(61, 127, 255, 0.12);
  border: 1px solid rgba(61, 127, 255, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-soft);
  font-size: 1.2rem;
}

.tool-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.tool-tag {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.tool-description p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.tool-features, .tool-limits {
  margin-top: 1.25rem;
}

.tool-features h3, .tool-limits h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.tool-features ul, .tool-limits ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tool-features ul li, .tool-limits ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.tool-features ul li i {
  color: var(--success);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

.tool-limits ul li i {
  color: var(--warning);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.tool-ideal {
  margin-top: 1.25rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ideal-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-soft);
  margin-bottom: 0.35rem;
}

.tool-ideal p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.tool-cost {
  margin-top: 1rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.tool-cost i {
  color: var(--gold);
  font-size: 0.8rem;
}

.tools-table th, .tools-table td {
  font-size: 0.85rem;
  padding: 0.9rem 1rem;
}


.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  align-items: start;
}

.contact-form-card {
  padding: 2.5rem;
}

.contact-form-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-form-intro {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.45rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.93rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
}

.form-field select {
  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='rgba(240,244,255,0.5)' 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;
}

.form-field select option {
  background: var(--primary-mid);
  color: var(--text-primary);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: rgba(61, 127, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(61, 127, 255, 0.12);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkbox-field label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  color: var(--text-secondary) !important;
  line-height: 1.55;
}

.checkbox-field input[type="checkbox"] {
  width: auto;
  min-width: 18px;
  height: 18px;
  accent-color: var(--accent);
  margin-top: 1px;
}

.form-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.contact-info-card {
  padding: 2rem;
}

.contact-info-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.contact-detail:last-child {
  margin-bottom: 0;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(61, 127, 255, 0.1);
  border: 1px solid rgba(61, 127, 255, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-soft);
  font-size: 0.85rem;
}

.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-detail span,
.contact-detail a {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.contact-detail a:hover {
  color: var(--text-primary);
}

.consultation-card {
  padding: 2rem;
  margin-top: 0;
}

.consultation-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.consultation-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.consultation-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.consult-btn {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  padding: 0.65rem 1.25rem;
}

.map-wrapper {
  padding: 0;
  overflow: hidden;
}

.map-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.map-header i {
  color: var(--accent-soft);
}

.map-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.map-embed iframe {
  display: block;
}


.legal-container {
  max-width: 860px;
}

.legal-content {
  padding: 3rem;
}

.legal-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 2.5rem;
  margin-bottom: 0.85rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.65rem;
}

.legal-content p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.legal-intro {
  font-size: 1rem !important;
  color: var(--text-primary) !important;
  padding: 1.25rem;
  background: rgba(61, 127, 255, 0.06);
  border: 1px solid rgba(61, 127, 255, 0.15);
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-list li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.legal-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent-soft);
  font-size: 1.2rem;
  line-height: 1.3;
}

.identification-list li strong {
  color: var(--text-primary);
}

.cookie-type-block {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
}

.cookie-table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
}

.cookie-detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.cookie-detail-table th {
  text-align: left;
  padding: 0.6rem 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cookie-detail-table td {
  padding: 0.6rem 0.75rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.cookie-detail-table tr:last-child td {
  border-bottom: none;
}


.site-footer {
  background: linear-gradient(180deg, transparent, rgba(10, 16, 32, 0.8));
  border-top: 1px solid var(--glass-border);
  padding-top: 4rem;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand img {
  height: 32px;
  margin-bottom: 0.5rem;
}

.footer-brand span {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav ul li a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

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

.footer-contact p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.footer-contact i {
  color: var(--accent-soft);
  margin-top: 2px;
  font-size: 0.8rem;
  min-width: 14px;
}

.footer-contact a {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}


#cookieConsent {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9999;
  transition: transform 0.45s cubic-bezier(.34,1.56,.64,1);
}

#cookieConsent.consent-visible {
  transform: translateX(-50%) translateY(0);
}

.consent-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(26, 40, 71, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  padding: 0.7rem 0.7rem 0.7rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0,0,0,0.3);
  white-space: nowrap;
}

.consent-pill-text {
  font-size: 0.87rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.consent-pill-text a {
  color: var(--accent-soft);
  font-weight: 600;
}

.consent-pill-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.consent-pill-actions button {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  padding: 0.5rem 1rem;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.btn-accept-all {
  background: var(--accent);
  color: white;
}

.btn-accept-all:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-manage {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.12) !important;
}

.btn-manage:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-reject {
  background: transparent;
  color: var(--text-muted);
  text-decoration: underline;
  font-size: 0.78rem !important;
}

.consent-modal {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(480px, calc(100vw - 2rem));
  background: rgba(26, 40, 71, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  z-index: 10000;
  animation: modal-in 0.3s ease;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.consent-modal h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.consent-modal p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.consent-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.consent-category:last-of-type {
  border-bottom: none;
  margin-bottom: 1.5rem;
}

.consent-cat-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.consent-cat-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.toggle-switch {
  position: relative;
  width: 42px;
  height: 24px;
  min-width: 42px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.25s ease;
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--accent);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(18px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.consent-modal-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.consent-modal-actions button {
  flex: 1;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.65rem 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-save-prefs {
  background: var(--accent);
  color: white;
}

.btn-save-prefs:hover {
  background: var(--accent-dark);
}

.btn-accept-modal {
  background: rgba(255,255,255,0.1);
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.12) !important;
}

.btn-accept-modal:hover {
  background: rgba(255,255,255,0.16);
}

.cookie-manage-link {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(26,40,71,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.85rem;
  cursor: pointer;
  z-index: 999;
  transition: color 0.2s;
  font-family: 'Work Sans', sans-serif;
  display: none;
}

.cookie-manage-link:hover {
  color: var(--text-secondary);
}


@media (max-width: 1100px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .section-intro .section-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .intro-img {
    height: 280px;
  }

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

  .bento-2x2, .bento-2x1, .bento-1x1 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bento-card-img {
    display: none;
  }

  .featured-image-grid {
    grid-template-columns: 1fr;
  }

  .featured-img {
    height: 300px;
  }

  .featured-img-caption {
    position: static;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  }

  .cta-glass-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .cta-img {
    height: 200px;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .approach-cards {
    grid-template-columns: 1fr;
  }

  .who-for-grid {
    grid-template-columns: 1fr;
  }

  .programs-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .program-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .program-meta {
    min-width: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .workflow-flow {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --section-pad: clamp(3rem, 6vw, 4.5rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .primary-action, .secondary-action, .ghost-action {
    min-height: 44px;
  }

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

  .comparison-table-wrap {
    border-radius: var(--radius-md);
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 0.75rem;
    font-size: 0.82rem;
  }

  .legal-content {
    padding: 1.75rem;
  }

  .contact-form-card {
    padding: 1.75rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .consent-pill {
    flex-wrap: wrap;
    border-radius: var(--radius-xl);
    padding: 1rem 1.25rem;
    width: calc(100vw - 2rem);
    white-space: normal;
  }

  .programs-image-text {
    position: static;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  }

  .programs-img {
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  }
}


[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}