:root {
  color-scheme: dark;
  --bg: #050705;
  --panel: #0b1510;
  --panel-2: #101613;
  --text: #f7f4e8;
  --muted: #c9cfbf;
  --soft: #8f9a86;
  --line: rgba(245, 211, 112, .22);
  --gold: #f5c84b;
  --gold-2: #ffec9b;
  --green: #00d36f;
  --green-dark: #023f2d;
  --red: #ff3d31;
  --cyan: #65f8ff;
  --purple: #9c6bff;
  --radius: 8px;
  --shadow: 0 24px 60px rgba(0, 0, 0, .48);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(6, 34, 24, .52), rgba(5, 7, 5, .9) 44%, #050705),
    radial-gradient(circle at 12% 20%, rgba(245, 200, 75, .12), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(0, 211, 111, .15), transparent 32%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 32px)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 12px min(28px, 4vw);
  background: rgba(5, 7, 5, .76);
  border-bottom: 1px solid rgba(245, 200, 75, .18);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: #041006;
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 52%, #a46d12);
  font-weight: 900;
  box-shadow: 0 0 24px rgba(245, 200, 75, .28);
}
.brand strong { display: block; font-size: 1rem; letter-spacing: 0; line-height: 1; }
.brand small { display: block; color: var(--gold-2); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; margin-top: 3px; }
.primary-nav { justify-self: center; display: flex; align-items: center; gap: 6px; }
.primary-nav a, .header-cta, .nav-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 700;
  font-size: .9rem;
}
.primary-nav a:hover { color: var(--text); background: rgba(255,255,255,.06); }
.header-cta, .nav-toggle {
  background: linear-gradient(135deg, var(--green), var(--gold));
  color: #031005;
  border: 0;
  box-shadow: 0 10px 30px rgba(0, 211, 111, .22);
}
.nav-toggle { display: none; font: inherit; }

.hero {
  position: relative;
  min-height: min(710px, calc(100vh - 54px));
  overflow: hidden;
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(245, 200, 75, .2);
}
.hero picture, .hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 7, 5, .94) 0%, rgba(5, 7, 5, .76) 36%, rgba(5, 7, 5, .2) 72%),
              linear-gradient(180deg, rgba(5,7,5,.18), rgba(5,7,5,.86));
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 108px 0 78px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  font-size: .78rem;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(0, 211, 111, .2);
}
.hero-copy {
  width: min(640px, 100%);
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 28px; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
}
.button-primary {
  color: #031005;
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 54%, var(--green));
  box-shadow: 0 18px 40px rgba(245, 200, 75, .2);
}
.button-ghost {
  border-color: rgba(245, 200, 75, .34);
  background: rgba(5, 7, 5, .48);
  color: var(--text);
}
.button-link { color: var(--gold-2); padding-inline: 4px; }
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.trust-strip span, .keyword-cloud span {
  border: 1px solid rgba(245, 200, 75, .24);
  background: rgba(5, 7, 5, .6);
  border-radius: var(--radius);
  color: var(--gold-2);
  padding: 8px 10px;
  font-size: .84rem;
  font-weight: 800;
}

