:root {
  --navy: #0F1F3D;
  --navy-mid: #1A2F55;
  --navy-light: #243B6B;
  --amber: #F5A623;
  --amber-dark: #D4891A;
  --amber-light: #FDB84A;
  --bg-page: #F5F4F0;
  --bg-tint: #EDECEA;
  --bg-card: #FAFAF8;
  --text-primary: #1A1A2E;
  --text-secondary: #4A4A6A;
  --text-muted: #7A7A9A;
  --text-light: #F0EEE8;
  --border: #E0DED8;
  --shadow-sm: 0 2px 8px rgba(15,31,61,0.08), 0 1px 3px rgba(15,31,61,0.05);
  --shadow-md: 0 4px 20px rgba(15,31,61,0.12), 0 2px 8px rgba(15,31,61,0.07);
  --shadow-lg: 0 8px 40px rgba(15,31,61,0.16), 0 4px 16px rgba(15,31,61,0.10);
  --shadow-xl: 0 16px 60px rgba(15,31,61,0.20), 0 6px 24px rgba(15,31,61,0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --gap: 16px;
  --section-pad: clamp(60px, 8vw, 120px);
  --container-max: 1240px;
}

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

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

body {
  font-family: 'Lexend', sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s ease, opacity 0.25s ease; }
ul { list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}


.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(15,31,61,0.3), 0 1px 4px rgba(15,31,61,0.2);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img { width: 36px; height: 36px; }

.logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FAFAF8;
  letter-spacing: -0.02em;
}

.logo-text span { color: var(--amber); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: rgba(240,238,232,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: #FAFAF8;
  background: rgba(245,166,35,0.15);
}

.nav-link.active { color: var(--amber); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #FAFAF8;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}


.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,31,61,0.6);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active { opacity: 1; }

.mobile-panel {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--navy);
  z-index: 1200;
  padding: 80px 28px 40px;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 40px rgba(15,31,61,0.4);
}

.mobile-panel.active { right: 0; }

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(240,238,232,0.7);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  transition: color 0.2s ease;
}

.mobile-close:hover { color: var(--amber); }

.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }

.mobile-nav-links a {
  display: block;
  color: rgba(240,238,232,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-nav-links a:hover {
  color: var(--amber);
  background: rgba(245,166,35,0.12);
}


.hero-section {
  background: var(--navy);
  padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 48px);
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
}

.hero-bento-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: var(--gap);
}

.hero-cell {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(245,166,35,0.1);
}

.hero-main {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.hero-main::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #FAFAF8;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(240,238,232,0.75);
  line-height: 1.7;
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.hero-img-cell {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hero-img-cell:hover .hero-img { transform: scale(1.03); }

.hero-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(15,31,61,0.85);
  backdrop-filter: blur(8px);
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(245,166,35,0.3);
}

.hero-stat-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 24px 28px;
  background: var(--navy-mid);
  border: 1px solid rgba(245,166,35,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-stat-cell:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245,166,35,0.3);
}

.hero-stat-amber { background: var(--amber); border-color: var(--amber); }
.hero-stat-amber .hero-stat-icon { color: var(--navy); }
.hero-stat-amber .hero-stat-label { color: var(--navy); }

.hero-stat-dark { background: rgba(255,255,255,0.05); }

.hero-stat-icon {
  font-size: 1.6rem;
  color: var(--amber);
}

.hero-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(240,238,232,0.9);
  letter-spacing: 0.01em;
}

.hero-location-cell {
  grid-column: 3 / 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  color: rgba(240,238,232,0.7);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(245,166,35,0.1);
}

.hero-location-cell i { color: var(--amber); }


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(245,166,35,0.3);
  min-height: 44px;
}

.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,166,35,0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(240,238,232,0.85);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(240,238,232,0.3);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
  min-height: 44px;
}

.btn-ghost:hover {
  border-color: rgba(240,238,232,0.7);
  color: #FAFAF8;
  background: rgba(255,255,255,0.06);
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--navy);
  transition: background 0.25s ease, color 0.25s ease;
  min-height: 44px;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: #FAFAF8;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FAFAF8;
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  min-height: 44px;
}

.btn-cta-white:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.btn-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(245,166,35,0.3);
  min-height: 48px;
  width: 100%;
  justify-content: center;
}

