*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080F19;
  --bg-2: #121B26;
  --bg-card: #1A2233;
  --gold: #FF9E00;
  --purple: #7C3AED;
  --blue: #3B62FF;
  --cyan: #00D4FF;
  --pink: #FF3B6D;
  --gold-dim: rgba(255, 158, 0, 0.15);
  --gold-glow: rgba(124, 58, 237, 0.16);
  --white: #FFFFFF;
  --paper: #F7F7F4;
  --ink: #080F19;
  --gray: #6B778F;
  --gray-light: #A8B2C4;
  --border: rgba(212, 175, 55, 0.10);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { opacity: 0.75; }

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  background: rgba(8, 15, 25, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.05em;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--white); opacity: 1; }

/* HERO */
.hero {
  min-height: 580px;
  display: flex;
  align-items: center;
  padding: 160px 32px 120px;
  text-align: center;
}
.hero-gallery {
  min-height: 720px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(8,15,25,0.42), rgba(8,15,25,0.78)),
    radial-gradient(circle at 25% 0%, rgba(124,58,237,0.36), transparent 42%),
    url('../images/uk_westminster_hero.jpg') center / cover no-repeat;
}
.hero-gallery::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}
.hero-inner {
  max-width: 620px;
  margin: 0 auto;
}
.hero-gallery-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.eyebrow {
  color: rgba(255,255,255,0.86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: clamp(46px, 8vw, 92px);
  font-weight: 800;
  line-height: 0.98;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.055em;
  text-shadow: 0 16px 42px rgba(0,0,0,0.48);
}
.hero-title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(255,255,255,0.9);
  text-stroke: 1.2px rgba(255,255,255,0.9);
}
.hero-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 38px;
  line-height: 1.65;
}
.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  min-height: 62px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}
.hero-button:hover { opacity: 0.9; }
.hero-cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: var(--gold);
  border-bottom: 1px solid rgba(212,175,55,0.4);
  padding-bottom: 2px;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.hero-cta:hover { opacity: 0.75; }
.hero-note {
  display: block;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 20px;
}

/* GALLERY INTRO */
.gallery-intro {
  background: var(--paper);
  color: var(--ink);
  padding: 72px 0 86px;
}
.gallery-copy {
  max-width: 900px;
  font-size: clamp(19px, 2.1vw, 25px);
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 34px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  display: block;
  background: #e8e8e5;
  margin-bottom: 22px;
}
.gallery-card h3 {
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.gallery-card p {
  color: #4E5663;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.gallery-card span {
  display: block;
  color: #111827;
  font-size: 13px;
  font-weight: 800;
}

/* RISK PROOF */
.risk-proof {
  padding: 84px 0 92px;
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid rgba(8,15,25,0.08);
}
.risk-proof .section-kicker { color: var(--purple); }
.risk-proof-header {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 38px;
}
.risk-proof-header h2 {
  max-width: 760px;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}
.risk-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(8,15,25,0.16);
  border-bottom: 1px solid rgba(8,15,25,0.16);
}
.risk-stat {
  padding: 32px 26px 30px 0;
  border-right: 1px solid rgba(8,15,25,0.16);
}
.risk-stat:last-child { border-right: none; padding-right: 0; padding-left: 26px; }
.risk-stat:nth-child(2) { padding-left: 26px; }
.risk-stat strong {
  display: block;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  margin-bottom: 18px;
}
.risk-stat span {
  display: block;
  color: #4E5663;
  font-size: 15px;
  line-height: 1.55;
  max-width: 240px;
}
.risk-footnote {
  max-width: 760px;
  color: #657080;
  font-size: 13px;
  line-height: 1.65;
  margin-top: 22px;
}

