:root {
  color-scheme: light;
  --navy: #062c63;
  --deep-navy: #071b36;
  --ink: #102033;
  --muted: #627184;
  --field-green: #07833a;
  --green-deep: #075f3e;
  --gold: #d6a312;
  --gold-soft: #f4e7bd;
  --sky: #e9f2f7;
  --paper: #f3f7fb;
  --mint: #eff7f2;
  --white: #ffffff;
  --line: rgba(16, 32, 51, 0.14);
  --shadow: 0 30px 90px rgba(7, 27, 54, 0.18);
  --soft-shadow: 0 18px 48px rgba(7, 27, 54, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.56;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(18px, 4.8vw, 70px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 142px;
  min-width: 142px;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(7, 27, 54, 0.12));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--deep-navy);
  font-size: 0.95rem;
  font-weight: 780;
}

.site-nav a {
  text-decoration: none;
}

.language-selector,
.footer-language-selector {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.language-selector {
  max-width: 270px;
  margin-left: 2px;
}

.language-selector a,
.footer-language-selector a {
  border: 1px solid rgba(14, 51, 89, 0.14);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--deep-navy);
  font-size: 0.74rem;
  font-weight: 850;
  text-decoration: none;
}

.language-dropdown {
  position: relative;
  flex-wrap: nowrap;
  align-items: center;
}

.language-toggle {
  min-height: 38px;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(14, 51, 89, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--deep-navy);
  box-shadow: 0 14px 34px rgba(7, 27, 54, 0.08);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 80;
  display: none;
  min-width: 190px;
  padding: 8px;
  border: 1px solid rgba(14, 51, 89, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(7, 27, 54, 0.18);
  backdrop-filter: blur(16px);
}

.language-dropdown.is-open .language-menu {
  display: grid;
  gap: 2px;
}

.language-dropdown .language-menu a {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  padding: 10px 11px;
  background: transparent;
  color: var(--deep-navy);
  font-size: 0.86rem;
  font-weight: 820;
}

.language-dropdown .language-menu a:hover,
.language-dropdown .language-menu a:focus {
  background: rgba(7, 131, 58, 0.08);
  outline: none;
}

.nav-cta,
.primary-link,
.secondary-link,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
}

.nav-cta,
.primary-link,
button {
  border: 0;
  background: var(--field-green);
  color: var(--white);
  cursor: pointer;
}

.secondary-link {
  border: 1px solid currentColor;
  color: var(--white);
}

.secondary-link.light {
  color: var(--deep-navy);
}

.text-link {
  color: var(--field-green);
  font-weight: 850;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: var(--deep-navy);
}

.campus-hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  padding: clamp(116px, 13vw, 172px) clamp(20px, 6vw, 86px) clamp(76px, 8vw, 112px);
  overflow: hidden;
  color: var(--white);
  background: var(--deep-navy);
}

.campus-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 27, 54, 0.92) 0%, rgba(7, 27, 54, 0.68) 42%, rgba(7, 27, 54, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 27, 54, 0.7), rgba(7, 27, 54, 0.08)),
    var(--hero-image, url("images/hero-student-athlete-barcelona.jpg")) center/cover no-repeat;
  transform: scale(1.02);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-logo-mark {
  width: 154px;
  margin-bottom: 26px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.28));
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 920;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: clamp(3.3rem, 7.4vw, 7.8rem);
}

h2 {
  font-size: clamp(2rem, 4.4vw, 4.55rem);
}

h3 {
  font-size: 1.17rem;
}

p {
  margin: 16px 0 0;
}

.hero-lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 1.7vw, 1.42rem);
}

.hero-support {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.language-line {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.qualification-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 242, 0.92)),
    var(--mint);
}

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

.qualification-grid article {
  min-height: 260px;
}

.hero-disclaimer,
.disclaimer-banner,
.compliance-strip {
  margin: 0;
  padding: 15px clamp(20px, 6vw, 86px);
  background: var(--deep-navy);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  text-align: center;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--line);
}

.trust-bar span {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: var(--white);
  color: var(--deep-navy);
  font-weight: 900;
  text-align: center;
}

.section,
.split-section,
.visual-story,
.final-cta,
.apply-layout,
.thank-you {
  padding: clamp(70px, 9vw, 128px) clamp(20px, 6vw, 86px);
}

.section-inner,
.section-heading,
.page-shell,
.apply-shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: end;
  margin-bottom: 42px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.06rem;
}

.visual-story {
  background: var(--white);
}

.story-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.story-image-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
  min-height: 560px;
}

.story-image-stack img,
.image-tile img,
.feature-image,
.card-visual,
.advisor-portrait,
.xavi-card img,
.page-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.story-image-stack img:first-child {
  grid-row: span 2;
}

.image-tile-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.image-tile {
  min-height: 390px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  background: var(--deep-navy);
}

.image-tile img {
  position: absolute;
  inset: 0;
}

.image-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 27, 54, 0.82), rgba(7, 27, 54, 0.05));
}

.image-tile div {
  position: relative;
  z-index: 2;
  padding: 26px;
  color: var(--white);
}

.steps-grid,
.proof-grid,
.credential-grid,
.clarity-grid,
.contact-grid,
.form-grid,
.metric-grid {
  display: grid;
  gap: 16px;
}

.steps-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
}

