/* ============================================================
   DESIGN TOKENS â€” brand orange anchored from logo
============================================================ */
:root {
  /* Brand orange (matches the logo background) */
  --orange-600: #E26421;
  --orange-500: #F2792F;
  --orange-400: #F89A5C;
  --orange-100: #FDE8D7;
  --orange-50:  #FFF5EC;

  /* Sun accent yellow */
  --yellow-500: #F5C242;
  --yellow-400: #F8D472;

  /* Deep contrast */
  --ink-900: #1A1410;
  --ink-800: #2D241D;
  --ink-700: #4A3D33;
  --ink-500: #7B6E63;
  --ink-300: #B5AA9F;

  --paper:   #FCFAF6;
  --cream:   #FAF3E8;
  --white:   #FFFFFF;
  --line:    #ECE3D5;

  --success: #1F9D55;
  --whatsapp:#25D366;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 8px rgba(45, 36, 29, 0.06);
  --shadow:    0 12px 36px rgba(45, 36, 29, 0.10);
  --shadow-lg: 0 24px 60px rgba(45, 36, 29, 0.18);

  --display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1200px;
}

/* ============================================================
   RESET + BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-600); text-decoration: none; transition: color .2s; }
a:hover { color: var(--ink-900); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink-900);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.45rem); }
p  { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; position: relative; scroll-margin-top: 90px; }
.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 14px;
}
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head p { font-size: 1.08rem; color: var(--ink-500); }

/* Visually hidden â€” for SEO semantic keywords */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-weight: 600;
  font-size: 0.97rem;
  border-radius: 999px;
  transition: all .25s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
  min-height: 48px;
}
.btn-primary {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(242, 121, 47, 0.32);
}
.btn-primary:hover {
  background: var(--orange-600);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(226, 100, 33, 0.42);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.32);
}
.btn-whatsapp:hover { background: #1eb858; color: var(--white); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--ink-900);
  border: 1.5px solid var(--ink-900);
}
.btn-outline:hover { background: var(--ink-900); color: var(--white); }
.btn-cream {
  background: var(--white);
  color: var(--orange-600);
  border: 1.5px solid var(--orange-500);
}
.btn-cream:hover { background: var(--orange-500); color: var(--white); }
.btn-yellow {
  background: var(--yellow-500);
  color: var(--ink-900);
  box-shadow: 0 8px 22px rgba(245, 194, 66, 0.40);
}
.btn-yellow:hover { background: var(--yellow-400); transform: translateY(-2px); }

/* ============================================================
   OFFER BANNER (top strip)
============================================================ */
.offer-bar {
  background: linear-gradient(90deg, var(--ink-900), var(--orange-600));
  color: var(--white);
  text-align: center;
  font-size: 0.86rem;
  font-weight: 500;
  padding: 9px 16px;
  position: relative;
  z-index: 101;
}
.offer-bar strong { color: var(--yellow-400); font-weight: 700; }
.offer-bar a { color: var(--yellow-400); text-decoration: underline; margin-left: 6px; }
.offer-bar a:hover { color: var(--white); }
.offer-close {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.1rem;
  opacity: .7;
}
.offer-close:hover { opacity: 1; }
@media (max-width: 600px) { .offer-bar { font-size: 0.78rem; padding: 8px 36px 8px 12px; } }

