:root {
  --maroon: #800000;
  --maroon-deep: #5a0000;
  --gold: #C9A84C;
  --gold-light: #e8c96a;
  --gold-pale: #fafbfc;
  --cream: #f7f8fa;
  --surface: #fafafa;
  --dark: #1a1f29;
  --mid: #444;
  --light: #888;
  --border: #e8e0d5;
  --green: #2d7a4f;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
  overflow-x: hidden
}

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: #fff;
  color: #1a1f29;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  font-size: 18px;
  overflow-x: hidden
}

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

a {
  color: var(--maroon);
  text-decoration: none
}

h1,
h2,
h3 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #0f1419
}

h1 {
  font-size: clamp(38px, 5.5vw, 60px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: #0f1419
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -1.2px
}

h3 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.4px
}

h1 em {
  color: var(--green);
  font-style: normal;
  font-weight: 800;
  display: inline
}

section,
.section {
  padding: 56px 20px
}

@media(max-width:884px) {

  section,
  .section {
    padding: 40px 16px
  }
}

/* ── SCROLL REVEAL ANIMATIONS ── */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

[data-reveal="fade-up"] { transform: translateY(40px); }
[data-reveal="fade-down"] { transform: translateY(-40px); }
[data-reveal="fade-left"] { transform: translateX(-50px); }
[data-reveal="fade-right"] { transform: translateX(50px); }
[data-reveal="zoom-in"] { transform: scale(0.88); }
[data-reveal="flip-up"] { transform: perspective(600px) rotateX(12deg) translateY(30px); }

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="250"] { transition-delay: 0.25s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="350"] { transition-delay: 0.35s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

@media(prefers-reduced-motion:reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── FORM WARNINGS ── */
.form-warn {
  display: none;
  color: #c0392b;
  font-size: 12.5px;
  margin-top: -4px;
  margin-bottom: 12px;
  padding: 8px 12px;
  background: #fef2f2;
  border-left: 3px solid #c0392b;
  border-radius: 4px;
  font-weight: 600;
  line-height: 1.35
}

.form-warn::before {
  content: "\26A0  ";
  font-weight: 700;
  margin-right: 2px
}

.form-warn.show {
  display: block;
  animation: warn-shake .35s cubic-bezier(.36, .07, .19, .97)
}

.hero-form input.error {
  border-color: #c0392b !important;
  background: #fef2f2
}

@keyframes warn-shake {

  0%,
  100% {
    transform: translateX(0)
  }

  20% {
    transform: translateX(-5px)
  }

  40% {
    transform: translateX(5px)
  }

  60% {
    transform: translateX(-3px)
  }

  80% {
    transform: translateX(3px)
  }
}

/* ── TOP STRIP ── */
.top-strip {
  background: linear-gradient(90deg, var(--maroon-deep) 0%, #6b0000 100%);
  color: #fff;
  font-size: 12px;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(201, 168, 76, .25)
}

.top-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap
}

.ts-trust {
  color: var(--gold-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px
}

.ts-trust .ts-sep {
  color: rgba(201, 168, 76, .4);
  font-weight: 400;
  font-size: 13px
}

.ie-badge,
.dest-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(201, 168, 76, .15);
  border: 1.5px solid var(--gold-light);
  border-radius: 4px;
  color: var(--gold-light);
  font-family: 'Outfit', system-ui, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.5px;
  flex-shrink: 0
}

.ts-phones {
  display: flex;
  gap: 16px;
  align-items: center
}

.ts-phones a {
  color: #fff;
  font-weight: 600;
  font-size: 12.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .15s
}

.ts-phones a:hover {
  color: var(--gold-light)
}

.ts-phones a::before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e8c96a'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0
}

.ts-phones a strong {
  color: var(--gold-light);
  margin-right: 4px;
  font-size: 10px;
  letter-spacing: .14em;
  opacity: .85
}

/* ── HEADER ── */
.lp-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: padding .25s ease, box-shadow .25s ease
}

.lp-header.scrolled {
  padding: 10px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  border-bottom-color: transparent
}

.lp-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px
}

.lp-brand {
  line-height: 1.1;
  display: flex;
  flex-direction: column
}

.lp-brand strong {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 24px;
  color: var(--maroon);
  font-weight: 700;
  letter-spacing: -0.6px
}

.lp-brand strong em {
  font-style: normal;
  color: var(--gold);
  margin-left: 2px;
  font-weight: 700
}

.lp-brand span {
  font-size: 10px;
  color: var(--maroon);
  opacity: .7;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 3px
}

.lp-header-call {
  background: var(--maroon);
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .15s, transform .15s
}

.lp-header-call::before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0
}

.lp-header-call:hover {
  background: var(--maroon-deep);
  color: #fff;
  transform: translateY(-1px)
}

/* ── HERO ── */
.hero {
  background: linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
  padding: 40px 20px 56px;
  border-bottom: 1px solid #e5e7eb
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start
}

@media(max-width:884px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px
  }
}

.eyebrow {
  display: inline-block;
  background: rgba(45, 122, 79, .08);
  border: 1px solid rgba(45, 122, 79, .25);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 50px;
  margin-bottom: 16px
}

h1 {
  font-size: clamp(34px, 5vw, 54px);
  color: var(--maroon-deep);
  line-height: 1.18;
  margin-bottom: 14px
}

.subhead {
  font-size: 22px;
  color: #3f4854;
  line-height: 1.45;
  margin-bottom: 28px;
  max-width: 580px;
  font-weight: 400
}

.trust-bullets {
  list-style: none;
  padding: 0;
  margin: 22px 0 0
}

.trust-bullets li {
  padding: 10px 0 10px 20px;
  font-size: 18px;
  color: var(--dark);
  font-weight: 500;
  border-bottom: 1px dashed #e5e7eb;
  position: relative
}

.trust-bullets li::before {
  content: '–';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-weight: 700;
  line-height: 1
}

.trust-bullets li:last-child {
  border-bottom: 0
}

/* ── HERO FORM ── */
.hero-form {
  background: #fff;
  border-radius: 8px;
  padding: 26px 22px 22px;
  box-shadow: 0 20px 60px rgba(128, 0, 0, .15)
}

.hero-form h2 {
  font-size: 27px;
  color: #0f1419;
  margin-bottom: 4px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.7px;
  line-height: 1.1
}

.hero-form h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 700
}

.hero-form .form-sub {
  font-size: 14.5px;
  color: var(--light);
  margin-bottom: 16px
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  border: 1.5px solid #e5e7eb;
  border-radius: 4px;
  padding: 13px 14px;
  font-size: 17px;
  font-family: inherit;
  color: var(--dark);
  background: #fff;
  margin-bottom: 10px
}

.hero-form textarea {
  font-size: 15.5px;
  min-height: 74px;
  resize: vertical;
  line-height: 1.5
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  outline: none;
  border-color: var(--maroon)
}

