﻿:root {
  --ink: #050505;
  --muted: #606060;
  --line: #e8e8e8;
  --paper: #ffffff;
  --soft: #f7f7f5;
  --midnight: #000000;
  --charcoal: #111111;
  --gold: #FDC902;
  --brand-gold: #FDC902;
  --gold-deep: #d9aa00;
  --gold-soft: #fff7d6;
  --gold-line: rgba(253, 201, 2, .34);
  --shadow: 0 22px 70px rgba(0, 0, 0, .11);
  --radius: 8px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-weight: 300;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(253, 201, 2, .18);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-mark {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
}

.brand small {
  display: block;
  margin-top: -3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #222;
  font-size: 13px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 27px 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .2);
}

.btn-primary:hover {
  border-color: var(--gold);
  box-shadow: 0 18px 38px rgba(253, 201, 2, .16), 0 16px 34px rgba(0, 0, 0, .2);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn-gold {
  background: var(--gold);
  color: #050505;
  box-shadow: 0 16px 34px rgba(253, 201, 2, .3);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  display: grid;
  align-items: center;
  color: #fff;
  background: var(--midnight);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .95) 0%, rgba(0, 0, 0, .78) 45%, rgba(0, 0, 0, .2) 100%),
    url("https://images.pexels.com/photos/36765727/pexels-photo-36765727.jpeg?auto=compress&cs=tinysrgb&w=1800") center / cover;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(0deg, var(--paper), transparent);
  opacity: .16;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(320px, .82fr);
  gap: 48px;
  padding: 52px 0 58px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: #f4f4f4;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.section .eyebrow,
.card .eyebrow {
  color: #050505;
}

.hero .eyebrow,
.page-hero .eyebrow,
.section.dark .eyebrow,
.map-box .eyebrow {
  color: #f4f4f4;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 600;
}

h1 {
  max-width: 820px;
  font-size: clamp(38px, 4.8vw, 64px);
}

h2 {
  font-size: clamp(32px, 4.6vw, 58px);
}

h3 {
  font-size: 22px;
  font-weight: 600;
}

p {
  margin: 0;
  font-weight: 300;
}

.hero p {
  max-width: 680px;
  margin-top: 20px;
  color: #f0f0f0;
  font-size: clamp(17px, 1.8vw, 21px);
}

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

.hero-panel {
  padding: 26px;
  border: 1px solid rgba(253, 201, 2, .28);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(253, 201, 2, .16), rgba(255, 255, 255, .08) 48%, rgba(0, 0, 0, .22));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
}

.global-visual {
  position: relative;
  min-height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #050505;
}

.global-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .72));
}

.global-visual img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.flag-grid {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.flag-grid span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(253, 201, 2, .28);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, .56);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(12px);
}

.market-flag {
  display: inline-block;
  width: 22px;
  height: 15px;
  flex: 0 0 22px;
  border-radius: 2px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .28);
}

.flag-gb { background-image: url("https://flagcdn.com/w40/gb.png"); }
.flag-us { background-image: url("https://flagcdn.com/w40/us.png"); }
.flag-ca { background-image: url("https://flagcdn.com/w40/ca.png"); }
.flag-ng { background-image: url("https://flagcdn.com/w40/ng.png"); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(253, 201, 2, .28);
}

.stat {
  padding: 14px 16px;
  background: rgba(5, 5, 5, .46);
}

.stat strong {
  display: block;
  color: var(--gold);
  font-size: 23px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 6px;
  color: #ededed;
  font-size: 12px;
  font-weight: 400;
}

.section {
  padding: 104px 0;
}

.section.soft {
  background: var(--soft);
}

.section.brand-section {
  color: #050505;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .28), rgba(253, 201, 2, 0) 42%),
    var(--gold);
}

.section.brand-section .eyebrow,
.section.brand-section h2,
.section.brand-section h3,
.section.brand-section p,
.section.brand-section .section-head p,
.section.brand-section .card p,
.section.brand-section .feature-list li,
.section.brand-section .service-list li,
.section.brand-section .legal-list li {
  color: #050505;
}

.section.brand-section .eyebrow::before,
.section.brand-section .service-list li::before,
.section.brand-section .feature-list li::before,
.section.brand-section .legal-list li::before {
  background: #050505;
}

.section.brand-section .card {
  border-color: rgba(0, 0, 0, .2);
  background: rgba(255, 255, 255, .34);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.section.brand-section .btn,
.section.brand-section .btn-primary,
.section.brand-section .btn-gold {
  background: #050505;
  color: #fff;
  border-color: #050505;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .2);
}

.section.brand-section .btn-secondary {
  background: #fff;
  color: #050505;
  border-color: rgba(0, 0, 0, .22);
}

.section.dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, .98), rgba(17, 17, 17, .94)),
    url("https://images.pexels.com/photos/4344116/pexels-photo-4344116.jpeg?auto=compress&cs=tinysrgb&w=1700") center / cover fixed;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-head p {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
}

.dark .section-head p { color: #e8e8e8; }

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 45px rgba(0, 0, 0, .055);
}

.card.pad {
  padding: 28px;
}

.card.pad {
  border-top-color: var(--gold-line);
}

.office-card {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--midnight);
}

.office-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .45) 25%, rgba(0, 0, 0, .04) 58%);
}

.office-card.london {
  background: url("assets/homepage-london-reception-office.png") center / cover;
}

.office-card.nigeria {
  background: url("assets/nigeria-corporate-launch-team-navy.png") center / cover;
}

.office-card > div {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 24px 16px;
}

.office-card-content {
  display: grid;
  gap: 7px;
  align-items: start;
  margin: 0;
  max-width: 430px;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .72);
}