/* ============================================================
   HEADER (sticky)
============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink-900);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 14px rgba(45, 36, 29, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  .logo img { height: 38px; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  position: relative;
}
.nav-links a:hover { color: var(--orange-500); }
.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.menu-btn {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 10px;
}
.menu-btn span { width: 22px; height: 2px; background: var(--ink-900); position: relative; }
.menu-btn span::before, .menu-btn span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px;
  background: var(--ink-900); transition: .25s;
}
.menu-btn span::before { top: -7px; }
.menu-btn span::after { top: 7px; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta .btn-outline { display: none; }
  .menu-btn { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    padding: 20px 24px 28px;
    gap: 4px;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open li a {
    display: block;
    padding: 12px 8px;
    border-bottom: 1px solid var(--line);
  }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  padding: 70px 0 110px;
  background:
    radial-gradient(1100px 540px at 12% -8%, rgba(245, 194, 66, 0.20), transparent 55%),
    radial-gradient(900px 600px at 110% 25%, rgba(242, 121, 47, 0.16), transparent 60%),
    var(--paper);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(45, 36, 29, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 36, 29, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-700);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(31, 157, 85, 0.18);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }

.hero h1 .accent {
  font-style: italic;
  font-weight: 700;
  color: var(--orange-600);
  position: relative;
  white-space: nowrap;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 12px;
  background: var(--yellow-400);
  opacity: 0.55;
  z-index: -1;
  border-radius: 3px;
}
.hero p.lead {
  font-size: 1.15rem;
  color: var(--ink-500);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.trust-stat .num {
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.trust-stat .num span { color: var(--orange-500); }
.trust-stat .lbl {
  font-size: 0.82rem;
  color: var(--ink-500);
  font-weight: 500;
}

/* Hero visual card */
.hero-visual { position: relative; }
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid var(--line);
}
.hero-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--line);
}
.hero-card-head .icon {
  width: 48px; height: 48px;
  background: var(--orange-50);
  color: var(--orange-500);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.4rem;
}
.hero-card-head h3 { margin: 0; font-size: 1.1rem; }
.hero-card-head p { margin: 2px 0 0; font-size: 0.85rem; color: var(--ink-500); }

.success-row {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 8px;
}
.success-row .lbl { font-size: 0.92rem; color: var(--ink-700); font-weight: 500; }
.success-row .val { font-family: var(--display); font-weight: 700; color: var(--ink-900); font-size: 1.05rem; }
.bar { height: 8px; background: var(--orange-50); border-radius: 99px; overflow: hidden; margin-bottom: 18px; }
.bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange-500), var(--yellow-500));
  border-radius: 99px;
  width: 0;
  animation: fill 1.6s ease-out forwards;
}
.bar.b1 i { --w: 95%; }
.bar.b2 i { --w: 92%; }
.bar.b3 i { --w: 89%; }
@keyframes fill { to { width: var(--w); } }

.hero-card-foot {
  margin-top: 18px;
  padding: 14px;
  background: var(--orange-50);
  border-radius: var(--radius);
  font-size: 0.86rem;
  color: var(--ink-700);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-card-foot strong { color: var(--ink-900); }

.floating-tag {
  position: absolute;
  background: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.84rem; font-weight: 500;
  border: 1px solid var(--line);
  animation: float 4s ease-in-out infinite;
}
.floating-tag.t1 { top: -49px; right: -10px; }
.floating-tag.t2 { bottom: -18px; left: -22px; animation-delay: 1.5s; }
.floating-tag .ico {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--orange-100); color: var(--orange-600);
  display: grid; place-items: center;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

@media (max-width: 600px) { .floating-tag { display: none; } }

/* ============================================================
   ABOUT
============================================================ */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}
.about-visual {
  position: relative;
  background: linear-gradient(160deg, var(--orange-500), var(--orange-600));
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  padding: 36px 32px;
  color: var(--white);
}
.about-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(245, 194, 66, 0.45), transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(255, 255, 255, 0.20), transparent 55%);
  pointer-events: none;
}
.about-visual > * { position: relative; z-index: 1; }

