:root {
  color-scheme: light;
  --ink: #141926;
  --muted: #5a6278;
  --blue: #0f2347;
  --blue-deep: #08101f;
  --blue-mid: #0f2347;
  --blue-light: #e8edf8;
  --line: #e2e8f0;
  --paper: #ffffff;
  --gold: #c9a84c;
  --gold-vivid: #d4aa3a;
  --gold-light: #f0d580;
  --gold-pale: rgba(201, 168, 76, 0.08);
  --cream: #fdfbf7;
  --surface: #f4f7fb;
  --shadow: 0 12px 40px -4px rgba(8, 16, 31, 0.14);
  --shadow-lg: 0 24px 64px -8px rgba(8, 16, 31, 0.22);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.28);
  --transition: 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f4f8; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-vivid) 100%);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

body {
  margin: 0;
  color: var(--ink);
  background: #f4f7fb;
  font-family:
    'DM Sans', Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* ── Navigation ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    linear-gradient(180deg, rgba(8, 16, 31, 0.98) 0%, rgba(8, 16, 31, 0.94) 100%);
  border-bottom: 1px solid rgba(201, 168, 76, 0.22);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  box-shadow: 0 18px 56px rgba(5, 10, 25, 0.34);
  transition: min-height var(--transition), background var(--transition), box-shadow var(--transition);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201, 168, 76, 0.5) 30%,
    rgba(232, 199, 110, 0.9) 50%,
    rgba(201, 168, 76, 0.5) 70%,
    transparent 100%);
  pointer-events: none;
}

.site-header.is-compact {
  box-shadow: 0 8px 32px rgba(5, 10, 25, 0.42);
}

.site-header.is-compact .nav-shell {
  min-height: 66px;
}

.top-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
}

.whatsapp-icon,
.instagram-icon {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: min-height var(--transition);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand--logo {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand--logo img {
  display: block;
  width: min(160px, 36vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  transition: transform 240ms ease, filter 240ms ease;
}

.brand--logo:hover img {
  transform: translateY(-1px);
  filter: drop-shadow(0 2px 12px rgba(201, 168, 76, 0.4));
}

.brand strong {
  font-size: 1rem;
  line-height: 1.2;
  color: #ffffff;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-links a {
  padding: 10px 0;
  position: relative;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 2px;
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.08);
  transition: background var(--transition), border-color var(--transition);
}

.nav-toggle:hover {
  background: rgba(201, 168, 76, 0.14);
  border-color: rgba(201, 168, 76, 0.48);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  transform-origin: center;
  animation: heroImageZoom 22s ease-in-out infinite alternate;
}

@keyframes heroImageZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.13); }
}

.hero__shade {
  background: linear-gradient(180deg, rgba(8, 16, 31, 0.05) 0%, rgba(8, 16, 31, 0.1) 60%, rgba(8, 16, 31, 0.4) 100%);
}

@keyframes heroGradientShift {
  0%   { background-position: 0% 0%, 0% 50%; }
  50%  { background-position: 0% 0%, 100% 50%; }
  100% { background-position: 0% 0%, 0% 50%; }
}

.hero__content {
  position: relative;
  padding: 96px 0 104px;
  max-width: 840px;
}

/* Hero entrance animations */
.hero .eyebrow {
  animation: heroFadeUp 0.75s 0.1s both;
}

.hero h1 {
  animation: heroFadeUp 0.85s 0.3s both;
}

.hero__lead {
  animation: heroFadeUp 0.8s 0.52s both;
}

.hero__actions {
  animation: heroFadeUp 0.8s 0.72s both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  flex: 0 0 auto;
}

.hero h1 {
  max-width: 800px;
  margin: 0 0 4px;
  font-size: clamp(2.8rem, 6.5vw, 6.4rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
  font-style: italic;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.36);
}

.hero h1::after {
  content: '';
  display: block;
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 100%;
  margin-top: 22px;
  border-radius: 2px;
  animation: shimmerBar 3s ease-in-out infinite;
}

@keyframes shimmerBar {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.hero__lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.68;
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* ── Buttons ── */
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.01em;
  transition:
    transform 200ms cubic-bezier(0.22, 1, 0.36, 1),
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.button:hover  { transform: translateY(-3px); }
.button:active { transform: translateY(-1px); }

.button--primary {
  position: relative;
  overflow: hidden;
  color: var(--blue-deep);
  background: linear-gradient(135deg, var(--gold) 0%, #d9b75a 45%, var(--gold-light) 100%);
  border-color: var(--gold);
  box-shadow:
    0 6px 20px rgba(201, 168, 76, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  isolation: isolate;
}

.button--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.62) 50%,
    transparent 70%);
  transform: translateX(-130%);
  transition: transform 700ms cubic-bezier(0.22, 0.7, 0.3, 1);
  z-index: -1;
  pointer-events: none;
}

.button--primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, #f5dc8a 45%, var(--gold-light) 100%);
  border-color: var(--gold-light);
  box-shadow:
    0 16px 36px rgba(201, 168, 76, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.button--primary:hover::before {
  transform: translateX(130%);
}

.button--submit {
  color: var(--blue-deep);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-vivid) 100%);
  border: 0;
  width: 100%;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.28);
}

