/* ═══ PathCore v5 — Production CSS ═══ */
/* Mobile-first, optimized for INP & LCP */

:root {
  --navy: #1E2841;
  --navy-dark: #151D31;
  --navy-light: #2A3654;
  --orange: #E8622C;
  --orange-light: #F07A4A;
  --orange-glow: rgba(232,98,44,0.15);
  --white: #FFFFFF;
  --off-white: #FAF9F7;
  --cream: #F5F2ED;
  --gray: #8A92A6;
  --gray-dark: #5C6479;
  --text: #2A2D3A;
  --border: #E8E5E0;
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: var(--font-heading); line-height: 1.2; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; min-height: 44px; min-width: 44px; }
a { text-decoration: none; color: inherit; }

/* ── Animations ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes shimmer { 0% { background-position:-200% 0; } 100% { background-position:200% 0; } }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.6; } }
@keyframes nudge { 0%,85%,100% { transform:scale(1); } 90% { transform:scale(1.15); } 95% { transform:scale(1.05); } }
@keyframes slideDown { from { opacity:0; max-height:0; } to { opacity:1; max-height:800px; } }

.fade-up { animation: fadeUp .7s ease-out both; }
.fade-up-d1 { animation-delay: .1s; }
.fade-up-d2 { animation-delay: .2s; }
.fade-up-d3 { animation-delay: .3s; }

/* ── Promo Banner ── */
.promo-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001; height: 44px;
  display: flex; align-items: center; justify-content: center; padding: 0 40px 0 16px;
  color: var(--white); font-size: 13px; font-weight: 600;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 25%, var(--orange) 50%, var(--orange-light) 75%, var(--orange) 100%);
  background-size: 200% 100%; animation: shimmer 3s linear infinite;
  box-shadow: 0 2px 12px rgba(232,98,44,0.35);
}
.promo-banner .pulse-dot { width:8px; height:8px; border-radius:50%; background:var(--white); animation:pulse 1.5s ease-in-out infinite; margin-right:10px; flex-shrink:0; }
.promo-banner .close-btn { position:absolute; right:12px; top:50%; transform:translateY(-50%); background:rgba(255,255,255,0.15); border:none; color:var(--white); width:24px; height:24px; border-radius:50%; font-size:12px; display:flex; align-items:center; justify-content:center; min-height:24px; min-width:24px; }
.promo-banner.hidden { display: none; }