.about-trust-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.about-trust-head h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--white);
}
.about-trust-head .live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 5px 11px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.about-trust-head .live-pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.about-uni-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.about-uni-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  padding: 11px 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.25s ease, background 0.25s ease;
}
.about-uni-row:hover {
  transform: translateX(4px);
  background: rgba(255,255,255,0.16);
}
.about-uni-row .flag {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.about-uni-row .uni-info {
  flex: 1;
  min-width: 0;
}
.about-uni-row .uni-name {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.about-uni-row .uni-meta {
  display: block;
  font-size: 0.78rem;
  opacity: 0.82;
  margin-top: 2px;
}
.about-uni-row .uni-status {
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--yellow-400);
  color: var(--ink-900);
  padding: 4px 9px;
  border-radius: 99px;
  white-space: nowrap;
  flex-shrink: 0;
}

.about-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(0,0,0,0.18);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
}
.about-rating .stars {
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: var(--yellow-400);
  line-height: 1;
}
.about-rating .rating-text {
  flex: 1;
  font-size: 0.85rem;
  line-height: 1.35;
}
.about-rating .rating-text strong { font-weight: 700; }
.about-rating .google-mark {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.about-badges .badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 99px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  letter-spacing: 0.02em;
}

.about-text h2 .accent { color: var(--orange-600); font-style: italic; }
.about-text p { font-size: 1.05rem; color: var(--ink-700); margin-bottom: 1.2em; }
.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.pillar {
  padding: 20px;
  background: var(--orange-50);
  border-radius: var(--radius);
  border-left: 3px solid var(--orange-500);
}
.pillar .num {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1;
  margin-bottom: 6px;
}
.pillar p { font-size: 0.88rem; color: var(--ink-500); margin: 0; }

/* ============================================================
   SERVICES
============================================================ */
.services { background: var(--paper); position: relative; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-500), var(--yellow-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--orange-50);
  color: var(--orange-500);
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: all .3s;
}
.service-card:hover .service-icon {
  background: var(--orange-500);
  color: var(--white);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-title-link { color: inherit; transition: color .2s; }
.service-title-link:hover { color: var(--orange-600); }
.service-card.featured .service-title-link:hover { color: var(--yellow-400); }
.service-card p { font-size: 0.94rem; color: var(--ink-500); margin-bottom: 16px; }
.service-card ul { list-style: none; padding: 0; margin: 0; }
.service-card li {
  font-size: 0.88rem;
  color: var(--ink-700);
  padding: 6px 0 6px 24px;
  position: relative;
}
.service-card li::before {
  content: 'âœ“';
  position: absolute; left: 0; top: 6px;
  width: 16px; height: 16px;
  background: var(--success);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.65rem;
  font-weight: 700;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.service-tags span {
  background: var(--orange-50);
  color: var(--ink-800);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid var(--orange-100);
}
.service-card.featured {
  background: linear-gradient(160deg, var(--ink-900), var(--ink-800));
  color: var(--cream);
  border-color: transparent;
}
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,0.78); }
.service-card.featured li { color: rgba(255,255,255,0.88); }
.service-card.featured .service-icon {
  background: rgba(245, 194, 66, 0.22);
  color: var(--yellow-400);
}
.service-card.featured:hover .service-icon {
  background: var(--yellow-500);
  color: var(--ink-900);
}
.service-card.featured .ribbon {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--yellow-500);
  color: var(--ink-900);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 99px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   COUNTRIES