.office-card-content > p {
  max-width: 390px;
  color: rgba(255, 255, 255, .9);
  font-size: 15px;
  line-height: 1.45;
}

.office-card-content h3 {
  color: #fff;
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .78);
}

.office-card-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 2px;
  padding: 5px 10px;
  border: 1px solid rgba(253, 201, 2, .5);
  border-radius: 999px;
  color: #FDC902 !important;
  background: rgba(5, 5, 5, .28);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.office-card-divider {
  display: block;
  width: min(100%, 340px);
  height: 2px;
  margin: 3px 0 0;
  border-radius: 999px;
  background: var(--brand-gold);
  box-shadow: 0 0 22px rgba(253, 201, 2, .32);
}

.office-address {
  margin: 0;
  color: #f3f3f3;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(253, 201, 2, .42);
  border-radius: 999px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: var(--radius);
  color: #050505;
  background: var(--gold);
  box-shadow: 0 12px 24px rgba(253, 201, 2, .24);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
}

.icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon:empty::before { content: ""; }
.menu-toggle:empty::before { content: "Menu"; font-size: 12px; font-weight: 600; }

.card p,
.feature-list li,
.service-list li {
  color: var(--muted);
  font-weight: 300;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-list,
.feature-list,
.legal-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.service-list li,
.feature-list li,
.legal-list li {
  position: relative;
  padding-left: 22px;
}

.service-list li::before,
.feature-list li::before,
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.service-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.image-stack {
  position: relative;
}

.image-stack img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.homepage-global-image img {
  aspect-ratio: 16 / 11;
  object-position: center;
}

.floating-note {
  position: absolute;
  right: -22px;
  bottom: 36px;
  max-width: 260px;
  padding: 20px;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.floating-note strong {
  display: block;
  margin-bottom: 6px;
  color: #050505;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.nigeria-why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-item {
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  font-weight: 500;
}

.why-item:hover {
  background: var(--gold-soft);
}

.why-item span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
}

.testimonial {
  padding: 30px;
  border: 1px solid rgba(253, 201, 2, .26);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(253, 201, 2, .12), rgba(255, 255, 255, .06));
  backdrop-filter: blur(14px);
}

.testimonial p {
  color: #f2f2f2;
  font-size: 17px;
}

.testimonial strong {
  display: block;
  margin-top: 22px;
  color: #fff;
}

.testimonial span {
  color: #d9d9d9;
  font-size: 13px;
}

.cta {
  padding: 72px;
  border-radius: var(--radius);
  color: #fff;
  border: 1px solid rgba(253, 201, 2, .28);
  background:
    linear-gradient(105deg, rgba(0, 0, 0, .96), rgba(17, 17, 17, .82) 62%, rgba(253, 201, 2, .28)),
    url("https://images.pexels.com/photos/6913223/pexels-photo-6913223.jpeg?auto=compress&cs=tinysrgb&w=1500") center / cover;
}

.cta p {
  max-width: 720px;
  margin-top: 18px;
  color: #f0f0f0;
  font-size: 18px;
}

.page-hero {
  padding: 110px 0 74px;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(0, 0, 0, .95), rgba(0, 0, 0, .64)),
    url("https://images.pexels.com/photos/5256687/pexels-photo-5256687.jpeg?auto=compress&cs=tinysrgb&w=1800") center / cover;
}

.page-hero p {
  max-width: 760px;
  margin-top: 22px;
  color: #f0f0f0;
  font-size: 19px;
}

.process {
  counter-reset: step;
}

.process .card {
  counter-increment: step;
}

.process .card::before {
  content: "0" counter(step);
  display: block;
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.contact-success-hero {
  background:
    linear-gradient(100deg, rgba(0, 0, 0, .96), rgba(0, 0, 0, .68)),
    url("https://images.pexels.com/photos/3184465/pexels-photo-3184465.jpeg?auto=compress&cs=tinysrgb&w=1800") center / cover;
}

.success-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  align-items: center;
}

.success-confirmation-card {
  padding: 30px;
  border-radius: var(--radius);
  color: #fff;
  border: 1px solid rgba(253, 201, 2, .35);
  background: rgba(0, 0, 0, .58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.success-confirmation-card span,
.support-route-card span {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.success-confirmation-card strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.12;
}

.success-confirmation-card p {
  margin-top: 12px;
  color: #efefef;
  font-size: 15px;
}

.support-routing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.support-route-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 360px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.support-route-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(253, 201, 2, .18);
}

.support-route-card h3 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}

.support-route-card p {
  color: var(--muted);
}

.support-route-card small {
  color: #3a3a3a;
  font-size: 13px;
  font-weight: 600;
}

.support-route-card .btn {
  position: relative;
  z-index: 1;
  justify-self: start;
  margin-top: 8px;
}

.support-route-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
}