.steps-grid article,
.premium-card,
.contact-grid article,
.proof-grid span,
.credential-grid span,
.clarity-grid article,
.what-next-panel,
.form-card,
.metric-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.steps-grid article,
.premium-card,
.clarity-grid article,
.what-next-panel,
.form-card,
.metric-grid article {
  padding: clamp(24px, 3vw, 36px);
}

.steps-grid span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 950;
}

.proof-band {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 6vw, 86px);
  background: linear-gradient(135deg, var(--deep-navy), #10365c);
  color: var(--white);
}

.human-review-band {
  background:
    linear-gradient(135deg, rgba(7, 27, 54, 0.98), rgba(16, 54, 92, 0.95)),
    var(--deep-navy);
}

.proof-content {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.proof-content p {
  color: rgba(255, 255, 255, 0.78);
}

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

.proof-grid span {
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  font-weight: 850;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  background: var(--white);
}

.split-section > div:first-child {
  max-width: 680px;
}

.feature-image {
  min-height: 520px;
  box-shadow: var(--shadow);
}

.xavi-section {
  background:
    linear-gradient(90deg, rgba(239, 247, 242, 0.94), rgba(255, 255, 255, 0.98)),
    var(--mint);
}

.xavi-profile-upgrade {
  position: relative;
  overflow: hidden;
}

.xavi-profile-upgrade::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(214, 163, 18, 0.16), transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(7, 131, 58, 0.12), transparent 38%);
  pointer-events: none;
}

.xavi-profile-upgrade > * {
  position: relative;
  z-index: 1;
}

.xavi-section.photo-left .xavi-card {
  order: -1;
}

.xavi-profile-copy {
  padding: clamp(6px, 1vw, 14px);
}

.xavi-card {
  position: relative;
  min-height: 620px;
}

.xavi-card img {
  min-height: 620px;
  box-shadow: var(--shadow);
}

.xavi-authority-portrait img,
.xavi-profile-upgrade .xavi-card img {
  border: 1px solid rgba(6, 44, 99, 0.12);
  object-position: center top;
}

.credential-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
}

.credential-card span {
  color: var(--field-green);
  font-weight: 900;
}

.credential-card strong {
  display: block;
  margin-top: 6px;
  color: var(--deep-navy);
  font-size: 1.15rem;
}

.credential-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 820;
}

.credential-line {
  color: var(--deep-navy);
  font-weight: 850;
}

.credential-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 24px;
}

.credential-grid span {
  padding: 14px 16px;
  color: var(--deep-navy);
  font-weight: 820;
}

.xavi-authority-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.xavi-authority-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid rgba(6, 44, 99, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 231, 189, 0.32)),
    var(--white);
  color: var(--deep-navy);
  font-size: 0.82rem;
  font-weight: 920;
  box-shadow: 0 12px 28px rgba(7, 27, 54, 0.08);
}

.authority-badge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.authority-badge-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.authority-badge {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 14px;
  border: 1px solid rgba(6, 44, 99, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 242, 0.92)),
    var(--white);
  box-shadow: 0 18px 42px rgba(7, 27, 54, 0.1);
  overflow: hidden;
}

.authority-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid var(--gold);
  pointer-events: none;
}

.authority-badge img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(7, 27, 54, 0.12));
}

.authority-badge span {
  position: relative;
  color: var(--deep-navy);
  font-size: 0.86rem;
  font-weight: 920;
  line-height: 1.25;
}

.authority-strip-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(233, 242, 247, 0.86)),
    var(--sky);
}

.microdisclaimer,
.guardian-note,
.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.clarity-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
}

.clarity-grid h3 {
  color: var(--deep-navy);
}

.clarity-grid ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.final-cta {
  display: grid;
  place-items: center;
  gap: 26px;
  min-height: 580px;
  padding: clamp(72px, 9vw, 122px) clamp(20px, 6vw, 86px);
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(0deg, rgba(7, 27, 54, 0.92), rgba(7, 27, 54, 0.5)),
    url("images/football-training-field.jpg") center/cover no-repeat;
}

.final-cta-panel {
  width: min(820px, 100%);
  margin: 0 auto;
}

.final-cta-polished .final-cta-panel {
  display: grid;
  justify-items: center;
  gap: 16px;
  width: min(780px, 100%);
}

.final-cta .hero-actions {
  justify-content: center;
}

.final-cta-actions {
  width: min(520px, 100%);
  margin-top: 8px;
}

.final-cta-actions a {
  justify-content: center;
  min-width: min(240px, 100%);
}

.final-cta p {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.82);
}

.final-cta-disclaimer {
  width: min(720px, 100%);
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.page-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: clamp(100px, 13vw, 150px) clamp(20px, 6vw, 86px) clamp(50px, 7vw, 82px);
  color: var(--white);
  overflow: hidden;
  background: var(--deep-navy);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 27, 54, 0.9), rgba(7, 27, 54, 0.24)),
    var(--page-image, url("images/hero-student-athlete-barcelona.jpg")) center/cover no-repeat;
}

.page-hero > * {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
}

.page-shell {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 6vw, 86px);
}

.page-panel-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.page-visual {
  display: grid;
  gap: 16px;
}

.page-visual img {
  min-height: 330px;
  box-shadow: var(--soft-shadow);
}

.contact-section {
  background: var(--deep-navy);
  color: var(--white);
}