============================================================ */
.countries { background: var(--white); }
.countries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1000px) { .countries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .countries-grid { grid-template-columns: 1fr; } }
.country-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .4s ease, box-shadow .4s ease, border-color .3s;
}
.country-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.country-card.canada      { border-top: 4px solid #D63A3A; }
.country-card.uk          { border-top: 4px solid #1D4FA5; }
.country-card.australia   { border-top: 4px solid #F5C242; }
.country-card.usa         { border-top: 4px solid #3C5BA8; }
.country-card.newzealand  { border-top: 4px solid #00509E; }
.country-card.germany     { border-top: 4px solid #1A1410; }

.country-media {
  position: relative;
  aspect-ratio: 5/3;
  overflow: hidden;
  background: var(--orange-50);
}
.country-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.country-card:hover .country-media img { transform: scale(1.05); }
.country-flag-mark {
  position: absolute;
  top: 14px; left: 14px;
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.92);
  display: grid; place-items: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
  z-index: 2;
}
.country-pill {
  position: absolute;
  bottom: 14px; left: 14px;
  background: var(--white);
  padding: 7px 14px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.20);
  z-index: 2;
}
.country-card.canada     .country-pill { color: #D63A3A; }
.country-card.uk         .country-pill { color: #1D4FA5; }
.country-card.australia  .country-pill {
  color: var(--ink-900);
  background: var(--yellow-400);
}
.country-card.usa        .country-pill { color: #3C5BA8; }
.country-card.newzealand .country-pill { color: #00509E; }
.country-card.germany    .country-pill { color: var(--ink-900); }

.country-body { padding: 26px 24px; flex: 1; display: flex; flex-direction: column; }
.country-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.country-head h3 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--ink-900);
  font-weight: 700;
  line-height: 1.15;
  font-family: var(--display);
}
.country-success { text-align: right; flex-shrink: 0; }
.country-success .pct {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--success);
  line-height: 1;
  display: block;
}
.country-success .lbl {
  font-size: 0.74rem;
  color: var(--ink-500);
  font-weight: 500;
}
.country-perks {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.country-perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 7px 0;
  font-size: 0.92rem;
  color: var(--ink-700);
  line-height: 1.45;
}
.country-perks li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.country-card.canada     .country-perks li svg { color: #D63A3A; }
.country-card.uk         .country-perks li svg { color: #1D4FA5; }
.country-card.australia  .country-perks li svg { color: var(--orange-500); }
.country-card.usa        .country-perks li svg { color: #3C5BA8; }
.country-card.newzealand .country-perks li svg { color: #00509E; }
.country-card.germany    .country-perks li svg { color: var(--ink-800); }
.country-courses {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.country-courses .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 10px;
  display: block;
}
.country-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.country-tags span {
  background: var(--orange-50);
  color: var(--ink-800);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 99px;
}
.country-cta {
  display: block;
  margin: 18px 0 0;
  padding: 12px 18px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  background: var(--ink-900);
  color: var(--white) !important;
  transition: background .2s, transform .2s;
}
.country-cta:hover { background: var(--orange-600); transform: translateY(-1px); }
.country-card.canada     .country-cta:hover { background: #D63A3A; }
.country-card.uk         .country-cta:hover { background: #1D4FA5; }
.country-card.australia  .country-cta:hover { background: var(--orange-600); }
.country-card.usa        .country-cta:hover { background: #3C5BA8; }
.country-card.newzealand .country-cta:hover { background: #00509E; }
.country-card.germany    .country-cta:hover { background: var(--orange-600); }

/* ============================================================
   SCHOLARSHIP BANNER
============================================================ */
.scholarship {
  padding: 0;
  background: var(--paper);
}
.scholarship-wrap {
  background: linear-gradient(120deg, var(--yellow-500) 0%, var(--orange-500) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 80px 0;
}
.scholarship-wrap::before {
  content: 'ðŸŽ“';
  position: absolute;
  font-size: 14rem;
  right: -30px; top: -40px;
  opacity: 0.12;
  transform: rotate(-12deg);
}
.scholarship-text { color: var(--ink-900); position: relative; max-width: 640px; }
.scholarship-text .tag {
  display: inline-block;
  background: var(--ink-900);
  color: var(--yellow-400);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.scholarship-text h2 {
  color: var(--ink-900);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}
.scholarship-text p { color: var(--ink-800); font-size: 1.02rem; margin: 0; }
.scholarship-cta { position: relative; flex-shrink: 0; }
@media (max-width: 700px) {
  .scholarship-wrap { padding: 36px 28px; flex-direction: column; align-items: flex-start; }
  .scholarship-cta .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   WHY US
============================================================ */
.why {
  background: linear-gradient(160deg, var(--ink-900), var(--ink-800));
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(242, 121, 47, 0.20), transparent 70%);
  pointer-events: none;
}
.why::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245, 194, 66, 0.14), transparent 70%);
  pointer-events: none;
}
.why .section-head h2 { color: var(--white); }
.why .section-head h2 .accent { color: var(--yellow-400); font-style: italic; }
.why .section-head p { color: rgba(255,255,255,0.75); }
.why .eyebrow { color: var(--yellow-400); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  position: relative;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: all .3s ease;
}
.why-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  border-color: rgba(245, 194, 66, 0.4);
}
.why-card .num {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--yellow-400);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.why-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 8px; }
.why-card p { font-size: 0.92rem; color: rgba(255,255,255,0.75); margin: 0; line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all .3s ease;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial::before {
  content: '"';
  position: absolute;
  top: 12px; right: 24px;
  font-family: var(--display);
  font-size: 5rem;
  color: var(--orange-100);
  line-height: 1;
}
.stars { color: var(--orange-500); margin-bottom: 14px; font-size: 1rem; letter-spacing: 2px; }
.testimonial p {
  font-family: var(--display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 500;
  color: var(--ink-900);
  line-height: 1.55;
  margin-bottom: 22px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--line); }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.testimonial-author .who { font-weight: 600; color: var(--ink-900); font-size: 0.92rem; line-height: 1.3; }
.testimonial-author .where { font-size: 0.78rem; color: var(--ink-500); margin-top: 2px; }

/* ============================================================
   LEAD CAPTURE
============================================================ */
.lead { background: var(--white); position: relative; overflow: hidden; }
.lead-wrap {
  background: linear-gradient(160deg, var(--ink-900), var(--ink-800));
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.lead-wrap::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(242, 121, 47, 0.30), transparent 70%);
  pointer-events: none;
}
.lead-wrap::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(245, 194, 66, 0.16), transparent 70%);
  pointer-events: none;
}
@media (max-width: 880px) {
  .lead-wrap { grid-template-columns: 1fr; padding: 40px 28px; gap: 36px; }
}
.lead-info { color: var(--white); position: relative; }
.lead-info .eyebrow { color: var(--yellow-400); }
.lead-info h2 { color: var(--white); }
.lead-info h2 .accent { color: var(--yellow-400); font-style: italic; }
.lead-info p { color: rgba(255,255,255,0.82); margin-bottom: 28px; font-size: 1.05rem; }
.lead-perks { list-style: none; padding: 0; margin: 0; }
.lead-perks li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 9px 0;
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
}
.lead-perks li::before {
  content: 'âœ“';
  width: 22px; height: 22px;
  background: var(--orange-500);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.lead-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.lead-form h3 { font-size: 1.4rem; margin-bottom: 6px; }
.lead-form .sub { font-size: 0.9rem; color: var(--ink-500); margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.field input, .field select {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--ink-900);
  background: var(--orange-50);
  border: 1.5px solid transparent;
  border-radius: 10px;
  transition: all .2s;
  outline: none;
  min-height: 48px;
}
.field input:focus, .field select:focus {
  background: var(--white);
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(242, 121, 47, 0.15);
}
.field.error input, .field.error select {
  border-color: #d04949;
  background: #fff3f3;
}
.field .err-msg {
  display: none;
  font-size: 0.78rem;
  color: #c93030;
  margin-top: 6px;
}
.field.error .err-msg { display: block; }
/* Honeypot */
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.recaptcha-note {
  font-size: 0.72rem;
  color: var(--ink-500);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}
.recaptcha-note a { color: var(--ink-700); text-decoration: underline; }
.lead-form button[type="submit"] {
  width: 100%;
  background: var(--orange-500);
  color: var(--white);
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  margin-top: 6px;
  letter-spacing: 0.02em;
  transition: all .25s;
  min-height: 52px;
}
.lead-form button[type="submit"]:hover:not(:disabled) {
  background: var(--orange-600);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(242, 121, 47, 0.36);
}
.lead-form button[type="submit"]:disabled { opacity: 0.7; cursor: not-allowed; }
.lead-form .tiny { font-size: 0.74rem; color: var(--ink-500); text-align: center; margin-top: 12px; margin-bottom: 0; }
.lead-form .form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.lead-form .form-success.show { display: block; }
.lead-form .form-success .ico {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--success);
  color: var(--white);
  display: grid; place-items: center;
  margin: 0 auto 16px;
  font-size: 2rem;
}
.lead-form .form-success h4 {
  font-family: var(--display);
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--ink-900);
}
.urgency-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange-600);
  background: var(--orange-50);
  padding: 6px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.urgency-tag .pulse {
  width: 7px; height: 7px;
  background: var(--orange-500);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* ============================================================
   FAQ
============================================================ */
.faq { background: var(--paper); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all .25s;
}
.faq-item:hover { border-color: var(--orange-400); }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--orange-500); }
.faq-q {
  padding: 20px 56px 20px 24px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink-900);
  cursor: pointer;
  position: relative;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  background: var(--orange-50);
  color: var(--orange-600);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.2rem;
  font-weight: 400;
  transition: all .3s;
}
.faq-item[open] .faq-q::after {
  content: 'âˆ’';
  background: var(--orange-500);
  color: var(--white);
}
.faq-a { padding: 0 24px 20px; color: var(--ink-700); font-size: 0.96rem; line-height: 1.7; }

/* ============================================================
   MAP / CONTACT BAND
============================================================ */
.map-band { padding: 0; background: var(--white); }
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
@media (max-width: 880px) { .map-grid { grid-template-columns: 1fr; } }
.map-info {
  padding: 80px 56px;
  background: var(--orange-50);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.map-info h2 { font-size: 2rem; }
.map-info h2 .accent { color: var(--orange-600); font-style: italic; }
.contact-list { list-style: none; padding: 0; margin: 28px 0 0; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(45, 36, 29, 0.10);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list .icn {
  width: 38px; height: 38px;
  background: var(--white);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--orange-600);
  flex-shrink: 0;
}
.contact-list .icn svg { width: 18px; height: 18px; }
.contact-list .lbl { font-size: 0.78rem; color: var(--ink-500); margin: 0; font-weight: 500; }
.contact-list .val { font-weight: 600; color: var(--ink-900); margin: 2px 0 0; font-size: 0.96rem; line-height: 1.4; }
.map-embed {
  min-height: 480px;
  background: var(--orange-100);
  position: relative;
}
.map-embed iframe { width: 100%; height: 100%; min-height: 480px; border: none; display: block; }
@media (max-width: 600px) { .map-info { padding: 56px 28px; } }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--ink-900);
  color: rgba(255,255,255,0.72);
  padding: 80px 0 30px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 {
  color: var(--white);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}
.footer-about .footer-logo {
  display: inline-block;
  margin-bottom: 18px;
}
.footer-about .footer-logo img {
  height: 52px;
  width: auto;
}
.footer-about p { line-height: 1.7; margin-bottom: 22px; max-width: 320px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.72);
  transition: all .2s;
}
.socials a:hover { background: var(--orange-500); color: var(--white); transform: translateY(-2px); }
.socials svg { width: 16px; height: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { padding: 6px 0; }
.footer-links a { color: rgba(255,255,255,0.72); }
.footer-links a:hover { color: var(--yellow-400); }
.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }

/* ============================================================
   FLOATING WHATSAPP + STICKY MOBILE BAR
============================================================ */
.fab-whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  z-index: 90;
  color: var(--white);
  transition: transform .25s;
  animation: bounce 2.5s infinite;
}
.fab-whatsapp:hover { transform: scale(1.08); color: var(--white); }
.fab-whatsapp svg { width: 30px; height: 30px; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

.fab-tip {
  position: fixed;
  bottom: 30px; right: 96px;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 22px 22px 4px 22px;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-900);
  z-index: 89;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: all .3s;
}
.fab-tip.show { opacity: 1; transform: translateX(0); }
@media (max-width: 600px) { .fab-tip { display: none; } }

/* Mobile sticky bottom bar (Call + WhatsApp) */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
}
.mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 10px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  min-height: 48px;
}
.mobile-cta .m-call {
  background: var(--ink-900);
  color: var(--white);
}
.mobile-cta .m-wa {
  background: var(--whatsapp);
  color: var(--white);
}
@media (max-width: 768px) {
  .mobile-cta { display: flex; }
  .fab-whatsapp { bottom: 80px; }
  body { padding-bottom: 70px; }
}