.btn-form-submit:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,166,35,0.4);
}


.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.section-eyebrow.light { color: var(--amber-light); }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.section-title.light { color: #FAFAF8; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-subtitle.light { color: rgba(240,238,232,0.75); }

.section-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.section-body.light-text { color: rgba(240,238,232,0.8); }

.section-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.bg-light-tint { background: var(--bg-tint); }


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

.question-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.question-text-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.question-img-col img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.question-img-col img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.rounded-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.rounded-img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}


.section-programs {
  padding: var(--section-pad) 0;
  background: var(--navy);
}

.programs-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--gap);
}

.prog-card {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245,166,35,0.12);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.prog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(15,31,61,0.4);
  border-color: rgba(245,166,35,0.35);
}

.prog-card-large {
  background: linear-gradient(160deg, var(--navy-light) 0%, var(--navy-mid) 100%);
}

.prog-card-inner {
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.prog-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(245,166,35,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--amber);
  transition: background 0.25s ease, transform 0.25s ease;
}

.prog-icon-wrap.amber { background: var(--amber); color: var(--navy); }
.prog-icon-wrap.navy { background: rgba(255,255,255,0.1); color: #FAFAF8; }

.prog-card:hover .prog-icon-wrap { transform: scale(1.08); }

.prog-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FAFAF8;
  line-height: 1.3;
}

.prog-card p {
  font-size: 0.875rem;
  color: rgba(240,238,232,0.7);
  line-height: 1.65;
  flex: 1;
}

.prog-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prog-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.825rem;
  color: rgba(240,238,232,0.75);
}

.prog-features li i { color: var(--amber); font-size: 0.75rem; flex-shrink: 0; }

.prog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--amber);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: auto;
  transition: gap 0.2s ease;
}

.prog-link:hover { gap: 10px; }


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

.how-bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: var(--gap);
}

.how-cell {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.how-cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.how-cell-img {
  grid-row: 1 / 3;
  padding: 0;
  min-height: 320px;
}

.how-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.how-cell-img:hover .how-img { transform: scale(1.04); }

.how-cell-step {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.how-cell-amber {
  background: var(--amber);
  border-color: var(--amber);
}

.how-cell-amber .step-num,
.how-cell-amber h4,
.how-cell-amber p { color: var(--navy); }

.how-cell-navy {
  background: var(--navy);
  border-color: var(--navy);
}

.how-cell-navy .step-num { color: var(--amber); }
.how-cell-navy h4 { color: #FAFAF8; }
.how-cell-navy p { color: rgba(240,238,232,0.75); }

.step-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.03em;
}

.how-cell h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.how-cell p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.how-cell-wide {
  grid-column: 2 / 4;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: rgba(245,166,35,0.2);
}

.how-cert-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.how-cert-icon {
  font-size: 2.5rem;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 4px;
}

.how-cert-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FAFAF8;
  margin-bottom: 8px;
}

.how-cert-content p {
  font-size: 0.875rem;
  color: rgba(240,238,232,0.75);
  line-height: 1.65;
}


.section-comparison {
  padding: var(--section-pad) 0;
  background: var(--navy);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.comp-card {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(245,166,35,0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.comp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(15,31,61,0.5);
  border-color: rgba(245,166,35,0.3);
}

.comp-card-featured {
  background: linear-gradient(160deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  border-color: rgba(245,166,35,0.35);
  box-shadow: 0 8px 32px rgba(245,166,35,0.15);
}

.comp-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.comp-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(245,166,35,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--amber);
  transition: transform 0.25s ease;
}

.comp-card:hover .comp-icon { transform: scale(1.1) rotate(5deg); }

.comp-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FAFAF8;
}

.comp-desc {
  font-size: 0.875rem;
  color: rgba(240,238,232,0.7);
  line-height: 1.65;
  flex: 1;
}

.comp-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comp-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(240,238,232,0.8);
}

.comp-list li i { color: var(--amber); font-size: 0.9rem; flex-shrink: 0; }

.comp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--amber);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(245,166,35,0.4);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  min-height: 44px;
}

.comp-cta:hover {
  background: rgba(245,166,35,0.12);
  border-color: var(--amber);
}

.comp-cta.featured {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.comp-cta.featured:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
}