/* UK CONTEXT */
.uk-context {
  padding: 96px 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(124,58,237,0.20), transparent 34%),
    var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.uk-context-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.section-kicker {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.uk-context-title {
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.06em;
  max-width: 520px;
}
.uk-context-copy p {
  color: rgba(230,232,239,0.82);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 22px;
}
.hmrc-note {
  margin-top: 42px;
  padding: 26px 28px;
  border: 1px solid rgba(0,212,255,0.22);
  background: rgba(0,212,255,0.06);
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  line-height: 1.72;
}
.hmrc-note strong { color: var(--white); }

/* MOCKUP STRIP */
.mockup-strip {
  padding: 80px 0 100px;
  border-top: 1px solid var(--border);
}
.mockup-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.mockup-phone { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.phone-frame {
  width: 224px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 12px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,175,55,0.05);
}
.phone-screen {
  background: #091525;
  border-radius: 20px;
  padding: 16px 12px;
  min-height: 390px;
  font-size: 11px;
  overflow: hidden;
}
.screen-header { margin-bottom: 14px; }
.screen-title { display: block; font-size: 15px; font-weight: 500; color: var(--white); font-family: 'Playfair Display', serif; }
.screen-sub { display: block; font-size: 10px; color: var(--gray); margin-top: 3px; }

.profile-card {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04); border-radius: 10px;
  padding: 8px 10px; margin-bottom: 6px;
}
.profile-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500; color: #fff; flex-shrink: 0;
}
.profile-info { flex: 1; }
.profile-name { font-size: 12px; font-weight: 500; color: var(--white); }
.profile-role { font-size: 10px; color: var(--gray); }
.status-ok {
  font-size: 9px; font-weight: 500; color: #4ade80;
  border: 1px solid rgba(74,222,128,0.4); border-radius: 20px; padding: 2px 6px;
}
.profile-stats { display: flex; margin-bottom: 4px; padding: 0 4px; }
.stat { flex: 1; }
.stat-label { font-size: 9px; color: var(--gray); }
.stat-val { font-size: 14px; font-weight: 500; color: var(--white); }
.profile-journey-line { font-size: 9px; color: var(--gray); padding: 0 4px; margin-bottom: 10px; }

