/* ================================================================
   exportuk.css  —  Master stylesheet for all ExportUK pages
   Covers: reset, tokens, header/nav (with British flag logo),
   heroes, layout, cards, forms, buttons, sidebar, footer,
   and all page-specific components.
   ================================================================ */

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

:root {
  --navy:       #0a1628;
  --navy-mid:   #132240;
  --navy-light: #1e3a6e;
  --gold:       #c8943a;
  --gold-light: #e8b860;
  --gold-pale:  #f5e9d0;
  --cream:      #faf8f3;
  --white:      #ffffff;
  --muted:      #1c52c1;
  --border:     rgba(10,22,40,0.10);
  --border-mid: rgba(10,22,40,0.18);
  --red:        #c0392b;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── SITE HEADER / NAV ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 66px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

/* British flag image */
.logo-flag-img {
  height: 32px;
  width: auto;
  display: block;
  flex-shrink: 0;
  border-radius: 3px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}
.logo-text .logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-text .logo-name span { color: var(--gold-light); }
.logo-text .logo-sub {
  font-size: 0.6rem;
  color: var(--gold-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.8;
}

/* Nav links */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.site-nav a {
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 8px 12px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.site-nav a:hover  { color: var(--gold-light); }
.site-nav a.active { color: var(--gold-light); border-bottom: 2px solid var(--gold); margin-bottom: -2px; }
.site-nav a.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
  padding: 8px 16px;
  margin-left: 6px;
  transition: background 0.2s;
}
.site-nav a.nav-cta:hover { background: var(--gold-light); }

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 6px 10px;
  cursor: pointer;
  font-size: 18px;
}

/* ── PAGE HERO ──────────────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 4.5rem 5% 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 90% at 90% 50%, rgba(200,148,58,0.10) 0%, transparent 70%),
    repeating-linear-gradient(0deg,  transparent, transparent 39px, rgba(255,255,255,0.02) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.02) 40px);
  pointer-events: none;
}
/* Subtle radial glow on right side */
.page-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background: radial-gradient(ellipse at right, rgba(200,148,58,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,148,58,0.14);
  border: 1px solid rgba(200,148,58,0.35);
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.page-hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(1.3); }
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.page-hero h1 em { font-style: normal; color: var(--gold-light); }
.page-hero p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.75;
}

/* ── EXPORTUK.HTML HERO SPECIFIC ────────────────────────────────── */
.hero-full {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}
.hero-full::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,148,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-full::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,58,110,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.hero-flag-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.flag-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-full h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  max-width: 900px;
  margin-bottom: 28px;
  letter-spacing: -1px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-full h1 em { font-style: normal; color: var(--gold-light); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 52px;
  font-weight: 300;
  line-height: 1.7;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-search {
  width: 100%;
  max-width: 640px;
  display: flex;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s ease 0.6s both;
}
.hero-search input {
  flex: 1;
  padding: 18px 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(200,148,58,0.35);
  border-right: none;
  color: var(--white);
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.hero-search input::placeholder { color: rgba(255,255,255,0.35); }
.hero-search input:focus { background: rgba(255,255,255,0.10); border-color: var(--gold); }
.hero-search button {
  padding: 18px 28px;
  background: var(--gold);
  border: none;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s;
  white-space: nowrap;
}
.hero-search button:hover { background: var(--gold-light); }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s ease 0.8s both;
}
.hero-stat { text-align: center; }
.hero-stat .number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat .label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(200,148,58,0.2);
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── INDUSTRY TICKER STRIP ──────────────────────────────────────── */
.industry-strip {
  background: var(--gold);
  padding: 14px 5%;
  overflow: hidden;
}
.strip-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll-strip 30s linear infinite;
}
@keyframes scroll-strip {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.strip-item {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.strip-dot {
  width: 4px; height: 4px;
  background: var(--navy);
  border-radius: 50%;
  opacity: 0.4;
}

/* ── LAYOUT HELPERS ─────────────────────────────────────────────── */
.page-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 5% 80px;
}
.page-body-2col {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: start;
}
section { padding: 80px 5%; }
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-body {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
}

/* ── CONTENT CARD ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.card-head {
  background: var(--navy);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.card-head-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(200,148,58,0.18);
  border: 1px solid rgba(200,148,58,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.card-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--white);
}
.card-head p { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }
.card-body { padding: 32px 28px; }

/* ── SIDEBAR CARDS ──────────────────────────────────────────────── */
.side-card { background: var(--white); border: 1px solid var(--border); margin-bottom: 20px; }
.side-card-head {
  background: var(--navy);
  padding: 14px 18px;
  font-size: 10px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light);
}
.side-card-body { padding: 18px; }
.side-card-body p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.side-list { list-style: none; }
.side-list li { border-bottom: 1px solid var(--border); }
.side-list li:last-child { border-bottom: none; }
.side-list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 18px; font-size: 13px; font-weight: 500;
  color: var(--navy); text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.side-list a:hover { background: var(--cream); color: var(--gold); }