.button--submit:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 12px 28px rgba(201, 168, 76, 0.38);
}

.button--light {
  color: var(--blue-deep);
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(8, 16, 31, 0.1);
}

.button--light:hover {
  background: #f8f9fb;
  box-shadow: 0 8px 24px rgba(8, 16, 31, 0.16);
}

.button--ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.52);
}

.button--outline {
  color: var(--blue-deep);
  border-color: rgba(8, 16, 31, 0.18);
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(8, 16, 31, 0.08);
}

.button--outline:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.16);
}

.button--small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 0.9rem;
}

.button.icon-button {
  width: 46px;
  min-width: 46px;
  min-height: 46px;
  padding: 0;
  flex: 0 0 46px;
  color: #25d366;
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.28);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.12);
}

.button.icon-button:hover {
  background: rgba(37, 211, 102, 0.18);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.24);
}

.button--small.icon-button {
  width: 38px;
  min-width: 38px;
  min-height: 38px;
  flex-basis: 38px;
}

/* ── Quick Panel ── */
.quick-panel {
  position: relative;
  z-index: 5;
  margin-top: -48px;
}

.quick-panel__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.07) 0%, rgba(201, 168, 76, 0) 60%),
    linear-gradient(180deg, #112248 0%, var(--blue-deep) 100%);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 20px;
  box-shadow:
    0 26px 64px rgba(8, 16, 31, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 0 1px rgba(201, 168, 76, 0.06);
}

.quick-panel__grid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(201, 168, 76, 0.65) 50%,
    transparent);
  pointer-events: none;
}

.quick-panel__grid div {
  position: relative;
  min-height: 110px;
  padding: 30px 26px;
  border-right: 1px solid rgba(201, 168, 76, 0.12);
  transition: background 280ms ease;
  cursor: default;
}

.quick-panel__grid div:hover {
  background: rgba(201, 168, 76, 0.05);
}

.quick-panel__grid div:last-child {
  border-right: 0;
}

.quick-panel strong,
.quick-panel span {
  display: block;
}

.quick-panel strong {
  color: var(--gold);
  font-size: 1.6rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  text-shadow: 0 2px 14px rgba(201, 168, 76, 0.26);
  line-height: 1;
}

.quick-panel span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

/* ── Sections ── */
.section {
  padding: 96px 0;
}