.support-route-icon::before {
  content: "";
  position: absolute;
  inset: 12px;
  background: #050505;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.04 3.5a8.5 8.5 0 0 0-7.3 12.86L3.5 20.5l4.25-1.18a8.5 8.5 0 1 0 4.29-15.82Zm0 1.7a6.8 6.8 0 0 1 0 13.6 6.7 6.7 0 0 1-3.46-.96l-.34-.2-2.2.61.62-2.12-.22-.35a6.8 6.8 0 0 1 5.6-10.58Zm-2.42 3.7c-.16 0-.4.06-.61.3-.21.23-.8.78-.8 1.9 0 1.13.82 2.22.94 2.37.12.16 1.6 2.57 3.98 3.5 1.97.78 2.38.62 2.8.58.44-.04 1.4-.57 1.6-1.12.2-.55.2-1.02.14-1.12-.06-.1-.22-.16-.47-.28-.25-.13-1.46-.72-1.68-.8-.23-.08-.4-.12-.56.12-.16.25-.64.8-.78.96-.14.16-.29.18-.53.06-.25-.12-1.04-.38-1.98-1.22-.73-.65-1.22-1.45-1.36-1.7-.14-.24-.02-.38.1-.5.12-.11.25-.29.37-.43.12-.14.16-.25.25-.41.08-.16.04-.31-.02-.44-.06-.12-.55-1.36-.76-1.85-.2-.48-.4-.41-.59-.42Z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.04 3.5a8.5 8.5 0 0 0-7.3 12.86L3.5 20.5l4.25-1.18a8.5 8.5 0 1 0 4.29-15.82Zm0 1.7a6.8 6.8 0 0 1 0 13.6 6.7 6.7 0 0 1-3.46-.96l-.34-.2-2.2.61.62-2.12-.22-.35a6.8 6.8 0 0 1 5.6-10.58Zm-2.42 3.7c-.16 0-.4.06-.61.3-.21.23-.8.78-.8 1.9 0 1.13.82 2.22.94 2.37.12.16 1.6 2.57 3.98 3.5 1.97.78 2.38.62 2.8.58.44-.04 1.4-.57 1.6-1.12.2-.55.2-1.02.14-1.12-.06-.1-.22-.16-.47-.28-.25-.13-1.46-.72-1.68-.8-.23-.08-.4-.12-.56.12-.16.25-.64.8-.78.96-.14.16-.29.18-.53.06-.25-.12-1.04-.38-1.98-1.22-.73-.65-1.22-1.45-1.36-1.7-.14-.24-.02-.38.1-.5.12-.11.25-.29.37-.43.12-.14.16-.25.25-.41.08-.16.04-.31-.02-.44-.06-.12-.55-1.36-.76-1.85-.2-.48-.4-.41-.59-.42Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.support-route-card.gold-route {
  background: var(--gold);
  border-color: var(--gold);
}

.support-route-card.gold-route span,
.support-route-card.gold-route h3,
.support-route-card.gold-route p,
.support-route-card.gold-route small {
  color: #050505;
}

.support-route-card.gold-route .support-route-icon {
  background: #050505;
}

.support-route-card.gold-route .support-route-icon::before {
  background: var(--gold);
}

.support-route-card.gold-route::after {
  background: rgba(255, 255, 255, .28);
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: #151515;
  font-size: 13px;
  font-weight: 500;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(253, 201, 2, .16);
}

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

.phone-field {
  display: grid;
  grid-template-columns: 52px minmax(118px, .34fr) minmax(0, 1fr);
  gap: 10px;
}

.phone-field select,
.phone-field input {
  min-height: 50px;
}

.phone-flag {
  display: grid;
  place-items: center;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-size: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .05);
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.job-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(253, 201, 2, .42);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(253, 201, 2, .12);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.form-note {
  margin: 12px 0 20px;
  color: var(--muted);
  font-size: 16px;
}

.application-form {
  display: grid;
  gap: 15px;
}

.application-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.application-form input[type="file"] {
  padding: 12px;
  font-size: 13px;
}

.file-hint {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.file-review-list {
  display: grid;
  gap: 10px;
}

.file-review-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid rgba(253, 201, 2, .36);
  border-radius: var(--radius);
  background: rgba(253, 201, 2, .08);
}

.file-review-item strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.file-review-item span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.file-review-actions {
  display: flex;
  gap: 8px;
}

.file-review-actions a,
.file-review-actions button {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.file-review-actions button {
  border-color: rgba(0, 0, 0, .2);
  background: #050505;
  color: #fff;
}

.turnstile-wrap {
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 12px 0 4px;
}

.sales-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #050505;
}

.launch-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #050505;
}

.launch-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .96), rgba(0, 0, 0, .78) 48%, rgba(0, 0, 0, .34)),
    url("assets/abuja-flag-hero.png") center / cover;
}

.launch-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(0deg, rgba(253, 201, 2, .2), transparent);
}

.launch-phase-grid .package-feature {
  min-height: 100%;
}

.launch-phase-grid .package-feature strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

.light-testimonial {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
}

.light-testimonial p,
.light-testimonial strong {
  color: var(--ink);
}

.light-testimonial span {
  color: var(--muted);
}

.client-review {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.review-avatar {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border: 3px solid rgba(253, 201, 2, .42);
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 14px 32px rgba(5, 5, 5, .14);
}

.client-review .review-rating {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: .12em;
}

.client-review p {
  flex: 1;
  font-size: 15px;
  line-height: 1.68;
}

.client-review strong {
  margin-top: 20px;
  font-size: 16px;
}

.client-review span:not(.review-rating) {
  margin-top: 6px;
  line-height: 1.45;
}

.booking-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(253, 201, 2, .24), transparent 30%),
    radial-gradient(circle at 10% 82%, rgba(253, 201, 2, .1), transparent 34%),
    linear-gradient(125deg, #020202 0%, #070707 48%, #161107 100%);
}

.booking-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .2), transparent 38%, rgba(253, 201, 2, .08)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 18px);
  opacity: .38;
  pointer-events: none;
}

.booking-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(0deg, rgba(253, 201, 2, .08), transparent);
}

.booking-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(340px, .62fr);
  gap: 58px;
  align-items: center;
  padding: 78px 0;
}

.booking-hero-copy p {
  max-width: 720px;
  margin-top: 20px;
  color: rgba(245, 245, 245, .86);
  font-size: clamp(17px, 1.8vw, 21px);
}

.consultant-card {
  overflow: hidden;
  border: 1px solid rgba(253, 201, 2, .5);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .045)),
    rgba(5, 5, 5, .66);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .44), inset 0 1px 0 rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
}