.side-list a::after { content: '→'; color: var(--muted); font-size: 12px; }

/* ── FORMS ──────────────────────────────────────────────────────── */
.form-section { margin-bottom: 36px; }
.form-section-title {
  font-size: 10px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.form-section-title::before {
  content: ''; display: inline-block;
  width: 3px; height: 12px; background: var(--gold);
}
.form-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.form-group  { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 11px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase; color: var(--muted);
}
label .req { color: var(--red); margin-left: 2px; }
input[type=text], input[type=email], input[type=tel],
input[type=url], input[type=password], select, textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-mid);
  font-size: 14px; font-family: 'DM Sans', sans-serif;
  color: var(--navy); background: var(--white); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,148,58,0.12);
}
input::placeholder, textarea::placeholder { color: rgba(107,122,153,0.5); }
textarea { resize: vertical; min-height: 120px; }
select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7a99' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-hint { font-size: 11px; color: var(--muted); margin-top: 4px; line-height: 1.5; }
.form-divider { border: none; border-top: 1px solid var(--border); margin: 28px 0; }

/* Activity numbered inputs */
.activity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.activity-item { display: flex; align-items: center; gap: 10px; }
.activity-num {
  width: 24px; height: 24px; flex-shrink: 0;
  background: var(--navy); color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.activity-item input { flex: 1; }

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: var(--gold); color: var(--navy);
  font-size: 14px; font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  border: none; cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  letter-spacing: 0.3px;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px;
  background: transparent; color: var(--navy);
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  border: 1px solid var(--border-mid);
  cursor: pointer; text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ── INFO / WARNING BOXES ───────────────────────────────────────── */
.info-box {
  background: rgba(200,148,58,0.07);
  border: 1px solid rgba(200,148,58,0.25);
  padding: 16px 20px;
  font-size: 14px; color: #7a5a1a;
  margin: 20px 0; line-height: 1.65;
}
.warning-box {
  background: rgba(192,57,43,0.06);
  border: 1px solid rgba(192,57,43,0.2);
  padding: 16px 20px;
  font-size: 13px; color: #7a1a1a;
  margin: 20px 0; line-height: 1.65;
}

/* ── CONDITIONS + ACCEPT ────────────────────────────────────────── */
.conditions {
  border: 1px solid var(--border-mid);
  padding: 28px 32px;
  background: var(--white);
  margin-bottom: 28px;
}
.conditions h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.conditions p {
  font-size: 14px; color: var(--muted);
  line-height: 1.8; margin-bottom: 12px;
}
.conditions p:last-child { margin-bottom: 0; }
.accept-cta {
  background: var(--navy-mid);
  padding: 36px;
  text-align: center;
  margin-top: 28px;
}
.accept-cta p { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.accept-cta .btn-primary { font-size: 15px; padding: 16px 44px; }

/* ── BREADCRUMB ─────────────────────────────────────────────────── */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 13px 5%;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted);
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--navy); font-weight: 500; }

/* ── RESULTS RIBBON ─────────────────────────────────────────────── */
.results-ribbon {
  background: rgba(200,148,58,0.08);
  border-bottom: 1px solid rgba(200,148,58,0.2);
  padding: 10px 5%;
  font-size: 12px; color: var(--muted);
  display: flex; align-items: center; gap: 16px;
}
.results-ribbon a { color: var(--gold); text-decoration: none; font-weight: 500; }