.section--white    { background: #ffffff; }
.section--programs { background: #ffffff; }
.section--blue-light { background: var(--blue-light); }
.section--faq      { background: #ffffff; }
.section--features { background: #f4f7fb; }
.section--contact  { background: #f4f6fb; }

.section--form {
  background:
    linear-gradient(165deg, rgba(8, 16, 31, 0.03) 0%, rgba(201, 168, 76, 0.04) 100%),
    #fdfbf7;
}

.section--mint {
  background: linear-gradient(165deg, #eef2fa 0%, #dce4f4 100%);
  position: relative;
  overflow: hidden;
}

.section--mint::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.section--dark {
  color: #ffffff !important;
  background: #0a1628 !important;
  background: linear-gradient(135deg, #08101f 0%, #0f2347 100%) !important;
  position: relative;
  overflow: hidden;
}

.section--dark::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.section--success {
  background: linear-gradient(180deg, #ffffff 0%, #f0f4fb 100%);
  position: relative;
  overflow: hidden;
}

.section--success::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at right top, rgba(201, 168, 76, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.section__head {
  max-width: 720px;
  margin-bottom: 36px;
}

.section__head h2,
.split h2,
.form-layout h2,
.contact-grid h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section__head h2::after,
.split h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  margin-top: 18px;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.32);
  animation: shimmerBar 3s ease-in-out infinite;
}

.section__head p:not(.eyebrow),
.split p,
.form-layout p,
.contact-grid address {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.section__head--dark h2 { color: #ffffff; }
.section__head--dark p  { color: rgba(255, 255, 255, 0.68); }
.section__head--dark h2::after { background: var(--gold); animation: none; }

.section h2, .notice h3 {
  font-family: 'Playfair Display', Georgia, serif;
}

.section--success .section__head h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: 0.04em;
}

.section--mint .split h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
}

/* ── Program Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.program-card,
.notice,
.feature-grid article,
.lead-form,
.dashboard,
.faq-item {
  border-radius: 18px;
}

.program-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(8, 16, 31, 0.07);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
  transition:
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.36s ease;
  cursor: pointer;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 32px 72px -8px rgba(8, 16, 31, 0.2),
    0 0 0 1.5px rgba(201, 168, 76, 0.38),
    var(--shadow-gold);
}

.program-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.program-card:hover img {
  transform: scale(1.08);
}

.program-card__body {
  padding: 22px;
}

.program-card__body span {
  display: inline-block;
  padding: 4px 11px;
  color: var(--gold);
  background: rgba(8, 16, 31, 0.94);
  border-radius: 7px;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 168, 76, 0.22);
}

.program-card h3,
.feature-grid h3,
.notice h3,
.review-profile h3 {
  margin: 10px 0 8px;
  font-size: 1.1rem;
  line-height: 1.25;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}

.program-card p,
.feature-grid p,
.notice p,
.faq-answer p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.link-button,
.export-button {
  padding: 0;
  color: var(--gold);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}

.link-button:hover  { color: var(--blue-deep); }

.export-button {
  color: var(--gold);
  opacity: 0.8;
}

.export-button:hover {
  color: var(--gold-vivid);
  opacity: 1;
}

/* ── Split / Dashboard ── */
.split,
.form-layout,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 56px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.check-list span {
  padding: 14px 18px;
  border-left: 3px solid var(--gold);
  background: #ffffff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.96rem;
  box-shadow: 0 2px 10px rgba(8, 16, 31, 0.07);
  transition: transform 200ms ease, box-shadow 200ms ease;
  cursor: default;
}

.check-list span:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.14);
}

.dashboard {
  padding: 30px;
  background: var(--blue-deep);
  color: #ffffff;
  border: 1px solid rgba(201, 168, 76, 0.22);
  box-shadow:
    0 24px 70px rgba(8, 16, 31, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.dashboard::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at top right, rgba(201, 168, 76, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.dashboard__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}

.dashboard__top span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}

.dashboard__top strong {
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 700;
}

.progress-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 14px;
  margin-bottom: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.progress-row strong {
  color: var(--gold);
}

.progress-row i {
  grid-column: 1 / -1;
  height: 7px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 999px;
}

.progress-row i::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 999px;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.38);
}

.progress-row.is-animated i::before {
  width: var(--value);
}

.mini-feed {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.mini-feed p {
  margin: 0;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.13);
  border-radius: 11px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.mini-feed p strong {
  color: var(--gold);
}

/* ── Feature Grid ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-grid article {
  min-height: 230px;
  padding: 30px;
  border: 1px solid rgba(8, 16, 31, 0.07);
  border-top: 3px solid var(--gold);
  background: #ffffff;
  border-radius: 16px;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.feature-grid article:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 48px rgba(8, 16, 31, 0.12),
    0 0 0 1px rgba(201, 168, 76, 0.2);
  background: linear-gradient(165deg, #ffffff 0%, #fdfbf4 100%);
}

.feature-grid strong {
  color: var(--gold);
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  opacity: 0.75;
  display: block;
}

/* ── Success Carousel ── */
.success-carousel {
  min-height: 580px;
  overflow: hidden;
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  transition:
    opacity 240ms ease,
    transform 240ms ease;
  will-change: opacity, transform;
}

.success-grid.is-leaving {
  opacity: 0;
  transform: translateX(-46px);
}

.success-grid.is-entering {
  opacity: 0;
  transform: translateX(46px);
}

.success-card {
  min-height: 292px;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-content: start;
  gap: 12px;
  padding: 22px 18px;
  background: #ffffff;
  border: 1px solid rgba(8, 16, 31, 0.07);
  border-top: 2px solid var(--gold);
  border-radius: 14px;
  box-shadow: var(--shadow);
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.34s ease;
}

.success-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 24px 52px rgba(8, 16, 31, 0.16),
    0 0 0 1.5px rgba(201, 168, 76, 0.22);
}

.success-logo {
  position: relative;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  justify-self: center;
  margin-bottom: 2px;
  color: #ffffff;
  background:
    linear-gradient(135deg, var(--logo-a, #1e40af), var(--logo-b, #ef4444));
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow:
    0 14px 32px rgba(30, 64, 175, 0.2),
    0 0 0 1px rgba(30, 64, 175, 0.1);
}

.success-logo::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: inherit;
}

.success-logo img {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 94px;
  height: 94px;
  object-fit: contain;
  padding: 6px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
  transform: translate(-50%, -50%);
}

.success-logo img + span {
  opacity: 0;
}

.success-logo span {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  font-weight: 950;
}

.success-card strong {
  display: block;
  color: var(--blue-deep);
  font-size: 1.06rem;
  font-family: 'DM Sans', sans-serif;
}

.success-school,
.success-department {
  margin: 0;
  line-height: 1.25;
}

.success-school {
  color: var(--blue-deep);
  font-weight: 900;
  font-size: 0.86rem;
}

.success-department {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

/* ── Announcements ── */
.announce-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.announce-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #ffffff;
  margin: 8px 0 0;
  line-height: 1.15;
}

.announce-title__accent {
  color: var(--gold);
}

.button--outline-gold {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
  white-space: nowrap;
}

.button--outline-gold:hover {
  background: var(--gold);
  color: var(--blue-deep);
}

.button--sm {
  padding: 10px 22px;
  font-size: 0.88rem;
}

.announce-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.announce-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 240ms ease, transform 240ms ease, box-shadow 240ms ease;
  position: relative;
  overflow: hidden;
}

.announce-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  opacity: 0.4;
  transition: opacity 240ms ease;
}

.announce-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(201, 168, 76, 0.15);
}

.announce-card:hover::after {
  opacity: 1;
}

.announce-card--featured {
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: rgba(201, 168, 76, 0.25);
}

.announce-card--featured::after {
  opacity: 1;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}

.announce-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  width: fit-content;
}

.announce-card__badge--new {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.announce-card__badge--gold {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.announce-card__icon {
  font-size: 2rem;
  line-height: 1;
  margin: 4px 0;
}

.announce-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.3;
  margin: 0;
}

.announce-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.announce-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.announce-card__date {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.announce-card__link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: color 180ms ease;
}

.announce-card__link:hover {
  color: var(--gold-light);
}

/* Legacy notices kept for compatibility */
.notice-grid { display: none; }
.notice { display: none; }

/* ── Form Section ── */
.section--form .form-layout > div:first-child {
  padding: 40px;
  background: var(--blue-deep);
  color: #ffffff;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.section--form .form-layout > div:first-child::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.section--form .form-layout > div:first-child h2 { color: #ffffff; }
.section--form .form-layout > div:first-child h2::after { background: var(--gold); animation: none; }
.section--form .form-layout > div:first-child .eyebrow { color: var(--gold); }
.section--form .form-layout > div:first-child p { color: rgba(255, 255, 255, 0.68); }

/* ── Lead Form ── */
.lead-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  background: #ffffff;
  border: 1px solid rgba(8, 16, 31, 0.07);
  box-shadow: 0 28px 72px rgba(8, 16, 31, 0.13);
  border-radius: 20px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field-group {
  display: grid;
  gap: 7px;
}

.field-group label {
  color: #1e2d46;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f8faff;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.field-group textarea {
  resize: vertical;
}

.field-group input:hover:not(:focus),
.field-group select:hover:not(:focus),
.field-group textarea:hover:not(:focus) {
  border-color: rgba(201, 168, 76, 0.4);
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fffef8;
  box-shadow:
    0 0 0 3px rgba(201, 168, 76, 0.16),
    0 4px 14px rgba(201, 168, 76, 0.1);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.consent input {
  margin-top: 4px;
  accent-color: var(--gold);
}

.form-status {
  min-height: 22px;
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 0.92rem;
}

.form-status.is-error {
  color: #dc2626;
}

.lead-result {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(201, 168, 76, 0.32);
  background: rgba(201, 168, 76, 0.06);
  border-radius: 14px;
}

.lead-result strong,
.lead-result span {
  display: block;
}

.hidden {
  display: none;
}

/* ── FAQ ── */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq-item {
  overflow: hidden;
  border: 1.5px solid var(--line);
  border-left: 3px solid transparent;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition:
    border-left-color 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
  border-radius: 16px;
}

.faq-item.is-open {
  border-left-color: var(--gold);
  box-shadow:
    0 10px 36px rgba(201, 168, 76, 0.12),
    0 2px 8px rgba(8, 16, 31, 0.06);
  background: #fffef8;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 700;
  font-size: 0.98rem;
}

.faq-question::after {
  content: "+";
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  color: #ffffff;
  background: var(--blue-deep);
  border-radius: 50%;
  font-size: 1.2rem;
  transition:
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms ease,
    color 220ms ease;
}

.faq-item.is-open .faq-question::after {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--blue-deep);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 340ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease;
}

.faq-item.is-open .faq-answer {
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.68;
}

/* ── Contact ── */
.contact-grid {
  grid-template-columns: 0.88fr 1.12fr;
}

.contact-grid address {
  font-style: normal;
  line-height: 1.7;
  margin-top: 12px;
}

.contact-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  font-weight: 900;
  font-size: 1.04rem;
}

.contact-list a {
  color: var(--blue-deep);
  transition: color 180ms ease;
}

.contact-list a:hover { color: var(--gold); }

.contact-grid > div:first-child h2::after { background: var(--gold); animation: none; }

.contact-grid iframe {
  width: 100%;
  min-height: 440px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 18px 52px rgba(8, 16, 31, 0.16);
}

.contact-reviews {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.reviews-bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 20px;
}

.reviews-bar .eyebrow {
  margin-bottom: 0;
  font-size: 1.17rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.review-card {
  overflow: hidden;
  display: flex;
  border: 1px solid rgba(8, 16, 31, 0.07);
  border-top: 2px solid var(--gold);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 56px rgba(8, 16, 31, 0.14),
    0 0 0 1px rgba(201, 168, 76, 0.18);
}

.review-card > img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.review-card__body {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.review-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-profile img {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 168, 76, 0.3);
}

.review-profile h3 {
  display: block;
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.15;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}

.stars {
  display: block;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 4px rgba(201, 168, 76, 0.3);
}

.review-card blockquote::before {
  content: '\201C';
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 4.8rem;
  color: var(--gold);
  opacity: 0.14;
  line-height: 1;
  margin-bottom: -22px;
}

.review-card blockquote {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.65;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
}

/* ── Footer ── */
.site-footer {
  padding: 52px 0 40px;
  color: rgba(255, 255, 255, 0.6);
  background: linear-gradient(165deg, #060d1a 0%, #0a1628 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.14);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand-logo {
  width: 90px;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
  opacity: 0.95;
  margin-bottom: 14px;
}

.footer-grid strong {
  display: block;
  color: #ffffff;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.footer-grid p {
  max-width: 520px;
  margin: 8px 0 0;
  line-height: 1.68;
}

.footer-grid div:last-child {
  display: grid;
  gap: 10px;
}

.footer-grid span {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid div:last-child a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.94rem;
  transition: color 180ms ease;
}

.footer-grid div:last-child a:hover { color: var(--gold); }

/* ── Social Rail ── */
.social-rail {
  position: fixed;
  left: 18px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  gap: 10px;
}

.social-rail__item {
  position: relative;
  display: flex;
  align-items: center;
}

.social-rail__button {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 50%;
  box-shadow:
    0 10px 30px rgba(14, 24, 56, 0.36),
    0 2px 6px rgba(14, 24, 56, 0.22);
  transition:
    transform 200ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 200ms ease,
    box-shadow 200ms ease;
}

.social-rail__button:hover {
  filter: brightness(1.08);
  transform: translateY(-3px);
  box-shadow:
    0 16px 38px rgba(14, 24, 56, 0.44),
    0 2px 6px rgba(14, 24, 56, 0.22);
}

.social-rail__button svg {
  width: 27px;
  height: 27px;
}

.social-rail__button--instagram {
  background:
    radial-gradient(circle at 28% 105%, #f9d66a 0 20%, transparent 38%),
    linear-gradient(135deg, #6f42d8 0%, #d62976 48%, #fa7e1e 100%);
}

.social-rail__button--whatsapp {
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

.social-notice {
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  min-width: 206px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px 12px 14px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 16px;
  box-shadow:
    0 20px 50px rgba(14, 24, 56, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.28) inset;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translate(-12px, -50%) scale(0.92);
  transform-origin: left center;
  transition: opacity 220ms ease, transform 220ms ease;
  will-change: opacity, transform;
}

.social-notice[hidden] {
  display: inline-flex;
}

.social-rail__item:hover .social-notice[hidden] {
  display: inline-flex;
}

.social-notice.is-visible,
.social-rail__item:hover .social-notice {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%) scale(1);
}

.social-notice.is-visible {
  animation: social-notice-pop 520ms cubic-bezier(0.2, 1.25, 0.35, 1) both;
}

.social-notice.is-closing {
  pointer-events: none;
  animation: social-notice-pull-in 340ms cubic-bezier(0.58, 0, 0.24, 1) both;
}

.social-notice::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 50%;
  width: 12px;
  height: 12px;
  background: inherit;
  border-left: 1px solid rgba(255, 255, 255, 0.26);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  transform: translateY(-50%) rotate(45deg);
}

.social-notice--instagram {
  background:
    radial-gradient(circle at 8% 104%, rgba(249, 214, 106, 0.96) 0 18%, transparent 36%),
    linear-gradient(135deg, #6f42d8 0%, #d62976 46%, #fa7e1e 100%);
}

.social-notice--whatsapp {
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

.social-notice__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.social-notice strong,
.social-notice small {
  display: block;
}

.social-notice strong {
  color: #ffffff;
  font-size: 0.97rem;
  line-height: 1.15;
  white-space: nowrap;
}

.social-notice small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  line-height: 1.25;
}

.social-notice button {
  position: absolute;
  top: -7px;
  right: -7px;
  z-index: 1;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #ffffff;
  background: #e53b35;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.82rem;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(181, 55, 34, 0.3);
  transition: background 160ms ease, transform 160ms ease;
}

.social-notice button:hover {
  background: #bf2f2b;
  transform: scale(1.1);
}

@keyframes social-notice-pop {
  0%   { opacity: 0; transform: translate(-18px, -50%) scale(0.86); }
  58%  { opacity: 1; transform: translate(5px, -50%) scale(1.04); }
  78%  { transform: translate(-2px, -50%) scale(0.98); }
  100% { opacity: 1; transform: translate(0, -50%) scale(1); }
}

@keyframes social-notice-pull-in {
  0%   { opacity: 1; transform: translate(0, -50%) scale(1); filter: blur(0); }
  35%  { opacity: 1; transform: translate(5px, -50%) scale(1.02); filter: blur(0); }
  100% { opacity: 0; transform: translate(-54px, -50%) scale(0.18); filter: blur(2px); }
}

/* ── Assistant Widget ── */
.assistant-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.assistant-toggle {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: var(--gold);
  background: var(--blue-deep);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 16px;
  box-shadow:
    0 18px 48px rgba(8, 16, 31, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-weight: 700;
  transform-origin: right bottom;
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.assistant-toggle:hover {
  box-shadow: 0 22px 56px rgba(8, 16, 31, 0.46);
  border-color: rgba(201, 168, 76, 0.48);
  transform: translateY(-2px);
}

.assistant-toggle[hidden] { display: none; }

.assistant-toggle svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.assistant-panel {
  width: min(420px, calc(100vw - 28px));
  height: min(700px, calc(100vh - 118px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(14, 24, 56, 0.22);
  opacity: 0;
  transform: translate(18px, 18px) scale(0.12);
  transform-origin: right bottom;
  will-change: opacity, transform;
}

.assistant-panel[hidden] { display: none; }

.assistant-panel.is-open {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  animation: assistant-grow-in 360ms cubic-bezier(0.18, 1.18, 0.28, 1) both;
}

.assistant-panel.is-closing {
  opacity: 0;
  transform: translate(16px, 16px) scale(0.16);
  animation: assistant-shrink-out 300ms cubic-bezier(0.55, 0, 0.35, 1) both;
}

@keyframes assistant-grow-in {
  0%   { opacity: 0; transform: translate(22px, 22px) scale(0.1); }
  62%  { opacity: 1; transform: translate(-3px, -3px) scale(1.03); }
  82%  { transform: translate(1px, 1px) scale(0.99); }
  100% { opacity: 1; transform: translate(0, 0) scale(1); }
}

@keyframes assistant-shrink-out {
  0%   { opacity: 1; transform: translate(0, 0) scale(1); }
  35%  { opacity: 1; transform: translate(-2px, -2px) scale(1.02); }
  100% { opacity: 0; transform: translate(22px, 22px) scale(0.1); }
}

.assistant-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-deep) 0%, #0f2347 100%);
  border-bottom: 1px solid rgba(201, 168, 76, 0.22);
}

.assistant-panel__header span,
.assistant-panel__header strong {
  display: block;
}

.assistant-panel__header span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.assistant-panel__header strong {
  margin-top: 4px;
  line-height: 1.2;
}

.assistant-close {
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  transition: background 160ms ease;
}

.assistant-close:hover { background: rgba(255, 255, 255, 0.2); }

.assistant-messages {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  overflow-y: auto;
  padding: 18px;
  background: linear-gradient(180deg, #f8faff 0%, #f2f6ff 100%);
}

.assistant-message {
  width: fit-content;
  max-width: 86%;
  padding: 12px 15px;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.48;
  box-shadow: 0 10px 24px rgba(14, 24, 56, 0.08);
}

.assistant-message--bot {
  color: #1e2d46;
  background: #ffffff;
  border: 1px solid var(--line);
}

.assistant-message--user {
  align-self: flex-end;
  color: var(--blue-deep);
  background: var(--gold);
  font-weight: 600;
}

.assistant-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 18px 14px;
  border-top: 1px solid rgba(220, 227, 241, 0.78);
  background: #f8faff;
}

.assistant-suggestions button {
  min-height: 34px;
  padding: 7px 13px;
  color: var(--blue-deep);
  background: #ffffff;
  border: 1.5px solid rgba(8, 16, 31, 0.11);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.assistant-suggestions button:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.42);
  transform: translateY(-1px);
}

.assistant-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.assistant-form input {
  min-width: 0;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.assistant-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.14);
}

.assistant-form button {
  color: var(--blue-deep);
  background: var(--gold);
  border: 0;
  border-radius: 12px;
  padding: 0 16px;
  cursor: pointer;
  font-weight: 700;
  transition: background 160ms ease, transform 160ms ease;
}

.assistant-form button:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ── Hero Scroll Indicator ── */
.hero__scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(201, 168, 76, 0.48);
  border-radius: 50%;
  color: var(--gold);
  z-index: 2;
  backdrop-filter: blur(6px);
  background: rgba(8, 16, 31, 0.18);
  animation: scrollBounce 2.2s ease-in-out infinite;
  transition: border-color 200ms ease, background 200ms ease;
}

.hero__scroll:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.14);
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg) translateY(-2px);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.65; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.26s; }
.reveal--delay-4 { transition-delay: 0.36s; }

/* ── Responsive: Tablet ── */
@media (max-width: 980px) {
  .card-grid,
  .review-grid,
  .feature-grid,
  .success-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .form-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .announce-card--featured {
    grid-column: 1 / -1;
  }


  .quick-panel__grid div:nth-child(2) {
    border-right: 0;
  }

  .quick-panel__grid div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  }
}

/* ── Responsive: Mobile ── */
@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav-shell {
    width: min(100% - 24px, 1180px);
    min-height: 74px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 2px);
    left: 12px;
    right: 12px;
    display: none;
    padding: 16px;
    background: rgba(8, 16, 31, 0.98);
    border: 1px solid rgba(201, 168, 76, 0.22);
    border-radius: 16px;
    box-shadow: 0 24px 56px rgba(8, 16, 31, 0.48);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    transition: background 160ms ease, color 160ms ease;
  }

  .nav-links a:hover {
    background: rgba(201, 168, 76, 0.08);
  }

  .nav-links a::after {
    display: none;
  }

  .brand--logo img {
    width: min(130px, 38vw);
  }

  .hero {
    min-height: 660px;
  }

  .hero__shade {
    background: linear-gradient(165deg, rgba(8, 16, 31, 0.62) 0%, rgba(8, 16, 31, 0.96) 100%);
  }

  .hero__content {
    padding: 60px 0 88px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .quick-panel {
    margin-top: -28px;
  }

  .success-logo {
    width: 100px;
    height: 100px;
  }

  .success-logo img {
    width: 82px;
    height: 82px;
  }

  .hero__actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .reviews-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .section {
    padding: 72px 0;
  }

  .quick-panel__grid,
  .card-grid,
  .review-grid,
  .feature-grid,
  .success-grid,
  .notice-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

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

  .announce-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .button.icon-button {
    width: 46px;
    min-width: 46px;
    flex: 0 0 46px;
  }

  .quick-panel__grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    min-height: 90px;
    padding: 22px 20px;
  }

  .quick-panel__grid div:last-child {
    border-bottom: 0;
  }

  .lead-form,
  .dashboard {
    padding: 22px;
  }

  .section--form .form-layout > div:first-child {
    padding: 28px 22px;
  }

  .footer-grid {
    display: grid;
    gap: 28px;
  }

  .social-rail {
    left: 12px;
    bottom: 16px;
    gap: 8px;
  }

  .social-rail__button {
    width: 46px;
    height: 46px;
  }

  .social-rail__button svg {
    width: 24px;
    height: 24px;
  }

  .social-notice {
    left: 58px;
    min-width: 0;
    width: min(204px, calc(100vw - 78px));
    padding: 10px 30px 10px 12px;
  }

  .social-notice strong {
    font-size: 0.88rem;
    white-space: normal;
  }

  .social-notice small {
    font-size: 0.68rem;
  }

  .assistant-widget {
    right: 12px;
    bottom: 12px;
  }

  .assistant-toggle span {
    display: none;
  }

  .assistant-toggle {
    width: 54px;
    padding: 0;
    justify-content: center;
  }

  .assistant-panel {
    width: min(420px, calc(100vw - 24px));
    height: min(720px, calc(100vh - 24px));
  }

  .assistant-messages {
    padding: 16px;
  }

  .assistant-suggestions {
    padding: 11px 16px 13px;
  }

  .assistant-form {
    padding: 14px;
  }

  .review-card__body {
    min-height: 360px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .hero__content {
    padding: 52px 0 80px;
  }

  .section__head h2,
  .split h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .hero__image,
  .hero h1::after,
  .section__head h2::after,
  .split h2::after,
  .hero__shade,
  .faq-answer,
  .faq-question::after,
  .social-notice.is-visible,
  .social-notice.is-closing,
  .hero .eyebrow,
  .hero h1,
  .hero__lead,
  .hero__actions,
  .assistant-panel.is-open,
  .assistant-panel.is-closing {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   PHASE 5: Multi-page restructure additions (v5)
   ============================================================ */

/* Hero carousel — cross-fade slides under existing hero__shade */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide.is-active {
  opacity: 1;
}
.hero-slide__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 16px));
  z-index: 3;
  max-width: calc(100vw - 48px);
  color: #ffffff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  text-shadow:
    0 0 32px rgba(255, 255, 255, 0.45),
    0 0 16px rgba(232, 199, 110, 0.4),
    0 6px 28px rgba(0, 0, 0, 0.9),
    0 3px 10px rgba(0, 0, 0, 0.95),
    0 1px 3px rgba(0, 0, 0, 1);
  box-shadow: none;
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}
.hero-slide__title::after {
  content: "";
  display: block;
  width: clamp(64px, 8vw, 110px);
  height: 2px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-light) 50%, transparent);
  border-radius: 2px;
}
.hero-slide.is-active .hero-slide__title {
  opacity: 1;
  transform: translate(-50%, -50%);
}
@media (max-width: 640px) {
  .hero-slide__title {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
    padding: 10px 18px;
  }
}

