:root {
  --ties-blue: #123f8c;
  --ties-blue-deep: #08245a;
  --ties-blue-soft: #eaf2ff;
  --ties-red: #e21f26;
  --ties-red-dark: #b71118;
  --ties-gold: #f6b93b;
  --ties-green: #0f9f6e;
  --ink: #101827;
  --muted: #5b6678;
  --surface: #ffffff;
  --soft: #f5f8fc;
  --line: #dce5f0;
  --shadow: 0 24px 70px rgba(8, 36, 90, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(circle at top left, rgba(18, 63, 140, .08), transparent 34rem),
    linear-gradient(180deg, #fff 0%, var(--soft) 42%, #fff 100%);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

img {
  max-width: 100%;
}

.top-cta {
  align-items: center;
  background: linear-gradient(90deg, var(--ties-red-dark), var(--ties-red));
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  font-size: .88rem;
  font-weight: 900;
  gap: .55rem 1.3rem;
  justify-content: center;
  padding: .68rem 1rem;
  position: relative;
  z-index: 100;
}

.top-cta span,
.top-cta a {
  align-items: center;
  display: inline-flex;
  gap: .45rem;
}

.top-cta a {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.site-header {
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(220, 229, 240, .95);
  box-shadow: 0 12px 34px rgba(16, 24, 39, .05);
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(18px);
}

.brand-link {
  align-items: center;
  display: inline-flex;
  gap: .85rem;
  min-width: 0;
}

.brand-logo {
  height: 58px;
  object-fit: contain;
  width: 58px;
}

.brand-text {
  min-width: 0;
}

.btn {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: .92rem;
  font-weight: 900;
  gap: .55rem;
  justify-content: center;
  min-height: 44px;
  padding: .76rem 1.05rem;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--ties-red), #ff4a3d);
  color: #fff;
  box-shadow: 0 16px 34px rgba(226, 31, 38, .26);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--ties-red-dark), var(--ties-red));
  color: #fff;
  box-shadow: 0 18px 38px rgba(226, 31, 38, .32);
}

.btn-secondary {
  background: #fff;
  border: 1px solid rgba(18, 63, 140, .18);
  color: var(--ties-blue);
  box-shadow: 0 12px 26px rgba(8, 36, 90, .08);
}

.btn-secondary:hover,
.btn-outline:hover {
  border-color: var(--ties-blue);
  color: var(--ties-blue);
}

.btn-outline {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn-light {
  background: #fff;
  color: var(--ties-blue-deep);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .18);
}

.btn-lg {
  min-height: 52px;
  padding: .9rem 1.3rem;
}

.hero-section {
  align-items: center;
  display: grid;
  min-height: 90vh;
  overflow: hidden;
  position: relative;
}

.hero-section::after {
  background: linear-gradient(90deg, var(--ties-red) 0 33%, var(--ties-blue) 33% 66%, var(--ties-gold) 66% 100%);
  bottom: 0;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-bg {
  background:
    linear-gradient(105deg, rgba(255, 255, 255, .98) 0%, rgba(245, 248, 252, .94) 47%, rgba(245, 248, 252, .45) 68%, rgba(8, 36, 90, .24) 100%),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1800&q=82") center/cover;
  inset: 0;
  position: absolute;
}

.hero-bg::before {
  background:
    linear-gradient(135deg, rgba(18, 63, 140, .12), transparent 42%),
    repeating-linear-gradient(135deg, rgba(18, 63, 140, .06) 0 1px, transparent 1px 16px);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-layout {
  align-items: center;
  display: grid;
  min-height: 90vh;
  padding-bottom: clamp(1.5rem, 3vh, 2.6rem) !important;
  padding-top: clamp(1.5rem, 3vh, 2.6rem) !important;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: minmax(0, .98fr) minmax(390px, .82fr);
  }
}

.hero-copy,
.hero-copy h1,
.hero-sub,
.urgency-line {
  max-width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: normal;
}

.hero-copy h1 {
  color: var(--ties-blue-deep);
  font-size: clamp(1.85rem, 2.25vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.16;
  max-width: 640px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .7);
}

.hero-sub {
  color: #334155;
  font-size: clamp(.98rem, 1.35vw, 1.08rem);
  font-weight: 700;
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 680px;
}

.eyebrow {
  align-items: center;
  color: var(--ties-red);
  display: inline-flex;
  font-size: .78rem;
  font-weight: 900;
  gap: .5rem;
  letter-spacing: .08em;
  margin-bottom: .9rem;
  text-transform: uppercase;
}

.urgency-line {
  align-items: center;
  background: #fff4f4;
  border: 1px solid rgba(226, 31, 38, .22);
  border-left: 5px solid var(--ties-red);
  border-radius: 8px;
  color: var(--ties-red-dark);
  display: inline-flex;
  font-weight: 900;
  gap: .5rem;
  margin-top: 1rem;
  padding: .72rem .95rem;
}

.hero-proof {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
}

.hero-proof span {
  align-items: center;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(220, 229, 240, .9);
  border-radius: 8px;
  color: #1f2f46;
  display: flex;
  font-size: .93rem;
  font-weight: 850;
  gap: .55rem;
  min-height: 48px;
  padding: .75rem .9rem;
  box-shadow: 0 10px 24px rgba(8, 36, 90, .07);
}

.hero-proof i {
  color: var(--ties-green);
}

.hero-ticket {
  background: rgba(8, 36, 90, .94);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.25rem;
  max-width: 560px;
  overflow: hidden;
}

.hero-ticket div {
  background: rgba(255, 255, 255, .07);
  padding: 1rem;
}

.hero-ticket strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 900;
}

.hero-ticket span {
  color: #dbeafe;
  display: block;
  font-size: .78rem;
  font-weight: 850;
  margin-top: .1rem;
  text-transform: uppercase;
}

.hero-panel,
.bottom-form {
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(220, 229, 240, .95);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.2rem;
  position: relative;
  z-index: 3;
}

.form-ribbon {
  background: var(--ties-blue);
  border-radius: 8px 8px 0 0;
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  left: 1.35rem;
  padding: .45rem .75rem;
  position: absolute;
  right: 1.35rem;
  text-align: center;
  top: -18px;
}

.panel-head {
  border-bottom: 1px solid var(--line);
  margin-bottom: .9rem;
  padding: .75rem 0 .9rem;
}

.panel-head h2 {
  color: var(--ties-blue-deep);
  font-size: 1.32rem;
  font-weight: 900;
  margin-top: .55rem;
}

.panel-head p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.55;
  margin-top: .3rem;
}