/* ── CO-DETAILS PAGE ────────────────────────────────────────────── */
.co-header { background: var(--white); border: 1px solid var(--border); padding: 36px; margin-bottom: 24px; }
.co-header-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.co-logo-wrap { display: flex; align-items: center; gap: 20px; }
.co-initials {
  width: 72px; height: 72px; flex-shrink: 0;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700; color: var(--gold-light);
}
.co-name-block h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 700;
  color: var(--navy); line-height: 1.15; margin-bottom: 8px;
}
.co-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 11px; font-weight: 500; padding: 4px 12px; border: 1px solid var(--border-mid); color: var(--muted); }
.tag.verified { border-color: rgba(200,148,58,0.4); background: rgba(200,148,58,0.07); color: #8a5e1a; }
.tag.basic    { border-color: var(--border); color: var(--muted); font-style: italic; }
.co-actions { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.btn-contact {
  padding: 12px 24px; background: var(--gold); color: var(--navy);
  border: none; cursor: pointer; font-size: 13px; font-weight: 600;
  font-family: 'DM Sans', sans-serif; text-decoration: none; text-align: center; display: block;
  transition: background 0.2s;
}
.btn-contact:hover { background: var(--gold-light); }
.btn-website {
  padding: 10px 24px; background: transparent; color: var(--navy);
  border: 1px solid var(--border-mid); cursor: pointer; font-size: 13px;
  font-family: 'DM Sans', sans-serif; text-decoration: none; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: all 0.2s;
}
.btn-website:hover { border-color: var(--gold); color: var(--gold); }
.co-meta-strip {
  display: flex;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.meta-item { flex: 1; min-width: 180px; padding: 14px 18px; border-right: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.meta-item:last-child { border-right: none; }
.meta-icon { font-size: 16px; flex-shrink: 0; opacity: 0.5; }
.meta-label { font-size: 10px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.meta-value { font-size: 13px; font-weight: 500; color: var(--navy); }
.meta-value a { color: var(--gold); text-decoration: none; }
.activities-text { font-size: 15px; color: var(--navy); line-height: 1.85; }
.activities-text .highlight,
.product-tag .highlight {
  color: #c0392b;
  font-weight: 600;
  background: none;
}
.product-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.product-tag {
  background: var(--cream); border: 1px solid var(--border-mid);
  padding: 7px 16px; font-size: 13px; color: var(--navy);
  cursor: pointer; transition: all 0.15s;
}
.product-tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.section-block { background: var(--white); border: 1px solid var(--border); padding: 28px 32px; margin-bottom: 24px; }
.section-block-title {
  font-size: 11px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.section-block-title::before { content: ''; display: inline-block; width: 3px; height: 14px; background: var(--gold); }
.contact-row { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.contact-row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; opacity: 0.5; }
.contact-label { font-size: 11px; color: var(--muted); margin-bottom: 2px; }
.contact-value { font-size: 13px; color: var(--navy); word-break: break-word; }
.contact-value a { color: var(--gold); text-decoration: none; }
.sb-stat { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.sb-stat:last-child { border-bottom: none; }
.sb-stat-label { color: var(--muted); }
.sb-stat-val { font-weight: 500; color: var(--navy); }
.report-btn {
  display: block; width: 100%; padding: 12px; text-align: center;
  font-size: 12px; color: var(--muted);
  border: 1px dashed var(--border-mid);
  cursor: pointer; background: none;
  font-family: 'DM Sans', sans-serif; margin-top: 12px;
  transition: color 0.2s;
}
.report-btn:hover { color: var(--navy); border-style: solid; }
.locked-notice {
  background: rgba(200,148,58,0.07);
  border: 1px solid rgba(200,148,58,0.25);
  padding: 14px 16px; font-size: 13px; color: #8a5e1a; margin-top: 20px;
}
.locked-notice a { color: var(--gold); }

/* ── MODAL ──────────────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(10,22,40,0.75); z-index: 300;
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); width: 100%; max-width: 520px;
  margin: 20px; padding: 40px; position: relative;
  animation: slideUp 0.25s ease;
}
@keyframes slideUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
.modal h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.modal .modal-sub { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px; background: none;
  border: 1px solid var(--border-mid); cursor: pointer;
  font-size: 16px; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--cream); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%; padding: 14px; background: var(--gold); border: none;
  color: var(--navy); font-size: 14px; font-weight: 600;
  font-family: 'DM Sans', sans-serif; cursor: pointer; transition: background 0.2s;
}
.form-submit:hover { background: var(--gold-light); }

/* ── SEARCH PAGE ────────────────────────────────────────────────── */
.search-wrap { background: var(--white); border: 1px solid var(--border); overflow: hidden; }
.search-method-tabs { display: flex; border-bottom: 1px solid var(--border); }
.search-tab {
  flex: 1; padding: 16px 24px; font-size: 13px; font-weight: 500;
  color: var(--muted); cursor: pointer; border: none; background: var(--cream);
  border-right: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.search-tab:last-child { border-right: none; }
.search-tab.active { background: var(--white); color: var(--navy); border-bottom: 2px solid var(--gold); font-weight: 600; }
.search-tab:hover:not(.active) { background: var(--white); color: var(--navy); }
.search-panel { padding: 36px 32px; }
.search-row { display: grid; grid-template-columns: 1fr auto auto; }
.search-input-wrap { position: relative; }
.search-input-wrap input {
  width: 100%; padding: 15px 20px;
  border: 1px solid var(--border-mid); border-right: none;
  font-size: 15px; font-family: 'DM Sans', sans-serif;
  color: var(--navy); background: var(--white); outline: none;
}
.search-input-wrap input:focus { border-color: var(--gold); }
.search-input-wrap input::placeholder { color: rgba(107,122,153,0.5); }
.search-select {
  padding: 15px 36px 15px 16px;
  border: 1px solid var(--border-mid); border-left: none; border-right: none;
  font-size: 13px; font-family: 'DM Sans', sans-serif;
  color: var(--navy); background: var(--cream);
  cursor: pointer; outline: none; min-width: 140px; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7a99' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.search-btn {
  padding: 15px 28px; background: var(--gold); border: 1px solid var(--gold);
  color: var(--navy); font-size: 14px; font-weight: 600;
  font-family: 'DM Sans', sans-serif; cursor: pointer; white-space: nowrap;
  transition: background 0.2s;
}
.search-btn:hover { background: var(--gold-light); }
.search-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 24px 0; font-size: 12px; color: var(--muted); font-style: italic;
}
.search-divider::before, .search-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.popular-terms { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.popular-label { font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); width: 100%; margin-bottom: 4px; }
.term-chip {
  padding: 5px 14px; border: 1px solid var(--border-mid); font-size: 12px; color: var(--navy);
  cursor: pointer; background: var(--white); transition: all 0.15s; font-family: 'DM Sans', sans-serif;
}
.term-chip:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 32px; }
.sector-cell { background: var(--white); padding: 20px 16px; cursor: pointer; transition: background 0.15s; text-align: center; }
.sector-cell:hover { background: var(--navy); }
.sector-cell:hover .sector-name { color: var(--white); }
.sector-cell:hover .sector-icon { color: var(--gold-light); }
.sector-icon { font-size: 22px; color: var(--gold); margin-bottom: 8px; transition: color 0.15s; }
.sector-name { font-size: 12px; font-weight: 500; color: var(--navy); transition: color 0.15s; line-height: 1.3; }

/* ── ADD COMPANY STEP INDICATOR ─────────────────────────────────── */
.steps-bar { display: flex; margin-bottom: 36px; border: 1px solid var(--border); background: var(--white); overflow: hidden; }
.step-indicator { flex: 1; padding: 16px 20px; display: flex; align-items: center; gap: 12px; border-right: 1px solid var(--border); background: var(--white); cursor: default; }
.step-indicator:last-child { border-right: none; }
.step-indicator.done   { background: var(--cream); }
.step-indicator.active { background: var(--navy); }
.step-num { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; background: var(--cream); color: var(--muted); border: 1px solid var(--border-mid); }
.step-indicator.active .step-num { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.step-indicator.done   .step-num { background: rgba(200,148,58,0.15); color: var(--gold); border-color: rgba(200,148,58,0.3); }
.step-label { font-size: 12px; font-weight: 500; color: var(--muted); }
.step-indicator.active .step-label { color: var(--white); }
.step-indicator.done   .step-label { color: var(--navy); }
.char-counter { font-size: 11px; color: var(--muted); text-align: right; margin-top: 4px; }
.char-counter.warn { color: var(--gold); }
.char-counter.over { color: var(--red); }

/* ── IOE PAGE ───────────────────────────────────────────────────── */
.ioe-logo-block { display: flex; align-items: center; gap: 28px; padding: 32px; background: var(--white); border: 1px solid var(--border); margin-bottom: 24px; }
.ioe-logo-initials { width: 80px; height: 80px; flex-shrink: 0; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900; color: var(--gold-light); letter-spacing: -1px; text-align: center; line-height: 1.2; }
.ioe-logo-text h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.ioe-logo-text p  { font-size: 14px; color: var(--muted); }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.offer-card { background: var(--white); border: 1px solid var(--border); padding: 28px; position: relative; overflow: hidden; }
.offer-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--gold); }
.offer-badge { display: inline-block; background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 700; padding: 4px 12px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.offer-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.offer-card .discount { font-size: 2.5rem; font-family: 'Playfair Display', serif; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.offer-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.offer-card .offer-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 13px; font-weight: 600; color: var(--navy); text-decoration: none; border-bottom: 2px solid var(--gold); padding-bottom: 2px; transition: color 0.2s; }
.offer-card .offer-cta:hover { color: var(--gold); }
.benefits-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); }
.benefit-item { padding: 16px 20px; display: flex; align-items: flex-start; gap: 12px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); background: var(--white); }
.benefit-item:nth-child(even) { border-right: none; }
.benefit-item:nth-last-child(-n+2) { border-bottom: none; }
.benefit-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.benefit-text h4 { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.benefit-text p  { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ── HOMEPAGE SECTIONS ──────────────────────────────────────────── */
.how { background: var(--white); }
.how-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
.steps { display: flex; flex-direction: column; margin-top: 40px; }
.step { display: flex; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num-lg { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: var(--gold-pale); line-height: 1; flex-shrink: 0; width: 48px; text-align: center; }
.step-content h3 { font-size: 17px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.step-content p   { font-size: 14px; color: var(--muted); line-height: 1.7; }
.how-visual { background: var(--navy); padding: 48px; position: relative; overflow: hidden; }
.how-visual::before { content: ''; position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(200,148,58,0.12) 0%, transparent 70%); }
.globe-stat { margin-bottom: 32px; position: relative; z-index: 1; }
.globe-stat .big { font-family: 'Playfair Display', serif; font-size: 4.5rem; font-weight: 900; color: var(--gold-light); line-height: 1; }
.globe-stat .desc { font-size: 14px; color: rgba(255,255,255,0.55); margin-top: 6px; }
.world-regions { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.region { display: flex; align-items: center; gap: 16px; }
.region-name { font-size: 12px; color: rgba(255,255,255,0.55); width: 120px; }
.region-bar-wrap { flex: 1; height: 3px; background: rgba(255,255,255,0.08); }
.region-bar { height: 100%; background: var(--gold); }
.region-pct { font-size: 12px; color: var(--gold-light); width: 36px; text-align: right; }
.sectors-section { background: var(--cream); }
.sectors-inner { max-width: 1200px; margin: 0 auto; }
.sector-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.sector-grid-home { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.sector-card { background: var(--white); padding: 36px 28px; cursor: pointer; transition: background 0.2s; position: relative; overflow: hidden; }
.sector-card:hover { background: var(--navy); }
.sector-card:hover .sector-icon-home { color: var(--gold-light); }
.sector-card:hover .sector-name-home { color: var(--white); }
.sector-card:hover .sector-count { color: rgba(255,255,255,0.45); }
.sector-card:hover .sector-arrow { color: var(--gold); }
.sector-icon-home { font-size: 28px; color: var(--gold); margin-bottom: 20px; transition: color 0.2s; }
.sector-name-home { font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 6px; transition: color 0.2s; }
.sector-count { font-size: 12px; color: var(--muted); transition: color 0.2s; }
.sector-arrow { position: absolute; bottom: 28px; right: 24px; font-size: 18px; color: transparent; transition: color 0.2s; }
.features-section { background: var(--navy); }
.features-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.features-text .section-title { color: var(--white); }
.features-text .section-body  { color: rgba(255,255,255,0.8); }
.feature-list { display: flex; flex-direction: column; margin-top: 40px; }
.feature-item { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.07); display: flex; gap: 20px; align-items: flex-start; }
.feature-item:last-child { border-bottom: none; }
.feature-icon { width: 40px; height: 40px; background: rgba(200,148,58,0.12); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gold-light); flex-shrink: 0; }
.feature-text h4 { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.feature-text p  { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.features-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(200,148,58,0.2); padding: 40px; }
.card-badge { display: inline-block; background: rgba(200,148,58,0.15); color: var(--gold-light); font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 14px; margin-bottom: 28px; }
.card-metric { margin-bottom: 24px; }
.card-metric .num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700; color: var(--white); line-height: 1; }
.card-metric .unit { font-size: 14px; color: var(--gold-light); margin-left: 4px; }
.card-metric .desc { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 4px; }
.mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.mini-stat { background: rgba(255,255,255,0.04); padding: 20px; border: 1px solid rgba(255,255,255,0.06); }
.mini-stat .val { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold-light); }
.mini-stat .lbl { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 4px; letter-spacing: 0.5px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--white); padding: 36px; border: 1px solid var(--border); position: relative; }
.testi-card::before { content: '"'; font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--gold-pale); position: absolute; top: 16px; right: 28px; line-height: 1; }
.testi-text { font-size: 15px; color: var(--navy); line-height: 1.75; margin-bottom: 28px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--border); padding-top: 20px; }
.testi-avatar { width: 40px; height: 40px; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700; color: var(--gold-light); flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 500; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--muted); margin-top: 2px; }
.add-company-cta { background: var(--navy-mid); padding: 80px 5%; }
.add-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.add-text h2 { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.2; }
.add-text p { font-size: 15px; color: rgba(255,255,255,0.5); max-width: 440px; line-height: 1.7; }
.add-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.btn-outline { display: inline-block; padding: 14px 36px; background: transparent; color: rgba(255,255,255,0.65); font-size: 13px; font-family: 'DM Sans', sans-serif; text-decoration: none; cursor: pointer; border: 1px solid rgba(255,255,255,0.15); letter-spacing: 0.5px; transition: border-color 0.2s, color 0.2s; text-align: center; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

/* ── SITE FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 56px 5% 28px;
  border-top: 1px solid rgba(200,148,58,0.15);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); margin-top: 16px; line-height: 1.7; max-width: 280px; }
.footer-contact { margin-top: 24px; display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-col h4 { font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-reg  { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ── SOCIAL ─────────────────────────────────────────────────────── */
.social-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.social-link { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; font-size: 13px; color: var(--navy); border: 1px solid var(--border-mid); text-decoration: none; transition: all 0.15s; }
.social-link:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── CATALOGUE ──────────────────────────────────────────────────── */
.catalogue-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.catalogue-thumb img { height: 80px; border: 1px solid var(--border); display: block; }
.pdf-list { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.pdf-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gold); text-decoration: none; }
.pdf-link:hover { text-decoration: underline; }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .search-row {
    flex-wrap: wrap;
  }
  .search-input-wrap {
    width: 100%;
    flex: none;
  }
  .search-input-wrap input {
    width: 100%;
    border-right: 1px solid var(--border-mid) !important;
  }
  .search-select {
    flex: 1;
    border-right: none;
  }
  .search-btn {
    flex: 1;
  }
}
@media (max-width: 960px) {
  .site-nav { display: none; }
  .site-nav.open { display: flex; flex-direction: column; align-items: flex-start; position: absolute; top: 66px; left: 0; right: 0; background: var(--navy); padding: 16px 5%; border-bottom: 1px solid var(--border); gap: 4px; z-index: 199; }
  .nav-toggle { display: block; }
  .how-inner         { grid-template-columns: 1fr; gap: 48px; }
  .features-inner    { grid-template-columns: 1fr; }
  .sector-grid-home  { grid-template-columns: repeat(2, 1fr); }
  .testi-grid        { grid-template-columns: 1fr; }
  .footer-top        { grid-template-columns: 1fr 1fr; }
  .add-inner         { flex-direction: column; }
  .page-body-2col    { grid-template-columns: 1fr; }
  .form-grid, .form-grid-3, .form-row { grid-template-columns: 1fr; }
  .activity-grid     { grid-template-columns: 1fr; }
  .offer-grid        { grid-template-columns: 1fr; }
  .co-header-top     { flex-direction: column; }
  .co-actions        { flex-direction: row; }
  .hero-stats        { gap: 20px; flex-wrap: wrap; }
  .steps-bar         { flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .sector-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-top        { grid-template-columns: 1fr; }
  .mini-stats        { grid-template-columns: 1fr; }
  .benefits-list     { grid-template-columns: 1fr; }
  .benefit-item      { border-right: none !important; }
}

/* ================================================================
   AGENTS WANTED PAGE
   ================================================================ */

/* Hero */
.hero {
  background: var(--navy);
  padding: 5rem 5% 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,148,58,0.09) 0%, transparent 70%),
    repeating-linear-gradient(0deg,  transparent, transparent 39px, rgba(255,255,255,0.02) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.02) 40px);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero .hero-inner {
  max-width: 1200px; margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,148,58,0.14); border: 1px solid rgba(200,148,58,0.35);
  padding: 5px 14px; font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900; color: var(--white); line-height: 1.08;
  margin-bottom: 20px; letter-spacing: -0.5px;
}
.hero-content h1 em { font-style: normal; color: var(--gold-light); }
.hero-desc {
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.60); line-height: 1.75; max-width: 480px;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  font-weight: 700; color: var(--gold-light); line-height: 1;
}
.stat-label {
  font-size: 11px; color: rgba(255,255,255,0.45);
  letter-spacing: 1px; text-transform: uppercase; margin-top: 4px;
}
.stat-divider { width: 1px; height: 36px; background: rgba(200,148,58,0.25); }