.hero-form button[type="submit"] {
  width: 100%;
  background: var(--maroon);
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 16.5px;
  font-weight: 700;
  font-family: inherit;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 6px;
  letter-spacing: .02em
}

.hero-form button[type="submit"]:hover {
  background: var(--maroon-deep)
}

.form-note {
  font-size: 11px;
  color: var(--light);
  text-align: center;
  margin-top: 10px
}

.form-note a {
  color: var(--maroon)
}

.or-whatsapp {
  display: block;
  text-align: center;
  background: transparent;
  color: #25D366;
  padding: 12px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
  margin-top: 10px;
  border: 1.5px solid #25D366;
  transition: background .15s, color .15s
}

.or-whatsapp:hover {
  background: #25D366;
  color: #fff
}

/* ── HERO IMAGE BG ── */
.hero.hero-image-bg {
  background: #0a1628;
  border-bottom: none;
  padding: 80px 24px 70px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center
}

.hero.hero-image-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--hero-bg-img, none) center/cover no-repeat;
  opacity: 1
}

.hero.hero-image-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(10, 22, 40, 0.62) 0%, rgba(16, 89, 77, 0.35) 55%, rgba(16, 89, 77, 0.10) 100%)
}

.hero.hero-image-bg .hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none
}

@media(prefers-reduced-motion:reduce) {
  .hero.hero-image-bg .hero-bg-video {
    display: none
  }
}

.hero.hero-image-bg .hero-inner {
  position: relative;
  z-index: 2
}

.hero.hero-image-bg .eyebrow {
  background: rgba(245, 217, 126, .15);
  border-color: rgba(245, 217, 126, .35);
  color: #f5d97e
}

.hero.hero-image-bg h1 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .7), 0 1px 3px rgba(0, 0, 0, .5)
}

.hero.hero-image-bg h1 em {
  color: #f5d97e;
  font-style: italic;
  font-weight: 700;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .7), 0 1px 3px rgba(0, 0, 0, .5)
}

.hero.hero-image-bg .subhead {
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .6), 0 1px 3px rgba(0, 0, 0, .4)
}

.hero.hero-image-bg .trust-bullets li {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, .18)
}

.hero.hero-image-bg .trust-bullets li::before {
  color: var(--gold);
}

.hero.hero-image-bg .hero-form {
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  border-top-color: #f5d97e;
  border-radius: 12px
}

.hero.hero-image-bg .hero-form button[type="submit"] {
  background: linear-gradient(135deg, #f5d97e 0%, #d4b04c 50%, #a07a25 100%);
  color: #0a1628;
  font-weight: 800;
  transition: transform .15s, box-shadow .15s
}

.hero.hero-image-bg .hero-form button[type="submit"]:hover {
  background: linear-gradient(135deg, #fce196 0%, #e0c060 50%, #b08a2c 100%);
  color: #0a1628;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .25)
}



/* ── SECTION HEADING ── */
.sec-head {
  text-align: center;
  margin-bottom: 44px
}

.sec-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: #0f1419;
  line-height: 1.05;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: -1.2px;
  display: inline-block;
  position: relative;
  padding-bottom: 14px
}

.sec-head h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px
}

.sec-head h2 em {
  color: var(--green);
  font-style: normal;
  font-weight: 700
}

.sec-head p {
  color: #3f4854;
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.5
}

/* ── FOUNDER ── */
.founder {
  padding: 64px 24px;
  background: #faf7f2;
  border-bottom: 1px solid #f0ece5;
  border-top: 4px solid var(--gold);
  overflow: hidden;
}

.founder-inner {
  max-width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.founder-content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
}

/* Photo wrap */
.founder-photo-wrap {
  position: relative;
  display: block;
}

.founder-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Founder blob (organic/amorphous background shape) ── */
.founder-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  width: 560px;
  height: 560px;
  z-index: 0;
  animation: founderBlobFloat 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes founderBlobFloat {
  0%,100% { transform: translate(-50%,-54%) scale(1) rotate(0deg); }
  33%      { transform: translate(-50%,-54%) scale(1.05) rotate(4deg); }
  66%      { transform: translate(-50%,-54%) scale(0.96) rotate(-3deg); }
}

.founder-photo {
  position: relative;
  z-index: 1;
  width: 420px;
  height: 520px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transition: transform .4s ease
}

.founder-photo-wrap:hover .founder-photo {
  transform: translateY(-6px) scale(1.02);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

/* Credential strip below photo */
.founder-cred-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--light);
  letter-spacing: .01em;
  flex-wrap: wrap;
  justify-content: center
}

.founder-cred-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0
}

.founder-eyebrow {
  display: inline-block;
  background: rgba(128, 0, 0, .08);
  color: var(--maroon);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px
}

.founder h2 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 18px
}

.founder h2 em {
  color: var(--maroon);
  font-style: italic;
  font-weight: 700
}

.founder-body {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 24px
}

.founder-body p {
  margin: 0
}

.founder-body strong {
  color: var(--dark);
  font-weight: 700
}

.founder-body em {
  font-style: italic;
  color: var(--maroon)
}

.founder-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid #ede5d3;
  border-bottom: 1px solid #ede5d3;
  margin-bottom: 28px
}

.founder-stat {
  display: flex;
  flex-direction: column
}

.founder-stat .num {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--maroon);
  line-height: 1;
  letter-spacing: -1px
}

.founder-stat .label {
  font-size: 11px;
  color: var(--light);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: .02em;
  max-width: 100px;
  line-height: 1.35
}

/* CTA + availability row */
.founder-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 28px;
  padding: 0;
}

.founder-checklist li {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .45s ease, transform .45s ease;
}

.founder-checklist li.revealed {
  opacity: 1;
  transform: translateX(0);
}

.founder-cta-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.founder-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--maroon);
  color: #fff;
  padding: 13px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(201,168,76,.4);
  box-shadow: 0 4px 18px rgba(128,0,0,.25), inset 0 1px 0 rgba(255,255,255,.1);
  transition: transform .2s, box-shadow .2s, background .2s
}

.founder-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(128,0,0,.3);
  background: var(--maroon-deep);
  color: #fff
}

.founder-avail {
  font-size: 12px;
  color: var(--light);
  font-weight: 500;
  line-height: 1.4
}

@media(max-width:884px) {
  .founder-inner {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .founder-photo-wrap {
    align-items: flex-start
  }

  .founder-photo {
    width: 200px;
    height: 240px;
    font-size: 64px
  }

  .founder-badge {
    max-width: 220px
  }

  .founder-stats {
    gap: 20px
  }

  .founder-stat .num {
    font-size: 22px
  }
}

@media(max-width:480px) {
  .founder {
    padding: 48px 18px
  }

  .founder-photo {
    width: 160px;
    height: 200px;
    font-size: 54px
  }

  .founder-badge {
    max-width: 200px
  }

  .founder-cta-wrap {
    flex-direction: column;
    align-items: flex-start
  }
}

/* ── REASONS ── */
.reasons {
  background: #f7f8fa;
  border-bottom: 1px solid #e5e7eb
}

.reasons-inner {
  max-width: 1200px;
  margin: 0 auto
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px
}

.reason-card {
  background: #fff;
  border: none;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 24px;
  box-shadow: none
}

.reason-card h3 {
  font-size: 22px;
  color: #0f1419;
  margin-bottom: 8px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.3px
}

.reason-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65
}