/* Exit-intent popup */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 20, 16, 0.78);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn .3s ease;
}
.exit-overlay.show { display: flex; }
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
.exit-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: pop .35s ease;
}
@keyframes pop { from { transform: scale(.92); opacity: 0 } to { transform: scale(1); opacity: 1 } }
.exit-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--orange-50);
  color: var(--ink-700);
  font-size: 1.3rem;
  display: grid; place-items: center;
}
.exit-close:hover { background: var(--orange-100); }
.exit-modal .badge {
  display: inline-block;
  background: var(--orange-100);
  color: var(--orange-600);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.exit-modal h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}
.exit-modal h3 .accent { color: var(--orange-600); font-style: italic; }
.exit-modal p { color: var(--ink-500); margin-bottom: 24px; font-size: 0.96rem; }
.exit-modal .btn { width: 100%; justify-content: center; }

/* ============================================================
   REVEAL ON SCROLL
============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.in { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   UTILITY
============================================================ */
@media (max-width: 600px) {
  section { padding: 72px 0; }
  .lead-wrap { padding: 36px 22px; }
  .scholarship-wrap { margin: 60px 0; }
}

/* ============================================================
   SUB-PAGE LAYOUTS
   ============================================================ */

.crumbs {
  font-size: 0.85rem;
  color: var(--ink-500);
  padding: 18px 32px;
  margin: 0 auto;
}
.crumbs a { color: var(--ink-500); }
.crumbs a:hover { color: var(--orange-600); }
.crumbs span[aria-current="page"] { color: var(--ink-900); font-weight: 500; }