.discount-pill {
  background: var(--ties-blue-soft);
  border: 1px solid rgba(18, 63, 140, .16);
  border-radius: 999px;
  color: var(--ties-blue);
  display: inline-flex;
  font-size: .76rem;
  font-weight: 900;
  padding: .36rem .68rem;
  text-transform: uppercase;
}

.lead-form {
  display: grid;
  gap: .85rem;
}

.hidden-field {
  display: none !important;
}

#cta-form .lead-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#cta-form .lead-form > fieldset,
#cta-form .lead-form > .btn,
#cta-form .lead-form > a.btn,
#cta-form .lead-form > .safe-note {
  grid-column: 1 / -1;
}

.lead-form label,
.lead-form legend {
  color: #26354a;
  font-size: .82rem;
  font-weight: 900;
}

.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="email"] {
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: block;
  font-size: .95rem;
  margin-top: .35rem;
  min-height: 44px;
  outline: none;
  padding: .68rem .85rem;
  width: 100%;
}

.lead-form input:focus {
  border-color: var(--ties-blue);
  box-shadow: 0 0 0 4px rgba(18, 63, 140, .11);
}

.lead-form fieldset {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  padding: .68rem .85rem;
}

.radio-option {
  align-items: center;
  display: inline-flex;
  gap: .45rem;
  margin: 0;
}

.safe-note {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.5;
}

.safe-note a {
  color: var(--ties-blue);
  font-weight: 900;
}

.panel-microcopy {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
  padding-top: .85rem;
}

.panel-microcopy span {
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #334155;
  font-size: .78rem;
  font-weight: 850;
  padding: .42rem .65rem;
}