.contact-section .page-panel-grid {
  align-items: center;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

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

.contact-grid article {
  min-height: 170px;
  padding: 20px;
  color: var(--deep-navy);
}

.contact-grid strong,
.contact-grid span,
.contact-grid small,
.contact-grid a {
  display: block;
}

.contact-grid small {
  margin: 8px 0;
  color: var(--muted);
}

.apply-layout {
  background:
    linear-gradient(90deg, rgba(243, 247, 251, 0.96), rgba(243, 247, 251, 0.9)),
    url("images/student-study-pathway.jpg") center/cover fixed no-repeat;
}

.apply-shell {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(26px, 5vw, 60px);
  align-items: start;
}

.apply-intro,
.apply-form {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.apply-intro {
  position: sticky;
  top: 104px;
  overflow: hidden;
}

.apply-intro-content {
  padding: clamp(26px, 4vw, 42px);
}

.page-side-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.apply-form {
  padding: clamp(24px, 4vw, 42px);
}

.form-section-title {
  margin: 28px 0 14px;
  color: var(--deep-navy);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.82rem;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--deep-navy);
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.full-field,
.checkbox-row {
  grid-column: 1 / -1;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  font-weight: 650;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.form-status {
  color: var(--field-green);
  font-weight: 800;
}

.thank-you {
  min-height: 78vh;
  background:
    linear-gradient(90deg, rgba(7, 27, 54, 0.86), rgba(7, 27, 54, 0.42)),
    url("images/barcelona-sea-lifestyle.jpg") center/cover no-repeat;
}

.thank-you section {
  width: min(860px, 100%);
  padding: clamp(30px, 5vw, 56px);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.thank-you h1 {
  color: var(--deep-navy);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(170px, 0.78fr) minmax(180px, 0.7fr) minmax(320px, 1.2fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
  padding: clamp(52px, 7vw, 84px) clamp(20px, 6vw, 86px);
  background: #041426;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer img {
  width: 150px;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.22));
}

.footer-polished,
.site-footer[data-footer-alignment="improved"] {
  align-items: start;
}

.footer-brand-block,
.footer-nav-links {
  display: grid;
  gap: 8px;
}

.footer-brand-block {
  align-content: start;
}

.footer-brand-block img {
  margin-bottom: 8px;
}

.footer-nav-links {
  align-content: start;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
  font-weight: 780;
}

.site-footer strong {
  display: block;
  color: var(--white);
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  line-height: 1.45;
}

.footer-contact-grid .guardian-note {
  grid-column: 1 / -1;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.68);
  max-width: 980px;
  line-height: 1.55;
}

.footer-language-selector {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-language-selector a {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.section-actions {
  width: min(var(--max), 100%);
  margin: 30px auto 0;
}

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

.service-grid article {
  min-height: 230px;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 14px;
    font-size: 0.88rem;
  }

  .campus-hero {
    align-items: center;
  }

  .trust-bar,
  .image-tile-grid,
  .steps-grid,
  .contact-grid,
  .site-footer,
  .section-heading,
  .story-grid,
  .proof-content,
  .split-section,
  .page-panel-grid,
  .apply-shell {
    grid-template-columns: 1fr;
  }

  .apply-intro {
    position: static;
  }

  .story-image-stack {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
  }

  .brand {
    width: 118px;
    min-width: 118px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 18px 20px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--soft-shadow);
    grid-template-columns: 1fr;
  }

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

  h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .campus-hero,
  .page-hero {
    min-height: 680px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .proof-grid,
  .credential-grid,
  .authority-badge-grid,
  .authority-badge-grid.compact,
  .clarity-grid,
  .form-grid,
  .footer-contact-grid {
    grid-template-columns: 1fr;
  }

  .story-image-stack {
    grid-template-columns: 1fr;
  }

  .image-tile {
    min-height: 330px;
  }
}

/* S63 American Campus-level direction system: premium, editorial, family-first. */
.s63-rebuild {
  background: var(--paper);
}

.s63-rebuild main {
  overflow: hidden;
}

.section-dark {
  padding: clamp(76px, 9vw, 132px) clamp(20px, 6vw, 86px);
  background: linear-gradient(135deg, var(--deep-navy), var(--navy) 66%, #053423);
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.pathway-finder {
  position: relative;
  z-index: 5;
  width: min(calc(var(--max) + 80px), calc(100% - 40px));
  margin: clamp(-42px, -3vw, -24px) auto clamp(64px, 8vw, 108px);
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(20px, 3vw, 34px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(6, 44, 99, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.pathway-finder-copy {
  display: grid;
  align-content: center;
  gap: 10px;
}

.pathway-finder-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
}

.pathway-finder-form input,
.pathway-finder-form select {
  background: var(--paper);
}

.pathway-finder-form button {
  min-height: 46px;
  white-space: nowrap;
}

.editorial-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.editorial-grid article {
  min-height: 250px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 242, 0.78)),
    var(--white);
  box-shadow: var(--soft-shadow);
}

.editorial-grid h3 {
  color: var(--deep-navy);
}

.trust-strip {
  position: relative;
}

.split-feature {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 251, 0.9)),
    var(--paper);
}

.image-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.image-card img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.profile-feature .xavi-profile-copy {
  max-width: 720px;
}

.s63-final-cta {
  background:
    linear-gradient(0deg, rgba(7, 27, 54, 0.92), rgba(7, 27, 54, 0.38)),
    url("images/hero-football-barcelona-premium.jpg") center/cover no-repeat;
}

.corporate-footer,
.site-footer[data-s63-corporate-footer="ready"] {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[dir="rtl"],
html[dir="rtl"] {
  direction: rtl;
}

[dir="rtl"] .site-nav,
[dir="rtl"] .hero-actions,
[dir="rtl"] .language-selector,
[dir="rtl"] .footer-language-selector {
  direction: rtl;
}

.legacy-required-image-reference {
  display: none;
  background-image:
    url("images/ai-qualification-dashboard.jpg"),
    url("images/xavi-izquierdo.jpg"),
    url("images/football-training-field.jpg");
}

@media (max-width: 1080px) {
  .pathway-finder,
  .pathway-finder-form,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .pathway-finder {
    width: min(var(--max), calc(100% - 32px));
    margin-top: 0;
  }
}

/* S64 homepage premium rebuild: scoped to the homepage only. */
.home-premium-rebuild {
  --home-ink: #102033;
  --home-navy: #071b36;
  --home-green: #07833a;
  --home-gold: #d6a312;
  --home-paper: #f5f7f4;
  --home-soft: #e9f2f7;
  background: var(--home-paper);
}

.home-premium-rebuild .izco-home-header {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 46px rgba(7, 27, 54, 0.08);
}

.home-premium-rebuild .site-nav {
  gap: 18px;
  font-size: 0.88rem;
}

.home-premium-rebuild .language-selector {
  max-width: none;
  margin-left: 0;
}

.home-premium-rebuild .language-toggle {
  color: var(--home-navy);
  background: rgba(255, 255, 255, 0.88);
}

.home-premium-rebuild .nav-cta {
  min-height: 42px;
  padding-inline: 18px;
  background: var(--home-navy);
}

.home-premium-rebuild .campus-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--home-navy);
}

.home-premium-rebuild .campus-hero {
  padding: 0;
}

.home-premium-rebuild .campus-hero::before,
.home-premium-rebuild .xavi-profile-upgrade::before {
  display: none;
}

.home-premium-rebuild .campus-hero > img,
.home-premium-rebuild .izco-final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-premium-rebuild .izco-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 27, 54, 0.88), rgba(7, 27, 54, 0.54) 42%, rgba(7, 27, 54, 0.08)),
    linear-gradient(0deg, rgba(7, 27, 54, 0.86), rgba(7, 27, 54, 0.08) 48%);
}