.section-cta-banner {
  padding: var(--section-pad) 0;
  background: var(--bg-page);
}

.cta-banner-inner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--amber-dark) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245,166,35,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-inner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-content { position: relative; z-index: 1; }

.cta-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 12px;
}

.cta-banner-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #FAFAF8;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-banner-inner p {
  font-size: 1rem;
  color: rgba(240,238,232,0.8);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}


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

.about-bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--gap);
}

.about-cell {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-text {
  grid-row: 1 / 3;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-img-1, .about-img-2 {
  min-height: 220px;
  position: relative;
}

.full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-img-1:hover .full-img,
.about-img-2:hover .full-img { transform: scale(1.05); }

.about-accent {
  grid-column: 2 / 4;
  background: var(--navy);
  border: 1px solid rgba(245,166,35,0.2);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: border-color 0.25s ease;
}

.about-accent:hover { border-color: rgba(245,166,35,0.5); }

.about-accent-icon {
  font-size: 2rem;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 4px;
}

.about-accent h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #FAFAF8;
  margin-bottom: 6px;
}

.about-accent p {
  font-size: 0.875rem;
  color: rgba(240,238,232,0.75);
  line-height: 1.65;
}


.section-faq {
  padding: var(--section-pad) 0;
  background: var(--navy);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.faq-item {
  background: var(--navy-mid);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  border: 1px solid rgba(245,166,35,0.1);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(245,166,35,0.3);
  box-shadow: 0 8px 24px rgba(15,31,61,0.3);
}

.faq-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FAFAF8;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-item h4 i { color: var(--amber); flex-shrink: 0; margin-top: 2px; }

.faq-item p {
  font-size: 0.875rem;
  color: rgba(240,238,232,0.72);
  line-height: 1.7;
}


.page-hero {
  background: var(--navy);
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 5vw, 70px);
}

.page-hero-inner {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #FAFAF8;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(240,238,232,0.75);
  line-height: 1.7;
  max-width: 600px;
}


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

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

.profiles-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--gap);
}

.profile-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,166,35,0.3);
}

.profile-large {
  grid-column: 1 / 3;
  flex-direction: row;
  gap: 28px;
  align-items: flex-start;
}

.profile-img-wrap {
  width: 200px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.profile-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.profile-img-wrap:hover .profile-img { transform: scale(1.05); }

.profile-text { flex: 1; }

.profile-badge {
  display: inline-block;
  background: rgba(15,31,61,0.08);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.profile-badge.amber { background: rgba(245,166,35,0.15); color: var(--amber-dark); }
.profile-badge.dark { background: var(--navy); color: var(--amber); }

.profile-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
}

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

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.profile-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(15,31,61,0.08);
  padding: 4px 10px;
  border-radius: 100px;
}

.profile-amber {
  background: linear-gradient(135deg, rgba(245,166,35,0.08) 0%, rgba(245,166,35,0.03) 100%);
  border-color: rgba(245,166,35,0.25);
}

.profile-dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: rgba(245,166,35,0.2);
}

.profile-dark h3, .profile-dark p { color: rgba(240,238,232,0.9); }
.profile-dark p { color: rgba(240,238,232,0.7); }


.section-industries {
  padding: var(--section-pad) 0;
  background: var(--navy);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.industry-item {
  background: var(--navy-mid);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  border: 1px solid rgba(245,166,35,0.1);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.industry-item:hover {
  transform: translateY(-4px);
  border-color: rgba(245,166,35,0.4);
  background: var(--navy-light);
}

.industry-item i {
  font-size: 1.8rem;
  color: var(--amber);
  transition: transform 0.25s ease;
}

.industry-item:hover i { transform: scale(1.15); }

.industry-item span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(240,238,232,0.8);
  line-height: 1.4;
}


.section-why-matters {
  padding: var(--section-pad) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.why-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}


.section-corp-intro {
  padding: var(--section-pad) 0;
}

.corp-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.corp-intro-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-programs-detail {
  padding: var(--section-pad) 0;
  background: var(--navy);
}

.programs-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.prog-detail-card {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245,166,35,0.12);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.prog-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(15,31,61,0.4);
  border-color: rgba(245,166,35,0.35);
}