/* ── COST ── */
.cost {
  background: #fff;
  border-bottom: 1px solid #e5e7eb
}

.cost-inner {
  max-width: 1200px;
  margin: 0 auto
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 24px
}

.cost-card {
  background: #f7f8fa;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 24px 28px
}

.cost-card-label {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--mid);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid #e5e7eb
}

.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px dashed #e5e7eb;
  gap: 14px
}

.cost-row:last-child {
  border-bottom: none
}

.cost-row-label {
  font-size: 14.5px;
  color: #0f1419;
  font-weight: 500
}

.cost-row-value {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 14.5px;
  color: var(--maroon);
  font-weight: 700;
  letter-spacing: -0.2px;
  text-align: right;
  white-space: nowrap
}

.cost-note {
  font-size: 12px;
  color: var(--light);
  font-style: italic;
  margin-top: 18px;
  text-align: center
}

@media(max-width:884px) {
  .cost-grid {
    grid-template-columns: 1fr
  }

  .cost-card {
    padding: 20px 18px
  }
}

/* ── UNIVERSITIES ── */
.unis {
  background: #fff;
  border-bottom: 1px solid #e5e7eb
}

.unis-inner {
  max-width: 1200px;
  margin: 0 auto
}

.unis-oncampus {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: none;
  border-radius: 8px;
  padding: 18px 22px;
  margin: 0 0 24px;
  max-width: 560px
}

.unis-oncampus-logo {
  flex-shrink: 0;
  width: 120px;
  height: 48px;
  background: #f8f8f7;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 800;
  color: var(--maroon);
  letter-spacing: .5px;
  font-size: 14px
}

.unis-oncampus-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block
}

.unis-oncampus-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px
}

.unis-oncampus-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--light)
}

.unis-oncampus-text strong {
  font-size: 15.5px;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.3
}

/* ── UNIVERSITY CAROUSEL ── */
.unis-carousel {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.unis-logos-grid {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: unis-scroll 35s linear infinite;
}

.unis-carousel:hover .unis-logos-grid {
  animation-play-state: paused;
}

@keyframes unis-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media(prefers-reduced-motion: reduce) {
  .unis-logos-grid {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }
}

.uni-logo-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px 16px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-height: 175px;
  width: 220px;
  flex-shrink: 0;
  justify-content: flex-start;
  transition: transform .15s, box-shadow .15s, border-color .15s
}

.uni-logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
  border-color: var(--green)
}

.uni-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100%;
  flex-shrink: 0
}

.uni-logo-wrap img {
  max-height: 96px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block
}

.uni-logo-wrap.uni-logo-text {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0ece4, #e8e0d0);
  border: 1.5px solid rgba(201,168,76,.3);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.4px;
  height: 64px;
  width: 64px;
  flex-shrink: 0;
}

.uni-logo-wrap.no-logo::after {
  content: attr(data-initials);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #f7f8fa;
  border: 1.5px solid #e5e7eb;
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.4px
}

.uni-logo-wrap.no-logo img {
  display: none
}

.uni-logo-name {
  font-size: 14px;
  font-weight: 700;
  color: #0f1419;
  letter-spacing: -0.2px;
  line-height: 1.3;
  font-family: 'Outfit', system-ui, sans-serif
}

/* ── VISA ── */
.visa {
  padding: 64px 24px;
  background: #fff
}

.visa-inner {
  max-width: 1100px;
  margin: 0 auto
}

.visa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 8px
}

.visa-phase {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.visa-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .02em
}

.visa-body h3 {
  font-size: 15.5px;
  color: var(--dark);
  font-weight: 700;
  margin: 0 0 7px;
  line-height: 1.3
}

.visa-body p {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.6;
  margin: 0
}

@media(max-width:884px) {
  .visa-grid {
    grid-template-columns: 1fr;
    gap: 14px
  }
}

/* ── SCHOLARSHIPS ── */
.schol {
  background: #f7f8fa;
  border-bottom: 1px solid #e5e7eb
}

.schol-inner {
  max-width: 1200px;
  margin: 0 auto
}

.schol-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px
}

.schol-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: transform .15s, box-shadow .15s
}

.schol-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(45, 122, 79, .12)
}

.schol-name {
  font-size: 16px;
  font-weight: 700;
  color: #0f1419;
  margin-bottom: 6px;
  line-height: 1.3;
  font-family: 'Outfit', system-ui, sans-serif;
  letter-spacing: -0.3px
}

.schol-type {
  font-size: 12.5px;
  color: var(--mid);
  margin-bottom: 14px;
  line-height: 1.5
}

.schol-inr {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 28px;
  color: var(--green);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.8px
}

.schol-eur {
  font-size: 12px;
  color: var(--light);
  margin-bottom: 10px
}

.schol-cite {
  font-size: 11px;
  color: var(--light);
  font-style: italic;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px dashed #e5e7eb
}

/* ── STATS ── */
.stats {
  background: #0f1419;
  border-bottom: none
}

.stats .sec-head h2 {
  color: #fff
}

.stats .sec-head h2::after {
  background: var(--gold)
}

.stats .sec-head p {
  color: rgba(255,255,255,.7)
}

.stats .stat-card {
  background: rgba(255,255,255,.06);
  box-shadow: none
}

.stats .stat-card:hover {
  background: rgba(255,255,255,.1);
  box-shadow: none
}

.stats .stat-num {
  color: var(--gold-light)
}

.stats .stat-text {
  color: rgba(255,255,255,.9)
}

.stats .stat-cite {
  color: rgba(255,255,255,.4)
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px
}

.stat-card {
  background: #fff;
  border: none;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 2px 12px rgba(0,0,0,.06)
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .1)
}

.stat-num {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: clamp(32px, 3.5vw, 44px);
  color: var(--green);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px
}

.stat-text {
  font-size: 13px;
  color: var(--dark);
  line-height: 1.45;
  font-weight: 500;
  margin-bottom: 6px
}

.stat-cite {
  font-size: 10.5px;
  color: var(--light);
  font-style: italic;
  line-height: 1.3
}

/* ── TESTIMONIALS ── */
.voices {
  background: #f7f8fa;
  border-bottom: 1px solid #e5e7eb
}

.voices-inner {
  max-width: 1200px;
  margin: 0 auto
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px
}

.voice {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 22px 22px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
  display: flex;
  flex-direction: column;
  transition: transform .15s, box-shadow .15s, border-color .15s
}