.consultant-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center top;
  border-bottom: 1px solid rgba(253, 201, 2, .32);
}

.consultant-card > div {
  padding: 24px 24px 8px;
}

.consultant-card span,
.consultant-card small {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.consultant-card h2 {
  margin-top: 10px;
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
}

.consultant-card p {
  margin-top: 8px;
  color: #f1f1f1;
  font-size: 17px;
}

.consultant-card small {
  margin-top: 12px;
  color: rgba(253, 201, 2, .9);
}

.consultant-card .consultant-bio {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(253, 201, 2, .22);
  color: rgba(245, 245, 245, .82);
  font-size: 14px;
  line-height: 1.62;
}

.consultant-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 24px 24px;
  padding: 0;
  list-style: none;
}

.consultant-card li {
  padding: 7px 10px;
  border: 1px solid rgba(253, 201, 2, .38);
  border-radius: 999px;
  color: #f3f3f3;
  background: rgba(253, 201, 2, .08);
  font-size: 12px;
  font-weight: 500;
}

.booking-trust {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.booking-trust-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(0, .75fr));
  gap: 1px;
  background: var(--line);
}

.booking-trust-grid > * {
  display: flex;
  align-items: center;
  min-height: 104px;
  padding: 22px;
  background: #fff;
}

.booking-trust-grid strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.booking-trust-grid span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.consultation-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.consultation-route-grid .card {
  border-top-color: rgba(253, 201, 2, .48);
  background:
    linear-gradient(180deg, rgba(253, 201, 2, .08), transparent 44%),
    #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .065);
}

.consultation-route-grid h3 {
  font-size: 20px;
}

.consultation-route-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.booking-section-grid {
  display: grid;
  grid-template-columns: minmax(0, .55fr) minmax(360px, .9fr);
  gap: 48px;
  align-items: start;
}

.booking-widget-card {
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(253, 201, 2, .42);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(5, 5, 5, .98), rgba(5, 5, 5, .82)),
    linear-gradient(135deg, rgba(253, 201, 2, .2), transparent);
  box-shadow: 0 28px 76px rgba(0, 0, 0, .16);
}

.booking-widget-card .calendly-inline-widget {
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
}

.booking-fallback-btn {
  width: calc(100% - 40px);
  margin: 14px 20px 10px;
}

.booking-widget-note {
  margin: 14px 20px 10px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.booking-confirmation {
  padding: clamp(34px, 5vw, 56px);
  border: 1px solid rgba(253, 201, 2, .42);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 14%, rgba(253, 201, 2, .2), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(253, 201, 2, .14)),
    #fff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .1);
}

.booking-confirmation h2 {
  max-width: 820px;
}

.booking-confirmation p {
  max-width: 720px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.booking-confirmation .btn {
  margin-top: 24px;
}

.booking-footer {
  padding: 44px 0;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(253, 201, 2, .18), transparent 34%),
    #050505;
}

.booking-footer h3 {
  color: #fff;
  font-size: 22px;
}

.booking-footer p {
  margin-top: 8px;
  color: var(--gold);
  font-weight: 600;
}

.booking-footer span,
.booking-footer small {
  display: block;
  margin-top: 12px;
  color: #d9d9d9;
  font-size: 14px;
}

.sales-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .95), rgba(0, 0, 0, .76) 48%, rgba(0, 0, 0, .36)),
    url("https://images.pexels.com/photos/460672/pexels-photo-460672.jpeg?auto=compress&cs=tinysrgb&w=1800") center / cover;
  filter: saturate(.98);
}

.sales-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(0deg, rgba(253, 201, 2, .22), transparent);
}

.sales-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .56fr);
  gap: 48px;
  align-items: center;
  padding: 94px 0 86px;
}

.sales-hero p {
  max-width: 740px;
  margin-top: 24px;
  color: #efefef;
  font-size: 19px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span,
.package-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 6px 10px;
  border: 1px solid rgba(253, 201, 2, .38);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(253, 201, 2, .08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.uk-market-badge {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 14px;
  align-items: center;
  max-width: 520px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(253, 201, 2, .34);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, .48);
  backdrop-filter: blur(10px);
}

.uk-market-badge::before {
  content: "";
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(253, 201, 2, .34);
  border-radius: 50%;
  background:
    url("https://flagcdn.com/w80/gb.png") center / cover no-repeat,
    rgba(255, 255, 255, .1);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .08);
}

.uk-market-badge strong {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.uk-market-badge span {
  color: #d8d8d8;
  font-size: 13px;
}

.sales-hero-card,
.price-card,
.waitlist-card {
  border: 1px solid rgba(253, 201, 2, .32);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, .74);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .32);
}

.sales-hero-card {
  padding: 30px;
  backdrop-filter: blur(16px);
}

.visual-card {
  overflow: hidden;
  padding: 0;
  background: #050505;
}

.visual-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.visual-card img.flag-visual {
  height: 270px;
  padding: 34px;
  object-fit: contain;
  background:
    radial-gradient(circle at 80% 20%, rgba(253, 201, 2, .22), transparent 34%),
    linear-gradient(135deg, #050505, #171717);
}

.visual-card-content {
  padding: 28px;
}

.sales-hero-card h2 {
  margin-top: 18px;
  color: #fff;
  font-size: 38px;
}

.sales-hero-card p,
.waitlist-card p {
  color: #e4e4e4;
}

.cac-accreditation-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  background:
    linear-gradient(115deg, rgba(5, 5, 5, .96), rgba(5, 5, 5, .82) 58%, rgba(5, 5, 5, .58)),
    url("assets/nigeria-diaspora-office-flag.png") center / cover;
}

.cac-accreditation-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 18%, rgba(253, 201, 2, .18), transparent 32%),
    linear-gradient(0deg, rgba(0, 0, 0, .2), transparent);
}