.prog-detail-amber {
  background: linear-gradient(160deg, rgba(245,166,35,0.1) 0%, var(--navy-mid) 100%);
  border-color: rgba(245,166,35,0.25);
}

.prog-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(245,166,35,0.1);
}

.prog-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(245,166,35,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--amber);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.prog-detail-icon.amber { background: var(--amber); color: var(--navy); }
.prog-detail-icon.navy { background: rgba(255,255,255,0.1); color: #FAFAF8; }

.prog-detail-card:hover .prog-detail-icon { transform: rotate(8deg) scale(1.08); }

.prog-detail-header h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FAFAF8;
  line-height: 1.35;
}

.prog-detail-type {
  font-size: 0.72rem;
  color: var(--amber);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.prog-detail-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.prog-detail-body > p {
  font-size: 0.875rem;
  color: rgba(240,238,232,0.72);
  line-height: 1.65;
}

.prog-detail-body h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(240,238,232,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.prog-detail-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prog-detail-list li {
  font-size: 0.825rem;
  color: rgba(240,238,232,0.75);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.prog-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
}

.prog-detail-footer {
  border-top: 1px solid rgba(245,166,35,0.1);
  padding-top: 14px;
  margin-top: 4px;
}

.prog-detail-doc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--amber);
  font-weight: 600;
}


.section-corp-process {
  padding: var(--section-pad) 0;
}

.corp-process-bento {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--gap);
}

.cp-step {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cp-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cp-amber {
  background: var(--amber);
  border-color: var(--amber);
}

.cp-amber .cp-num,
.cp-amber h4,
.cp-amber p { color: var(--navy); }

.cp-dark {
  background: var(--navy);
  border-color: var(--navy);
}

.cp-dark .cp-num { color: var(--amber); }
.cp-dark h4 { color: #FAFAF8; }
.cp-dark p { color: rgba(240,238,232,0.75); }

.cp-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.03em;
}

.cp-step h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cp-step p {
  font-size: 0.825rem;
  color: var(--text-secondary);
  line-height: 1.6;
}


.section-corp-benefits {
  padding: var(--section-pad) 0;
  background: var(--navy);
}

.benefits-bento {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--gap);
}

.benefit-cell {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245,166,35,0.12);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit-cell:hover {
  transform: translateY(-4px);
  border-color: rgba(245,166,35,0.35);
}

.benefit-large {
  grid-row: 1 / 3;
  background: linear-gradient(160deg, var(--navy-light) 0%, var(--navy-mid) 100%);
}

.benefit-amber {
  background: var(--amber);
  border-color: var(--amber);
}

.benefit-amber i,
.benefit-amber h3,
.benefit-amber p { color: var(--navy); }

.benefit-cell i {
  font-size: 2rem;
  color: var(--amber);
  transition: transform 0.25s ease;
}

.benefit-cell:hover i { transform: scale(1.1); }

.benefit-cell h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #FAFAF8;
}

.benefit-cell p {
  font-size: 0.875rem;
  color: rgba(240,238,232,0.72);
  line-height: 1.65;
}


.section-consult-info {
  padding: var(--section-pad) 0;
}

.consult-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.consult-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.consult-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.consult-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 12px 14px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.consult-point:hover {
  border-color: rgba(245,166,35,0.4);
  background: rgba(245,166,35,0.04);
}

.consult-point i { color: var(--amber); font-size: 1rem; flex-shrink: 0; }


.section-consult-form {
  padding: var(--section-pad) 0;
  background: var(--navy);
}

.form-bento {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.form-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.form-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(245,166,35,0.1);
  transition: border-color 0.25s ease;
}

.form-contact-item:hover { border-color: rgba(245,166,35,0.3); }

.form-contact-item > i {
  font-size: 1.1rem;
  color: var(--amber);
  margin-top: 2px;
  flex-shrink: 0;
}