.residency-cards { display: flex; gap: 8px; margin-bottom: 14px; }
.residency-card {
  flex: 1; background: rgba(255,255,255,0.04);
  border-radius: 10px; padding: 10px 8px;
}
.residency-flag { font-size: 18px; margin-bottom: 4px; }
.residency-country { font-size: 10px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.residency-badge {
  font-size: 8px; font-weight: 500; border-radius: 20px; padding: 2px 6px;
  display: inline-block; margin-bottom: 6px;
}
.residency-badge.low { background: rgba(74,222,128,0.12); color: #4ade80; }
.residency-badge.building { background: rgba(212,175,55,0.12); color: var(--gold); }
.residency-days { font-size: 11px; font-weight: 500; color: var(--white); }

.journeys-label { font-size: 11px; font-weight: 500; color: var(--white); margin-bottom: 8px; }
.journey-row {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04); border-radius: 8px;
  padding: 8px; margin-bottom: 6px;
}
.journey-dates { font-size: 8px; color: var(--gray); text-align: center; width: 28px; }
.journey-day { font-size: 14px; font-weight: 600; color: var(--white); line-height: 1; }
.journey-detail { flex: 1; }
.journey-tag {
  font-size: 8px; font-weight: 500; color: var(--gold);
  background: rgba(212,175,55,0.08); border-radius: 4px; padding: 1px 5px;
}
.journey-route { font-size: 10px; color: var(--white); margin-top: 3px; }
.journey-days-circle {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.4);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: var(--gold); line-height: 1.1;
  flex-shrink: 0;
}
.journey-days-circle small { font-size: 7px; font-weight: 400; }
.journey-hero-card {
  background: linear-gradient(135deg, #182840, #281840);
  border-radius: 10px; padding: 12px; margin-bottom: 10px;
}
.journey-carrier { font-size: 9px; color: var(--gold); margin-bottom: 4px; letter-spacing: 0.06em; text-transform: uppercase; }
.journey-route-big { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.journey-meta { font-size: 9px; color: var(--gray); }
.journey-times {
  display: flex; gap: 8px; align-items: center;
  background: rgba(255,255,255,0.04); border-radius: 8px;
  padding: 10px 8px; margin-bottom: 10px;
}
.time-label { font-size: 8px; color: var(--gray); }
.time-val { font-size: 14px; font-weight: 600; color: var(--white); }
.time-city { font-size: 8px; color: var(--gray); }
.evidence-block {
  background: rgba(255,255,255,0.04); border-radius: 8px;
  padding: 8px; margin-bottom: 8px;
}
.evidence-label { font-size: 9px; font-weight: 500; color: var(--gray); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.evidence-detail { font-size: 9px; color: var(--white); line-height: 1.55; }
.tax-count-block { background: rgba(212,175,55,0.07); border-radius: 8px; padding: 8px; }
.tax-label { font-size: 8px; color: var(--gray); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.06em; }
.tax-val { font-size: 11px; font-weight: 500; color: var(--white); }
.mockup-caption { font-size: 12px; color: var(--gray); letter-spacing: 0.02em; }

/* FEATURES — editorial list */
.features {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.features-editorial {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feature-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.feature-row:first-child { border-top: 1px solid var(--border); }
.feature-term {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
}
.feature-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.75;
  max-width: 560px;
}

/* ACCESS */
.access-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.access-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 56px;
}
.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.access-col {
  padding: 0 40px 0 0;
  border-right: 1px solid var(--border);
  margin-right: 40px;
}
.access-col:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.access-role {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
}
.access-col-gold .access-role { color: var(--gold); }
.access-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.75;
}

/* COUNTRIES */
.countries-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.countries-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 48px;
}
.countries-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.country-item {
  display: grid;
  grid-template-columns: 36px 1fr 1fr;
  gap: 0 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.country-item:first-child { border-top: 1px solid var(--border); }
.country-flag { font-size: 18px; }
.country-name { font-size: 15px; font-weight: 400; color: var(--white); }
.country-rule { font-size: 13px; font-weight: 300; color: var(--gray); }
.countries-note {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
  max-width: 540px;
}

/* QUOTE */
.quote-section {
  padding: 100px 32px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  max-width: 540px;
  margin: 0 auto 20px;
  line-height: 1.55;
}
.quote-context {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.02em;
}

/* CTA */
.cta-section {
  padding: 100px 32px 120px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray-light);
  max-width: 400px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.cta-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(212,175,55,0.35);
  padding-bottom: 2px;
}
.cta-link:hover { opacity: 0.75; }

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 13px; color: var(--gray-light); }
.footer-links a:hover { color: var(--white); opacity: 1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 12px;
  color: var(--gray);
}
.footer-disclaimer { max-width: 420px; line-height: 1.6; }

/* INNER PAGES */
.page-header {
  padding: 130px 32px 64px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.page-header .updated { font-size: 12px; color: var(--gray); letter-spacing: 0.04em; }
.page-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 64px 32px 100px;
}
.page-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--gold);
  margin: 48px 0 14px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p, .page-content li {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 14px;
}
.page-content ul { padding-left: 20px; margin-bottom: 14px; }
.page-content a { color: var(--gold); }

/* SUPPORT */
.support-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 36px 0;
}
.support-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
}
.support-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.support-card p { font-size: 13px; color: var(--gray); margin-bottom: 12px; }
.support-card a { font-size: 13px; }