/* Active nav link highlight */
.nav-links a[aria-current="page"] {
  color: var(--gold);
  position: relative;
}
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Generic page-hero (for sub-pages) */
.page-hero {
  padding: 120px 0 56px;
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--cream) 100%);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 12px 0 16px;
  color: var(--blue);
}
.page-hero__lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 720px;
}
.page-hero--dark {
  background: linear-gradient(180deg, var(--blue-deep) 0%, var(--blue) 100%);
  color: #fff;
}
.page-hero--dark h1,
.page-hero--dark .eyebrow {
  color: #fff;
}
.page-hero--dark .page-hero__lead {
  color: rgba(255,255,255,0.85);
}

/* Hakkımızda — about-portrait */
.about-portrait {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-portrait__caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  background: rgba(8,16,31,0.78);
  color: #fff;
  padding: 8px 14px;
  border-radius: 24px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

/* Hakkımızda — değerler grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 24px;
}
.value-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.value-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.value-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}
.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Section CTA (Hakkımızda + Neden MyFen sayfa altları) */
.section--contact-cta {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--blue-light) 100%);
  text-align: center;
}

/* Neden MyFen — reason carousel (single slide visible, others fade out) */
.reason-carousel {
  position: relative;
  min-height: 320px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  color: #fff;
  padding: 48px clamp(24px, 5vw, 64px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.reason-slide {
  position: absolute;
  inset: 0;
  padding: 48px clamp(24px, 5vw, 64px);
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reason-slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.reason-slide__num {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.reason-slide__icon {
  font-size: 2.6rem;
  margin: 12px 0;
}
.reason-slide h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}
.reason-slide p {
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-size: 1.05rem;
  max-width: 720px;
  line-height: 1.65;
}

/* Neden MyFen — alttaki grid */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 24px;
}
.reason-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.reason-card__icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.reason-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}
.reason-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 640px) {
  .reason-carousel {
    min-height: 380px;
  }
}

