/* =========================================================
   Apex Awards UK — Shared Stylesheet
   ========================================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:        #0a1628;
  --navy-mid:    #122040;
  --navy-light:  #1a2e52;
  --gold:        #c9a84c;
  --gold-light:  #e0c074;
  --gold-dark:   #a8872e;
  --cream:       #f8f5ee;
  --cream-dark:  #f0ead8;
  --white:       #ffffff;
  --text-dark:   #1a1a2e;
  --text-mid:    #3d4461;
  --text-muted:  #6b7280;
  --border:      #e5e0d4;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.07), 0 4px 12px rgba(0,0,0,.05);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10), 0 1px 4px rgba(0,0,0,.06);
  --shadow-lg:   0 8px 40px rgba(10,22,40,.13);
  --radius:      10px;
  --radius-lg:   16px;
  --transition:  all .25s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--navy);
}

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

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.section-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .6rem;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}

.section-title .gold-underline {
  display: inline-block;
  position: relative;
}
.section-title .gold-underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── Page Fade-in ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.fade-in {
  animation: fadeInUp .6s ease both;
}
.fade-in-delay-1 { animation-delay: .1s; }
.fade-in-delay-2 { animation-delay: .2s; }
.fade-in-delay-3 { animation-delay: .3s; }
.fade-in-delay-4 { animation-delay: .4s; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201,168,76,.35);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-secondary-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.65);
}
.btn-secondary-light:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn-sm {
  padding: .5rem 1.2rem;
  font-size: .85rem;
}

/* ── Navigation ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 2px solid rgba(201,168,76,.25);
  box-shadow: 0 2px 16px rgba(0,0,0,.18);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1.5rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  flex-shrink: 0;
}

.navbar-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.navbar-brand-text span {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.navbar-nav a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  padding: .45rem .75rem;
  border-radius: 5px;
  transition: var(--transition);
  white-space: nowrap;
}
.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--gold);
  background: rgba(201,168,76,.1);
}

.navbar-cta {
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--navy-mid);
  z-index: 999;
  padding: 1rem 1.5rem 2rem;
  border-bottom: 2px solid rgba(201,168,76,.2);
  animation: fadeIn .2s ease;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 500;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--gold); }
.mobile-nav .mobile-nav-cta {
  margin-top: 1rem;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: .4rem;
}

.footer-brand p {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.footer-reg {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
}
.footer-reg strong { color: rgba(255,255,255,.65); }

.footer-col h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: .5rem;
}
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact p {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: .3rem;
}
.footer-contact a { color: rgba(255,255,255,.65); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.38);
}
.footer-bottom a {
  color: rgba(255,255,255,.45);
  font-size: .78rem;
  transition: var(--transition);
}
.footer-bottom a:hover { color: var(--gold); }

/* ── Inner Page Hero ── */
.page-hero {
  background: var(--navy);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
}
.page-hero .container { position: relative; }

.page-hero-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 600px;
  line-height: 1.7;
}

.page-hero-divider {
  width: 50px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 1.2rem;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Level Badges ── */
.level-badge {
  display: inline-flex;
  align-items: center;
  padding: .25rem .75rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.level-2 { background: #dbeafe; color: #1d4ed8; }
.level-3 { background: #dcfce7; color: #166534; }
.level-4 { background: #fff7ed; color: #c2410c; }
.level-5 { background: #f3e8ff; color: #7e22ce; }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--navy);
  padding: 1.5rem 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: .5rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
}

/* ── Forms ── */
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
}
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,22,40,.08);
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 130px; }

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── Accordion ── */
.accordion-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: .75rem;
  transition: var(--transition);
}
.accordion-item:hover { border-color: var(--gold); }

.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .97rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: var(--transition);
}
.accordion-btn:hover { background: var(--cream); }
.accordion-btn.open { background: var(--navy); color: var(--white); }

.accordion-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(10,22,40,.07);
  transition: transform .3s ease;
  font-size: 1rem;
  font-weight: 300;
}
.accordion-btn.open .accordion-icon {
  background: rgba(255,255,255,.15);
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.accordion-body.open {
  max-height: 500px;
}
.accordion-body-inner {
  padding: 1rem 1.4rem 1.4rem;
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Tabs ── */
.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  border-bottom: 2px solid var(--border);
  margin-bottom: 2.5rem;
}
.tab-btn {
  padding: .65rem 1.3rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 6px 6px 0 0;
}
.tab-btn:hover { color: var(--navy); background: var(--cream); }
.tab-btn.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
  background: var(--cream);
}

.tab-panel {
  display: none;
  animation: fadeInUp .3s ease;
}
.tab-panel.active { display: block; }

/* ── Qual Card ── */
.qual-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.qual-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.qual-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}
.qual-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .8rem;
  color: var(--text-muted);
}
.qual-meta-item {
  background: var(--cream);
  padding: .25rem .65rem;
  border-radius: 20px;
  font-weight: 500;
}
.qual-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: .5rem;
  border-top: 1px solid var(--border);
}