.voice:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
  border-color: var(--green)
}

.voice .stars {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 8px;
  letter-spacing: 1px
}

.voice blockquote {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.6;
  font-style: italic;
  position: relative;
  padding-left: 18px
}

.voice blockquote::before {
  content: "\201C";
  position: absolute;
  left: -2px;
  top: -8px;
  font-size: 36px;
  color: var(--green);
  font-family: Georgia, serif;
  line-height: 1;
  font-style: normal;
  opacity: .6
}

.voice>cite {
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  color: #0f1419;
  display: block;
  margin-top: 14px
}

.voice>.detail {
  font-size: 11.5px;
  color: var(--light);
  margin-top: 2px
}

/* ── PROCESS ── */
.process {
  background: #f7f8fa;
  border-bottom: 1px solid #e5e7eb
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px
}

.process-card {
  background: #fff;
  border: none;
  border-left: 4px solid var(--maroon);
  border-radius: 0 10px 10px 0;
  padding: 32px 24px 24px;
  position: relative;
  transition: transform .15s, box-shadow .15s;
  box-shadow: none
}

.process-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08)
}

.process-num {
  position: absolute;
  top: -14px;
  left: 20px;
  background: var(--maroon);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  font-family: 'Outfit', system-ui, sans-serif;
  letter-spacing: -0.5px
}

.process-card h3 {
  font-size: 22px;
  color: #0f1419;
  margin-bottom: 8px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.4px
}

.process-card p {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.6
}

/* ── CREDENTIALS ── */
.creds {
  background: linear-gradient(135deg, #0f1419, #1f2937);
  color: #fff;
  border-bottom: 0
}

.creds .sec-head h2 {
  color: #fff
}

.creds .sec-head h2::after {
  background: rgba(201, 168, 76, .5)
}

.creds .sec-head h2 em {
  color: var(--gold-light)
}

.cta .sec-head h2::after,
.hero .sec-head h2::after {
  display: none
}

.creds .sec-head p {
  color: rgba(255, 255, 255, .85)
}

.creds-inner {
  max-width: 1200px;
  margin: 0 auto
}

.creds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px
}

.cred-card {
  background: rgba(255, 255, 255, .08);
  border: 1.5px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  padding: 18px;
  transition: background .15s
}

.cred-card:hover {
  background: rgba(255, 255, 255, .12)
}

.cred-num {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 34px;
  color: var(--gold-light);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px
}

.cred-title {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 6px
}

.cred-body {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.55
}

/* ── FAQ ── */
.faq {
  background: #fff;
  border-bottom: 1px solid #e5e7eb
}

.faq-inner {
  max-width: 880px;
  margin: 0 auto
}

.faq-item {
  border-bottom: 1px solid #e5e7eb
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  gap: 18px
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  transition: transform .3s
}

.faq-item.open .faq-icon {
  transform: rotate(45deg)
}

.faq-a {
  display: none;
  padding: 0 0 16px;
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7
}

.faq-item.open .faq-a {
  display: block
}

/* ── FINAL CTA ── */
.cta {
  background: linear-gradient(135deg, #0f1419, #1f2937);
  padding: 56px 20px;
  text-align: center;
  color: #fff
}

.cta h2 {
  color: #fff;
  font-size: clamp(22px, 2.8vw, 32px);
  margin-bottom: 10px
}

.cta h2 em {
  color: var(--gold-light);
  font-style: italic
}

.cta p {
  color: rgba(255, 255, 255, .88);
  font-size: 15px;
  margin-bottom: 22px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto
}

.cta a.cta-btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 15px 30px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 6px;
  letter-spacing: .02em
}

.cta a.cta-btn:hover {
  background: #236239
}

/* ── FOOTER ── */
.lp-footer {
  background: #0f1419;
  color: rgba(255, 255, 255, .55);
  padding: 22px 20px;
  font-size: 12px;
  text-align: center
}

.lp-footer a {
  color: rgba(255, 255, 255, .75)
}

.lp-footer p+p {
  margin-top: 4px
}

/* ── POPUP ── */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 20, 25, .55);
  backdrop-filter: blur(3px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: popup-fade .25s ease-out
}

.popup.show {
  display: flex
}

@keyframes popup-fade {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.popup-card {
  background: linear-gradient(180deg, #5a0000 0%, #800000 100%);
  color: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 440px;
  padding: 30px 28px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
  animation: popup-pop .35s cubic-bezier(.34, 1.56, .64, 1)
}

@keyframes popup-pop {
  from {
    transform: scale(.85);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border: none;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s
}

.popup-close:hover {
  background: rgba(255, 255, 255, .22)
}

.popup-staff {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  position: relative
}

.popup-staff img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid #800000;
  object-fit: cover;
  margin-left: -12px;
  background: #fff
}

.popup-staff img:first-child {
  margin-left: 0
}

.popup-staff-status {
  position: absolute;
  right: calc(50% - 110px);
  bottom: -2px;
  width: 14px;
  height: 14px;
  background: #22c55e;
  border: 3px solid #800000;
  border-radius: 50%;
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .5)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0)
  }
}

.popup-eyebrow {
  display: inline-block;
  background: var(--gold);
  color: var(--maroon-deep);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 12px
}

.popup-h {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.6px;
  line-height: 1.15;
  margin-bottom: 10px
}

.popup-h em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 800
}

.popup-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.55;
  margin-bottom: 18px
}

.popup-form input[type="text"],
.popup-form input[type="tel"] {
  width: 100%;
  padding: 13px 16px;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-family: inherit;
  color: #0f1419;
  margin-bottom: 10px;
  outline: none;
  background: #fff
}

.popup-phone-row {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  margin-bottom: 10px;
  overflow: hidden
}

.popup-phone-prefix {
  padding: 13px 16px 13px 18px;
  font-size: 15px;
  font-weight: 700;
  color: var(--maroon-deep);
  border-right: 1px solid #e5e7eb
}

.popup-phone-row input {
  margin-bottom: 0 !important;
  border-radius: 0 50px 50px 0 !important;
  flex: 1
}

.popup-submit {
  width: 100%;
  background: var(--gold);
  color: var(--maroon-deep);
  border: none;
  padding: 14px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: .02em;
  transition: background .15s, transform .12s
}

.popup-submit:hover {
  background: var(--gold-light)
}

.popup-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.45;
  margin-top: 12px;
  text-align: left
}

.popup-consent a {
  color: var(--gold-light);
  text-decoration: underline
}

.popup-trust {
  font-size: 10.5px;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  line-height: 1.5
}

/* ── COOKIE BANNER ── */
.cookie {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  background: #fff;
  border-top: 3px solid var(--gold);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, .1);
  padding: 14px 18px
}

.cookie.show {
  display: block
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap
}

.cookie p {
  font-size: 12.5px;
  color: var(--mid);
  flex: 1;
  min-width: 240px;
  line-height: 1.5
}