/* RESPONSIVE */
@media (max-width: 800px) {
  .nav-inner { padding: 0 22px; height: 58px; }
  .nav-logo { font-size: 24px; }
  .nav-links { display: none; }
  .feature-row { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
  .access-grid { grid-template-columns: 1fr; }
  .access-col { border-right: none; border-bottom: 1px solid var(--border); margin-right: 0; padding-right: 0; padding-bottom: 36px; margin-bottom: 36px; }
  .access-col:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .gallery-grid { grid-template-columns: 1fr; gap: 34px; }
  .risk-proof-header { grid-template-columns: 1fr; gap: 12px; }
  .risk-stats { grid-template-columns: 1fr; }
  .risk-stat, .risk-stat:nth-child(2), .risk-stat:last-child { border-right: none; border-bottom: 1px solid rgba(8,15,25,0.16); padding: 28px 0; }
  .risk-stat:last-child { border-bottom: none; }
  .uk-context-grid { grid-template-columns: 1fr; gap: 28px; }
  .country-item { grid-template-columns: 32px 1fr; }
  .country-rule { display: none; }
  .mockup-row { flex-direction: column; align-items: center; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero {
    min-height: auto;
    padding: 112px 20px 72px;
  }
  .hero-gallery {
    min-height: 640px;
    align-items: flex-end;
    background-position: 54% center;
  }
  .hero-gallery::after { height: 48%; }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.16em;
    line-height: 1.45;
    margin-bottom: 14px;
  }
  .hero-title {
    font-size: clamp(39px, 13vw, 54px);
    line-height: 0.96;
    letter-spacing: -0.06em;
    margin-bottom: 18px;
  }
  .hero-title em {
    -webkit-text-stroke-width: 0.8px;
    text-stroke-width: 0.8px;
  }
  .hero-subtitle {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 26px;
  }
  .hero-button {
    width: 100%;
    max-width: 320px;
    min-height: 54px;
    font-size: 12px;
  }
  .hero-note { color: rgba(255,255,255,0.62); }

  .gallery-intro,
  .risk-proof,
  .uk-context,
  .mockup-strip,
  .features,
  .access-section,
  .countries-section,
  .quote-section,
  .cta-section {
    padding-top: 58px;
    padding-bottom: 62px;
  }
  .gallery-copy {
    font-size: 20px;
    line-height: 1.52;
    margin-bottom: 28px;
  }
  .gallery-card img {
    aspect-ratio: 1 / 0.68;
    margin-bottom: 16px;
  }
  .gallery-card h3 { font-size: 19px; }
  .gallery-card p { margin-bottom: 12px; }

  .risk-proof-header { margin-bottom: 22px; }
  .risk-proof-header h2,
  .uk-context-title {
    font-size: 31px;
    line-height: 1.06;
    letter-spacing: -0.055em;
  }
  .risk-stat strong { font-size: 48px; margin-bottom: 12px; }
  .risk-stat span { max-width: none; }
  .risk-footnote { font-size: 12px; }
  .uk-context-copy p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 16px;
  }
  .hmrc-note {
    margin-top: 26px;
    padding: 20px;
    font-size: 14px;
    line-height: 1.62;
  }

  .mockup-strip { overflow: hidden; }
  .mockup-row { gap: 34px; }
  .phone-frame {
    width: min(82vw, 260px);
    border-radius: 32px;
  }
  .phone-screen { min-height: 382px; }
  .mockup-caption { font-size: 13px; }

  .feature-row { padding: 24px 0; }
  .feature-term,
  .access-role { font-size: 18px; }
  .feature-desc,
  .access-desc,
  .countries-note,
  .cta-sub { font-size: 14px; line-height: 1.65; }
  .access-heading,
  .countries-heading,
  .cta-title { margin-bottom: 30px; }
  .access-col { padding-bottom: 28px; margin-bottom: 28px; }
  .country-item { padding: 14px 0; }
  .quote-section { padding-left: 20px; padding-right: 20px; }
  .quote { font-size: 23px; line-height: 1.4; }
  .cta-section { padding-left: 20px; padding-right: 20px; }
  .cta-sub { margin-bottom: 28px; }

  .footer { padding: 34px 0; }
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .page-header { padding: 104px 20px 46px; }
  .page-header h1 { font-size: 32px; }
  .page-content { padding: 44px 20px 72px; }
  .page-content h2 { margin-top: 36px; }
  .support-card { padding: 22px 20px; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 38px; }
  .hero-subtitle { font-size: 14px; }
  .gallery-copy { font-size: 18px; }
  .risk-proof-header h2,
  .uk-context-title { font-size: 28px; }
}