/* ============================================================
   PHASE 5b: Mobile responsiveness fixes (v5)
   ============================================================ */
@media (max-width: 760px) {
  /* Mobile'da hero scroll arrow gizle (title alta yerleşecek) */
  .hero__scroll {
    display: none;
  }

  /* Hero slide title mobile — ortada büyük başlık */
  .hero-slide__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    padding: 12px 20px;
    max-width: calc(100vw - 32px);
    white-space: normal;
  }

  /* Split layouts mobile'da tek sütun */
  .split,
  .form-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }

  /* About portrait mobile'da boy ayarı */
  .about-portrait {
    max-height: 360px;
  }
  .about-portrait img {
    max-height: 360px;
  }

  /* Page hero padding'i mobile'da daha sıkı */
  .page-hero {
    padding: 88px 0 40px;
  }
  .page-hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
    line-height: 1.2;
  }
  .page-hero__lead {
    font-size: 1rem;
  }

  /* Değerler grid mobile'da tek sütun */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .value-card {
    padding: 20px;
  }

  /* Neden MyFen — reason carousel mobile'da daha yüksek (içerik sığsın) */
  .reason-carousel {
    min-height: 460px;
    padding: 36px 22px;
    border-radius: 18px;
  }
  .reason-slide {
    padding: 36px 22px;
  }
  .reason-slide__icon {
    font-size: 2.2rem;
    margin: 8px 0;
  }
  .reason-slide h2 {
    font-size: 1.45rem;
    margin-bottom: 12px;
  }
  .reason-slide p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  /* Reason grid mobile'da tek sütun (auto-fit 240px geniş kalıyor) */
  .reason-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .reason-card {
    padding: 18px;
  }

  /* Contact CTA mobile için padding azalt */
  .section--contact-cta {
    padding: 56px 0;
  }

  /* Footer linklerinde dikey gap */
  .footer-grid > div {
    display: grid;
    gap: 8px;
  }
  .footer-grid a {
    padding: 4px 0;
  }

  /* aria-current page link mobile'da underline kalsın */
  .nav-links a[aria-current="page"] {
    background: rgba(201, 168, 76, 0.12);
  }
  .nav-links a[aria-current="page"]::after {
    display: none;
  }

  /* Tablo style page-hero--dark için arka plan yumuşat */
  .page-hero--dark {
    padding: 96px 0 56px;
  }
}