.program-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.program-strip div div {
  align-items: center;
  background: linear-gradient(180deg, #fff, #f7faff);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #1e2c41;
  display: flex;
  font-weight: 850;
  gap: .75rem;
  min-height: 72px;
  padding: 1rem;
}

.program-strip i {
  align-items: center;
  background: var(--ties-blue-soft);
  border-radius: 8px;
  color: var(--ties-blue);
  display: inline-flex;
  flex: 0 0 auto;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.stats-section {
  background:
    linear-gradient(135deg, rgba(8, 36, 90, .98), rgba(18, 63, 140, .94)),
    url("https://images.unsplash.com/photo-1529070538774-1843cb3265df?auto=format&fit=crop&w=1500&q=80") center/cover;
}

.stat-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  color: #fff;
  padding: 1.45rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-card span {
  display: block;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900;
}

.stat-card span::after {
  content: "+";
}

.stat-card p {
  color: #dbeafe;
  font-weight: 850;
  margin-top: .35rem;
}

.section-pad {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.section-heading {
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
}

.section-title {
  color: var(--ties-blue-deep);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

.section-copy {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.8;
  margin-top: 1rem;
}

.check-grid {
  display: grid;
  gap: .9rem;
}

.check-grid div,
.feature-card,
.bonus-card,
.testimonial-card,
.faq-list details,
.trainer-card,
.module-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(8, 36, 90, .07);
}

.check-grid div {
  align-items: center;
  color: #1e293b;
  display: flex;
  font-size: 1.03rem;
  font-weight: 850;
  gap: .8rem;
  padding: 1rem 1.1rem;
}

.check-grid i {
  color: var(--ties-green);
}

.journey-list {
  display: grid;
  gap: .85rem;
}

.journey-list article {
  align-items: flex-start;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr;
  padding: 1.1rem;
  box-shadow: 0 14px 36px rgba(8, 36, 90, .07);
}

.journey-list span {
  align-items: center;
  background: var(--ties-red);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: .9rem;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.journey-list h3 {
  color: var(--ties-blue-deep);
  font-size: 1.05rem;
  font-weight: 900;
}

.journey-list p {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.65;
  margin-top: .25rem;
}

.feature-card,
.bonus-card,
.testimonial-card {
  padding: 1.4rem;
}

.feature-card,
.bonus-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.bonus-card::before {
  background: linear-gradient(90deg, var(--ties-red), var(--ties-blue));
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.feature-card > i,
.bonus-card > i {
  align-items: center;
  background: var(--ties-blue-soft);
  border-radius: 8px;
  color: var(--ties-blue);
  display: inline-flex;
  font-size: 1.45rem;
  height: 48px;
  justify-content: center;
  margin-bottom: 1.1rem;
  width: 48px;
}

.feature-card h3,
.bonus-card h3,
.testimonial-card h3 {
  color: var(--ties-blue-deep);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.3;
}

.feature-card p,
.bonus-card p,
.testimonial-card p {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.7;
  margin-top: .65rem;
}

.module-shell {
  overflow: hidden;
}

.module-tabs {
  background: #e8eef7;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.tab {
  color: #334155;
  font-size: .92rem;
  font-weight: 900;
  min-height: 64px;
  padding: .9rem;
  text-align: center;
}

.tab.active {
  background: linear-gradient(135deg, var(--ties-blue), var(--ties-blue-deep));
  color: #fff;
}

.module-content {
  display: none;
  padding: 2rem;
}

.module-content.active {
  display: block;
}

.module-content h3 {
  color: var(--ties-blue-deep);
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.module-content ul {
  columns: 2;
  gap: 2rem;
}

.module-content li {
  color: #475569;
  font-weight: 700;
  line-height: 1.65;
  margin-bottom: .55rem;
  padding-left: 1.25rem;
  position: relative;
}

.module-content li::before {
  color: var(--ties-red);
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  left: 0;
  position: absolute;
}

.deal-section {
  background:
    linear-gradient(135deg, rgba(226, 31, 38, .94), rgba(8, 36, 90, .98)),
    url("https://images.unsplash.com/photo-1529070538774-1843cb3265df?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: #fff;
}

.deal-section h2,
.outcome-band h2 {
  font-size: clamp(2rem, 4vw, 2.2rem);
  font-weight: 900;
  line-height: 1.08;
}

.deal-section p,
.outcome-band p {
  color: #dbeafe;
  font-weight: 700;
  line-height: 1.7;
  margin-top: .5rem;
}

.countdown {
  display: grid;
  gap: .7rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.countdown div {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  padding: 1rem .6rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.countdown span {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
}

.countdown small {
  color: #dbeafe;
  font-weight: 850;
}

.trainer-card {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: .55fr 1fr;
  padding: 1.1rem;
}

.trainer-card img {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.trainer-card h3 {
  color: var(--ties-blue-deep);
  font-size: 2rem;
  font-weight: 900;
  margin-top: .8rem;
}

.trainer-card p {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.75;
  margin-top: .7rem;
}

.trainer-role {
  color: var(--ties-blue) !important;
  font-weight: 900 !important;
}

.trainer-points {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.2rem;
}

.trainer-points span {
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #334155;
  font-size: .8rem;
  font-weight: 900;
  padding: .45rem .7rem;
}

.logo-slider {
  overflow: hidden;
  padding: .35rem 0;
  position: relative;
}

.logo-slider::before,
.logo-slider::after {
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: min(12vw, 120px);
  z-index: 2;
}

.logo-slider::before {
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  left: 0;
}

.logo-slider::after {
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  right: 0;
}

.logo-track {
  animation: alumniLogoLoop 55s linear infinite;
  align-items: center;
  display: flex;
  gap: clamp(1rem, 2vw, 1.8rem);
  width: max-content;
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.alumni-logo {
  background: transparent;
  box-sizing: border-box;
  display: block;
  flex: 0 0 auto;
  height: clamp(88px, 7vw, 104px);
  image-rendering: auto;
  max-width: none;
  object-fit: contain;
  object-position: center;
  padding: clamp(.3rem, .55vw, .55rem);
  transform: translateZ(0);
  width: clamp(204px, 15vw, 236px);
}

.alumni-logo--wide,
.alumni-logo--riya {
  height: clamp(88px, 7vw, 104px);
  width: clamp(204px, 15vw, 236px);
}

@keyframes alumniLogoLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.outcome-band {
  background:
    linear-gradient(135deg, rgba(8, 36, 90, .92), rgba(18, 63, 140, .86)),
    url("https://images.unsplash.com/photo-1556388158-158ea5ccacbd?auto=format&fit=crop&w=1800&q=84") center/cover;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.outcome-band::before {
  background:
    linear-gradient(90deg, rgba(8, 36, 90, .96), rgba(8, 36, 90, .64)),
    url("https://images.unsplash.com/photo-1517479149777-5f3b1511d5ad?auto=format&fit=crop&w=1200&q=80") right center/cover;
  content: "";
  inset: 0;
  opacity: .48;
  position: absolute;
  z-index: -1;
}

.outcome-band::after {
  background: radial-gradient(circle at 78% 18%, rgba(246, 185, 59, .18), transparent 22rem);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.outcome-grid {
  display: grid;
  gap: .8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.outcome-grid span {
  align-items: center;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  color: #fff;
  display: flex;
  font-weight: 900;
  gap: .7rem;
  min-height: 68px;
  padding: 1rem;
}

.outcome-grid i {
  color: var(--ties-gold);
}

.career-grid {
  display: grid;
  gap: .8rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.career-grid span {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #334155;
  display: flex;
  font-weight: 850;
  gap: .8rem;
  justify-content: flex-start;
  min-height: 86px;
  padding: 1rem;
  text-align: left;
  box-shadow: 0 12px 30px rgba(8, 36, 90, .06);
}

.career-grid span i {
  align-items: center;
  background: var(--ties-blue-soft);
  border: 1px solid rgba(18, 63, 140, .12);
  border-radius: 8px;
  color: var(--ties-blue);
  display: inline-flex;
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.career-grid span strong {
  color: #26354a;
  display: block;
  font-size: .96rem;
  line-height: 1.35;
}

.opportunity-logo {
  display: block;
  height: 64px;
  margin: 0 auto 1rem;
  object-fit: contain;
  width: 64px;
}

.stars {
  color: #f59e0b;
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.testimonial-card h3 span {
  color: var(--muted);
  display: block;
  font-size: .8rem;
  margin-top: .25rem;
}

.faq-list {
  display: grid;
  gap: .8rem;
}

.faq-list details {
  padding: 1.1rem 1.25rem;
}

.faq-list summary {
  color: var(--ties-blue-deep);
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.75;
  margin-top: .8rem;
}

.faq-list a {
  color: var(--ties-blue);
  font-weight: 900;
}

.bottom-form {
  padding: 1.3rem;
}

.footer {
  background:
    linear-gradient(135deg, rgba(4, 18, 44, .98), rgba(8, 36, 90, .98)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: #fff;
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.footer-logo {
  background: #fff;
  border-radius: 8px;
  height: 72px;
  object-fit: contain;
  padding: .35rem;
  width: 72px;
}

.footer h2,
.footer h3 {
  font-weight: 900;
}

.footer a,
.footer p {
  color: #dbeafe;
  display: block;
  font-size: .92rem;
  font-weight: 650;
  line-height: 1.8;
}

.footer a:hover {
  color: #fff;
}

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border: 4px solid #fff;
  border-radius: 999px;
  bottom: 20px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, .25);
  color: #fff;
  display: flex;
  font-size: 2rem;
  height: 62px;
  justify-content: center;
  position: fixed;
  right: 20px;
  width: 62px;
  z-index: 9999;
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-3px);
}

/* Premium responsive polish layer */
.site-header {
  box-shadow: 0 18px 50px rgba(8, 36, 90, .08);
}

.section-pad {
  position: relative;
}

.section-pad:not(.bg-white) {
  background:
    radial-gradient(circle at 12% 8%, rgba(18, 63, 140, .08), transparent 28rem),
    linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.section-heading {
  position: relative;
}

.section-heading::after {
  background: linear-gradient(90deg, var(--ties-red), var(--ties-gold), var(--ties-blue));
  border-radius: 999px;
  content: "";
  display: block;
  height: 4px;
  margin: 1.35rem auto 0;
  width: 96px;
}

.hero-panel,
.bottom-form,
.feature-card,
.bonus-card,
.testimonial-card,
.trainer-card,
.module-shell,
.faq-list details,
.check-grid div,
.journey-list article,
.career-grid span {
  border-color: rgba(191, 207, 231, .82);
  box-shadow: 0 18px 48px rgba(8, 36, 90, .1);
}

.feature-card,
.bonus-card,
.testimonial-card,
.check-grid div,
.journey-list article,
.career-grid span,
.faq-list details {
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.feature-card:hover,
.bonus-card:hover,
.testimonial-card:hover,
.check-grid div:hover,
.journey-list article:hover,
.career-grid span:hover,
.faq-list details:hover {
  border-color: rgba(18, 63, 140, .28);
  box-shadow: 0 24px 58px rgba(8, 36, 90, .15);
  transform: translateY(-4px);
}

.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="email"],
.lead-form fieldset {
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.program-strip {
  background: linear-gradient(180deg, #fff, #f6f9ff);
}

.program-strip div div,
.stat-card,
.countdown div,
.outcome-grid span {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 16px 42px rgba(8, 36, 90, .13);
}

.stats-section {
  position: relative;
}

.stats-section::after {
  background: linear-gradient(90deg, var(--ties-red), var(--ties-blue), var(--ties-gold));
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
}

.module-shell {
  border-radius: 12px;
}

.module-tabs {
  background: #dce7f7;
}

.tab {
  transition: background .2s ease, color .2s ease;
}

.tab:not(.active):hover {
  background: #f7faff;
  color: var(--ties-blue);
}

.module-content {
  background:
    radial-gradient(circle at 94% 8%, rgba(246, 185, 59, .16), transparent 16rem),
    #fff;
}

.deal-section {
  position: relative;
  overflow: hidden;
}

.deal-section::before {
  background: radial-gradient(circle at 78% 22%, rgba(255, 255, 255, .22), transparent 18rem);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.deal-section > div {
  position: relative;
}

.trainer-card {
  background:
    linear-gradient(135deg, #fff 0%, #f8fbff 100%);
  border-radius: 12px;
}

.trainer-card img {
  box-shadow: 0 18px 44px rgba(8, 36, 90, .16);
}

.logo-slider {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(248, 251, 255, .92), rgba(255, 255, 255, .96));
  border-bottom: 1px solid rgba(220, 229, 240, .7);
  border-top: 1px solid rgba(220, 229, 240, .7);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: clamp(126px, 11vw, 156px);
  padding: .95rem 0;
}

.logo-track {
  gap: clamp(.75rem, 1.15vw, 1rem);
}

.alumni-logo {
  background: transparent;
  box-sizing: border-box;
  display: block;
  filter: saturate(1.06) contrast(1.04);
  height: clamp(88px, 7vw, 104px);
  object-fit: contain;
  object-position: center;
  padding: clamp(.3rem, .55vw, .55rem);
  width: clamp(204px, 15vw, 236px);
}

.alumni-logo--wide,
.alumni-logo--riya {
  height: clamp(88px, 7vw, 104px);
  width: clamp(204px, 15vw, 236px);
}

.career-grid span {
  background:
    linear-gradient(135deg, #fff, #f8fbff);
}

.career-grid span i {
  box-shadow: 0 10px 24px rgba(18, 63, 140, .12);
}

.testimonial-card {
  background:
    linear-gradient(180deg, #fff, #f8fbff);
}

.faq-list details {
  background: #fff;
}

.footer {
  position: relative;
  overflow: hidden;
}

.footer::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(246, 185, 59, .18), transparent 18rem),
    radial-gradient(circle at 92% 82%, rgba(226, 31, 38, .12), transparent 18rem);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.footer > div {
  position: relative;
}

@media (max-width: 1024px) {
  .hero-section,
  .hero-layout {
    min-height: auto;
  }

  .alumni-logo {
    height: 84px;
    width: 196px;
  }

  .alumni-logo--wide,
  .alumni-logo--riya {
    height: 84px;
    width: 196px;
  }

  .career-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .brand-logo {
    height: 50px;
    width: 50px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(245, 248, 252, .96) 65%, rgba(245, 248, 252, .9) 100%),
      url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1200&q=80") center/cover;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .module-tabs {
    grid-template-columns: 1fr;
  }

  .module-content {
    padding: 1.2rem;
  }

  .module-content ul {
    columns: 1;
  }

  .trainer-card {
    grid-template-columns: 1fr;
  }

  .career-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alumni-logo {
    height: 76px;
    width: 176px;
  }

  .alumni-logo--wide,
  .alumni-logo--riya {
    height: 76px;
    width: 176px;
  }

  #cta-form .lead-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .top-cta {
    align-items: flex-start;
    flex-direction: column;
    font-size: .78rem;
    gap: .25rem;
    line-height: 1.35;
    padding: .6rem 1rem;
  }

  .site-header nav {
    gap: .75rem;
  }

  .site-header .btn {
    display: none;
  }

  .brand-logo {
    height: 46px;
    width: 46px;
  }

  .brand-text span:last-child {
    display: none;
  }

  .hero-copy h1 {
    font-size: 1.65rem;
    line-height: 1.14;
    max-width: min(350px, calc(100vw - 40px));
  }

  .hero-sub {
    font-size: .92rem;
    line-height: 1.65;
    max-width: min(350px, calc(100vw - 40px));
  }

  .urgency-line {
    align-items: flex-start;
    display: flex;
    font-size: .9rem;
    line-height: 1.45;
    max-width: min(350px, calc(100vw - 40px));
  }

  .hero-copy .eyebrow {
    flex-wrap: wrap;
    max-width: min(350px, calc(100vw - 40px));
  }

  .hero-copy,
  .hero-panel {
    width: min(350px, calc(100vw - 40px));
  }

  .hero-panel {
    padding: 1rem;
  }

  .form-ribbon {
    left: 1rem;
    right: 1rem;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-track {
    gap: .65rem;
  }

  .alumni-logo {
    height: 66px;
    width: 152px;
  }

  .alumni-logo--wide,
  .alumni-logo--riya {
    height: 66px;
    width: 152px;
  }

  .journey-list article {
    grid-template-columns: 1fr;
  }

  .career-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .whatsapp-float {
    bottom: 16px;
    height: 56px;
    right: 16px;
    width: 56px;
  }
}

@media (max-width: 360px) {
  .logo-slider::before,
  .logo-slider::after {
    width: 38px;
  }

  .logo-track {
    gap: .5rem;
  }

  .alumni-logo {
    height: 58px;
    width: 134px;
  }

  .alumni-logo--wide,
  .alumni-logo--riya {
    height: 58px;
    width: 134px;
  }
}