.page-hero {
  padding: 60px 0 48px;
  background:
    radial-gradient(circle at 20% 0%, rgba(245,194,66,0.18) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(242,121,47,0.12) 0%, transparent 55%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 8px 0 16px;
  max-width: 880px;
}
.page-hero .kicker {
  display: inline-block;
  background: var(--orange-100);
  color: var(--orange-600);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin: 0;
}
.page-sub {
  max-width: 720px;
  font-size: 1.12rem;
  color: var(--ink-700);
  line-height: 1.65;
  margin: 0 0 24px;
}
.page-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.page-section {
  padding: 56px 0;
}
.page-section + .page-section { padding-top: 0; }
.page-section h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  margin: 0 0 20px;
}
.page-section h3 {
  font-size: 1.3rem;
  color: var(--ink-900);
  margin: 28px 0 10px;
  font-family: var(--display);
}
.page-section p,
.page-section li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-700);
}
.page-section .narrow { max-width: 820px; }
.page-section ul, .page-section ol {
  padding-left: 24px;
  margin: 12px 0 18px;
}
.page-section li { padding: 4px 0; }

.stat-strip {
  background: var(--ink-900);
  color: var(--white);
  padding: 32px 0;
}
.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  text-align: center;
}
.stat-strip .stat .num {
  display: block;
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--yellow-400);
  line-height: 1;
}
.stat-strip .stat .lbl {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  margin-top: 6px;
}