.cac-mark {
  display: block;
  width: 112px;
  height: 112px;
  object-fit: contain;
  margin-bottom: 24px;
  padding: 8px;
  border: 2px solid rgba(253, 201, 2, .78);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 18px 46px rgba(253, 201, 2, .22);
}

.uk-jurisdiction-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  background:
    linear-gradient(115deg, rgba(5, 5, 5, .97), rgba(5, 5, 5, .84) 58%, rgba(5, 5, 5, .56)),
    url("assets/uk-package-london-team.png") center / cover;
}

.uk-jurisdiction-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 16%, rgba(253, 201, 2, .22), transparent 32%),
    linear-gradient(0deg, rgba(0, 0, 0, .28), transparent 58%);
}

.uk-flag-mark {
  display: block;
  width: 112px;
  height: 112px;
  object-fit: cover;
  margin-bottom: 24px;
  padding: 8px;
  border: 2px solid rgba(253, 201, 2, .78);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 18px 46px rgba(253, 201, 2, .22);
}

.jurisdiction-registration {
  width: fit-content;
  margin-top: 16px;
  padding: 9px 12px;
  border-left: 3px solid var(--brand-gold);
  color: rgba(245, 245, 245, .82);
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 500;
}

.investment-card {
  display: grid;
  gap: 5px;
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(253, 201, 2, .34);
  border-radius: var(--radius);
  background: rgba(253, 201, 2, .12);
}

.investment-card span,
.investment-card small {
  color: #d9d9d9;
}

.investment-card strong {
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.global-value-badge {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(253, 201, 2, .42);
  border-radius: 999px;
  color: var(--brand-gold);
  background: rgba(253, 201, 2, .08);
}

.sales-hero-card ul,
.price-list {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.sales-hero-card li,
.price-list li {
  position: relative;
  padding-left: 26px;
}

.sales-hero-card li::before,
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-strip-grid > div {
  min-height: 130px;
  padding: 24px;
  background: #fff;
}

.trust-strip strong {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.pillar-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-top: 0;
  border-radius: 50%;
  border: 1px solid rgba(5, 5, 5, .08);
  background: #FDC902;
  color: #050505;
  box-shadow: 0 10px 22px rgba(253, 201, 2, .24);
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.trust-strip strong .pillar-icon {
  display: inline-grid;
  margin-top: 0;
  background: #FDC902;
  color: #050505;
}

.risk-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-feature {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .06);
}

.sales-image-band {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, .72fr);
  gap: 0;
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .06);
}

.sales-image-band img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.sales-image-band > div {
  align-self: center;
  padding: 34px;
}

.sales-image-band h3 {
  margin-top: 18px;
  font-size: clamp(28px, 3vw, 40px);
}

.sales-image-band p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.trust-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(253, 201, 2, .12), transparent 38%),
    #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .055);
}

.trust-card h3 {
  font-size: 20px;
}

.trust-card p {
  margin-top: 14px;
  color: var(--muted);
}

.uk-trust-card {
  min-height: 240px;
  background:
    linear-gradient(180deg, rgba(253, 201, 2, .12), transparent 42%),
    #fff;
}

.uk-trust-card .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 999px;
}

.uk-trust-card p {
  font-size: 15px;
  line-height: 1.58;
}

.uk-premium-image-band {
  border-color: rgba(253, 201, 2, .28);
  background:
    linear-gradient(135deg, rgba(5, 5, 5, .98), rgba(5, 5, 5, .86)),
    #050505;
}

.uk-premium-image-band img {
  object-position: center;
}

.uk-premium-image-band > div {
  color: #fff;
}

.uk-premium-image-band h3 {
  color: #fff;
}

.uk-premium-image-band p {
  color: rgba(245, 245, 245, .82);
}

.package-feature .icon {
  margin-bottom: 22px;
}

.package-feature p {
  margin-top: 12px;
  color: var(--muted);
}

.pricing-wrap {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .62fr);
  gap: 52px;
  align-items: center;
}

.value-stack-wrap {
  align-items: stretch;
}

.value-stack-list {
  margin-top: 0;
}

.value-stack-group + .value-stack-group {
  margin-top: 26px;
}

.value-stack-group h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.value-stack-list li {
  padding-top: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}

.value-stack-list li:last-child {
  border-bottom: 0;
}

.testimonial-proof {
  justify-content: center;
  margin-top: 28px;
}

.pricing-copy {
  max-width: 620px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}

.price-card {
  padding: 32px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, .96), rgba(0, 0, 0, .82)),
    linear-gradient(135deg, rgba(253, 201, 2, .18), transparent);
}

.price-card h3 {
  margin-top: 20px;
  color: #fff;
  font-size: clamp(48px, 5vw, 74px);
}

.price-card p,
.price-card li {
  color: #e3e3e3;
}

.currency-estimator {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(253, 201, 2, .34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
}

.currency-estimator span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.currency-estimator strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
}

.currency-estimator p {
  margin-top: 10px;
  color: #cfcfcf;
  font-size: 12px;
  line-height: 1.55;
}

.price-card .btn {
  width: 100%;
  margin-top: 28px;
  background: var(--gold);
  color: #050505;
}