.section { padding: 82px 0; }
.section-tight { padding-top: 58px; }
.band { background: linear-gradient(180deg, rgba(11, 21, 16, .9), rgba(7, 10, 7, .92)); border-block: 1px solid rgba(245, 200, 75, .12); }
.section-heading { max-width: 760px; margin-bottom: 28px; }
h2 { margin: 0; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.05; letter-spacing: 0; }
h3 { margin: 0 0 10px; font-size: 1.2rem; line-height: 1.15; letter-spacing: 0; }
p { color: var(--muted); }
.quick-grid, .step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.step-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-card, .step-card {
  min-height: 218px;
  border: 1px solid rgba(245, 200, 75, .18);
  border-radius: var(--radius);
  padding: 22px;
  background: linear-gradient(180deg, rgba(14, 31, 23, .96), rgba(7, 9, 7, .96));
  box-shadow: var(--shadow);
}
.feature-card:hover { border-color: rgba(0, 211, 111, .5); transform: translateY(-2px); transition: .18s ease; }
.card-kicker, .step-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.step-card span { font-size: 1.6rem; }
.split, .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}
.media-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(245, 200, 75, .24);
  box-shadow: var(--shadow);
}
.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.check-list, .ordered { padding-left: 1.2rem; color: var(--muted); }
.check-list li, .ordered li { margin: 10px 0; }
.keyword-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.page-hero {
  padding: 108px 0 74px;
  background:
    linear-gradient(90deg, rgba(5, 7, 5, .95), rgba(4, 50, 31, .76)),
    url("/assets/u7777-pakistan-hero.png") center right / cover no-repeat;
  border-bottom: 1px solid rgba(245, 200, 75, .18);
}
.page-hero h1 { font-size: clamp(2.5rem, 7vw, 5.6rem); }
.page-hero p { max-width: 700px; }
.feature-list, .offer-stack {
  display: grid;
  gap: 10px;
}
.feature-list a, .offer-stack div {
  min-height: 62px;
  border: 1px solid rgba(245, 200, 75, .18);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(5, 7, 5, .5);
}
.feature-list a { color: var(--gold-2); font-weight: 900; }
.offer-stack strong, .offer-stack span { display: block; }
.offer-stack span { color: var(--muted); margin-top: 4px; }
.faq-list {
  display: grid;
  gap: 10px;
}
details {
  border: 1px solid rgba(245, 200, 75, .18);
  border-radius: var(--radius);
  background: rgba(10, 18, 13, .82);
  padding: 0 18px;
}
summary {
  cursor: pointer;
  min-height: 60px;
  display: flex;
  align-items: center;
  font-weight: 900;
}
details p { margin-top: 0; }
.help-search {
  margin-bottom: 18px;
  display: grid;
  gap: 8px;
}
label { color: var(--gold-2); font-weight: 900; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(245, 200, 75, .24);
  border-radius: var(--radius);
  background: rgba(5,7,5,.72);
  color: var(--text);
  min-height: 48px;
  padding: 12px;
  font: inherit;
}
textarea { resize: vertical; }
.contact-form { display: grid; gap: 12px; }
.prose h2 { margin-top: 32px; font-size: 1.6rem; }
.site-footer {
  border-top: 1px solid rgba(245, 200, 75, .18);
  background: #030403;
  padding: 54px min(28px, 4vw) 26px;
}
.footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}
.site-footer h2 { font-size: 1rem; margin-bottom: 12px; color: var(--gold-2); }
.site-footer a { display: block; color: var(--muted); margin: 8px 0; }
.footer-brand { margin-bottom: 14px; }
.footer-bottom {
  width: min(1180px, 100%);
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(245, 200, 75, .14);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--soft);
  font-size: .9rem;
}

@media (max-width: 920px) {
  .site-header { grid-template-columns: auto auto; }
  .nav-toggle { display: inline-flex; justify-self: end; }
  .header-cta { display: none; }
  .primary-nav {
    grid-column: 1 / -1;
    display: none;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    padding-top: 10px;
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { justify-content: flex-start; }
  .hero { min-height: auto; }
  .hero picture img { object-position: 64% center; }
  .hero-content { padding: 94px 0 58px; }
  .quick-grid, .step-grid, .split, .content-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .feature-card, .step-card { min-height: 0; }
}

@media (max-width: 560px) {
  .container, .narrow { width: min(100% - 24px, 1180px); }
  .site-header { padding-inline: 12px; gap: 10px; }
  .brand-mark { width: 38px; height: 38px; }
  h1 { font-size: 3rem; }
  .hero-copy { font-size: 1rem; }
  .button { width: 100%; }
  .button-link { width: auto; }
  .trust-strip span, .keyword-cloud span { width: 100%; }
  .page-hero { padding: 86px 0 52px; }
  .footer-bottom { flex-direction: column; }
}