/* === Base === */
:root {
  --navy: #08205C;
  --navy-dark: #061640;
  --gold: #F0B323;
  --gold-soft: rgba(240, 179, 35, 0.15);
  --ink: #0B1F3A;
  --text: #475569;
  --muted: #94A3B8;
  --bg: #F4F6F9;
  --bg-alt: #FFFFFF;
  --border: #E5E7EB;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 12px rgba(8, 32, 92, 0.06);
  --shadow-md: 0 10px 30px rgba(8, 32, 92, 0.08);
  --shadow-lg: 0 20px 60px rgba(8, 32, 92, 0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { color: var(--ink); font-weight: 800; line-height: 1.2; }
a { color: inherit; text-decoration: none; }

/* === Navigation === */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; gap: 16px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo {  width: 135px; display: block; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-weight: 500; color: var(--ink); font-size: 15px; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 10px; font-weight: 700; font-size: 15px;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s;
  border: none; font-family: inherit;
}
.btn-primary {
  background: var(--gold); color: var(--ink);
  box-shadow: 0 6px 18px rgba(240, 179, 35, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(240, 179, 35, 0.45); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 17px; }

/* === Hero === */
.hero {
  background: radial-gradient(circle at 20% 0%, #0d2d7d 0%, var(--navy) 40%, var(--navy-dark) 100%);
  color: #fff; padding: 80px 0 100px; position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 179, 35, 0.15), transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; position: relative; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(240, 179, 35, 0.15); border: 1px solid rgba(240, 179, 35, 0.3);
  color: var(--gold); font-size: 13px; font-weight: 600;
}
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-title {
  font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 56px);
  color: #fff; margin: 20px 0 16px; font-weight: 800; letter-spacing: -1px;
}
.hero-title .accent { color: var(--gold); }
.hero-title .muted { font-size: 0.6em; font-weight: 600; color: rgba(255,255,255,0.7); }
.hero-sub { font-size: 20px; color: var(--gold); font-weight: 600; margin-bottom: 16px; }
.hero-desc { font-size: 17px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 32px; max-width: 560px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  font-size: 13px; color: rgba(255,255,255,0.9);
}
.badge-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: var(--ink); font-size: 12px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}

/* === Lead Form === */
.form-card {
  background: #fff; border-radius: 18px; padding: 32px;
  box-shadow: var(--shadow-lg); position: relative;
}
.form-card::before {
  content: ""; position: absolute; top: -3px; left: -3px; right: -3px; bottom: -3px;
  background: linear-gradient(135deg, var(--gold), transparent); border-radius: 20px;
  z-index: -1; opacity: 0.4;
}
.form-head { margin-bottom: 24px; text-align: center; }
.form-head h3 { font-size: 24px; color: var(--ink); margin-bottom: 6px; }
.form-head p { font-size: 14px; color: var(--muted); }
.lead-form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field label span { color: #DC2626; }
.field input {
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 15px; font-family: inherit; transition: border-color .2s, box-shadow .2s;
  background: #FAFBFC;
}
.field input:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(240, 179, 35, 0.15); }


/* === Radio cards (Mode selection) === */
.radio-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.radio-card {
  position: relative; padding: 14px 12px; border: 1.5px solid var(--border);
  border-radius: 10px; cursor: pointer; text-align: center; background: #FAFBFC;
  transition: all .2s ease; display: flex; flex-direction: column; gap: 2px;
}
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card .radio-title { font-weight: 700; color: var(--ink); font-size: 15px; }
.radio-card .radio-sub { font-size: 12px; color: var(--muted); }
.radio-card:hover { border-color: var(--gold); background: #fff; }
.radio-card:has(input:checked) {
  border-color: var(--gold); background: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(240, 179, 35, 0.18);
}
.radio-card:has(input:checked) .radio-title { color: var(--navy); }

.form-submit { margin-top: 8px; width: 100%; padding: 14px; font-size: 16px; }
.form-success {
  display: none; text-align: center; color: #047857; font-weight: 600;
  background: #ECFDF5; padding: 12px; border-radius: 10px; font-size: 14px;
}
.form-success.show { display: block; }

/* === Sections === */
.section { padding: 90px 0; }
.section-alt { background: #fff; }
.section-head { max-width: 720px; margin: 0 auto 56px; }
.section-head.center { text-align: center; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700;
  color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px;
}
.section-head h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; letter-spacing: -0.5px; }
.section-head h2 .accent { color: var(--gold); }
.section-head p { font-size: 17px; color: var(--text); }

/* === Modes Grid === */
.modes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mode-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  position: relative; overflow: hidden;
}
.mode-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
}
.mode-card-alt::before { background: linear-gradient(90deg, var(--navy), var(--gold)); }
.mode-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(240, 179, 35, 0.4); }
.mode-tag {
  display: inline-block; padding: 6px 14px; background: var(--gold-soft);
  color: var(--navy); border-radius: 999px; font-size: 12px; font-weight: 700;
  margin-bottom: 16px; letter-spacing: 0.5px; text-transform: uppercase;
}
.mode-card h3 { font-size: 22px; margin-bottom: 12px; }
.mode-card > p { margin-bottom: 20px; }
.mode-list { list-style: none; }
.mode-list li {
  padding: 8px 0 8px 28px; position: relative; font-size: 15px; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mode-list li:last-child { border-bottom: none; }
.mode-list li::before {
  content: "✓"; position: absolute; left: 0; top: 8px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold-soft); color: var(--navy);
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* === About === */
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.about-text h2 { margin-bottom: 20px; }
.about-text > p { font-size: 17px; margin-bottom: 32px; line-height: 1.7; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat {
  padding: 24px; background: var(--bg); border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}
.stat-num { font-size: 32px; font-weight: 800; color: var(--navy); font-family: 'Playfair Display', serif; }
.stat-label { font-size: 14px; color: var(--text); margin-top: 4px; }
.about-visual {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border-radius: var(--radius); padding: 48px; color: #fff;
  position: relative; overflow: hidden;
}
.about-visual::after {
  content: ""; position: absolute; bottom: -80px; right: -80px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 179, 35, 0.3), transparent 70%);
}
.visual-quote {
  font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 800;
  color: var(--gold); margin-bottom: 16px; line-height: 1;
}
.visual-card p { color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.6; position: relative; z-index: 1; }