.cookie p a {
  color: var(--maroon);
  font-weight: 600
}

.cookie button {
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  color: var(--dark);
  font-family: inherit
}

.cookie .accept {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon)
}

/* ── STICKY WHATSAPP ── */
.sticky-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 996;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  padding: 13px 20px 13px 14px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .4), 0 2px 8px rgba(0, 0, 0, .15);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Outfit', system-ui, sans-serif;
  line-height: 1;
  transition: transform .15s ease, box-shadow .15s ease;
  animation: sticky-wa-pulse 2.4s ease-in-out infinite
}

.sticky-wa:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .55);
  animation: none
}

.sticky-wa svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: #fff
}

@keyframes sticky-wa-pulse {

  0%,
  100% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, .4), 0 2px 8px rgba(0, 0, 0, .15)
  }

  50% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, .4), 0 0 0 12px rgba(37, 211, 102, 0)
  }
}

body:has(.cookie.show) .sticky-wa {
  bottom: 130px
}

/* ── MOBILE STICKY ── */
.mobile-cta {
  display: none
}

@media(max-width:884px) {
  body {
    padding-bottom: 56px
  }

  .mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, .18)
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: #25D366;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none
  }

  .lp-header-call {
    padding: 9px 12px;
    font-size: 12px
  }

  section,
  .section {
    padding: 40px 16px
  }

  .sticky-wa {
    display: none
  }

  body:has(.cookie.show) .sticky-wa {
    display: none
  }

  /* hero grid always single column on mobile */
  .hero-inner {
    grid-template-columns: 1fr
  }
}




/* ══════════════════════════════════════════════════════════
   LUXURY TYPOGRAPHY SYSTEM
   UK  → Cormorant Garamond (display) + DM Sans (body)
   IRL → Playfair Display (display)   + Lato (body)
═══════════════════════════════════════════════════════════ */

/* ── UK: body & base text ── */
[data-lp="uk"] {
  font-family: 'DM Sans', system-ui, sans-serif;
}

/* ── IRL: body & base text ── */
[data-lp="irl"] {
  font-family: 'Lato', system-ui, sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
}
[data-lp="irl"] p,
[data-lp="irl"] .subhead,
[data-lp="irl"] .sec-head p,
[data-lp="irl"] .reason-card p,
[data-lp="irl"] .visa-body p,
[data-lp="irl"] .process-card p,
[data-lp="irl"] .faq-a,
[data-lp="irl"] .cred-body,
[data-lp="irl"] .founder-body {
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* ── UK: display headings → Cormorant Garamond ── */
[data-lp="uk"] h1,
[data-lp="uk"] h2,
[data-lp="uk"] .sec-head h2,
[data-lp="uk"] .founder h2,
[data-lp="uk"] .hero-form h2,
[data-lp="uk"] .popup-h,
[data-lp="uk"] .cta h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
[data-lp="uk"] h1 {
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
[data-lp="uk"] h1 em {
  font-style: italic;
  font-weight: 700;
}
[data-lp="uk"] .sec-head h2 {
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 600;
  letter-spacing: -0.02em;
}
[data-lp="uk"] .sec-head h2 em {
  font-style: italic;
  font-weight: 700;
}
[data-lp="uk"] .hero-form h2 {
  font-size: 31px;
  font-weight: 600;
}
[data-lp="uk"] .cta h2 {
  font-size: clamp(28px, 3.5vw, 42px);
}

/* UK: stat numbers — keep Outfit (tabular numerics) but bump elegance */
[data-lp="uk"] .stat-num,
[data-lp="uk"] .founder-stat .num,
[data-lp="uk"] .schol-inr,
[data-lp="uk"] .cred-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(36px, 4vw, 50px);
}
[data-lp="uk"] .founder-stat .num { font-size: 32px; }
[data-lp="uk"] .schol-inr          { font-size: 30px; }
[data-lp="uk"] .cred-num           { font-size: 36px; }

/* UK: blockquotes */
[data-lp="uk"] .voice blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.7;
}
[data-lp="uk"] .voice blockquote::before {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 52px;
  opacity: 0.5;
}

/* UK: section subheadings (h3) */
[data-lp="uk"] h3,
[data-lp="uk"] .reason-card h3,
[data-lp="uk"] .process-card h3,
[data-lp="uk"] .visa-body h3 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.3px;
}

/* UK: brand name */
[data-lp="uk"] .lp-brand strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* UK: eyebrow labels — refined spaced caps */
[data-lp="uk"] .founder-eyebrow,
[data-lp="uk"] .ts-trust,
[data-lp="uk"] .popup-eyebrow,
[data-lp="uk"] .unis-oncampus-tag,
[data-lp="uk"] .cost-card-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  letter-spacing: 0.16em;
  font-size: 10.5px;
}

/* UK: buttons & CTAs */
[data-lp="uk"] .hero-form button[type="submit"],
[data-lp="uk"] .founder-cta,
[data-lp="uk"] .cta a.cta-btn,
[data-lp="uk"] .lp-header-call,
[data-lp="uk"] .or-whatsapp,
[data-lp="uk"] .popup-submit {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ── IRL: display headings → Playfair Display ── */
[data-lp="irl"] h1,
[data-lp="irl"] h2,
[data-lp="irl"] .sec-head h2,
[data-lp="irl"] .founder h2,
[data-lp="irl"] .hero-form h2,
[data-lp="irl"] .popup-h,
[data-lp="irl"] .cta h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}
[data-lp="irl"] h1 {
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 800;
  line-height: 1.1;
}
[data-lp="irl"] h1 em {
  font-style: italic;
  font-weight: 800;
}
[data-lp="irl"] .sec-head h2 {
  font-size: clamp(34px, 4.2vw, 50px);
  font-weight: 700;
}
[data-lp="irl"] .sec-head h2 em {
  font-style: italic;
}
[data-lp="irl"] .hero-form h2 {
  font-size: 26px;
}
[data-lp="irl"] .cta h2 {
  font-size: clamp(26px, 3.2vw, 38px);
}

/* IRL: stat numbers */
[data-lp="irl"] .stat-num,
[data-lp="irl"] .founder-stat .num,
[data-lp="irl"] .schol-inr,
[data-lp="irl"] .cred-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 3.8vw, 48px);
}
[data-lp="irl"] .founder-stat .num { font-size: 30px; }
[data-lp="irl"] .schol-inr          { font-size: 28px; }
[data-lp="irl"] .cred-num           { font-size: 34px; }

/* IRL: blockquotes */
[data-lp="irl"] .voice blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15.5px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.75;
}
[data-lp="irl"] .voice blockquote::before {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 54px;
}