/* ── Navigation ── */
.main-nav {
  position: fixed; top: 44px; left: 0; right: 0; z-index: 1000;
  transition: all .3s ease; padding: 16px 24px;
}
.main-nav.scrolled, .main-nav.page-nav {
  background: rgba(21,29,49,0.95); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.main-nav .inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo-btn { display: flex; align-items: center; gap: 12px; }
.nav-logo-img { height: 36px; width: 36px; border-radius: 50%; object-fit: cover; }
.logo-text .name { color: var(--white); font-size: 18px; font-weight: 800; letter-spacing: 2px; line-height: 1; }
.logo-text .sub { color: var(--orange); font-size: 10px; font-weight: 700; letter-spacing: 3px; line-height: 1.2; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links .link { color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 500; letter-spacing: .5px; transition: color .2s; padding: 0; }
.nav-links .link:hover { color: var(--white); }
.nav-links .cta { background: var(--orange); color: var(--white); padding: 10px 24px; border-radius: 8px; font-size: 13px; font-weight: 700; box-shadow: 0 4px 20px var(--orange-glow); transition: transform .2s; }
.nav-links .cta:hover { transform: translateY(-2px); }
.hamburger { display: none; color: var(--white); font-size: 24px; padding: 4px; }
.mobile-menu { display: none; background: var(--navy-dark); padding: 20px 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-menu.open { display: block; }
.mobile-menu .link { display: block; width: 100%; text-align: left; color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 500; padding: 14px 0; }
.mobile-menu .cta { display: block; width: 100%; background: var(--orange); color: var(--white); padding: 14px 24px; border-radius: 8px; font-size: 14px; font-weight: 700; margin-top: 12px; text-align: center; }

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

/* ── Sections shared ── */
.section { padding: 100px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.eyebrow { color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-size: clamp(28px,4vw,38px); font-weight: 600; color: var(--navy); }
.section-subtitle { color: var(--gray-dark); font-size: 16px; margin-top: 16px; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.text-center { text-align: center; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden;
  padding: 140px 24px 60px;
}
.hero .glow1 { position: absolute; top: -20%; right: -10%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%); }
.hero .grid-bg { position: absolute; inset: 0; opacity: 0.03; background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px); background-size: 60px 60px; }
.hero .content { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.hero .offer-badge { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, rgba(232,98,44,0.2), rgba(232,98,44,0.08)); border: 1px solid rgba(232,98,44,0.4); padding: 8px 18px; border-radius: 30px; margin-bottom: 24px; }
.hero .offer-badge span { color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.hero h1 { color: var(--white); font-size: clamp(36px,5vw,56px); font-weight: 600; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
.hero h1 em { color: var(--orange); font-style: italic; }
.hero .desc { color: rgba(255,255,255,0.65); font-size: 16px; line-height: 1.7; margin-bottom: 12px; max-width: 520px; }
.hero .germany-line { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.6; margin-bottom: 32px; max-width: 480px; font-style: italic; }
.hero .btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: var(--orange); color: var(--white); padding: 16px 40px; border-radius: 12px; font-size: 15px; font-weight: 700; box-shadow: 0 8px 30px rgba(232,98,44,0.35); transition: transform .3s; }
.btn-primary:hover { transform: translateY(-3px); }
.btn-secondary { background: rgba(255,255,255,0.06); color: var(--white); padding: 16px 36px; border-radius: 12px; font-size: 15px; font-weight: 600; border: 1px solid rgba(255,255,255,0.15); transition: background .3s; }
.btn-secondary:hover { background: rgba(255,255,255,0.1); }
.hero .trust-row { display: flex; gap: 32px; margin-top: 36px; flex-wrap: wrap; }
.hero .trust-item { display: flex; align-items: center; gap: 8px; }
.hero .trust-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--white); }
.hero .trust-label { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 500; }

/* ── Hero Stats Sidebar (v6) ── */
.hero-stats-panel { background: rgba(255,255,255,0.04); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 28px; }
.hero-stats-panel .stat-card { background: rgba(255,255,255,0.04); border-radius: 16px; padding: 20px; border: 1px solid rgba(255,255,255,0.06); margin-bottom: 12px; text-align: center; }
.hero-stats-panel .stat-card:last-child { margin-bottom: 0; }
.hero-stats-panel .stat-num { color: var(--orange); font-size: 32px; font-weight: 700; font-family: var(--font-heading); line-height: 1; }
.hero-stats-panel .stat-label { color: var(--white); font-size: 13px; font-weight: 600; margin-top: 6px; }
.hero-stats-panel .stat-sub { color: var(--gray); font-size: 11px; margin-top: 3px; }

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-stats-panel .stat-card { margin-bottom: 0; }
}

/* Stats bar removed in v6 — stats are now inside hero sidebar */

/* ── About ── */
.geo-block { max-width: 800px; margin: 0 auto 56px; background: var(--off-white); padding: 28px; border-radius: 12px; border-left: 4px solid var(--orange); }
.geo-block p { font-size: 15px; line-height: 1.8; }
.geo-block strong { color: var(--navy); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.feature-card { background: var(--off-white); border-radius: 16px; padding: 32px; border-top: 4px solid var(--orange); transition: all .3s; }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(30,40,65,0.1); }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--white); margin-bottom: 18px; }
.feature-card h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--gray-dark); line-height: 1.7; }