/* Hero side card */
.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,148,58,0.25);
  padding: 28px;
}
.hero-card-label {
  font-size: 10px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(200,148,58,0.2);
}
.notice-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.notice-list li {
  font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6;
  padding-left: 20px; position: relative;
}
.notice-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--gold); font-size: 12px;
}

/* Section header */
.section-header {
  max-width: 1200px; margin: 0 auto;
  padding: 48px 5% 0;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px;
}
.section-header .section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--navy); line-height: 1.15;
  margin-bottom: 8px;
}
.section-subtitle { font-size: 14px; color: var(--muted); }

/* Country selector card */
.selector-card {
  max-width: 1200px; margin: 24px auto 0;
  padding: 0 5%;
}
.selector-card > div:first-child,
.selector-row {
  background: var(--white); border: 1px solid var(--border);
  padding: 28px 32px;
  display: flex; align-items: flex-end; gap: 20px; flex-wrap: wrap;
}
.field-group { display: flex; flex-direction: column; gap: 8px; flex: 1; min-width: 220px; }
.field-group label {
  font-size: 11px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted);
}
.select-wrapper { position: relative; }
.select-wrapper select {
  width: 100%; padding: 12px 40px 12px 16px;
  border: 1px solid var(--border-mid);
  font-size: 14px; font-family: 'DM Sans', sans-serif;
  color: var(--navy); background: var(--white);
  appearance: none; cursor: pointer; outline: none;
  transition: border-color 0.2s;
}
.select-wrapper select:focus { border-color: var(--gold); }
.select-arrow {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%); pointer-events: none;
  color: var(--muted);
}
.selector-card .search-btn,
.selector-row .search-btn {
  padding: 13px 28px; background: var(--gold); border: none;
  color: var(--navy); font-size: 14px; font-weight: 600;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  transition: background 0.2s; white-space: nowrap;
  align-self: flex-end;
}
.selector-card .search-btn:hover,
.selector-row .search-btn:hover { background: var(--gold-light); }