.package-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.package-tier {
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-tier.highlighted {
  border-color: rgba(253, 201, 2, .78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.tier-badge {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: #050505;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.tier-badge.secondary {
  background: #fff;
  color: #050505;
}

.package-tier .price-list {
  flex: 1;
}

.business-name-tier-grid .package-tier h3 {
  margin-bottom: 10px;
}

.tier-price {
  display: block;
  margin: 4px 0 22px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.package-tier.highlighted .tier-price {
  color: var(--brand-gold);
}

.package-note,
.payment-disclaimer,
.selected-package-summary {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.package-note {
  max-width: 860px;
  margin: 26px auto 0;
  padding: 18px 20px;
  border-left: 4px solid var(--brand-gold);
  background: rgba(253, 201, 2, .1);
}

.selected-package-summary {
  padding: 14px 16px;
  border: 1px solid rgba(253, 201, 2, .34);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(253, 201, 2, .1);
  font-weight: 700;
}

.payment-disclaimer {
  margin-top: -4px;
}

.terms-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(253, 201, 2, .3);
  border-radius: 14px;
  background: rgba(253, 201, 2, .08);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.55;
}

.terms-consent input {
  width: auto;
  margin-top: 4px;
}

.terms-consent a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(253, 201, 2, .75);
}

.payment-security-label {
  margin: -2px auto -6px;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.payment-security-label strong {
  color: #011b33;
  font-size: 14px;
}

.payment-methods-strip {
  display: block;
  width: min(100%, 340px);
  height: auto;
  margin: -4px auto 2px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.business-name-hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .96), rgba(0, 0, 0, .72) 48%, rgba(0, 0, 0, .24)),
    url("assets/nigeria-business-consultation.png") center / cover;
}

.business-name-proof-card {
  min-height: 420px;
  background:
    radial-gradient(circle at 18% 16%, rgba(253, 201, 2, .22), transparent 34%),
    linear-gradient(135deg, rgba(5, 5, 5, .96), rgba(5, 5, 5, .82));
}

.bn-answer-strip {
  padding: 34px 0;
  background: #050505;
}

.bn-answer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.bn-answer-grid article {
  padding: 22px;
  border: 1px solid rgba(253, 201, 2, .24);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
}

.bn-answer-grid span,
.choice-badge {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--brand-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bn-answer-grid strong {
  display: block;
  color: #fff;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
}

.bn-answer-grid p {
  margin-top: 10px;
  color: rgba(245, 245, 245, .74);
  font-size: 14px;
  line-height: 1.55;
}

.bn-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.bn-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 54px rgba(5, 5, 5, .08);
}

.bn-price-card.featured {
  color: #fff;
  border-color: rgba(253, 201, 2, .78);
  background:
    radial-gradient(circle at 20% 12%, rgba(253, 201, 2, .24), transparent 30%),
    linear-gradient(145deg, #050505, #171717);
  box-shadow: 0 30px 80px rgba(5, 5, 5, .24);
}

.bn-card-top span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(253, 201, 2, .44);
  border-radius: 999px;
  color: var(--brand-gold);
  background: rgba(253, 201, 2, .1);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bn-card-top strong {
  display: block;
  color: var(--ink);
  font-size: clamp(42px, 4.5vw, 62px);
  line-height: 1;
}

.bn-price-card.featured .bn-card-top strong,
.bn-price-card.featured .bn-card-top p,
.bn-price-card.featured .bn-doc-stack span,
.bn-price-card.featured small {
  color: #fff;
}

.bn-card-top p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.bn-doc-stack {
  display: grid;
  gap: 10px;
  flex: 1;
}

.bn-doc-stack span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.bn-doc-stack span::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-gold);
}

.bn-price-card small {
  color: rgba(255, 255, 255, .74);
  line-height: 1.5;
}

.bn-featured-button {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 18px 34px rgba(253, 201, 2, .28);
}

.bn-trust-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 22px;
}

.bn-office-card {
  padding: 30px;
  border: 1px solid rgba(253, 201, 2, .28);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(5, 5, 5, .96), rgba(5, 5, 5, .78)),
    url("assets/abuja-flag-hero.png") center / cover;
  box-shadow: 0 24px 60px rgba(5, 5, 5, .18);
}

.bn-office-card h2 {
  margin-top: 18px;
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
}

.bn-office-card p {
  margin-top: 14px;
  color: rgba(245, 245, 245, .84);
}

.contact-centre-list {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.contact-centre-list details {
  overflow: hidden;
  border: 1px solid rgba(253, 201, 2, .22);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
}

.contact-centre-list summary {
  cursor: pointer;
  padding: 12px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  list-style: none;
}

.contact-centre-list summary::-webkit-details-marker {
  display: none;
}

.contact-centre-list summary::after {
  content: "+";
  float: right;
  color: var(--brand-gold);
}

.contact-centre-list details[open] summary::after {
  content: "-";
}

.contact-centre-list details p {
  margin: 0;
  padding: 0 14px 14px;
  color: rgba(245, 245, 245, .78);
  font-size: 13px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.supporting-docs-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(253, 201, 2, .28);
  border-radius: var(--radius);
  background: rgba(253, 201, 2, .08);
}

.supporting-docs-panel h3 {
  margin: 0;
}

.supporting-docs-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.limited-calculator-note {
  margin-top: -4px;
  padding: 14px 16px;
  border: 1px solid rgba(253, 201, 2, .28);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(253, 201, 2, .08);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.director-stack {
  display: grid;
  gap: 18px;
}

.director-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(253, 201, 2, .28);
  border-radius: var(--radius);
  background: #fff;
}

.director-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.director-panel h3,
.director-panel-head h3 {
  margin: 0;
}

.director-panel-head span {
  padding: 7px 11px;
  border-radius: 999px;
  color: #050505;
  background: var(--brand-gold);
  font-size: 12px;
  font-weight: 900;
}

.detailed-price-card .value-badge {
  margin-top: 22px;
  border-color: rgba(253, 201, 2, .42);
  background: rgba(253, 201, 2, .08);
}

.office-network-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.office-network-card {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.office-network-card.head-office {
  color: #fff;
  border-color: rgba(253, 201, 2, .38);
  background:
    radial-gradient(circle at 88% 12%, rgba(253, 201, 2, .18), transparent 32%),
    linear-gradient(135deg, #050505, #1a1a1a);
}

.office-network-card h3 {
  margin-bottom: 10px;
}

.office-network-card.head-office h3,
.office-network-card.head-office p {
  color: #fff;
}

.remote-service-note {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  overflow: hidden;
  margin-top: 26px;
  padding: clamp(34px, 5vw, 54px);
  border-radius: var(--radius);
  border: 1px solid rgba(253, 201, 2, .35);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .98), rgba(5, 5, 5, .9) 52%, rgba(5, 5, 5, .72)),
    url("assets/nigeria-complete-package-office.png") center right / cover no-repeat;
  box-shadow: 0 28px 70px rgba(5, 5, 5, .24);
}

.remote-service-note::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(253, 201, 2, .24), transparent 30%),
    linear-gradient(135deg, rgba(253, 201, 2, .12), transparent 34%, rgba(253, 201, 2, .09));
  pointer-events: none;
}