/* ── Services Grid ── */
.bg-cream { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.service-card { background: var(--white); border-radius: 16px; padding: 28px; border: 1px solid var(--border); transition: all .3s; }
.service-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.service-num { color: var(--orange); font-size: 36px; font-weight: 700; font-family: var(--font-heading); margin-bottom: 8px; }
.service-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-card p { font-size: 14px; color: var(--gray-dark); line-height: 1.7; }

/* ── Team (v6: simplified — avatar + name + role only) ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.team-card { background: var(--off-white); border-radius: 20px; padding: 32px 20px; text-align: center; border: 1px solid var(--border); transition: all .3s; }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(30,40,65,0.08); border-color: var(--orange); }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 18px; background: linear-gradient(135deg, var(--navy-light), var(--navy)); display: flex; align-items: center; justify-content: center; border: 4px solid var(--white); box-shadow: 0 8px 24px rgba(30,40,65,0.15); }
.team-avatar span { color: var(--orange); font-size: 32px; font-family: var(--font-heading); font-weight: 600; }
.team-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.team-role { color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

/* ── FAQ ── */
.faq-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.faq-tab { padding: 10px 20px; border-radius: 10px; background: var(--white); color: var(--navy); font-size: 13px; font-weight: 700; transition: all .2s; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.faq-tab.active { background: var(--orange); color: var(--white); box-shadow: 0 4px 14px rgba(232,98,44,0.3); }
.faq-item { background: var(--white); border-radius: 12px; margin-bottom: 10px; border: 1px solid var(--border); overflow: hidden; transition: all .2s; }
.faq-item.open { border-color: var(--orange); box-shadow: 0 4px 16px rgba(232,98,44,0.08); }
.faq-question { width: 100%; padding: 20px 24px; background: none; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-question span.q { font-size: 15px; font-weight: 700; color: var(--navy); flex: 1; }
.faq-toggle { width: 28px; height: 28px; border-radius: 50%; background: var(--off-white); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; flex-shrink: 0; transition: all .2s; }
.faq-item.open .faq-toggle { background: var(--orange); color: var(--white); transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 22px; border-top: 1px solid var(--border); }
.faq-item.open .faq-answer { display: block; animation: slideDown .3s ease-out; }
.faq-answer p { font-size: 14px; color: var(--gray-dark); line-height: 1.8; margin-top: 16px; }

/* ── Registration Form ── */
.register-form-wrap { max-width: 760px; margin: 0 auto; }
.register-form-wrap h2 { font-size: clamp(32px,5vw,44px); font-weight: 700; color: var(--navy); margin-bottom: 16px; line-height: 1.15; }
.register-form-wrap > p { color: var(--gray-dark); font-size: 16px; line-height: 1.7; max-width: 540px; margin: 0 auto 40px; }
.form-box { background: var(--off-white); border-radius: 24px; padding: 36px 32px; border: 1px solid var(--border); box-shadow: 0 8px 40px rgba(30,40,65,0.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-full { margin-bottom: 14px; }
.fi { width: 100%; padding: 14px 18px; border-radius: 10px; border: 1px solid var(--border); background: var(--white); font-size: 15px; color: var(--text); transition: all .2s; appearance: none; -webkit-appearance: none; }
.fi:focus { border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-glow); outline: none; }
.fi::placeholder { color: var(--gray); }
select.fi { background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A92A6' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 16px center; background-size: 18px; padding-right: 44px; }
select.fi.empty { color: var(--gray); }

/* Upload */
.upload-label { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; border-radius: 10px; border: 1px dashed var(--border); background: var(--white); cursor: pointer; transition: all .2s; }
.upload-label:hover { border-color: var(--orange); background: #FFFAF7; }
.upload-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(232,98,44,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.upload-text .main { font-size: 14px; font-weight: 600; color: var(--gray); }
.upload-text .sub { font-size: 11px; color: var(--gray); margin-top: 2px; }
.upload-text.has-file .main { color: var(--navy); }
.upload-browse { font-size: 11px; font-weight: 700; color: var(--orange); background: rgba(232,98,44,0.08); padding: 6px 12px; border-radius: 6px; flex-shrink: 0; }

/* Schedule picker */
.schedule-box { background: var(--white); border-radius: 12px; border: 1px solid var(--border); padding: 16px 18px; margin-bottom: 22px; }
.schedule-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.schedule-header .label { font-size: 14px; font-weight: 700; color: var(--navy); }
.date-label, .time-label { font-size: 11px; font-weight: 700; color: var(--gray-dark); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.date-scroll { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.date-pill { flex-shrink: 0; padding: 10px 8px; min-width: 56px; border-radius: 10px; border: 1.5px solid var(--border); background: var(--white); color: var(--navy); text-align: center; transition: all .15s; }
.date-pill.active { border-color: var(--orange); background: var(--orange); color: var(--white); }
.date-pill .dow { font-size: 9px; font-weight: 700; opacity: .7; letter-spacing: .5px; text-transform: uppercase; }
.date-pill .day { font-size: 16px; font-weight: 800; line-height: 1.2; margin-top: 2px; }
.date-pill .mon { font-size: 9px; opacity: .7; margin-top: 1px; }
.time-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 6px; margin-top: 14px; }
.time-pill { padding: 9px 4px; border-radius: 8px; border: 1.5px solid var(--border); background: var(--white); color: var(--navy); font-size: 12px; font-weight: 700; transition: all .15s; }
.time-pill.active { border-color: var(--orange); background: var(--orange); color: var(--white); }

.submit-btn { width: 100%; padding: 16px 0; border-radius: 12px; background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: var(--white); font-size: 16px; font-weight: 700; box-shadow: 0 8px 24px rgba(232,98,44,0.35); transition: transform .3s; }
.submit-btn:hover { transform: translateY(-2px); }

.form-status { margin-top: 14px; padding: 12px 16px; border-radius: 10px; font-size: 13px; font-weight: 600; text-align: center; }
.form-status.success { background: #ECFDF5; color: #065F46; }
.form-status.error { background: #FEF2F2; color: #991B1B; }

.trust-badges { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--border); }
.trust-badge { display: flex; align-items: center; gap: 6px; }
.trust-badge .check { color: var(--orange); font-weight: 800; }
.trust-badge .label { font-size: 13px; color: var(--gray-dark); font-weight: 600; }

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ── Programs Page ── */
.page-hero { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); padding: 140px 24px 80px; position: relative; overflow: hidden; text-align: center; }
.page-hero .glow { position: absolute; top: -30%; right: -15%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%); }
.page-hero .inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.back-btn { display: inline-block; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 8px 16px; font-size: 12px; font-weight: 600; margin-bottom: 24px; }
.page-hero h1 { color: var(--white); font-size: clamp(34px,5vw,48px); font-weight: 600; margin-bottom: 20px; line-height: 1.15; }
.page-hero h1 em { color: var(--orange); font-style: italic; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 17px; line-height: 1.7; max-width: 600px; margin: 0 auto; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; margin-top: -40px; }
.pricing-card { background: var(--white); border-radius: 20px; padding: 36px; border: 1px solid var(--border); position: relative; transition: all .3s; box-shadow: 0 4px 24px rgba(30,40,65,0.05); }
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card.popular { border: 2px solid var(--orange); box-shadow: 0 20px 60px rgba(232,98,44,0.15); }
.popular-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--white); padding: 6px 20px; border-radius: 20px; font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }

/* ── Comparison Table (v5 simplified) ── */
.comparison-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.comparison-table thead th { padding: 22px 24px; color: var(--white); font-size: 13px; font-weight: 700; }
.comparison-table thead th:first-child { text-align: left; background: var(--navy); }
.comparison-table thead th:nth-child(2) { text-align: center; background: var(--navy); }
.comparison-table thead th:nth-child(3) { text-align: center; background: var(--orange); }
.comparison-table tbody td { padding: 16px 24px; font-size: 14px; border-bottom: 1px solid var(--border); }
.comparison-table tbody td:first-child { color: var(--text); font-weight: 500; }
.comparison-table tbody td:nth-child(2), .comparison-table tbody td:nth-child(3) { text-align: center; }
.comparison-table tbody tr:nth-child(even) { background: var(--off-white); }
.comparison-table tbody tr:nth-child(even) td:nth-child(3) { background: rgba(232,98,44,0.04); }
.comparison-table tbody tr:nth-child(odd) td:nth-child(3) { background: rgba(232,98,44,0.02); }
.check-circle { display: inline-flex; width: 28px; height: 28px; border-radius: 50%; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; }
.check-navy { background: rgba(30,40,65,0.08); color: var(--navy); }
.check-orange { background: var(--orange); color: var(--white); }
.dash { color: var(--gray); font-size: 20px; }

/* ── Language Cards ── */
.lang-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.lang-card { background: var(--white); border-radius: 18px; overflow: hidden; border: 1px solid var(--border); position: relative; transition: all .3s; display: flex; flex-direction: column; }
.lang-card:hover { transform: translateY(-6px); }
.lang-card.highlight { border-width: 2px; }
.lang-badge { position: absolute; top: 14px; right: 14px; z-index: 2; color: var(--white); padding: 4px 10px; border-radius: 6px; font-size: 9px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.lang-header { padding: 24px 24px 20px; }
.lang-level-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 800; font-size: 18px; }
.lang-card h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin: 12px 0 6px; font-family: var(--font-body); }
.lang-meta { display: flex; gap: 12px; font-size: 11px; color: var(--gray-dark); font-weight: 600; }
.lang-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.lang-body p { font-size: 13px; color: var(--gray-dark); line-height: 1.7; margin-bottom: 18px; }
.outcome-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.outcome-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 6px; }
.outcome-check { width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.outcome-text { font-size: 12px; color: var(--text); line-height: 1.6; }
.enquire-btn { width: 100%; padding: 13px 0; border-radius: 10px; color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: .5px; transition: transform .2s; margin-top: auto; }
.enquire-btn:hover { transform: translateY(-2px); }

/* ── Journey bar ── */
.journey-bar { margin-top: -30px; margin-bottom: 40px; background: var(--white); border-radius: 16px; padding: 20px 24px; box-shadow: 0 4px 24px rgba(30,40,65,0.06); border: 1px solid var(--border); }
.journey-bar .label { font-size: 11px; font-weight: 700; color: var(--gray-dark); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; text-align: center; }
.journey-steps { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; align-items: center; }
.journey-level { width: 36px; height: 36px; border-radius: 10px; color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; }
.journey-arrow { color: var(--gray); font-size: 14px; }

/* ── WhatsApp Widget (NEW in v5) ── */
.whatsapp-widget {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform .3s; animation: nudge 10s ease-in-out infinite;
}
.whatsapp-widget:hover { transform: scale(1.1); animation: none; }
.whatsapp-widget svg { width: 32px; height: 32px; }
.wa-tooltip { position: absolute; right: 68px; top: 50%; transform: translateY(-50%); background: var(--white); color: var(--text); padding: 8px 14px; border-radius: 8px; font-size: 12px; font-weight: 600; white-space: nowrap; box-shadow: 0 4px 16px rgba(0,0,0,0.1); opacity: 0; pointer-events: none; transition: opacity .3s; }
.whatsapp-widget:hover .wa-tooltip { opacity: 1; }

@media (max-width: 768px) {
  .whatsapp-widget { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .wa-tooltip { display: none; }
}

/* ── Footer ── */
.footer { background: var(--navy-dark); padding: 60px 24px 32px; border-top: 4px solid var(--orange); }
.footer .inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; margin-bottom: 32px; }
.footer h4 { color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: 1px; margin-bottom: 14px; font-family: var(--font-body); }
.footer .footer-link { display: block; color: var(--gray); font-size: 13px; margin-bottom: 8px; cursor: pointer; transition: color .2s; }
.footer .footer-link:hover { color: var(--orange); }
.footer .footer-desc { color: var(--gray); font-size: 13px; line-height: 1.7; }
.privacy-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 14px 18px; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.privacy-box .icon { color: var(--orange); font-size: 18px; }
.privacy-box .title { color: var(--white); font-size: 12px; font-weight: 700; margin-bottom: 2px; }
.privacy-box .text { color: var(--gray); font-size: 11px; line-height: 1.6; }
.privacy-box a { color: var(--orange); text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { color: rgba(255,255,255,0.3); font-size: 12px; }

/* ── Pages container ── */
.page { display: none; }
.page.active { display: block; }

/* ── Trust section (programs page) ── */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.trust-card { background: var(--white); border-radius: 12px; padding: 20px; border-left: 4px solid var(--orange); }
.trust-card .icon { font-size: 24px; margin-bottom: 8px; }
.trust-card .title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.trust-card .desc { font-size: 12px; color: var(--gray-dark); line-height: 1.6; }

/* CTA block */
.cta-block { background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: 20px; padding: 40px 32px; text-align: center; }
.cta-block h3 { color: var(--white); font-size: 24px; font-weight: 600; margin-bottom: 12px; }
.cta-block p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 24px; }

/* Summary cards below table */
.summary-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.summary-card { background: var(--white); border-radius: 12px; padding: 20px 24px; text-align: center; }
.summary-card.popular { border: 2px solid var(--orange); box-shadow: 0 8px 24px rgba(232,98,44,0.1); }
.summary-card .tier { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.summary-card .price { font-size: 28px; font-weight: 700; color: var(--navy); font-family: var(--font-heading); }
.summary-card .orig { font-size: 14px; color: var(--gray); text-decoration: line-through; margin-left: 8px; }
.summary-card .count { font-size: 11px; color: var(--gray-dark); margin-top: 4px; }
.summary-card .btn { display: block; margin-top: 14px; width: 100%; padding: 12px 0; border-radius: 10px; color: var(--white); font-size: 13px; font-weight: 700; }

@media (max-width: 480px) {
  .summary-cards { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}