.fci-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(240,238,232,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.fci-value {
  font-size: 0.9rem;
  color: rgba(240,238,232,0.9);
  font-weight: 500;
  transition: color 0.2s ease;
}

a.fci-value:hover { color: var(--amber); }


.contact-form {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: 'Lexend', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  min-height: 44px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

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

.form-checkbox label {
  font-size: 0.825rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox label a { color: var(--amber); text-decoration: underline; }

.req { color: var(--amber); }


.section-contact-main {
  padding: var(--section-pad) 0;
}

.contact-bento {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-info-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(245,166,35,0.3);
}

.cii-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(15,31,61,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  flex-shrink: 0;
}

.cii-text h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.cii-text p {
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.55;
}

.cii-text a { color: var(--navy); font-weight: 600; }
.cii-text a:hover { color: var(--amber-dark); }

.contact-form-col { }


.section-map {
  padding: 0 0 var(--section-pad);
  background: var(--bg-tint);
}

.map-title {
  padding: var(--section-pad) 0 clamp(24px, 3vw, 40px);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}


.thanks-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-pad) 0;
  background: var(--navy);
}

.thanks-card {
  background: var(--navy-mid);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  max-width: 600px;
  width: 100%;
  border: 1px solid rgba(245,166,35,0.2);
  box-shadow: var(--shadow-xl);
}

.thanks-icon {
  font-size: 3.5rem;
  color: var(--amber);
  margin-bottom: 20px;
}

.thanks-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #FAFAF8;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.thanks-body {
  font-size: 0.95rem;
  color: rgba(240,238,232,0.75);
  line-height: 1.7;
  margin-bottom: 12px;
}

.thanks-body a { color: var(--amber); }

.thanks-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}


.legal-hero {
  background: var(--navy);
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 5vw, 60px);
}

.legal-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #FAFAF8;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.legal-date {
  font-size: 0.875rem;
  color: rgba(240,238,232,0.6);
}

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

.legal-body {
  max-width: 800px;
}

.legal-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 32px 0 12px;
  letter-spacing: -0.01em;
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-body a { color: var(--amber-dark); text-decoration: underline; }


.site-footer {
  background: var(--navy);
  margin-top: auto;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(48px, 6vw, 80px) 0 clamp(32px, 4vw, 56px);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img { width: 32px; height: 32px; }

.footer-logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FAFAF8;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(240,238,232,0.55);
  line-height: 1.65;
  max-width: 260px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(240,238,232,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(240,238,232,0.65);
  transition: color 0.2s ease;
}

.footer-col ul li a:hover { color: var(--amber); }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(240,238,232,0.65);
  line-height: 1.5;
}

.footer-contact-list li i {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 0.8rem;
}

.footer-contact-list a { color: rgba(240,238,232,0.65); }
.footer-contact-list a:hover { color: var(--amber); }

.footer-sep {
  height: 1px;
  background: rgba(240,238,232,0.1);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(240,238,232,0.4);
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(240,238,232,0.4);
  transition: color 0.2s ease;
}

.footer-legal a:hover { color: rgba(240,238,232,0.7); }


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy);
  border-top: 2px solid var(--amber);
  padding: 20px clamp(16px, 4vw, 48px);
  box-shadow: 0 -4px 32px rgba(15,31,61,0.4);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 240px;
}

.cookie-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #FAFAF8;
  margin-bottom: 4px;
}

.cookie-text p {
  font-size: 0.8rem;
  color: rgba(240,238,232,0.65);
  line-height: 1.5;
}

.cookie-text a { color: var(--amber); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-btn {
  font-family: 'Lexend', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, transform 0.15s ease;
  min-height: 40px;
}

.cookie-btn-accept {
  background: var(--amber);
  color: var(--navy);
}

.cookie-btn-accept:hover { background: var(--amber-light); transform: translateY(-1px); }

.cookie-btn-reject {
  background: transparent;
  color: rgba(240,238,232,0.7);
  border: 1px solid rgba(240,238,232,0.25);
}

.cookie-btn-reject:hover { background: rgba(255,255,255,0.08); }

.cookie-btn-customize {
  background: transparent;
  color: var(--amber);
  border: 1px solid rgba(245,166,35,0.35);
}

.cookie-btn-customize:hover { background: rgba(245,166,35,0.1); }


.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,31,61,0.75);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 36px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.cookie-modal > p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.cookie-category {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 12px;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.cookie-category-header h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

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

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.25s ease;
}

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

.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--amber); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { background: var(--amber); opacity: 0.6; cursor: not-allowed; }

.cookie-category p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cookie-modal-save {
  flex: 1;
  background: var(--amber);
  color: var(--navy);
  font-family: 'Lexend', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  min-height: 44px;
}