/* Tables on sub-pages */
.page-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 28px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
}
.page-section th {
  background: var(--orange-50);
  color: var(--ink-900);
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
}
.page-section td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-700);
}
.page-section tr:last-child td { border-bottom: none; }

/* Cards used by service & local pages */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.feature-card h3 { font-size: 1.05rem; margin: 0 0 8px; }
.feature-card p { margin: 0; font-size: 0.94rem; color: var(--ink-500); }

/* Pull-quote / callout */
.callout {
  background: var(--orange-50);
  border-left: 4px solid var(--orange-500);
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.callout strong { color: var(--ink-900); }

/* FAQ on sub-pages */
.page-section + .faq { padding: 0 0 56px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 880px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 22px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--ink-900);
  padding: 4px 0;
  list-style: none;
}
.faq-item summary::after { content: '+'; float: right; font-size: 1.4rem; color: var(--orange-500); }
.faq-item[open] summary::after { content: 'âˆ’'; }
.faq-item > div { padding: 12px 0 4px; color: var(--ink-700); line-height: 1.7; }

/* Two-column layout for country & service pages */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 24px 0;
}
@media (max-width: 760px) { .split { grid-template-columns: 1fr; } }

/* Sub-page lead form sub-styling â€” reuse homepage form classes */

/* ============================================================
   SUB-PAGE LEAD FORM FIX (May 2026)
   Sub-pages reuse the homepage <section class="lead"> markup
   but with a slightly different inner structure (.lead-copy
   instead of .lead-info, and bare <label><input/></label> form
   fields instead of <div class="field">). These rules make
   that structure render correctly.
   ============================================================ */