/* IRL: h3 subheadings */
[data-lp="irl"] h3,
[data-lp="irl"] .reason-card h3,
[data-lp="irl"] .process-card h3,
[data-lp="irl"] .visa-body h3 {
  font-family: 'Lato', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

/* IRL: brand */
[data-lp="irl"] .lp-brand strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* IRL: eyebrow / labels */
[data-lp="irl"] .founder-eyebrow,
[data-lp="irl"] .ts-trust,
[data-lp="irl"] .popup-eyebrow,
[data-lp="irl"] .unis-oncampus-tag,
[data-lp="irl"] .cost-card-label {
  font-family: 'Lato', system-ui, sans-serif;
  letter-spacing: 0.18em;
  font-size: 10.5px;
  font-weight: 700;
}

/* IRL: buttons */
[data-lp="irl"] .hero-form button[type="submit"],
[data-lp="irl"] .founder-cta,
[data-lp="irl"] .cta a.cta-btn,
[data-lp="irl"] .lp-header-call,
[data-lp="irl"] .or-whatsapp,
[data-lp="irl"] .popup-submit {
  font-family: 'Lato', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* IRL: schol-name gets Playfair too */
[data-lp="irl"] .schol-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 17px;
}

/* UK founder section — uses IRL fonts (Playfair + Lato) */
[data-lp="uk"] .founder h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}
[data-lp="uk"] .founder h2 em {
  font-style: italic;
  font-weight: 700;
}
[data-lp="uk"] .founder-body,
[data-lp="uk"] .founder-body p,
[data-lp="uk"] .founder-eyebrow,
[data-lp="uk"] .founder-avail,
[data-lp="uk"] .founder-cred-strip,
[data-lp="uk"] .founder-stat .label {
  font-family: 'Lato', system-ui, sans-serif;
  font-weight: 300;
}
[data-lp="uk"] .founder-stat .num {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
}

/* UK: schol-name gets Cormorant */
[data-lp="uk"] .schol-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
}

/* Shared: form inputs stay neutral sans on both */
[data-lp="uk"] .hero-form input,
[data-lp="uk"] .hero-form textarea,
[data-lp="irl"] .hero-form input,
[data-lp="irl"] .hero-form textarea {
  font-family: 'DM Sans', 'Lato', system-ui, sans-serif;
}


/* ══════════════════════════════════════════════════════════
   PREMIUM / LUXURY UI LAYER
   Applies on top of base styles — no breaking changes
═══════════════════════════════════════════════════════════ */

/* ── 1. RICHER COLOUR TOKENS ── */
:root {
  --gold-shine: linear-gradient(135deg, #f5e17a 0%, #c9a84c 40%, #a07828 70%, #e8c96a 100%);
  --gold-shimmer: linear-gradient(90deg, #c9a84c 0%, #f5e17a 45%, #c9a84c 100%);
  --surface-warm: #fdf9f4;
  --surface-paper: #f9f5ef;
  --ink: #0d1117;
  --shadow-gold: 0 8px 32px rgba(201,168,76,.18);
  --shadow-deep: 0 20px 60px rgba(10,12,20,.14), 0 4px 16px rgba(10,12,20,.08);
  --glass: rgba(255,255,255,.72);
  --glass-border: rgba(255,255,255,.55);
  --radius-card: 16px;
  --radius-pill: 999px;
}

/* ── 2. WARM PAGE BACKGROUND TONE ── */
body {
  background: var(--surface-warm);
}

/* ── 3. CINEMATIC HERO OVERLAY — darker, richer, no green cast ── */
.hero.hero-image-bg::after {
  background: linear-gradient(
    115deg,
    rgba(8,10,18,.78) 0%,
    rgba(20,14,10,.55) 55%,
    rgba(8,10,18,.25) 100%
  );
}

/* Taller hero for presence */
.hero.hero-image-bg {
  min-height: 680px;
  padding: 100px 24px 80px;
}
@media(max-width:884px) {
  .hero.hero-image-bg {
    min-height: 0;
    padding: 24px 16px 32px;
    align-items: flex-start;
  }
  .hero.hero-image-bg::before { opacity: .65; }
}

/* ── 4. GOLD SHIMMER UNDERLINE on section headings ── */
.sec-head h2::after {
  width: 56px;
  height: 2px;
  background: var(--gold-shimmer);
  border-radius: 2px;
  background-size: 200% 100%;
  animation: gold-slide 3s ease-in-out infinite;
}
@keyframes gold-slide {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* ── 5. WARM ALTERNATING SECTION BACKGROUNDS ── */
.founder  { background: var(--surface-warm); }
.reasons  { background: var(--surface-paper); }
.cost     { background: #fff; }
.unis     { background: var(--surface-warm); }
.visa     { background: var(--surface-paper); }
.schol    { background: #fff; }
.voices   { background: var(--surface-paper); }
.process  { background: var(--surface-warm); }
.faq      { background: #fff; }

/* ── 6. CARD DEPTH — layered shadows & warm borders ── */
.reason-card,
.process-card {
  border-left-width: 3px;
  border-radius: 0 14px 14px 0;
  box-shadow: var(--shadow-deep);
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.reason-card:hover,
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(10,12,20,.13), var(--shadow-gold);
}

.cost-card {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid rgba(201,168,76,.22);
  box-shadow: var(--shadow-deep);
}

.visa-phase {
  border-radius: var(--radius-card);
  border: 1px solid rgba(201,168,76,.15);
  box-shadow: 0 4px 24px rgba(10,12,20,.07);
  transition: box-shadow .25s, transform .25s;
}
.visa-phase:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(10,12,20,.1), var(--shadow-gold);
}

.schol-card {
  border-radius: var(--radius-card);
  border: 1px solid rgba(45,122,79,.18);
  box-shadow: var(--shadow-deep);
}

.voice {
  border-radius: var(--radius-card);
  border: 1px solid rgba(201,168,76,.15);
  box-shadow: 0 4px 20px rgba(10,12,20,.06);
}
.voice:hover {
  box-shadow: 0 20px 48px rgba(10,12,20,.1), var(--shadow-gold);
}

.cred-card {
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,.07);
}
.cred-card:hover { background: rgba(255,255,255,.13); }

.stat-card {
  border-radius: var(--radius-card);
  box-shadow: none;
  border: 1px solid rgba(255,255,255,.08);
}

/* ── 7. GOLD METALLIC CTA BUTTONS ── */
.hero.hero-image-bg .hero-form button[type="submit"] {
  background: var(--gold-shine);
  background-size: 200% 100%;
  color: #1a0e00;
  font-weight: 800;
  border-radius: 8px;
  padding: 15px;
  letter-spacing: .04em;
  box-shadow: 0 4px 18px rgba(201,168,76,.35);
  transition: background-position .4s ease, transform .2s, box-shadow .2s;
}
.hero.hero-image-bg .hero-form button[type="submit"]:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,.5);
}

.founder-cta,
.cta a.cta-btn {
  background: var(--maroon);
  border: 1px solid rgba(201,168,76,.4);
  box-shadow: 0 4px 18px rgba(128,0,0,.25), inset 0 1px 0 rgba(255,255,255,.1);
  border-radius: 8px;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.founder-cta:hover,
.cta a.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(128,0,0,.3), inset 0 1px 0 rgba(255,255,255,.15);
  background: var(--maroon-deep);
}

.lp-header-call {
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(128,0,0,.2);
  transition: transform .2s, box-shadow .2s;
}
.lp-header-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(128,0,0,.28);
}

/* ── 8. PREMIUM HERO FORM ── */
.hero.hero-image-bg .hero-form {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: none;
  border-radius: 18px;
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(201,168,76,.15);
}

/* floating-label style inputs */
.hero-form input,
.hero-form textarea {
  border: none;
  border-bottom: 1.5px solid #d1c5b8;
  border-radius: 0;
  background: transparent;
  padding: 12px 2px 8px;
  transition: border-color .2s;
}
.hero-form input:focus,
.hero-form textarea:focus {
  border-bottom-color: var(--gold);
  background: transparent;
}
.hero-form textarea {
  border: 1.5px solid #d1c5b8;
  border-radius: 6px;
  padding: 10px 12px;
  background: #fdfaf6;
}
.hero-form textarea:focus {
  border-color: var(--gold);
  background: #fdfaf6;
}

/* ── 9. STICKY HEADER — frosted glass on scroll ── */
.lp-header.scrolled {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(10,12,20,.1);
  border-bottom: 1px solid rgba(201,168,76,.12);
}

/* ── 10. FOUNDER SECTION — premium photo frame ── */
.founder {
  border-top: none;
  position: relative;
}
.founder::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-shimmer);
  background-size: 200% 100%;
  animation: gold-slide 3s ease-in-out infinite;
}
.founder-photo-wrap:hover .founder-photo,
.founder-photo {
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  overflow: visible;
}