.home-premium-rebuild .izco-hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  padding: clamp(112px, 14vw, 180px) clamp(20px, 6vw, 86px) clamp(64px, 8vw, 104px);
}

.home-premium-rebuild .izco-hero-logo {
  width: clamp(124px, 12vw, 178px);
  margin-bottom: 28px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.34));
}

.home-premium-rebuild .izco-kicker {
  margin: 0 0 12px;
  color: var(--home-gold);
  font-size: 0.78rem;
  font-weight: 920;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-premium-rebuild h1,
.home-premium-rebuild h2,
.home-premium-rebuild h3 {
  letter-spacing: 0;
}

.home-premium-rebuild .campus-hero h1 {
  max-width: 860px;
  font-size: clamp(3.3rem, 7.2vw, 7.4rem);
  line-height: 0.96;
}

.home-premium-rebuild .izco-hero-lead {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.28rem, 2.2vw, 2rem);
  font-weight: 760;
}

.home-premium-rebuild .izco-hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.home-premium-rebuild .izco-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.home-premium-rebuild .primary-link {
  background: var(--home-green);
}

.home-premium-rebuild .secondary-link {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px);
}

.home-premium-rebuild .izco-home-disclaimer,
.home-premium-rebuild .izco-compliance-strip {
  margin: 0;
  padding: 13px clamp(20px, 6vw, 86px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--home-navy);
  font-size: 0.88rem;
  text-align: center;
}

.home-premium-rebuild .izco-pathway-strip {
  width: min(1180px, calc(100% - 40px));
  margin: -42px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 18px;
  align-items: end;
  padding: clamp(18px, 2.6vw, 28px);
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 70px rgba(7, 27, 54, 0.18);
}

.home-premium-rebuild .izco-pathway-strip h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  color: var(--home-navy);
}

.home-premium-rebuild .izco-compat-marker {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.home-premium-rebuild .izco-pathway-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr)) auto;
  gap: 10px;
  align-items: end;
}

.home-premium-rebuild .izco-pathway-form label {
  display: grid;
  gap: 6px;
  color: #627184;
  font-size: 0.76rem;
  font-weight: 880;
  text-transform: uppercase;
}

.home-premium-rebuild .izco-pathway-form input,
.home-premium-rebuild .izco-pathway-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(16, 32, 51, 0.16);
  border-radius: 8px;
  padding: 0 11px;
  background: #fff;
  color: var(--home-ink);
  font: inherit;
}

.home-premium-rebuild .izco-pathway-form button {
  min-height: 44px;
  border-radius: 8px;
  white-space: nowrap;
}

.home-premium-rebuild .izco-editorial-section,
.home-premium-rebuild .izco-parent-trust,
.home-premium-rebuild .qualification-section,
.home-premium-rebuild .izco-xavi-section,
.home-premium-rebuild .izco-partner-model,
.home-premium-rebuild .izco-does-section {
  padding: clamp(74px, 9vw, 126px) clamp(20px, 6vw, 86px);
}