.cookie-modal-save:hover { background: var(--amber-light); }

.cookie-modal-close {
  background: transparent;
  color: var(--text-secondary);
  font-family: 'Lexend', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s ease;
  min-height: 44px;
}

.cookie-modal-close:hover { border-color: var(--text-muted); }


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

@keyframes pulse-icon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.85; }
}

@keyframes rotate-icon {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.icon-bounce:hover { animation: bounce-icon 0.5s ease; }
.icon-pulse:hover { animation: pulse-icon 0.6s ease; }
.icon-rotate:hover { animation: rotate-icon 0.5s ease; }


@media (max-width: 1024px) {
  .hero-bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-main { grid-column: 1 / 3; grid-row: 1 / 2; }
  .hero-img-cell { grid-column: 1 / 3; grid-row: 2 / 3; height: 280px; }
  .hero-stat-cell { grid-column: auto; grid-row: auto; }
  .hero-location-cell { grid-column: auto; }

  .programs-bento { grid-template-columns: 1fr 1fr; }
  .prog-card-large { grid-column: 1 / 3; }

  .how-bento { grid-template-columns: 1fr 1fr; }
  .how-cell-img { grid-row: 1 / 2; }
  .how-cell-wide { grid-column: 1 / 3; }

  .comparison-grid { grid-template-columns: 1fr 1fr; }
  .comp-card:last-child { grid-column: 1 / 3; max-width: 400px; margin: 0 auto; width: 100%; }

  .about-bento { grid-template-columns: 1fr 1fr; }
  .about-text { grid-column: 1 / 3; grid-row: 1; }
  .about-accent { grid-column: 1 / 3; }

  .profiles-bento { grid-template-columns: 1fr 1fr; }
  .profile-large { grid-column: 1 / 3; }

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

  .programs-detail-grid { grid-template-columns: 1fr 1fr; }
  .prog-detail-card:last-child { grid-column: 1 / 3; }

  .corp-process-bento { grid-template-columns: repeat(3, 1fr); }

  .benefits-bento { grid-template-columns: 1fr 1fr; }
  .benefit-large { grid-row: 1 / 2; grid-column: 1 / 3; }

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

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

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

  .hero-bento-grid { grid-template-columns: 1fr; gap: 12px; }
  .hero-main { grid-column: 1; grid-row: auto; }
  .hero-img-cell { grid-column: 1; grid-row: auto; height: 220px; }
  .hero-stat-cell, .hero-location-cell { grid-column: 1; }

  .question-grid,
  .why-grid,
  .corp-intro-grid,
  .consult-info-grid { grid-template-columns: 1fr; gap: 28px; }

  .programs-bento { grid-template-columns: 1fr; }
  .prog-card-large { grid-column: 1; }

  .how-bento { grid-template-columns: 1fr; }
  .how-cell-img { min-height: 200px; }
  .how-cell-wide { grid-column: 1; }

  .comparison-grid { grid-template-columns: 1fr; }
  .comp-card:last-child { grid-column: 1; max-width: 100%; }

  .about-bento { grid-template-columns: 1fr; }
  .about-text { grid-column: 1; grid-row: auto; }
  .about-accent { grid-column: 1; }

  .profiles-bento { grid-template-columns: 1fr; }
  .profile-large { grid-column: 1; flex-direction: column; }
  .profile-img-wrap { width: 100%; }
  .profile-img { height: 200px; }

  .industries-grid { grid-template-columns: repeat(2, 1fr); }

  .programs-detail-grid { grid-template-columns: 1fr; }
  .prog-detail-card:last-child { grid-column: 1; }

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

  .benefits-bento { grid-template-columns: 1fr; }
  .benefit-large { grid-row: auto; grid-column: 1; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-legal { gap: 14px; }

  .consult-points { grid-template-columns: 1fr; }

  .cookie-banner-inner { flex-direction: column; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }

  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .corp-process-bento { grid-template-columns: 1fr; }

  .footer-links-grid { grid-template-columns: 1fr; }

  .thanks-actions { flex-direction: column; }
  .thanks-actions .btn-primary,
  .thanks-actions .btn-ghost { width: 100%; justify-content: center; }

  .how-cert-content { flex-direction: column; }

  .cookie-modal { padding: 24px 20px; }
}