/* ── News Cards ── */
.news-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.news-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.news-card-thumb {
  height: 10px;
  background: var(--navy);
}
.news-card-thumb.cat-employers { background: linear-gradient(90deg, var(--navy), var(--navy-light)); }
.news-card-thumb.cat-qualifications { background: linear-gradient(90deg, #1a5276, #2471a3); }
.news-card-thumb.cat-announcement { background: linear-gradient(90deg, #117a65, #1abc9c); }
.news-card-thumb.cat-guidance { background: linear-gradient(90deg, #6c3483, #9b59b6); }

.news-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}
.news-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .65rem;
  border-radius: 50px;
  background: var(--cream);
  color: var(--navy);
}
.news-date {
  font-size: .78rem;
  color: var(--text-muted);
}
.news-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: .6rem;
}
.news-card-excerpt {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.news-card-author {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.news-author-avatar {
  width: 30px;
  height: 30px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.news-author-name { font-size: .8rem; font-weight: 600; color: var(--text-mid); }

/* ── Process / Timeline ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
/* 4-step line: from centre of col-1 to centre of col-4 */
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 0;
}
/* 3-step variant */
.process-steps-3 {
  grid-template-columns: repeat(3, 1fr);
}
/* 3-step line: from centre of col-1 to centre of col-3 */
.process-steps-3::before {
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 1rem;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
}
.step-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* ── Trust Pillars ── */
.pillar-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.pillar-icon svg { color: var(--gold); }

.pillar-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.pillar-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .5rem;
}
.pillar-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,168,76,.1) 0%, transparent 70%);
}
.cta-banner .container { position: relative; }
.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: .75rem;
}
.cta-banner p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Verify Page Specific ── */
.verify-search-wrap {
  max-width: 540px;
  margin: 0 auto 2rem;
  display: flex;
  gap: .75rem;
}
.verify-search-wrap input {
  flex: 1;
  padding: .85rem 1.1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}
.verify-search-wrap input:focus { border-color: var(--navy); }

.verify-result {
  max-width: 560px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp .4s ease;
}
.verify-status-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.8rem;
}
.verify-status-bar.valid { background: linear-gradient(135deg,#059669,#10b981); }
.verify-status-bar.invalid { background: linear-gradient(135deg,#dc2626,#ef4444); }
.verify-status-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.verify-status-text h2 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: .1rem;
}
.verify-status-text p { font-size: .83rem; color: rgba(255,255,255,.82); }
.verify-body-card { background: var(--white); padding: 1.8rem; }
.verify-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: .65rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.verify-detail-row:last-child { border-bottom: none; }
.verify-detail-label { font-size: .8rem; font-weight: 600; color: var(--text-muted); flex-shrink: 0; }
.verify-detail-value { font-size: .95rem; font-weight: 500; color: var(--navy); text-align: right; }
.verify-detail-value.name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; }
.verify-footer-note {
  background: #ecfdf5;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 1rem 1.8rem;
  display: flex;
  gap: .7rem;
  align-items: flex-start;
}
.verify-footer-note p { font-size: .82rem; color: #065f46; line-height: 1.6; }

.units-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: .85rem;
}
.units-table th {
  text-align: left;
  padding: .5rem .75rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .04em;
}
.units-table th:last-child { text-align: right; }
.units-table td {
  padding: .5rem .75rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
}
.units-table td:last-child { text-align: right; font-weight: 600; }
.units-table tbody tr:nth-child(even) { background: #f9fafb; }
.units-table tfoot td {
  padding: .5rem .75rem;
  font-weight: 700;
  color: var(--navy);
  border-top: 2px solid var(--navy);
}
.units-table tfoot td:last-child { text-align: right; }

/* ── Map ── */
.map-embed {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: block;
}

/* ── Values / Team ── */
.value-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.value-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 700;
}
.value-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .25rem; }
.value-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

.team-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  transition: var(--transition);
}
.team-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  border: 3px solid var(--gold);
}
.team-name { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: .15rem; }
.team-role { font-size: .82rem; font-weight: 600; color: var(--gold); letter-spacing: .05em; text-transform: uppercase; margin-bottom: .6rem; }
.team-bio { font-size: .92rem; color: var(--text-muted); line-height: 1.7; }

/* ── Benefits list ── */
.benefits-list { display: flex; flex-direction: column; gap: .85rem; }
.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.3rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.benefit-item:hover { border-color: var(--gold); }
.benefit-icon {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-title { font-size: .97rem; font-weight: 700; color: var(--navy); margin-bottom: .15rem; }
.benefit-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* ── Horizontal divider with gold accent ── */
.gold-divider {
  width: 50px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1.2rem 0;
}
.gold-divider-center { margin: 1rem auto; }

/* ── Privacy page ── */
.prose h2 {
  font-size: 1.35rem;
  color: var(--navy);
  margin: 2.5rem 0 .75rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--border);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.05rem; color: var(--navy); margin: 1.5rem 0 .4rem; }
.prose p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; font-size: .97rem; }
.prose ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.prose ul li {
  list-style: disc;
  color: var(--text-muted);
  font-size: .97rem;
  line-height: 1.75;
  margin-bottom: .3rem;
}
.prose a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Collapse inline two-column grids used throughout page content */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1.5fr 1fr"],
  [style*="grid-template-columns: 1.5fr 1fr"],
  [style*="grid-template-columns:1fr 1.6fr"],
  [style*="grid-template-columns: 1fr 1.6fr"],
  [style*="grid-template-columns:1fr 2.5fr"],
  [style*="grid-template-columns: 1fr 2.5fr"] {
    grid-template-columns: 1fr !important;
  }

  .navbar-nav,
  .navbar-cta { display: none; }
  .hamburger { display: flex; }

  .section { padding: 3.5rem 0; }
  .card-grid-2,
  .card-grid-3,
  .card-grid-4 { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-inner { gap: 1rem; }
  .stat-item { border-right: none; padding: .5rem 1.5rem; }
  .tabs-nav { gap: .3rem; }
  .tab-btn { font-size: .8rem; padding: .55rem .9rem; }
  .verify-search-wrap { flex-direction: column; }
  /* Privacy sidebar stacks on mobile */
  [style*="grid-template-columns:1fr 2.5fr"] { grid-template-columns: 1fr !important; }
  [style*="position:sticky"] { position: relative !important; top: auto !important; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .cta-banner-buttons { flex-direction: column; align-items: center; }
  .navbar-brand-text span { display: none; }
}