/* === Accreditations === */
.accred-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.accred-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 20px; text-align: center; transition: all .25s;
}
.accred-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.accred-mark {
  font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 800;
  color: var(--navy); margin-bottom: 8px;
}
.accred-item span { font-size: 14px; color: var(--muted); font-weight: 500; }

/* === Accordion === */
.accordion { max-width: 800px; margin: 0 auto; }
.acc-item {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  margin-bottom: 16px; overflow: hidden; transition: box-shadow .3s, border-color .3s;
}
.acc-item.open { box-shadow: var(--shadow-md); border-color: rgba(8, 32, 92, 0.2); }
.acc-trigger {
  width: 100%; display: flex; align-items: center; gap: 16px;
  padding: 22px 24px; background: none; border: none; cursor: pointer;
  font-family: inherit; text-align: left;
}
.acc-num {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--gold-soft); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; flex-shrink: 0; transition: all .3s;
}
.acc-item.open .acc-num { background: var(--navy); color: var(--gold); }
.acc-title { flex: 1; font-weight: 700; color: var(--ink); font-size: 16px; }
.acc-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: #F9FAFC; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 10px; transition: all .3s;
}
.acc-item.open .acc-arrow { background: var(--navy); border-color: var(--navy); color: var(--gold); transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; padding: 0 24px 0 76px; }
.acc-item.open .acc-body { max-height: 600px; padding: 0 24px 24px 76px; }
.acc-body p { margin-bottom: 12px; }
.acc-body ul { list-style: none; }
.acc-body ul li { padding: 6px 0 6px 20px; position: relative; font-size: 15px; line-height: 1.7; }
.acc-body ul li::before { content: "•"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }


/* === CTA Band === */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 70px 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(240, 179, 35, 0.2), transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(240, 179, 35, 0.15), transparent 40%);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap; position: relative;
}
.cta-inner h2 {
  color: #fff; font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px); line-height: 1.25;
}

/* === Footer === */
.footer {
  background: var(--navy-dark); color: rgba(255,255,255,0.75); padding: 60px 0 20px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 16px; letter-spacing: 0.5px; }
.footer p { font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  text-align: center; font-size: 13px; color: rgba(255,255,255,0.5);
}