.remote-service-note > * {
  position: relative;
  z-index: 1;
}

.remote-service-note h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: .98;
  font-weight: 900;
}

.remote-service-note p {
  max-width: 820px;
  color: rgba(230, 230, 230, .86);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.7;
  font-weight: 400;
}

.remote-service-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 15px 26px;
  border-radius: 999px;
  color: #050505;
  background: #FDC902;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(253, 201, 2, .34);
}

.remote-service-button:hover {
  transform: translateY(-2px);
  color: #050505;
  background: #ffe16a;
}

.next-stage-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(253, 201, 2, .34);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(110deg, rgba(5, 5, 5, .98), rgba(5, 5, 5, .88) 58%, rgba(253, 201, 2, .22)),
    url("assets/nigeria-complete-package-office.png") center right / cover no-repeat;
  box-shadow: 0 28px 70px rgba(5, 5, 5, .16);
}

.next-stage-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 86% 20%, rgba(253, 201, 2, .26), transparent 30%),
    linear-gradient(180deg, rgba(5, 5, 5, .18), rgba(5, 5, 5, .72));
  pointer-events: none;
}

.next-stage-panel > * {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.next-stage-panel .eyebrow,
.next-stage-panel h2 {
  color: #fff;
}

.next-stage-panel h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.6vw, 58px);
}

.next-stage-panel p {
  color: rgba(245, 245, 245, .88);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.65;
}

.next-stage-panel p + p {
  margin-top: 12px;
}

.legit-brand-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .55fr);
  gap: 28px;
  margin-top: 18px;
  padding: 30px;
  border: 1px solid rgba(253, 201, 2, .3);
  border-radius: var(--radius);
  background: var(--gold-soft);
}

.inline-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.inline-social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(253, 201, 2, .36);
  border-radius: 999px;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.footer-social-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(253, 201, 2, .38);
  border-radius: 999px;
  color: var(--brand-gold);
  background: rgba(253, 201, 2, .08);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.footer-social-icon:hover {
  transform: translateY(-2px);
  border-color: var(--brand-gold);
  color: #050505;
  background: var(--brand-gold);
}

.footer-social-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-icon:first-child svg,
.footer-social-icon:last-child svg {
  fill: currentColor;
  stroke: none;
}

.section.dark {
  color: #fff;
  background: #050505;
}

.section.dark h2,
.section.dark h3 {
  color: #fff;
}

.section.dark .section-head p {
  color: #d9d9d9;
}

.waitlist-card {
  padding: 28px;
}

.waitlist-card h3 {
  margin-top: 18px;
  margin-bottom: 12px;
}

.waitlist-card .btn {
  margin-top: 22px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .42fr) minmax(0, .78fr);
  gap: 52px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .05);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 700;
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.sales-cta {
  color: #050505;
  background:
    linear-gradient(135deg, rgba(253, 201, 2, .96), rgba(255, 232, 123, .9)),
    var(--gold);
}

.sales-cta p {
  color: rgba(0, 0, 0, .72);
}

.map-box {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 30px;
  color: #fff;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)),
    url("https://images.pexels.com/photos/8828607/pexels-photo-8828607.jpeg?auto=compress&cs=tinysrgb&w=1300") center / cover;
}

.map-box,
.map-box .eyebrow,
.map-box h2,
.map-box p {
  color: #fff;
}

.footer {
  position: relative;
  overflow: hidden;
  color: #c8d3e0;
  background: var(--midnight);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.pexels.com/photos/3184432/pexels-photo-3184432.jpeg?auto=compress&cs=tinysrgb&w=1700") center / cover;
  opacity: .22;
  filter: grayscale(.12);
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .96), rgba(0, 0, 0, .82) 52%, rgba(253, 201, 2, .24)),
    linear-gradient(180deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .95));
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr .8fr;
  gap: 34px;
  padding: 64px 0;
}

.footer-main > div {
  padding-top: 18px;
  border-top: 1px solid rgba(253, 201, 2, .34);
}

.footer h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
}

.footer p,
.footer a {
  color: #dddddd;
  font-size: 14px;
  font-weight: 300;
}

.footer-office-label {
  display: inline-block;
  margin-bottom: 4px;
  color: #fff;
  font-weight: 700;
}

.office-contact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
}

.office-contact::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  background: var(--gold);
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}