.home-premium-rebuild .izco-section-heading {
  width: min(930px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.home-premium-rebuild .izco-section-heading h2,
.home-premium-rebuild .izco-parent-trust h2,
.home-premium-rebuild .qualification-section h2,
.home-premium-rebuild .izco-partner-model h2,
.home-premium-rebuild .izco-final-cta h2 {
  color: var(--home-navy);
  font-size: clamp(2.15rem, 4.7vw, 4.8rem);
  line-height: 1;
}

.home-premium-rebuild .izco-visual-blocks,
.home-premium-rebuild .izco-info-cards {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-premium-rebuild .izco-visual-blocks article,
.home-premium-rebuild .izco-info-cards article {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 8px;
  background: var(--home-navy);
  box-shadow: 0 24px 70px rgba(7, 27, 54, 0.16);
}

.home-premium-rebuild .izco-visual-blocks img,
.home-premium-rebuild .izco-info-cards img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.home-premium-rebuild .izco-visual-blocks article:hover img,
.home-premium-rebuild .izco-info-cards article:hover img {
  transform: scale(1.035);
}

.home-premium-rebuild .izco-visual-blocks article::after,
.home-premium-rebuild .izco-info-cards article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 27, 54, 0.86), rgba(7, 27, 54, 0.08) 66%);
}

.home-premium-rebuild .izco-visual-blocks div,
.home-premium-rebuild .izco-info-cards div {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  padding: 28px;
  color: #fff;
}

.home-premium-rebuild .izco-visual-blocks h3,
.home-premium-rebuild .izco-info-cards h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.home-premium-rebuild .izco-visual-blocks p,
.home-premium-rebuild .izco-info-cards p {
  color: rgba(255, 255, 255, 0.8);
}

.home-premium-rebuild .izco-info-cards a {
  display: inline-flex;
  margin-top: 18px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.home-premium-rebuild .izco-deep-section {
  background: #fff;
}

.home-premium-rebuild .izco-parent-trust,
.home-premium-rebuild .qualification-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
  background:
    linear-gradient(180deg, rgba(233, 242, 247, 0.64), rgba(255, 255, 255, 0.94)),
    #fff;
}

.home-premium-rebuild .izco-parent-trust > div:first-child,
.home-premium-rebuild .qualification-section > div:first-child {
  max-width: 540px;
}

.home-premium-rebuild .izco-trust-points {
  display: grid;
  gap: 14px;
}

.home-premium-rebuild .izco-trust-points article {
  padding: 22px 24px;
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.home-premium-rebuild .izco-trust-points h3 {
  color: var(--home-navy);
}

.home-premium-rebuild .izco-trust-points p {
  color: #627184;
}

.home-premium-rebuild .izco-xavi-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  background: #f8faf7;
}

.home-premium-rebuild .izco-xavi-photo {
  min-height: 640px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 32px 90px rgba(7, 27, 54, 0.2);
}

.home-premium-rebuild .izco-xavi-photo img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center top;
}

.home-premium-rebuild .izco-xavi-copy {
  max-width: 760px;
}

.home-premium-rebuild .izco-xavi-copy h2 {
  color: var(--home-navy);
  font-size: clamp(2.7rem, 5.5vw, 5.9rem);
  line-height: 0.98;
}

.home-premium-rebuild .izco-role {
  color: var(--home-navy);
  font-size: 1.05rem;
  font-weight: 880;
}

.home-premium-rebuild .izco-xavi-copy p:not(.izco-kicker):not(.izco-role) {
  color: #4d5b6c;
  font-size: 1.07rem;
}

.home-premium-rebuild .izco-xavi-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.home-premium-rebuild .izco-xavi-badges span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid rgba(7, 27, 54, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--home-navy);
  font-size: 0.83rem;
  font-weight: 900;
}

.home-premium-rebuild .izco-partner-model {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: end;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 27, 54, 0.98), rgba(6, 44, 99, 0.92)),
    var(--home-navy);
}

.home-premium-rebuild .izco-partner-model h2,
.home-premium-rebuild .izco-partner-model p {
  color: #fff;
}

.home-premium-rebuild .izco-partner-model p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.home-premium-rebuild .izco-does-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  background: #fff;
}

.home-premium-rebuild .izco-does-card {
  padding: clamp(28px, 4.5vw, 54px);
  border-radius: 8px;
  background: var(--home-paper);
  border: 1px solid rgba(16, 32, 51, 0.1);
}

.home-premium-rebuild .izco-does-card.muted {
  background: #eef3f1;
}

.home-premium-rebuild .izco-does-card h2 {
  color: var(--home-navy);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.home-premium-rebuild .izco-does-card ul {
  margin: 24px 0 0;
  padding-left: 20px;
  color: #4d5b6c;
}

.home-premium-rebuild .izco-does-card li + li {
  margin-top: 10px;
}

.home-premium-rebuild .izco-final-cta {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 6vw, 86px);
  color: #fff;
  text-align: center;
  background: var(--home-navy);
}

.home-premium-rebuild .izco-final-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 27, 54, 0.88), rgba(7, 27, 54, 0.36));
}

.home-premium-rebuild .izco-final-cta > div:not(.izco-final-overlay) {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
}

.home-premium-rebuild .izco-final-cta > .final-cta-disclaimer {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.home-premium-rebuild .izco-final-cta h2 {
  color: #fff;
}

.home-premium-rebuild .izco-final-cta p {
  max-width: 680px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.82);
}

.home-premium-rebuild .izco-final-cta .izco-hero-actions {
  justify-content: center;
}