/* Country chips */
.popular-label {
  font-size: 11px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted);
  margin: 20px 0 10px; padding: 0 32px;
}
.region-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 0 32px 28px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.chip {
  padding: 6px 14px; font-size: 12px; font-weight: 500;
  color: var(--navy); text-decoration: none;
  border: 1px solid var(--border-mid); background: var(--cream);
  transition: all 0.15s; cursor: pointer; display: inline-block;
}
.chip:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* Results placeholder */
.results-placeholder {
  max-width: 1200px; margin: 40px auto;
  padding: 64px 5%;
  text-align: center; background: var(--white);
  border: 1px dashed var(--border-mid);
}
.results-icon { font-size: 48px; margin-bottom: 16px; }
.results-placeholder h3 {
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  color: var(--navy); margin-bottom: 10px;
}
.results-placeholder p { font-size: 14px; color: var(--muted); max-width: 400px; margin: 0 auto; }

/* Exporter result cards */
.results-grid {
  max-width: 1200px; margin: 32px auto;
  padding: 0 5%;
  display: none;
  grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.exporter-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 28px; display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.exporter-card:hover { border-color: rgba(200,148,58,0.4); box-shadow: 0 4px 20px rgba(10,22,40,0.08); }
.card-sector {
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.card-company {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  font-weight: 700; color: var(--navy); line-height: 1.2;
}
.card-desc { font-size: 13px; color: var(--muted); line-height: 1.7; flex: 1; }
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.card-location {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--muted);
}
.card-contact {
  font-size: 12px; font-weight: 600; color: var(--navy);
  text-decoration: none; padding: 6px 14px;
  border: 1px solid var(--border-mid);
  transition: all 0.15s;
}
.card-contact:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* Info strip (3 columns) */
.info-strip {
  max-width: 1200px; margin: 40px auto 0;
  padding: 0 5%;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
}
.info-block {
  background: var(--navy); padding: 32px 28px;
}
.info-block-label {
  font-size: 10px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.info-block-text { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* Terms box */
.terms-box {
  max-width: 1200px; margin: 32px auto 60px;
  padding: 0 5%;
}
.terms-box > * {
  background: rgba(200,148,58,0.06);
  border: 1px solid rgba(200,148,58,0.2);
  padding: 24px 28px;
}
.terms-title {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px;
}
.terms-text { font-size: 13px; color: var(--muted); line-height: 1.75; }

/* Responsive */
@media (max-width: 900px) {
  .hero .hero-inner    { grid-template-columns: 1fr; }
  .hero-card           { display: none; }
  .results-grid        { grid-template-columns: 1fr; }
  .info-strip          { grid-template-columns: 1fr; }
  .selector-row        { flex-direction: column; align-items: stretch; }
  .selector-card .search-btn,
  .selector-row .search-btn { align-self: stretch; justify-content: center; }
}
@media (max-width: 600px) {
  .results-grid        { grid-template-columns: 1fr; }
  .info-strip          { grid-template-columns: 1fr; }
}

/* ================================================================
   CO-DETAILS PAGE  (exportuk-co-details.html & co_details.php)
   ================================================================ */

/* Two-column page layout */
.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

/* Search bar strip */
.search-bar {
  background: var(--navy);
  padding: 18px 5%;
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-bar-inner {
  display: flex;
  flex: 1;
  max-width: 600px;
  border: 1px solid rgba(200,148,58,0.3);
}
.search-bar input {
  flex: 1;
  padding: 11px 18px;
  background: rgba(255,255,255,0.06);
  border: none;
  outline: none;
  color: var(--white);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
}
.search-bar input::placeholder { color: rgba(255,255,255,0.3); }
.search-bar button {
  padding: 11px 20px;
  background: var(--gold);
  border: none;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.search-bar button:hover { background: var(--gold-light); }

/* Section blocks (Products, Brands, Markets) */
.section {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 32px;
  margin-bottom: 24px;
}
.section .section-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  /* override the homepage section-title large font */
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  line-height: 1;
}
.section .section-title::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 14px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Export markets grid */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.market-item {
  background: var(--white);
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--navy);
  transition: background 0.15s;
}
.market-item:hover { background: var(--cream); }
.market-flag { font-size: 18px; }

/* Sidebar */
.sidebar { /* column handled by .page grid */ }

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  overflow: hidden;
}
.sidebar-card-head {
  background: var(--navy);
  padding: 14px 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
}
.sidebar-card-body { padding: 16px 20px; }

/* Similar companies list */
.similar-co {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}
.similar-co:last-of-type { border-bottom: none; }
.similar-co:hover .sim-name { color: var(--gold); }

.sim-init {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--cream);
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}
.sim-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 2px;
  transition: color 0.2s;
}
.sim-sector { font-size: 11px; color: var(--muted); }