@media (max-width: 480px) {
  .hero-slide__title {
    font-size: clamp(1.3rem, 6.5vw, 1.7rem);
    padding: 10px 16px;
  }
  .reason-carousel {
    min-height: 500px;
  }
  .reason-slide h2 {
    font-size: 1.3rem;
  }
  .reason-slide p {
    font-size: 0.92rem;
  }
  .page-hero h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
}

/* PHASE 5c: Hero slide bg img (responsive srcset, object-fit cover) */
.hero-slide__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.hero-slide__title {
  z-index: 3;
}
@media (max-width: 760px) {
  .hero-slide__bg {
    object-position: center top;
  }
}

/* PHASE 5d: Mobile hero — resim kırpılmasın (portrait aspect-ratio) */
@media (max-width: 760px) {
  .hero {
    min-height: 0;
    aspect-ratio: 9 / 14;
  }
  .hero-slide__bg {
    object-fit: cover;
    object-position: center;
  }
  .hero__shade {
    background: linear-gradient(180deg, rgba(8, 16, 31, 0.08) 0%, rgba(8, 16, 31, 0.18) 50%, rgba(8, 16, 31, 0.55) 100%);
  }
}
@media (max-width: 480px) {
  .hero {
    aspect-ratio: 4 / 5;
  }
}

/* PHASE 5e: programlar.html — sol programlar listesi + sağ form */
.program-split {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 48px;
  align-items: start;
}
.program-side h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 12px 0 14px;
}
.program-side__lead {
  color: var(--muted);
  margin: 0 0 28px;
  font-size: 1rem;
}
.program-list {
  display: grid;
  gap: 14px;
}
.program-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.program-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.program-row__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  min-height: 36px;
  padding: 6px 10px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}
.program-row h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--ink);
}
.program-row p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
.program-row .link-button {
  color: var(--gold-vivid);
  font-weight: 700;
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .program-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 560px) {
  .program-row {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .program-row__badge {
    width: max-content;
  }
}
