/* PolicyReadyUK — Global Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

:root {
  --purple: #673DE6;
  --purple-dark: #5228d4;
  --purple-light: #f0ebff;
  --purple-border: #c4b0f5;
  --navy: #1a1a2e;
  --amber: #f59e0b;
  --amber-bg: #fff8e1;
  --green: #10b981;
  --white: #ffffff;
  --body-text: #1a1a1a;
  --subtle: #666666;
  --border: #e0e0e0;
  --bg: #f5f5f8;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(103,61,230,0.08);
  --shadow-hover: 0 6px 24px rgba(103,61,230,0.16);
}

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

body { font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--body-text); background: var(--bg); line-height: 1.6; }
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }

.navbar { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.navbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { font-size: 22px; font-weight: 700; color: var(--navy); text-decoration: none; }
.logo span { color: var(--purple); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--subtle); font-weight: 500; font-size: 14px; transition: color .2s; }
.nav-links a:hover { color: var(--purple); text-decoration: none; }
.nav-cta { background: var(--purple) !important; color: var(--white) !important; padding: 9px 20px; border-radius: var(--radius); font-weight: 700 !important; font-size: 14px !important; }
.nav-cta:hover { background: var(--purple-dark) !important; text-decoration: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

.hero { background: linear-gradient(135deg, var(--navy) 0%, #2d2060 100%); color: var(--white); padding: 80px 24px; text-align: center; }
.hero h1 { font-size: 42px; font-weight: 700; line-height: 1.2; max-width: 780px; margin: 0 auto 20px; }
.hero p { font-size: 18px; opacity: .85; max-width: 640px; margin: 0 auto 36px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius); font-weight: 700; font-size: 15px; cursor: pointer; transition: all .2s; border: 2px solid transparent; text-decoration: none !important; font-family: 'DM Sans', sans-serif; }
.btn-primary { background: var(--purple); color: var(--white); border-color: var(--purple); }
.btn-primary:hover { background: var(--purple-dark); border-color: var(--purple-dark); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-outline-purple { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn-outline-purple:hover { background: var(--purple-light); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 14px 24px; }
.trust-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 13px; color: var(--subtle); }
.trust-item .ti { color: var(--green); }

.section { padding: 72px 24px; }
.section-alt { background: var(--white); }
.container { max-width: 1200px; margin: 0 auto; }
.section-title { font-size: 32px; font-weight: 700; margin-bottom: 12px; text-align: center; }
.section-sub { color: var(--subtle); text-align: center; max-width: 560px; margin: 0 auto 48px; font-size: 16px; }

.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.step-card { background: var(--white); border-radius: var(--radius); padding: 32px; text-align: center; box-shadow: var(--shadow); border: 1px solid var(--border); }
.step-number { width: 48px; height: 48px; background: var(--purple); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; margin: 0 auto 20px; }
.step-card h3 { font-size: 18px; margin-bottom: 10px; }
.step-card p { color: var(--subtle); font-size: 14px; }

.features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon { width: 44px; height: 44px; min-width: 44px; background: var(--purple-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.feature-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.feature-item p { color: var(--subtle); font-size: 13px; }

.cat-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-bottom: 48px; }
.cat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 16px; text-align: center; cursor: pointer; transition: all .2s; }
.cat-card:hover, .cat-card.active { border-color: var(--purple); background: var(--purple-light); }
.cat-card .cat-icon { font-size: 28px; margin-bottom: 8px; }
.cat-card h4 { font-size: 13px; font-weight: 700; }

.policy-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.policy-card { background: var(--white); border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); box-shadow: var(--shadow); transition: box-shadow .2s; display: flex; flex-direction: column; }
.policy-card:hover { box-shadow: var(--shadow-hover); }
.policy-num { font-size: 11px; font-weight: 700; color: var(--subtle); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.policy-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.policy-card p { color: var(--subtle); font-size: 13px; flex-grow: 1; margin-bottom: 16px; }
.policy-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.badge { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; white-space: nowrap; }
.badge-purple { background: var(--purple-light); color: var(--purple); }
.badge-green { background: #d1fae5; color: #065f46; }
.badge-blue { background: #dbeafe; color: #1e40af; }
.badge-amber { background: var(--amber-bg); color: #92400e; }
.policy-card-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-size: 18px; font-weight: 700; color: var(--purple); }

.bundle-banner { background: linear-gradient(135deg,var(--purple) 0%,#8b5cf6 100%); color: var(--white); border-radius: 12px; padding: 28px 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.bundle-banner h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.bundle-banner p { opacity: .85; font-size: 14px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pricing-card { background: var(--white); border-radius: 12px; padding: 36px 28px; border: 2px solid var(--border); text-align: center; transition: all .2s; }
.pricing-card.featured { border-color: var(--purple); position: relative; transform: scale(1.03); }
.pricing-card.featured::before { content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--purple); color: var(--white); font-size: 12px; font-weight: 700; padding: 4px 16px; border-radius: 20px; }
.pricing-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.pricing-price { font-size: 40px; font-weight: 700; color: var(--purple); margin: 16px 0 4px; }
.pricing-price span { font-size: 16px; font-weight: 400; color: var(--subtle); }
.pricing-desc { color: var(--subtle); font-size: 14px; margin-bottom: 28px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 28px; }
.pricing-features li { padding: 7px 0; font-size: 13px; border-bottom: 1px solid var(--border); display: flex; gap: 8px; align-items: center; }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; }

.policy-layout { display: grid; grid-template-columns: 60% 40%; min-height: calc(100vh - 68px); }
.preview-panel { background: #f8f8fa; border-right: 1px solid var(--border); padding: 32px; overflow-y: auto; position: sticky; top: 68px; height: calc(100vh - 68px); }
.form-panel { background: var(--white); padding: 32px; overflow-y: auto; }
.document-preview { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; font-size: 11pt; line-height: 1.7; box-shadow: var(--shadow); }
.doc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 3px solid var(--purple); }
.doc-org-name { font-size: 14pt; font-weight: 700; color: var(--navy); }
.doc-reg { font-size: 9pt; color: var(--subtle); margin-top: 4px; }
.doc-badge { background: var(--purple-light); color: var(--purple); font-size: 10pt; font-weight: 700; padding: 6px 14px; border-radius: var(--radius); }
.doc-title { font-size: 16pt; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.doc-meta { font-size: 9pt; color: var(--subtle); margin-bottom: 20px; }
.doc-section-title { font-size: 11pt; font-weight: 700; color: var(--purple); margin: 20px 0 8px; padding-left: 8px; border-left: 3px solid var(--purple); }
.doc-body p { margin-bottom: 10px; font-size: 10pt; }
.doc-body ul { margin: 8px 0 8px 20px; }
.doc-body li { font-size: 10pt; margin-bottom: 4px; }
.blurred-overlay { background: var(--white); border: 1px dashed var(--purple-border); border-radius: var(--radius); padding: 40px; text-align: center; margin-top: 24px; position: relative; overflow: hidden; }
.blurred-content { filter: blur(4px); pointer-events: none; font-size: 10pt; line-height: 1.7; }
.unlock-msg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--white); border: 2px solid var(--purple); border-radius: var(--radius); padding: 20px 28px; text-align: center; box-shadow: var(--shadow-hover); z-index: 10; min-width: 240px; }
.unlock-msg h4 { color: var(--purple); margin-bottom: 6px; }
.unlock-msg p { font-size: 12px; color: var(--subtle); }

.form-section { margin-bottom: 32px; }
.form-section-title { font-size: 13px; font-weight: 700; color: var(--purple); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--purple-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; }
.form-group label .req { color: var(--purple); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--body-text); transition: border-color .2s; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(103,61,230,0.1); }
.payment-box { background: var(--purple-light); border: 2px solid var(--purple-border); border-radius: var(--radius); padding: 24px; text-align: center; margin-top: 8px; }
.payment-box .price-display { font-size: 36px; font-weight: 700; color: var(--purple); margin-bottom: 6px; }
.payment-box p { font-size: 13px; color: var(--subtle); margin-bottom: 20px; }
.secure-note { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12px; color: var(--subtle); margin-top: 12px; }

.page-hero { background: linear-gradient(135deg, var(--navy) 0%, #2d2060 100%); color: var(--white); padding: 60px 24px 50px; }
.page-hero h1 { font-size: 36px; font-weight: 700; margin-bottom: 12px; }
.page-hero p { opacity: .8; max-width: 600px; }
.content-card { background: var(--white); border-radius: var(--radius); padding: 40px; border: 1px solid var(--border); margin-bottom: 24px; }
.content-card h2 { font-size: 20px; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--purple-light); }
.content-card h3 { font-size: 16px; font-weight: 700; margin: 20px 0 10px; }
.content-card p { color: var(--subtle); margin-bottom: 12px; }
.content-card ul { margin-left: 20px; margin-bottom: 12px; }
.content-card li { color: var(--subtle); margin-bottom: 6px; }

.thankyou-wrap { max-width: 640px; margin: 80px auto; text-align: center; padding: 0 24px; }
.thankyou-icon { font-size: 72px; margin-bottom: 24px; }
.thankyou-wrap h1 { font-size: 32px; font-weight: 700; margin-bottom: 16px; }
.thankyou-wrap p { color: var(--subtle); margin-bottom: 28px; }

footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 60px 24px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo { color: var(--white); display: inline-block; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; max-width: 280px; }
.footer-col h4 { color: var(--white); font-weight: 700; margin-bottom: 14px; font-size: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,.6); font-size: 13px; transition: color .2s; }
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; }
.disclaimer-text { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 12px; line-height: 1.5; }

.text-center { text-align: center; }
.text-purple { color: var(--purple); }
.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-48{margin-top:48px}
.mb-8{margin-bottom:8px}.mb-16{margin-bottom:16px}.mb-24{margin-bottom:24px}
.alert-amber { background: var(--amber-bg); border: 1px solid #fde68a; border-radius: var(--radius); padding: 14px 18px; font-size: 13px; margin-bottom: 20px; }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn { padding: 8px 20px; border-radius: 24px; border: 1.5px solid var(--border); background: var(--white); font-family: 'DM Sans',sans-serif; font-size: 13px; font-weight: 500; cursor: pointer; transition: all .2s; }
.filter-btn:hover, .filter-btn.active { background: var(--purple); border-color: var(--purple); color: var(--white); }
.search-wrap { position: relative; max-width: 400px; margin-bottom: 32px; }
.search-wrap input { width: 100%; padding: 11px 16px 11px 40px; border: 1.5px solid var(--border); border-radius: 24px; font-family: 'DM Sans',sans-serif; font-size: 14px; background: var(--white); }
.search-wrap input:focus { outline: none; border-color: var(--purple); }
.search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--subtle); }

@media(max-width:1024px){.policy-layout{grid-template-columns:1fr}.preview-panel{position:static;height:auto;max-height:500px}.cat-grid{grid-template-columns:repeat(3,1fr)}.policy-grid{grid-template-columns:repeat(2,1fr)}.footer-grid{grid-template-columns:1fr 1fr}.pricing-grid{grid-template-columns:1fr 1fr}.steps-grid{grid-template-columns:1fr}.features-grid{grid-template-columns:1fr}}
@media(max-width:768px){.nav-links{display:none;flex-direction:column;position:absolute;top:68px;left:0;right:0;background:var(--white);border-top:1px solid var(--border);padding:20px;gap:14px;box-shadow:0 8px 24px rgba(0,0,0,.12)}.nav-links.open{display:flex}.hamburger{display:flex}.hero h1{font-size:28px}.hero p{font-size:15px}.policy-grid,.pricing-grid,.cat-grid,.footer-grid{grid-template-columns:1fr}.form-row{grid-template-columns:1fr}.bundle-banner{text-align:center}.pricing-card.featured{transform:none}.section-title{font-size:24px}}

/* ── DUAL PAYMENT BUTTONS ─────────────────────────────────── */
.payment-methods { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.payment-methods-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--subtle);
  text-transform: uppercase;
  letter-spacing: .5px;
  text-align: center;
  margin-bottom: 4px;
}
.btn-stripe {
  background: var(--purple);
  color: white;
  border: 2px solid var(--purple);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
  width: 100%;
  text-decoration: none;
}
.btn-stripe:hover { background: var(--purple-dark); border-color: var(--purple-dark); color: white; text-decoration: none; }
.btn-paypal {
  background: #ffc439;
  color: #003087;
  border: 2px solid #ffc439;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
  width: 100%;
  text-decoration: none;
}
.btn-paypal:hover { background: #e6b035; border-color: #e6b035; color: #003087; text-decoration: none; }
.payment-divider {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; color: var(--subtle); font-weight: 700;
}
.payment-divider::before, .payment-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.paypal-logo { font-size: 16px; letter-spacing: -1px; }
.stripe-lock { font-size: 14px; }

/* ── REGULATORY INTELLIGENCE / NEWS ───────────────────────── */
.intel-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
  color: white;
  padding: 70px 24px 60px;
  position: relative;
  overflow: hidden;
}
.intel-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(103,61,230,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.intel-hero h1 { font-size: 40px; font-weight: 700; margin-bottom: 12px; }
.intel-hero p { font-size: 17px; opacity: .85; max-width: 640px; margin-bottom: 24px; }
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16,185,129,0.2);
  border: 1px solid rgba(16,185,129,0.4);
  color: #34d399;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.live-dot {
  width: 8px; height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.news-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.news-card-header {
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.header-cqc    { background: #1d4ed8; color: white; }
.header-ofsted { background: #7c3aed; color: white; }
.header-gov    { background: #065f46; color: white; }
.header-nhs    { background: #0369a1; color: white; }
.header-dhsc   { background: #92400e; color: white; }
.header-alert  { background: #dc2626; color: white; }
.news-card-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.news-card-date { font-size: 11px; color: var(--subtle); margin-bottom: 8px; }
.news-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; color: var(--navy); }
.news-card p  { font-size: 13px; color: var(--subtle); flex: 1; line-height: 1.6; margin-bottom: 14px; }
.news-card a.read-more {
  font-size: 12px;
  font-weight: 700;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}
.news-card a.read-more:hover { text-decoration: underline; }

.intel-ticker {
  background: var(--navy);
  color: white;
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}
.ticker-inner {
  display: flex;
  gap: 0;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-size: 13px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.ticker-label {
  font-size: 10px;
  font-weight: 700;
  background: var(--purple);
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.authority-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.auth-tab {
  padding: 8px 20px;
  border-radius: 24px;
  border: 2px solid var(--border);
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.auth-tab:hover { border-color: var(--purple); color: var(--purple); }
.auth-tab.active { background: var(--purple); border-color: var(--purple); color: white; }
.auth-tab.active-cqc { background: #1d4ed8; border-color: #1d4ed8; color: white; }
.auth-tab.active-ofsted { background: #7c3aed; border-color: #7c3aed; color: white; }
.auth-tab.active-gov { background: #065f46; border-color: #065f46; color: white; }

.loading-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px;
  text-align: center;
  color: var(--subtle);
}
.spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin: 0 auto 14px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.insight-box {
  background: linear-gradient(135deg, var(--purple-light) 0%, white 100%);
  border: 2px solid var(--purple-border);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 40px;
}
.insight-box h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.insight-box p  { color: var(--subtle); font-size: 14px; }

/* ── PARTNER / B2B PAGE ────────────────────────────────────── */
.partner-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: box-shadow .2s;
}
.partner-card:hover { box-shadow: var(--shadow-hover); }
.partner-card .picon { font-size: 36px; margin-bottom: 16px; }
.partner-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.partner-card p { color: var(--subtle); font-size: 14px; margin-bottom: 16px; }
.partner-tier {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  border: 2px solid var(--border);
  text-align: center;
}
.partner-tier.gold { border-color: #f59e0b; background: linear-gradient(135deg, #fffbeb 0%, white 100%); }
.partner-tier.platinum { border-color: var(--purple); background: linear-gradient(135deg, var(--purple-light) 0%, white 100%); }
.tier-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.tier-silver { background: #e2e8f0; color: #475569; }
.tier-gold   { background: #fef3c7; color: #92400e; }
.tier-plat   { background: var(--purple-light); color: var(--purple); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.testimonial-card blockquote { font-size: 14px; color: var(--subtle); font-style: italic; margin-bottom: 14px; line-height: 1.7; }
.testimonial-card cite { font-size: 13px; font-weight: 700; color: var(--navy); font-style: normal; }

/* ── HOMEPAGE NEWS STRIP ───────────────────────────────────── */
.home-news-strip {
  background: var(--white);
  border-top: 3px solid var(--purple);
  padding: 48px 24px;
}
.home-news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.home-news-item {
  border-left: 3px solid var(--purple-border);
  padding-left: 16px;
}
.home-news-item .hn-source { font-size: 11px; font-weight: 700; color: var(--purple); text-transform: uppercase; margin-bottom: 4px; }
.home-news-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; line-height: 1.4; }
.home-news-item p { font-size: 12px; color: var(--subtle); margin-bottom: 8px; }

@media(max-width:768px){
  .news-grid,.home-news-grid{grid-template-columns:1fr}
  .intel-hero h1{font-size:26px}
  .authority-tabs{gap:6px}
  .auth-tab{padding:6px 14px;font-size:12px}
}

/* ── EMAIL CAPTURE / LEAD MAGNET ───────────────────────────── */
.email-capture-bar {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 20px 24px;
  text-align: center;
}
.email-capture-bar strong { font-size: 16px; }
.email-capture-bar p { font-size: 13px; opacity: .9; margin: 4px 0 0; }

.lead-magnet-box {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
  border: 2px solid #6ee7b7;
  border-radius: 14px;
  padding: 36px 40px;
  text-align: center;
}
.lead-magnet-box h3 { font-size: 24px; font-weight: 700; color: #065f46; margin-bottom: 8px; }
.lead-magnet-box p  { color: #047857; font-size: 15px; margin-bottom: 24px; }
.lead-magnet-perks {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 28px;
}
.lead-magnet-perks span {
  background: white; border: 1px solid #6ee7b7;
  color: #065f46; font-size: 13px; font-weight: 700;
  padding: 8px 16px; border-radius: 24px;
}
.email-input-row {
  display: flex; gap: 10px; max-width: 540px;
  margin: 0 auto; flex-wrap: wrap;
}
.email-input-row input {
  flex: 1; min-width: 200px;
  padding: 13px 16px; border-radius: 8px;
  border: 2px solid #6ee7b7; font-family: 'DM Sans', sans-serif;
  font-size: 14px; outline: none;
}
.email-input-row input:focus { border-color: #059669; }
.btn-green {
  background: #059669; color: white;
  border: 2px solid #059669; padding: 13px 24px;
  border-radius: 8px; font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 14px; cursor: pointer;
  white-space: nowrap; transition: background .2s;
}
.btn-green:hover { background: #047857; border-color: #047857; }
.email-consent {
  font-size: 11px; color: #6b7280; margin-top: 12px;
  max-width: 480px; margin-left: auto; margin-right: auto;
}

/* RSS NEWS CARDS */
.rss-card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.rss-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.rss-card-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.rss-source-tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
}
.rss-card h3 {
  font-size: 14px; font-weight: 700; line-height: 1.5;
  color: var(--navy); margin-bottom: 8px;
}
.rss-card p { font-size: 12px; color: var(--subtle); flex: 1; line-height: 1.6; margin-bottom: 10px; }
.rss-card-date { font-size: 11px; color: #9ca3af; margin-bottom: 6px; }
.rss-card a.rss-link {
  font-size: 12px; font-weight: 700; color: var(--purple);
  display: inline-flex; align-items: center; gap: 4px; margin-top: auto;
}

.sticky-email-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: linear-gradient(90deg, #059669, #0369a1);
  color: white; padding: 12px 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap; z-index: 999;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
  transform: translateY(100%);
  transition: transform .4s ease;
}
.sticky-email-cta.visible { transform: translateY(0); }
.sticky-email-cta p { font-size: 14px; font-weight: 700; margin: 0; }
.sticky-email-cta small { font-size: 11px; opacity: .8; }

@media(max-width:768px){
  .lead-magnet-box { padding: 24px 20px; }
  .email-input-row { flex-direction: column; }
}

/* ── ADDITIONAL SERVICES PAGE ──────────────────────────────── */
.service-card-pro {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.service-card-pro:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.service-card-pro-header {
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: white;
}
.service-card-pro-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-pro h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.service-card-pro p { font-size: 13px; color: var(--subtle); line-height: 1.7; flex: 1; margin-bottom: 16px; }
.service-card-pro .service-includes {
  background: var(--purple-light);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 12px;
  color: var(--navy);
  line-height: 1.8;
}
.service-card-pro .service-includes strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--purple);
  margin-bottom: 4px;
}
.enquire-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy);
  color: white;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 11px 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
  width: 100%;
  text-align: center;
}
.enquire-btn:hover { background: var(--purple); border-color: var(--purple); color: white; text-decoration: none; }
.scope-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-right: 4px;
  margin-bottom: 4px;
}
.scope-england  { background: #dbeafe; color: #1d4ed8; }
.scope-wales    { background: #d1fae5; color: #065f46; }
.scope-nireland { background: #fef3c7; color: #92400e; }
.scope-uk       { background: #ede9fe; color: #7c3aed; }
.coming-soon-ribbon {
  position: absolute;
  top: 14px;
  right: -8px;
  background: var(--amber);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 4px 0 0 4px;
}