/* Modal form labels (override generic label style inside modal) */
.modal .form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}
.modal .form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-mid);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  outline: none;
  background: var(--white);
  transition: border-color 0.2s;
}
.modal .form-input:focus { border-color: var(--gold); }
textarea.form-input { resize: vertical; min-height: 100px; }

/* Responsive */
@media (max-width: 900px) {
  .page { grid-template-columns: 1fr; }
  .search-bar-inner { max-width: 100%; }
}

/* ================================================================
   MISSING CLASSES — homepage & information service
   ================================================================ */

/* Homepage hero eyebrow lines (flag-line dividers) */
.flag-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* information-service hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,148,58,0.14);
  border: 1px solid rgba(200,148,58,0.35);
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

/* ── INFORMATION SERVICE HERO ───────────────────────────────── */
.hero-info {
  background: var(--navy);
  padding: 5rem 5% 4rem;
  position: relative;
  overflow: hidden;
}
.hero-info::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,148,58,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero-info .hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: block;  /* single column — badge, h1, sub, stats stack vertically */
}
.hero-info .hero-inner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.5;
  max-width: 720px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero-info .hero-inner h1 em { font-style: normal; color: var(--gold-light); }
.hero-info .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,148,58,0.14);
  border: 1px solid rgba(200,148,58,0.35);
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.hero-info .hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 32px;
}
/* hero-info specific rules moved to .hero-info block above */