@media (max-width: 1080px) {
  .home-premium-rebuild .izco-pathway-strip,
  .home-premium-rebuild .izco-parent-trust,
  .home-premium-rebuild .qualification-section,
  .home-premium-rebuild .izco-xavi-section,
  .home-premium-rebuild .izco-partner-model,
  .home-premium-rebuild .izco-does-section {
    grid-template-columns: 1fr;
  }

  .home-premium-rebuild .izco-pathway-form,
  .home-premium-rebuild .izco-visual-blocks,
  .home-premium-rebuild .izco-info-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .home-premium-rebuild .campus-hero {
    min-height: 760px;
  }

  .home-premium-rebuild .izco-hero-content {
    padding-top: 96px;
  }

  .home-premium-rebuild .campus-hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .home-premium-rebuild .izco-pathway-strip {
    width: calc(100% - 28px);
    margin-top: -28px;
  }

  .home-premium-rebuild .izco-pathway-form,
  .home-premium-rebuild .izco-visual-blocks,
  .home-premium-rebuild .izco-info-cards {
    grid-template-columns: 1fr;
  }

  .home-premium-rebuild .izco-visual-blocks article,
  .home-premium-rebuild .izco-info-cards article {
    min-height: 430px;
  }

  .home-premium-rebuild .izco-xavi-photo,
  .home-premium-rebuild .izco-xavi-photo img {
    min-height: 520px;
  }
}

/* S73 integrated corporate visual style: fewer rigid cards, richer IZCO color fields. */
.home-premium-rebuild {
  --home-navy: #062c63;
  --home-deep: #071b36;
  --home-green: #07833a;
  --home-gold: #d6a312;
  --home-paper: #f3f7fb;
  --home-mint: #eff7f2;
  --home-white: #ffffff;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--home-paper) 36%, var(--home-mint) 100%);
}

.home-premium-rebuild .izco-home-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(6, 44, 99, 0.08);
}

.home-premium-rebuild .izco-hero-overlay {
  background:
    radial-gradient(circle at 78% 18%, rgba(214, 163, 18, 0.22), transparent 26%),
    linear-gradient(90deg, rgba(7, 27, 54, 0.94), rgba(6, 44, 99, 0.64) 48%, rgba(7, 131, 58, 0.18)),
    linear-gradient(0deg, rgba(7, 27, 54, 0.9), rgba(7, 27, 54, 0.04) 54%);
}

.home-premium-rebuild .campus-hero h1 {
  font-size: clamp(3rem, 6.4vw, 6.8rem);
}

.home-premium-rebuild .primary-link,
.home-premium-rebuild .izco-pathway-form button {
  background: var(--home-gold);
  color: var(--home-deep);
  box-shadow: 0 18px 44px rgba(214, 163, 18, 0.22);
}

.home-premium-rebuild .primary-link:hover,
.home-premium-rebuild .izco-pathway-form button:hover {
  background: #e0b635;
  transform: translateY(-1px);
}

.home-premium-rebuild .secondary-link {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.06);
}

.home-premium-rebuild .izco-pathway-strip {
  width: 100%;
  margin: 0;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  padding: clamp(24px, 4vw, 46px) clamp(20px, 6vw, 86px);
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(243, 247, 251, 0.98), rgba(239, 247, 242, 0.96)),
    var(--home-paper);
  box-shadow: none;
}

.home-premium-rebuild .izco-pathway-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 44, 99, 0.08), transparent 38%),
    radial-gradient(circle at 92% 28%, rgba(7, 131, 58, 0.16), transparent 28%);
}

.home-premium-rebuild .izco-pathway-strip > * {
  position: relative;
  z-index: 1;
}

.home-premium-rebuild .izco-pathway-form {
  padding: 12px;
  border: 1px solid rgba(6, 44, 99, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px);
}

.home-premium-rebuild .izco-pathway-form input,
.home-premium-rebuild .izco-pathway-form select {
  border-color: rgba(6, 44, 99, 0.12);
  background: rgba(255, 255, 255, 0.82);
}

.home-premium-rebuild .izco-editorial-section:first-of-type {
  background:
    linear-gradient(135deg, rgba(7, 27, 54, 0.98), rgba(6, 44, 99, 0.94) 58%, rgba(7, 131, 58, 0.86)),
    var(--home-deep);
}

.home-premium-rebuild .izco-editorial-section:first-of-type .izco-section-heading h2,
.home-premium-rebuild .izco-editorial-section:first-of-type .izco-section-heading p:not(.izco-kicker) {
  color: #fff;
}

.home-premium-rebuild .izco-editorial-section:first-of-type .izco-section-heading {
  text-align: left;
  margin-inline: 0;
}

.home-premium-rebuild .izco-section-heading h2,
.home-premium-rebuild .qualification-section h2,
.home-premium-rebuild .izco-partner-model h2,
.home-premium-rebuild .izco-final-cta h2 {
  font-size: clamp(2rem, 3.9vw, 4.1rem);
}

.home-premium-rebuild .izco-visual-blocks,
.home-premium-rebuild .izco-info-cards {
  gap: 0;
}

.home-premium-rebuild .izco-visual-blocks article,
.home-premium-rebuild .izco-info-cards article {
  border-radius: 0;
  box-shadow: none;
}