.whatsapp-contact::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.04 3.5a8.5 8.5 0 0 0-7.3 12.86L3.5 20.5l4.25-1.18a8.5 8.5 0 1 0 4.29-15.82Zm0 1.7a6.8 6.8 0 0 1 0 13.6 6.7 6.7 0 0 1-3.46-.96l-.34-.2-2.2.61.62-2.12-.22-.35a6.8 6.8 0 0 1 5.6-10.58Zm-2.42 3.7c-.16 0-.4.06-.61.3-.21.23-.8.78-.8 1.9 0 1.13.82 2.22.94 2.37.12.16 1.6 2.57 3.98 3.5 1.97.78 2.38.62 2.8.58.44-.04 1.4-.57 1.6-1.12.2-.55.2-1.02.14-1.12-.06-.1-.22-.16-.47-.28-.25-.13-1.46-.72-1.68-.8-.23-.08-.4-.12-.56.12-.16.25-.64.8-.78.96-.14.16-.29.18-.53.06-.25-.12-1.04-.38-1.98-1.22-.73-.65-1.22-1.45-1.36-1.7-.14-.24-.02-.38.1-.5.12-.11.25-.29.37-.43.12-.14.16-.25.25-.41.08-.16.04-.31-.02-.44-.06-.12-.55-1.36-.76-1.85-.2-.48-.4-.41-.59-.42Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.04 3.5a8.5 8.5 0 0 0-7.3 12.86L3.5 20.5l4.25-1.18a8.5 8.5 0 1 0 4.29-15.82Zm0 1.7a6.8 6.8 0 0 1 0 13.6 6.7 6.7 0 0 1-3.46-.96l-.34-.2-2.2.61.62-2.12-.22-.35a6.8 6.8 0 0 1 5.6-10.58Zm-2.42 3.7c-.16 0-.4.06-.61.3-.21.23-.8.78-.8 1.9 0 1.13.82 2.22.94 2.37.12.16 1.6 2.57 3.98 3.5 1.97.78 2.38.62 2.8.58.44-.04 1.4-.57 1.6-1.12.2-.55.2-1.02.14-1.12-.06-.1-.22-.16-.47-.28-.25-.13-1.46-.72-1.68-.8-.23-.08-.4-.12-.56.12-.16.25-.64.8-.78.96-.14.16-.29.18-.53.06-.25-.12-1.04-.38-1.98-1.22-.73-.65-1.22-1.45-1.36-1.7-.14-.24-.02-.38.1-.5.12-.11.25-.29.37-.43.12-.14.16-.25.25-.41.08-.16.04-.31-.02-.44-.06-.12-.55-1.36-.76-1.85-.2-.48-.4-.41-.59-.42Z'/%3E%3C/svg%3E");
}

.email-contact::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6h16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2Zm0 2v.2l8 5.1 8-5.1V8H4Zm16 8V10.6l-7.46 4.76a1 1 0 0 1-1.08 0L4 10.6V16h16Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6h16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2Zm0 2v.2l8 5.1 8-5.1V8H4Zm16 8V10.6l-7.46 4.76a1 1 0 0 1-1.08 0L4 10.6V16h16Z'/%3E%3C/svg%3E");
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer .footer-links a .footer-hiring-note {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 999px;
  color: #FDC902 !important;
  background: rgba(253, 201, 2, .12);
  border: 1px solid rgba(253, 201, 2, .42);
  font-size: 11px;
  font-weight: 900 !important;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(253, 201, 2, .18);
  color: #bfbfbf;
  font-size: 13px;
}

[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 76px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 8px; }
  .nav-links a::after { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-actions .btn { display: none; }
  .hero-grid,
  .split,
  .contact-grid,
  .sales-hero-grid,
  .booking-hero-grid,
  .booking-section-grid,
  .sales-image-band,
  .pricing-wrap,
  .faq-grid,
  .success-hero-grid,
  .support-routing-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .office-network-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .package-tier-grid { grid-template-columns: 1fr; }
  .bn-answer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bn-pricing-grid { grid-template-columns: 1fr; }
  .bn-trust-grid { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-strip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .consultation-route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-head { display: block; }
  .section-head p { margin-top: 18px; }
  .floating-note { right: 18px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 72px 0; }
  .hero { min-height: auto; }
  .hero-grid { padding: 62px 0 72px; }
  .booking-hero-grid { padding: 58px 0 64px; }
  .hero-panel { padding: 16px; }
  .global-visual { min-height: 270px; }
  .global-visual img { height: 270px; }
  .stats,
  .grid-2,
  .grid-3,
  .grid-4,
  .package-grid,
  .package-tier-grid,
  .bn-answer-grid,
  .bn-pricing-grid,
  .bn-trust-grid,
  .form-grid-2,
  .office-network-grid,
  .legit-brand-panel,
  .trust-strip-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .sales-hero-grid { padding: 62px 0 64px; }
  .booking-trust-grid { grid-template-columns: 1fr; }
  .booking-trust-grid > * { min-height: auto; padding: 18px; }
  .consultation-route-grid { grid-template-columns: 1fr; }
  .consultant-card img { height: 360px; }
  .booking-widget-card .calendly-inline-widget { height: 720px !important; }
  .visual-card img,
  .sales-image-band img { min-height: 260px; height: 260px; }
  .office-card {
    min-height: 480px;
  }
  .office-card-content {
    gap: 6px;
    margin: 0;
    padding: 0;
  }
  .office-card-divider {
    width: 100%;
  }
  .remote-service-note {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, .94), rgba(5, 5, 5, .84)),
      url("assets/nigeria-complete-package-office.png") center / cover no-repeat;
  }
  .remote-service-button {
    width: 100%;
  }
  .next-stage-panel {
    padding: 30px 24px;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, .95), rgba(5, 5, 5, .84)),
      url("assets/nigeria-complete-package-office.png") center / cover no-repeat;
  }
  .cta { padding: 34px 24px; }
  .page-hero { padding: 82px 0 58px; }
  .support-route-card { min-height: auto; padding: 26px; }
  .footer-bottom { flex-direction: column; }
  .brand small { display: none; }
}