/* information-service hero flag bar */
.hero .hero-flag {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #012169 33%, #fff 33%, #fff 66%, #c8102e 66%);
  margin-bottom: 0;
  opacity: 0.4;
}

/* Fade-up animation classes (used by information-service) */
.fade-up {
  animation: fadeUp 0.7s ease both;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s;  }
.delay-3 { animation-delay: 0.45s; }

/* information-service stat classes (stat / stat-num / stat-label)
   already covered by .stat / .stat-num / .stat-label in agents section
   but ensure hero-stats on info page lays out correctly */
.hero-inner .hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.hero-inner .stat {
  display: flex;
  flex-direction: column;
}
.hero-inner .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-inner .stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── Hero search button (replaces input+button on homepage) ── */
.hero-search-btn {
  display: inline-flex;
  align-items: center;
  padding: 18px 40px;
  background: var(--gold);
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 24px rgba(200,148,58,0.3);
}
.hero-search-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* logo-divider (vertical separator between flag and text) */
.logo-divider {
  width: 1px;
  height: 28px;
  background: rgba(200,148,58,0.35);
  flex-shrink: 0;
}

/* ================================================================
   INFORMATION SERVICE PAGE
   ================================================================ */

/* Two-column layout for information service */
.info-page-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  align-items: start;
}