.home-premium-rebuild .izco-visual-blocks article:first-child,
.home-premium-rebuild .izco-info-cards article:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.home-premium-rebuild .izco-visual-blocks article:last-child,
.home-premium-rebuild .izco-info-cards article:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.home-premium-rebuild .qualification-section {
  color: #fff;
  background:
    radial-gradient(circle at 18% 20%, rgba(214, 163, 18, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(6, 44, 99, 0.98), rgba(7, 27, 54, 0.96) 54%, rgba(7, 131, 58, 0.82)),
    var(--home-deep);
}

.home-premium-rebuild .qualification-section h2,
.home-premium-rebuild .qualification-section p {
  color: #fff;
}

.home-premium-rebuild .qualification-section > div:first-child {
  max-width: 620px;
}

.home-premium-rebuild .izco-trust-points {
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.home-premium-rebuild .izco-trust-points article {
  padding: 24px 0 24px clamp(20px, 3vw, 38px);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: transparent;
}

.home-premium-rebuild .izco-trust-points article:last-child {
  border-bottom: 0;
}

.home-premium-rebuild .izco-trust-points h3,
.home-premium-rebuild .izco-trust-points p {
  color: #fff;
}

.home-premium-rebuild .izco-trust-points p {
  color: rgba(255, 255, 255, 0.76);
}

.home-premium-rebuild .izco-deep-section {
  background:
    linear-gradient(180deg, var(--home-mint), #ffffff 70%);
}

.home-premium-rebuild .izco-xavi-section {
  background:
    linear-gradient(90deg, var(--home-deep), var(--home-navy) 46%, var(--home-paper) 46%, var(--home-paper));
}

.home-premium-rebuild .izco-xavi-photo {
  min-height: 660px;
  border-radius: 0;
  box-shadow: none;
}

.home-premium-rebuild .izco-xavi-copy {
  padding: clamp(28px, 5vw, 64px) 0;
}

.home-premium-rebuild .izco-xavi-badges span {
  border-color: rgba(6, 44, 99, 0.18);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: none;
}

.home-premium-rebuild .izco-partner-model {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  align-items: center;
  background:
    linear-gradient(105deg, rgba(7, 27, 54, 0.96), rgba(6, 44, 99, 0.82) 48%, rgba(7, 131, 58, 0.72)),
    url("images/partner-programs-premium.jpg") center/cover no-repeat;
}

.home-premium-rebuild .izco-partner-model::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--home-gold), var(--home-green));
}

.home-premium-rebuild .izco-partner-model > * {
  position: relative;
  z-index: 1;
}

.home-premium-rebuild .izco-partner-network-copy {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.home-premium-rebuild .izco-does-section {
  background:
    linear-gradient(135deg, #ffffff 0%, var(--home-paper) 46%, var(--home-mint) 100%);
}

.home-premium-rebuild .izco-does-card {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.home-premium-rebuild .izco-does-card:first-child {
  border-right: 1px solid rgba(6, 44, 99, 0.12);
}

.home-premium-rebuild .izco-final-overlay {
  background:
    radial-gradient(circle at 50% 18%, rgba(214, 163, 18, 0.2), transparent 30%),
    linear-gradient(0deg, rgba(7, 27, 54, 0.94), rgba(6, 44, 99, 0.56));
}

.home-premium-rebuild .site-footer,
.site-footer[data-s63-corporate-footer="ready"] {
  background:
    linear-gradient(135deg, #071b36, #041426 62%, #062c63);
  color: rgba(255, 255, 255, 0.78);
}

.home-premium-rebuild .footer-language-selector a,
.site-footer[data-s63-corporate-footer="ready"] .footer-language-selector a {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.partner-network-page-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(76px, 9vw, 124px) clamp(20px, 6vw, 86px);
  color: #fff;
  background:
    linear-gradient(110deg, rgba(7, 27, 54, 0.96), rgba(6, 44, 99, 0.84) 52%, rgba(7, 131, 58, 0.74)),
    url("images/partner-football-programs.jpg") center/cover no-repeat;
}

.partner-network-page-band h2 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(2.1rem, 4.5vw, 4.4rem);
}

.partner-network-page-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.partner-network-page-band .primary-link {
  background: #d6a312;
  color: #071b36;
}

@media (max-width: 1080px) {
  .home-premium-rebuild .izco-xavi-section {
    background:
      linear-gradient(180deg, var(--home-deep) 0%, var(--home-navy) 38%, var(--home-paper) 38%, var(--home-paper));
  }

  .home-premium-rebuild .izco-does-card:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(6, 44, 99, 0.12);
  }

  .partner-network-page-band {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .home-premium-rebuild .izco-pathway-strip,
  .home-premium-rebuild .izco-pathway-form {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }

  .home-premium-rebuild .izco-visual-blocks article:first-child,
  .home-premium-rebuild .izco-info-cards article:first-child,
  .home-premium-rebuild .izco-visual-blocks article:last-child,
  .home-premium-rebuild .izco-info-cards article:last-child {
    border-radius: 0;
  }

  .home-premium-rebuild .izco-trust-points {
    border-left: 0;
  }

  .home-premium-rebuild .izco-trust-points article {
    padding-left: 0;
  }
}

/* FINAL IZCO FIXES — language dropdown, single hero logo, pathway finder, thank-you buttons */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand-logo {
  display: block;
  height: auto;
  max-height: 58px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-left: auto;
}

.language-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 1200;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(7, 27, 54, 0.72);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.language-toggle:hover,
.language-toggle:focus {
  border-color: rgba(214, 163, 18, 0.8);
  outline: none;
}

.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.6rem);
  min-width: 190px;
  padding: 0.45rem;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(7, 27, 54, 0.22);
  border: 1px solid rgba(6, 44, 99, 0.12);
  display: none;
  flex-direction: column;
  gap: 0.15rem;
}

.language-dropdown.is-open .language-menu {
  display: flex;
}

.language-menu a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 0.85rem;
  border-radius: 12px;
  color: #071b36;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}

.language-menu a:hover,
.language-menu a:focus {
  background: #f3f7fb;
  color: #062c63;
  outline: none;
}

.language-current-flag {
  line-height: 1;
}

.language-caret {
  color: rgba(255, 255, 255, 0.74);
}

/* Force-remove accidental duplicate hero logos */
.hero .hero-logo,
.hero .hero-brand,
.hero .hero-brand-logo,
.hero-content .hero-logo,
.hero-content .hero-brand,
.hero-content .hero-brand-logo,
.hero img[src*="logo.png"],
.hero-content img[src*="logo.png"],
.campus-hero .izco-hero-logo {
  display: none !important;
}

/* Pathway finder equal field sizing */
.pathway-finder,
.pathway-panel,
.pathway-module {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.pathway-form,
.pathway-fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 0.85rem;
  align-items: end;
  width: 100%;
}

.pathway-field {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  min-width: 0;
}

.pathway-field label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(7, 27, 54, 0.78);
}