/* .lead-copy mirrors .lead-info white-on-dark styling */
.lead .lead-copy { color: var(--white); position: relative; }
.lead .lead-copy .kicker {
  display: inline-block;
  background: rgba(245, 194, 66, 0.18);
  color: var(--yellow-400);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin: 0 0 14px;
}
.lead .lead-copy h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0 0 16px; }
.lead .lead-copy p  { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin-bottom: 22px; }
.lead .lead-copy .lead-perks li {
  position: relative;
  padding: 8px 0 8px 32px;
  color: rgba(255,255,255,0.92);
  font-size: 0.98rem;
  line-height: 1.5;
}
.lead .lead-copy .lead-perks li::before {
  content: "âœ“";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: var(--orange-500);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lead .lead-copy .slots {
  margin-top: 18px;
  display: inline-block;
  font-size: 0.82rem;
  color: var(--yellow-400);
  font-weight: 600;
}

/* .lead-form-wrap is the white card on the right (sub-pages) */
.lead .lead-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  position: relative;
}
.lead .lead-form-wrap h3 {
  font-size: 1.4rem;
  margin: 0 0 6px;
  color: var(--ink-900);
}
.lead .lead-form-wrap .lead-sub {
  font-size: 0.9rem;
  color: var(--ink-500);
  margin: 0 0 22px;
}

/* The <form class="lead-form"> on sub-pages contains bare
   <label>Text<input/></label> children. Style those directly. */
.lead .lead-form-wrap .lead-form { display: block; }
.lead .lead-form-wrap .lead-form > label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-700);
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}
.lead .lead-form-wrap .lead-form > label > input,
.lead .lead-form-wrap .lead-form > label > select {
  display: block;
  width: 100%;
  padding: 13px 16px;
  margin-top: 6px;
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--ink-900);
  background: var(--orange-50);
  border: 1.5px solid transparent;
  border-radius: 10px;
  transition: all .2s;
  outline: none;
  min-height: 48px;
  font-weight: 400;
}
.lead .lead-form-wrap .lead-form > label > input:focus,
.lead .lead-form-wrap .lead-form > label > select:focus {
  background: var(--white);
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(242, 121, 47, 0.15);
}

/* Submit button on sub-pages */
.lead .lead-form-wrap .btn-block {
  display: block;
  width: 100%;
  background: var(--orange-500);
  color: var(--white);
  border: none;
  border-radius: 99px;
  padding: 16px 24px;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  margin-top: 8px;
  transition: background .2s, transform .15s;
}
.lead .lead-form-wrap .btn-block:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
}
.lead .lead-form-wrap .form-disclaimer {
  font-size: 0.74rem;
  color: var(--ink-500);
  text-align: center;
  margin: 12px 0 0;
}