/* === Nav actions === */
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  padding: 8px 12px; border-radius: 8px; transition: background .2s;
}
.nav-phone:hover { background: var(--bg); color: var(--gold); }
.nav-phone-icon { font-size: 14px; }

/* === Hero additions === */
.muted-line { color: rgba(255,255,255,0.85); font-weight: 700; }
.hero-checklist {
  list-style: none; margin: 8px 0 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px;
}
.hero-checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; line-height: 1.5; color: rgba(255,255,255,0.92);
}
.hero-checklist li > span:last-child { flex: 1; min-width: 0; }
.hero-checklist .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  font-size: 12px; font-weight: 800; flex-shrink: 0; margin-top: 2px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* === Form additions === */
.form-flag {
  display: inline-block; background: var(--gold); color: var(--ink);
  font-size: 12px; font-weight: 800; letter-spacing: 0.5px;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 14px;
}
.form-micro {
  font-size: 12px; color: var(--muted); text-align: center; margin-top: 4px;
}

/* === Trust Strip === */
.trust-strip {
  background: #fff; border-bottom: 1px solid var(--border); padding: 24px 0;
}
.trust-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  flex: 1; min-width: 130px;
}
.trust-item strong {
  font-family: 'Playfair Display', serif; font-size: 22px; color: var(--navy); font-weight: 800;
}
.trust-item span { font-size: 12px; color: var(--muted); margin-top: 2px; letter-spacing: 0.5px; text-transform: uppercase; }

/* === Benefits Grid === */
.benefits-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.benefit-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 24px; text-align: left; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.benefit-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(240, 179, 35, 0.5);
}
.benefit-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-soft), rgba(240, 179, 35, 0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 18px;
}
.benefit-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--ink); }
.benefit-card p { font-size: 14px; line-height: 1.6; color: var(--text); }

/* === Mode card extras === */
.mode-popular { border-color: var(--gold); position: relative; }
.mode-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold); color: var(--ink);
  padding: 4px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase;
}
.mode-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-weight: 700; color: var(--navy);
  border-bottom: 2px solid var(--gold); padding-bottom: 2px;
  transition: color .2s, gap .2s;
}
.mode-cta:hover { color: var(--gold); gap: 10px; }

/* === Specialisations === */
.spec-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.spec-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 20px; text-align: center; transition: all .25s;
}
.spec-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: var(--gold); background: linear-gradient(180deg, #fff, rgba(240, 179, 35, 0.04));
}
.spec-icon { font-size: 32px; display: block; margin-bottom: 10px; }
.spec-card h4 { font-size: 15px; color: var(--ink); font-weight: 700; }

/* === Career Outcomes === */
.outcomes-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.outcome-card {
  background: #fff; border-radius: var(--radius); padding: 32px 24px;
  border-top: 4px solid var(--gold); box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.outcome-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.outcome-num {
  font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 800;
  color: var(--gold); line-height: 1; margin-bottom: 14px;
}
.outcome-card h3 { font-size: 18px; margin-bottom: 10px; }
.outcome-card p { font-size: 14px; line-height: 1.6; }

/* === Testimonials === */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; position: relative; transition: transform .25s, box-shadow .25s;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quote-mark {
  position: absolute; top: 12px; right: 24px;
  font-family: 'Playfair Display', serif; font-size: 80px;
  color: var(--gold-soft); line-height: 1; font-weight: 800;
}
.testimonial blockquote {
  font-size: 15px; line-height: 1.7; color: var(--text);
  font-style: italic; margin-bottom: 24px; position: relative; z-index: 1;
}
.testimonial figcaption {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--gold); font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.t-name { font-weight: 700; color: var(--ink); font-size: 14px; }
.t-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* === Admission Steps === */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative;
}
.steps-grid::before {
  content: ""; position: absolute; top: 36px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(to right, var(--gold) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 22px; text-align: center; position: relative; z-index: 1;
  transition: transform .25s, box-shadow .25s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14px; line-height: 1.6; }
.steps-cta { text-align: center; margin-top: 40px; }

/* === FAQ accordion: '?' marker === */
.accordion-faq .acc-num {
  background: var(--navy); color: var(--gold); font-family: 'Playfair Display', serif;
}
.accordion-faq .acc-item.open .acc-num { background: var(--gold); color: var(--navy); }

/* === CTA Band additions === */
.cta-inner { align-items: center; }
.cta-text { flex: 1; min-width: 280px; }
.cta-eyebrow {
  display: inline-block; background: rgba(240, 179, 35, 0.15);
  color: var(--gold); padding: 6px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 700; margin-bottom: 16px;
}
.cta-text p { color: rgba(255,255,255,0.75); font-size: 16px; max-width: 520px; margin-top: 14px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* === Sticky Mobile CTA === */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  display: none; padding: 10px; gap: 10px;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border); box-shadow: 0 -6px 24px rgba(8, 32, 92, 0.1);
  transform: translateY(100%); transition: transform .3s ease;
}
.mobile-cta.show { transform: translateY(0); }
.mobile-cta-btn {
  flex: 1; padding: 14px 12px; border-radius: 10px; text-align: center;
  font-weight: 700; font-size: 15px; transition: transform .15s;
}
.mobile-cta-btn:active { transform: scale(0.97); }
.mobile-cta-call { background: var(--bg); color: var(--ink); border: 1px solid var(--border); flex: 0.6; }
.mobile-cta-apply { background: var(--gold); color: var(--ink); box-shadow: 0 4px 12px rgba(240, 179, 35, 0.35); }