/* ── 11. VISA NUMBER BADGES ── */
.visa-num {
  background: var(--gold-shine);
  background-size: 200% 100%;
  color: #1a0e00;
  font-weight: 800;
  width: 46px;
  height: 46px;
  box-shadow: 0 4px 14px rgba(201,168,76,.3);
}

/* ── 12. STARS ── */
.voice .stars {
  font-size: 14px;
  background: var(--gold-shimmer);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-slide 3s ease-in-out infinite;
  letter-spacing: 2px;
}

/* ── 13. SECTION PADDING — more breathing room ── */
section, .section { padding: 80px 24px; }
@media(max-width:884px) { section, .section { padding: 48px 16px; } }

/* ── 14. POPUP CARD — premium dark glass ── */
.popup-card {
  background: linear-gradient(160deg, #3d0000 0%, #6b0000 50%, #800000 100%);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 0 1px rgba(201,168,76,.1);
}
.popup-submit {
  background: var(--gold-shine);
  background-size: 200% 100%;
  color: #1a0e00;
  border-radius: var(--radius-pill);
  font-weight: 800;
  transition: background-position .4s, transform .2s;
}
.popup-submit:hover {
  background-position: 100% 0;
  transform: translateY(-1px);
}

/* ── 15. TOP STRIP — richer gradient ── */
.top-strip {
  background: linear-gradient(90deg, #3d0000 0%, #6b0000 50%, #5a0000 100%);
  border-bottom: 1px solid rgba(201,168,76,.3);
}

/* ── 16. FOOTER — warm dark ── */
.lp-footer {
  background: #0a0c10;
  border-top: 1px solid rgba(201,168,76,.15);
}

/* ── 17. ONCAMPUS BADGE ── */
.unis-oncampus {
  border-radius: var(--radius-card);
  box-shadow: none;
  border: none;
}

/* ── 18. UNI LOGO CARD hover gold glow ── */
.uni-logo-card:hover {
  border-color: rgba(201,168,76,.5);
  box-shadow: 0 12px 32px rgba(201,168,76,.15);
}

/* ── 19. FAQ items — wider line ── */
.faq-item { border-bottom: 1px solid rgba(201,168,76,.15); }
.faq-q { font-size: 15.5px; }
.faq-item.open .faq-q { color: var(--maroon); }
.faq-icon {
  border-color: rgba(201,168,76,.3);
  background: rgba(201,168,76,.06);
}

/* ── 20. SCHOL-CARD gold accent on hover ── */
.schol-card:hover {
  border-left-color: var(--gold);
  box-shadow: 0 16px 48px rgba(201,168,76,.14);
}

/* ── 21. CTA section — richer gradient ── */
.cta {
  background: linear-gradient(135deg, #080a12 0%, #0f1419 50%, #1a1205 100%);
}
.cta::before {
  content: '';
  display: block;
  height: 2px;
  background: var(--gold-shimmer);
  background-size: 200% 100%;
  animation: gold-slide 3s ease-in-out infinite;
  margin-bottom: 56px;
  margin-top: -56px;
}

/* ── 22. CREDS section subtle pattern ── */
.creds {
  background: linear-gradient(135deg, #080a12 0%, #111827 100%);
  position: relative;
}
.creds::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* ── 23. STATS section texture ── */
.stats {
  background: linear-gradient(135deg, #080a12 0%, #0f1419 100%);
  position: relative;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201,168,76,.035) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* ── 24. MOBILE sticky CTA ── */
.mobile-cta a {
  background: linear-gradient(90deg, #1a8a44 0%, #25D366 100%);
  font-weight: 800;
  letter-spacing: .04em;
}

/* ── reduced motion: disable shimmer animations ── */
@media(prefers-reduced-motion:reduce) {
  .sec-head h2::after,
  .founder::before,
  .cta::before,
  .popup-submit,
  .hero.hero-image-bg .hero-form button[type="submit"],
  .voice .stars { animation: none !important; background-position: 0 0 !important; }
}

/* ══════════════════════════════════════════════════════════
   IRELAND PARALLAX SECTIONS
═══════════════════════════════════════════════════════════ */

.reasons-parallax,
.unis-parallax,
.schol-parallax {
  position: relative;
  background-color: transparent;
  border-bottom: none;
}

/* Fixed parallax background layer */
.reasons-parallax::before,
.unis-parallax::before,
.schol-parallax::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

/* Each section gets its own image — IRL order */
.reasons-parallax::before {
  background-image: url('../assets/images/ireland-bg-1.png');
}
.unis-parallax::before {
  background-image: url('../assets/images/ireland-bg-2.png');
}
.schol-parallax::before {
  background-image: url('../assets/images/ireland-bg-3.jpg');
}

/* UK page — rotated order */
[data-lp="uk"] .reasons-parallax::before {
  background-image: url('../assets/images/ireland-bg-3.jpg');
}
[data-lp="uk"] .unis-parallax::before {
  background-image: url('../assets/images/ireland-bg-1.png');
}
[data-lp="uk"] .schol-parallax::before {
  background-image: url('../assets/images/ireland-bg-2.png');
}

/* Dark overlay so text stays readable */
.reasons-parallax::after,
.unis-parallax::after,
.schol-parallax::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(8, 10, 18, 0.62);
  pointer-events: none;
}

/* Push inner content above the overlay */
.reasons-parallax .reasons-inner,
.unis-parallax .unis-inner,
.schol-parallax .schol-inner {
  position: relative;
  z-index: 1;
}

/* When section is active (in viewport) — show its bg */
.reasons-parallax.parallax-active::before,
.unis-parallax.parallax-active::before,
.schol-parallax.parallax-active::before {
  opacity: 1;
}

/* Text colour overrides for dark bg */
.reasons-parallax .sec-head h2,
.unis-parallax .sec-head h2,
.schol-parallax .sec-head h2 {
  color: #fff;
}
.reasons-parallax .sec-head h2 em,
.unis-parallax .sec-head h2 em,
.schol-parallax .sec-head h2 em {
  color: var(--gold-light);
}
.reasons-parallax .sec-head p,
.unis-parallax .sec-head p,
.schol-parallax .sec-head p {
  color: rgba(255,255,255,.75);
}

/* Reason cards — frosted glass on dark bg */
.reasons-parallax .reason-card {
  background: rgba(255,255,255,.07);
  border-left-color: var(--gold-light);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0 14px 14px 0;
}
.reasons-parallax .reason-card h3 {
  color: #fff;
}
.reasons-parallax .reason-card p {
  color: rgba(255,255,255,.75);
}

/* Uni logo cards on dark bg */
.unis-parallax .uni-logo-card {
  background: rgba(255,255,255,.92);
}
.unis-parallax .uni-logo-name {
  color: #0f1419;
}

/* Schol cards on dark bg */
.schol-parallax .schol-card {
  background: rgba(255,255,255,.07);
  border-left-color: var(--gold-light);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(255,255,255,.12);
}
.schol-parallax .schol-name {
  color: #fff;
}
.schol-parallax .schol-type {
  color: rgba(255,255,255,.65);
}
.schol-parallax .schol-inr {
  color: var(--gold-light);
}
.schol-parallax .schol-eur,
.schol-parallax .schol-cite {
  color: rgba(255,255,255,.5);
  border-top-color: rgba(255,255,255,.15);
}

/* Disable fixed attachment on mobile (performance + iOS bug) */
@media(max-width:884px) {
  .reasons-parallax::before,
  .unis-parallax::before,
  .schol-parallax::before {
    position: absolute;
    opacity: 1 !important;
  }
  .reasons-parallax::after,
  .unis-parallax::after,
  .schol-parallax::after {
    position: absolute;
  }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE + TABLET PORTRAIT  (≤884px)
   Desktop + landscape tablet = >884px (no overrides needed)
══════════════════════════════════════════════════════════ */
@media(max-width:884px) {

  /* ── TOP STRIP ── */
  .top-strip { display: none; }

  /* ── HERO ── */
  .hero-inner { grid-template-columns: 1fr; gap: 20px; }

  .hero.hero-image-bg h1 {
    font-size: clamp(24px, 7.5vw, 36px);
    letter-spacing: -.5px;
    line-height: 1.15;
  }

  .subhead { font-size: 15px; margin-bottom: 16px; }

  .trust-bullets li {
    font-size: 14px;
    padding: 9px 10px 9px 24px;
    background: rgba(0,0,0,.32);
    border-radius: 6px;
  }

  /* ── HERO FORM ── */
  .hero-form { padding: 20px 16px 16px; border-radius: 10px; }
  .hero-form h2 { font-size: 21px; }
  .hero-form .form-sub { font-size: 13px; }
  .hero-form input,
  .hero-form select,
  .hero-form textarea { font-size: 15px; padding: 11px 12px; }
  .hero-form button[type="submit"] { font-size: 15px; padding: 13px; }
  .or-whatsapp { font-size: 14px; padding: 11px; }

  /* ── FOUNDER ── */
  .founder-inner { grid-template-columns: 1fr; gap: 32px; }
  .founder-photo-wrap { width: 100%; }
  .founder-banner-img { width: 100%; height: auto; object-fit: contain; border-radius: 8px; }
  .founder-content { padding: 0; }
  .founder-stats { gap: 18px; }
  .founder-stat .num { font-size: 22px; }
  .founder-cta-wrap { flex-direction: column; align-items: flex-start; }

  /* ── COSTS ── */
  .cost-grid { grid-template-columns: 1fr; }
  .cost-card { padding: 20px 16px; }

  /* ── VISA ── */
  .visa-grid { grid-template-columns: 1fr; gap: 14px; }

  /* ── STATS GRID ── */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card { padding: 24px 16px; }
  .stat-num { font-size: clamp(28px, 7vw, 38px); }

  /* ── TESTIMONIALS ── */
  .voices-carousel-wrap {
    overflow: hidden;
    width: 100%;
  }
  .voices-grid {
    display: flex !important;
    grid-template-columns: unset !important;
    gap: 0 !important;
    width: max-content;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  }
  .voice {
    min-width: 85vw;
    max-width: 85vw;
    margin: 0 8px;
    flex-shrink: 0;
  }

  /* ── PROCESS ── */
  .process-grid { grid-template-columns: 1fr; }

  /* ── REASONS ── */
  .reasons-grid { grid-template-columns: 1fr; }

  /* reasons mobile carousel */
  .reasons-carousel-wrap {
    overflow: hidden;
    width: 100%;
  }
  .reasons-grid {
    display: flex !important;
    gap: 0 !important;
    width: max-content;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  }
  .reason-card {
    min-width: 85vw;
    max-width: 85vw;
    margin: 0 8px;
    flex-shrink: 0;
  }

  /* ── SCHOL ── */
  .schol-carousel-wrap {
    overflow: hidden;
    width: 100%;
  }
  .schol-grid {
    display: flex !important;
    grid-template-columns: unset !important;
    gap: 0 !important;
    width: max-content;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  }
  .schol-card {
    min-width: 85vw;
    max-width: 85vw;
    margin: 0 8px;
    flex-shrink: 0;
  }

  /* ── CREDS ── */
  .creds-carousel-wrap {
    overflow: hidden;
    width: 100%;
  }
  .creds-grid {
    display: flex !important;
    grid-template-columns: unset !important;
    gap: 0 !important;
    width: max-content;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  }
  .cred-card {
    min-width: 85vw;
    max-width: 85vw;
    margin: 0 8px;
    flex-shrink: 0;
  }

  /* ── SEC HEAD ── */
  .sec-head { margin-bottom: 32px; }
  .sec-head h2 { font-size: clamp(26px, 6.5vw, 36px); letter-spacing: -.8px; }
  .sec-head p { font-size: 15px; }

  /* ── POPUP ── */
  .popup-card { padding: 26px 18px 20px; }
  .popup-h { font-size: 22px; }
  .popup-staff img { width: 44px; height: 44px; }
}