.pathway-control,
.pathway-field input,
.pathway-field select {
  width: 100%;
  height: 52px;
  min-height: 52px;
  padding: 0 0.95rem;
  border: 1px solid rgba(6, 44, 99, 0.16);
  border-radius: 14px;
  background: #ffffff;
  color: #071b36;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(7, 27, 54, 0.06);
  appearance: auto;
}

.pathway-control:focus,
.pathway-field input:focus,
.pathway-field select:focus {
  outline: 2px solid rgba(214, 163, 18, 0.35);
  border-color: #d6a312;
}

.pathway-form .btn,
.pathway-fields .btn,
.pathway-submit {
  height: 52px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  align-self: end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
}

.btn-primary {
  background: #d6a312;
  color: #071b36;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #ffffff;
}

/* Thank-you / final contact buttons centered */
.thank-you-contact {
  width: 100%;
  margin-top: 2rem;
  padding: clamp(4rem, 8vw, 7rem) 1.25rem;
  background:
    linear-gradient(135deg, rgba(7, 27, 54, 0.94), rgba(6, 44, 99, 0.9)),
    radial-gradient(circle at 20% 20%, rgba(214, 163, 18, 0.16), transparent 35%);
  color: #ffffff;
  text-align: center;
}

.thank-you-contact-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thank-you-contact h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.03;
}

.thank-you-contact p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.84);
}

.contact-button-group,
.final-contact-actions,
.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  margin-top: 1.6rem;
  text-align: center;
}

.contact-button-group .btn,
.final-contact-actions .btn,
.thank-you-actions .btn {
  min-width: 190px;
  justify-content: center;
  text-align: center;
}

.thank-you-contact .small-note {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 980px) {
  .pathway-form,
  .pathway-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pathway-form .btn,
  .pathway-fields .btn,
  .pathway-submit {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: 0;
  }

  .language-dropdown {
    flex: 1 1 auto;
  }

  .language-toggle {
    width: 100%;
    justify-content: center;
  }

  .language-menu {
    left: 0;
    right: auto;
    width: min(260px, 90vw);
  }

  .pathway-form,
  .pathway-fields {
    grid-template-columns: 1fr;
  }

  .pathway-control,
  .pathway-field input,
  .pathway-field select,
  .pathway-form .btn,
  .pathway-fields .btn,
  .pathway-submit {
    width: 100%;
  }

  .contact-button-group,
  .final-contact-actions,
  .thank-you-actions {
    flex-direction: column;
  }

  .contact-button-group .btn,
  .final-contact-actions .btn,
  .thank-you-actions .btn {
    width: 100%;
    max-width: 340px;
  }
}

/* FINAL HEADER BUGFIX — natural logo ratio and reliable language dropdown */

.site-header,
.site-header .site-nav,
.header-actions {
  overflow: visible !important;
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
}

.site-header .brand-logo,
.site-header .brand img.brand-logo,
.brand-logo {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 112px;
  max-height: 78px;
  object-fit: contain;
  object-position: center;
}

.site-header .language-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 5000;
}

.site-header .language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(6, 44, 99, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #071b36;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(7, 27, 54, 0.08);
}

.site-header .language-toggle:hover,
.site-header .language-toggle:focus {
  border-color: rgba(214, 163, 18, 0.8);
  outline: none;
}

.site-header .language-caret {
  color: rgba(7, 27, 54, 0.62);
}

.site-header .language-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: 190px;
  padding: 0.45rem;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(7, 27, 54, 0.22);
  border: 1px solid rgba(6, 44, 99, 0.12);
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  z-index: 6000;
}

.site-header .language-dropdown.is-open .language-menu,
.site-header .language-dropdown[data-open="true"] .language-menu {
  display: flex;
}

.site-header .language-menu a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 0.85rem;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #071b36;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
}

.site-header .language-menu a:hover,
.site-header .language-menu a:focus {
  background: #f3f7fb;
  color: #062c63;
  outline: none;
}

@media (max-width: 720px) {
  .site-header .brand-logo,
  .site-header .brand img.brand-logo,
  .brand-logo {
    max-width: 96px;
    max-height: 68px;
  }

  .site-header .language-dropdown {
    flex: 1 1 auto;
  }

  .site-header .language-toggle {
    width: 100%;
    justify-content: center;
  }

  .site-header .language-menu {
    left: 0;
    right: auto;
    width: min(260px, 90vw);
  }
}