/* === Responsive === */
@media (max-width: 992px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 60px 0 80px; }
  .nav-links, .nav-phone-text { display: none; }
  .modes-grid { grid-template-columns: 1fr; }
  .accred-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 70px 0; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-grid { grid-template-columns: repeat(3, 1fr); }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .trust-inner { gap: 16px; }
  .trust-item { min-width: 110px; }
  .trust-item strong { font-size: 18px; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .nav-cta { padding: 10px 14px; font-size: 13px; }
  .nav-phone { padding: 6px 8px; }
  .brand-logo { /*height: 40px;*/ }
  .hero { padding: 48px 0 56px; }
  .hero-title { font-size: 30px; line-height: 1.15; }
  .hero-sub { font-size: 16px; }
  .hero-desc { font-size: 15px; }
  .hero-checklist { grid-template-columns: 1fr; gap: 8px; }
  .hero-checklist li { font-size: 14px; }
  .form-card { padding: 24px; }
  .form-head h3 { font-size: 20px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .mode-card { padding: 28px 24px; }
  .stats-grid { grid-template-columns: 1fr; }
  .accred-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .accred-item { padding: 22px 14px; }
  .about-visual { padding: 32px; }
  .visual-quote { font-size: 42px; }
  .acc-trigger { padding: 18px 16px; gap: 12px; }
  .acc-body { padding-left: 16px !important; padding-right: 16px !important; }
  .acc-item.open .acc-body { padding: 0 16px 20px 16px !important; }
  .cta-inner { flex-direction: column; text-align: center; align-items: stretch; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer { padding: 48px 0 20px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .spec-card { padding: 20px 14px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .trust-strip { padding: 18px 0; }
  .trust-inner { gap: 12px; }
  .trust-item { min-width: 90px; }
  .trust-item strong { font-size: 16px; }
  .trust-item span { font-size: 10px; }
}

.captcha-wrap {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: 12px;
    align-items: center;
}

.captcha-question {
    padding: 12px 14px;
    border-radius: 10px;
    background: linear-gradient(225deg, #1d253c, #3e4757);
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
}

.captcha-equals {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
}

@media (max-width: 640px) {
    .captcha-wrap {
        grid-template-columns: 1fr;
    }

    .captcha-equals {
        display: none;
    }
}

.text-white{
    color:white !important;

}
.text-primary {
    color: var(--gold) !important;
}
.text-uppercase{
    text-transform:uppercase !important;
}
.play-fair {
    font-family: 'Playfair Display',sans-serif !important;
}
.fs-36{
    font-size:36px !important;
}
.fs-27 {
    font-size: 27px !important;
}
.fs-26 {
    font-size: 26px !important;
}
.mb-4{
    margin-bottom:18px !important;
}
.mt-4{
    margin-top:18px !important;
}
.border-white{
    border:1px solid white !important;
}
.background-transparent{
    background:transparent !important;
}
.fw-600{
    font-weight:600 !important;
}