/* Content card */
.content-card {
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.card-header {
  background: var(--navy);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.card-header-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(200,148,58,0.18);
  border: 1px solid rgba(200,148,58,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.card-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--white);
}
.card-header p { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }
.card-body {
  padding: 32px 28px;
}
.card-body p {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Highlight box */
.highlight-box {
  background: rgba(200,148,58,0.08);
  border: 1px solid rgba(200,148,58,0.25);
  padding: 16px 20px;
  font-size: 14px;
  color: #7a5a1a;
  margin: 20px 0;
  line-height: 1.65;
}

/* Steps (how it works) */
.steps {
  display: flex;
  flex-direction: column;
  margin: 24px 0;
}
.step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step .step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-pale);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  text-align: center;
}
.step-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.step-content p {
  font-size: 14px !important;
  color: var(--muted) !important;
  line-height: 1.7 !important;
  margin-bottom: 0 !important;
}

/* CTA strip */
.cta-strip {
  background: var(--navy);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.cta-strip p {
  font-size: 15px !important;
  color: rgba(255,255,255,0.85) !important;
  margin-bottom: 0 !important;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.btn-gold:hover { background: var(--gold-light); }

/* Sidebar */
.sidebar { /* column handled by .page-body grid */ }

/* Free badge */
.free-badge {
  background: var(--navy);
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 20px;
  border: 1px solid rgba(200,148,58,0.2);
}
.big-free {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 12px;
}
.free-badge p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Side card (info service style) */
.side-card {
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  overflow: hidden;
}
.side-card-title {
  background: var(--navy);
  padding: 13px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.side-card-body { padding: 16px 18px; }

/* Contact list */
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--navy);
  line-height: 1.5;
}
.contact-list .contact-icon { font-size: 16px; flex-shrink: 0; }
.contact-list a { color: var(--navy); text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

/* Quick links */
.quick-links {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.quick-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s, color 0.15s;
}
.quick-links a:last-child { border-bottom: none; }
.quick-links a:hover { background: var(--cream); color: var(--gold); }
.quick-links a::after { content: '→'; color: var(--muted); font-size: 12px; }

/* Responsive */
@media (max-width: 900px) {
  .info-page-body { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .search-row {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
  }
  .search-input-wrap {
    width: 100%;
    order: 1;
  }
  .search-input-wrap input {
    width: 100%;
    border-right: 1px solid var(--border-mid) !important;
  }
  .search-select {
    width: 100%;
    order: 2;
    border-left: 1px solid var(--border-mid);
    border-right: 1px solid var(--border-mid);
    padding-right: 36px;
  }
  .search-btn {
    width: 100%;
    order: 3;
    justify-content: center;
  }
  
}