/*
 * Citywide Security UK — Main Theme Stylesheet
 * Enqueued via wp_enqueue_scripts in inc/setup.php
 * Version: 1.0.0
 */

/* ═══════════════════════════════════════
   CSS CUSTOM PROPERTIES
═══════════════════════════════════════ */
:root {
  --navy:       #07111e;
  --navy-mid:   #0d1b2a;
  --navy-card:  #111f30;
  --navy-lift:  #162539;
  --gold:       #c9a84c;
  --gold-light: #e2c97e;
  --gold-dim:   rgba(201,168,76,0.15);
  --white:      #ffffff;
  --muted:      #8fa0b4;
  --text:       #d4dde8;
  --border:     rgba(201,168,76,0.18);
  --radius:     6px;
  --shadow:     0 4px 24px rgba(0,0,0,0.35);
  --transition: 0.22s ease;
  --max-w:      1200px;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background:var(--navy);
  color:var(--text);
  line-height:1.6;
  font-size:16px;
  overflow-x:hidden;
}
img{display:block;max-width:100%}
a{color:var(--gold);text-decoration:none;transition:color var(--transition)}
a:hover{color:var(--gold-light)}
ul{list-style:none}
button{cursor:pointer;border:none;background:none;font:inherit}

/* ═══════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════ */
.container{width:100%;max-width:var(--max-w);margin:0 auto;padding:0 24px}
.section{padding:88px 0}
.section--sm{padding:56px 0}

/* ═══════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════ */
h1,h2,h3,h4{
  font-family: Georgia, 'Times New Roman', serif;
  color:var(--white);
  line-height:1.15;
  letter-spacing:-0.02em;
}
h1{font-size:clamp(2.4rem,5vw,3.8rem);font-weight:700}
h2{font-size:clamp(1.75rem,3.5vw,2.5rem);font-weight:700}
h3{font-size:1.25rem;font-weight:600}
h4{font-size:1rem;font-weight:600}
p{color:var(--text);line-height:1.75}
.eyebrow{
  font-size:.6875rem;font-weight:700;letter-spacing:.18em;
  text-transform:uppercase;color:var(--gold);
  display:flex;align-items:center;gap:10px;
  margin-bottom:.875rem;
}
.eyebrow::before{content:'';width:28px;height:2px;background:var(--gold);border-radius:1px;flex-shrink:0}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:.8125rem 1.75rem;border-radius:var(--radius);
  font-size:.9375rem;font-weight:700;
  transition:all var(--transition);white-space:nowrap;
}
.btn-gold{background:var(--gold);color:var(--navy)}
.btn-gold:hover{background:var(--gold-light);color:var(--navy);transform:translateY(-1px);box-shadow:0 6px 20px rgba(201,168,76,0.35)}
.btn-outline{background:transparent;color:var(--gold);border:2px solid var(--gold)}
.btn-outline:hover{background:var(--gold-dim);color:var(--gold-light)}

/* ═══════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════ */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(7,17,30,0.97);
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.nav-inner{
  display:flex;align-items:center;
  justify-content:space-between;
  height:60px;gap:24px;
}
.nav-logo{
  display:flex;align-items:center;gap:12px;
  flex-shrink:0;
}
.nav-logo-mark{
  width:38px;height:38px;
  background:var(--gold);
  clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.nav-logo-mark svg{width:20px;height:20px}
.nav-logo-text{
  font-family:Georgia,'Times New Roman',serif;
  font-size:.9375rem;font-weight:700;
  color:var(--white);line-height:1.2;
  letter-spacing:.01em;
}
.nav-logo-text span{color:var(--gold);display:block;font-size:.6875rem;font-weight:400;letter-spacing:.12em;text-transform:uppercase}

.nav-links{
  display:flex;align-items:center;gap:20px;white-space:nowrap;
}
.nav-links a{
  color:var(--muted);font-size:.8375rem;font-weight:500;
  transition:color var(--transition);position:relative;
}
.nav-links a::after{
  content:'';position:absolute;bottom:-3px;left:0;width:0;height:1px;
  background:var(--gold);transition:width var(--transition);
}
.nav-links a:hover{color:var(--white)}
.nav-links a:hover::after{width:100%}

.nav-cta{
  display:flex;align-items:center;gap:16px;flex-shrink:0;
}
.nav-phone{
  display:flex;align-items:center;gap:7px;
  color:var(--gold-light);font-size:.875rem;font-weight:600;
}
.nav-phone svg{width:15px;height:15px;flex-shrink:0}

.nav-toggle{
  display:none;flex-direction:column;gap:5px;
  width:28px;padding:4px 0;
}
.nav-toggle span{
  display:block;height:2px;background:var(--gold);
  border-radius:1px;transition:all var(--transition);
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero{
  position:relative;overflow:hidden;
  padding:120px 0 100px;
  background:var(--navy);
}
.hero::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(201,168,76,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(13,27,42,0.8) 0%, transparent 60%);
  pointer-events:none;
}
/* Dot grid texture */
.hero::after{
  content:'';position:absolute;inset:0;
  background-image:radial-gradient(rgba(201,168,76,0.08) 1px,transparent 1px);
  background-size:28px 28px;
  pointer-events:none;
}
/* Diagonal gold rule */
.hero-rule{
  position:absolute;top:0;right:12%;
  width:1px;height:100%;
  background:linear-gradient(to bottom,transparent,var(--gold) 30%,var(--gold) 70%,transparent);
  opacity:.18;
}

.hero-inner{
  position:relative;z-index:1;
  display:grid;grid-template-columns:1fr 1fr;
  gap:64px;align-items:center;
}
.hero-eyebrow{margin-bottom:1.25rem}
.hero-title{margin-bottom:1.25rem}
.hero-title em{font-style:italic;color:var(--gold)}
.hero-lead{
  font-size:1.0625rem;color:var(--muted);
  margin-bottom:2rem;max-width:480px;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:2.5rem}
.hero-trust{
  display:flex;flex-wrap:wrap;gap:20px;
}
.trust-item{
  display:flex;align-items:center;gap:7px;
  font-size:.8125rem;font-weight:600;color:var(--muted);
}
.trust-item svg{width:16px;height:16px;color:var(--gold);flex-shrink:0}

.hero-visual{
  display:flex;flex-direction:column;gap:16px;
}
.stat-card{
  background:var(--navy-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:20px 24px;
  display:flex;align-items:center;gap:18px;
  transition:border-color var(--transition);
}
.stat-card:hover{border-color:rgba(201,168,76,0.4)}
.stat-icon{
  width:44px;height:44px;border-radius:var(--radius);
  background:var(--gold-dim);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;font-size:1.25rem;
}
.stat-num{
  font-family:Georgia,'Times New Roman',serif;
  font-size:1.625rem;font-weight:700;
  color:var(--gold);line-height:1;
}
.stat-label{font-size:.8125rem;color:var(--muted);margin-top:.2rem}

/* ═══════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════ */
.trust-bar{
  background:var(--navy-card);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:20px 0;
}
.trust-bar-inner{
  display:flex;align-items:center;
  justify-content:space-between;
  gap:24px;flex-wrap:wrap;
}
.trust-badge{
  display:flex;align-items:center;gap:10px;
  font-size:.875rem;font-weight:600;color:var(--white);
}
.trust-badge svg{width:20px;height:20px;color:var(--gold);flex-shrink:0}
.trust-divider{width:1px;height:28px;background:var(--border);flex-shrink:0}

/* ═══════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════ */
.services{background:var(--navy-mid)}
.section-header{text-align:center;margin-bottom:52px}
.section-header h2{margin-bottom:.75rem}
.section-header p{color:var(--muted);max-width:560px;margin:0 auto}

/* Service cards rendered by JS */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:20px;
}
/* ── Service cards — entire card is a clickable <a> ── */
.service-card{
  background:var(--navy-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
  display:flex;flex-direction:column;gap:12px;
  transition:transform var(--transition),box-shadow var(--transition),border-color var(--transition),background var(--transition);
  position:relative;overflow:hidden;
  /* Anchor reset */
  color:inherit;text-decoration:none;
  cursor:pointer;
}
.service-card::before{
  content:'';position:absolute;
  bottom:0;left:0;width:0;height:2px;
  background:linear-gradient(to right,var(--gold),var(--gold-light));
  transition:width .35s ease;
}
.service-card:hover{
  border-color:rgba(201,168,76,0.42);
  transform:translateY(-4px);
  box-shadow:0 12px 36px rgba(0,0,0,0.45);
  background:var(--navy-lift);
}
.service-card:hover::before{width:100%}
.service-card:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
}
.service-card-icon{
  width:40px;height:40px;
  background:var(--gold-dim);
  border:1px solid var(--border);
  border-radius:var(--radius);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;transition:background var(--transition),border-color var(--transition);
}
.service-card:hover .service-card-icon{
  background:rgba(201,168,76,0.22);
  border-color:rgba(201,168,76,0.4);
}
.service-card-icon svg{width:20px;height:20px;stroke:var(--gold);fill:none;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round}
.service-card h3{font-size:1.0625rem;margin-bottom:0;transition:color var(--transition)}
.service-card:hover h3{color:var(--gold-light)}
.service-card p{font-size:.875rem;color:var(--muted);flex:1}
/* Arrow badge — appears on hover */
.service-card-arrow{
  font-size:.8125rem;font-weight:700;color:var(--gold);
  display:flex;align-items:center;gap:4px;
  opacity:0;transform:translateX(-6px);
  transition:opacity var(--transition),transform var(--transition);
  margin-top:auto;padding-top:4px;
}
.service-card:hover .service-card-arrow{
  opacity:1;transform:translateX(0);
}

/* ═══════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════ */
.why-us{background:var(--navy)}
.why-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;align-items:center;
}
.why-content h2{margin-bottom:1rem}
.why-content p{color:var(--muted);margin-bottom:2rem}
.why-points{display:flex;flex-direction:column;gap:18px;margin-bottom:2.5rem}
.why-point{
  display:flex;gap:14px;align-items:flex-start;
  padding:16px;background:var(--navy-card);
  border:1px solid var(--border);border-radius:var(--radius);
}
.why-point-icon{
  width:36px;height:36px;border-radius:var(--radius);
  background:var(--gold-dim);flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
}
.why-point-icon svg{width:18px;height:18px;stroke:var(--gold);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.why-point h4{color:var(--white);margin-bottom:.2rem}
.why-point p{font-size:.875rem;color:var(--muted)}

.why-visual{
  display:grid;grid-template-columns:1fr 1fr;
  gap:14px;
}
.metric-card{
  background:var(--navy-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;text-align:center;
}
.metric-card:first-child{
  grid-column:span 2;
  background:linear-gradient(135deg,var(--navy-card),var(--navy-lift));
  border-color:rgba(201,168,76,0.3);
}
.metric-num{
  font-family:Georgia,'Times New Roman',serif;
  font-size:2.5rem;font-weight:700;
  color:var(--gold);line-height:1;
  margin-bottom:.25rem;
}
.metric-card:first-child .metric-num{font-size:3.5rem}
.metric-label{font-size:.8125rem;color:var(--muted);font-weight:500}

/* ═══════════════════════════════════════
   COVERAGE AREAS
═══════════════════════════════════════ */
.coverage{background:var(--navy-mid)}
.coverage-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(160px,1fr));
  gap:12px;margin-top:40px;
}
.coverage-item{
  background:var(--navy-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:14px 18px;
  display:flex;align-items:center;gap:10px;
  font-size:.9rem;font-weight:600;color:var(--text);
  transition:all var(--transition);
}
.coverage-item:hover{border-color:var(--gold);color:var(--gold)}
.coverage-dot{width:6px;height:6px;border-radius:50%;background:var(--gold);flex-shrink:0}

/* ═══════════════════════════════════════
   QUOTE SECTION
═══════════════════════════════════════ */
.quote-section{
  background:var(--navy);
  position:relative;overflow:hidden;
}
.quote-section::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 60% 80% at 50% 50%,rgba(201,168,76,0.05),transparent 70%);
  pointer-events:none;
}
.quote-inner{
  position:relative;z-index:1;
  display:grid;grid-template-columns:1fr 1fr;
  gap:64px;align-items:start;
}
.quote-content h2{margin-bottom:.875rem}
.quote-content p{color:var(--muted);margin-bottom:1.5rem}
.quote-guarantee{
  display:flex;flex-direction:column;gap:10px;
  margin-top:2rem;
}
.guarantee-item{
  display:flex;align-items:center;gap:10px;
  font-size:.875rem;color:var(--muted);
}
.guarantee-item svg{width:18px;height:18px;stroke:var(--gold);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}

/* ── Form ── */
.quote-form{
  background:var(--navy-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:36px;
}
.quote-form h3{
  font-size:1.25rem;margin-bottom:8px;color:var(--white);
}
.quote-form > p{font-size:.875rem;color:var(--muted);margin-bottom:24px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.form-group{display:flex;flex-direction:column;gap:6px;margin-bottom:14px}
.form-group label{font-size:.8125rem;font-weight:600;color:var(--muted)}
.form-group input,
.form-group select,
.form-group textarea{
  background:var(--navy-lift);
  border:1px solid rgba(201,168,76,0.2);
  border-radius:var(--radius);
  padding:.6875rem .875rem;
  color:var(--white);
  font-size:.9375rem;
  font-family:inherit;
  transition:border-color var(--transition);
  width:100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline:none;border-color:var(--gold);
}
.form-group select option{background:var(--navy-card)}
.form-group textarea{resize:vertical;min-height:90px}
.form-submit{width:100%;margin-top:8px;font-size:1rem;justify-content:center}
.form-note{font-size:.75rem;color:var(--muted);text-align:center;margin-top:10px}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer{background:var(--navy-card);border-top:1px solid var(--border)}
.footer-top{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:48px;padding:64px 0 48px;
}
.footer-brand p{
  font-size:.875rem;color:var(--muted);
  margin:16px 0 20px;max-width:280px;line-height:1.7;
}
.footer-social{display:flex;gap:12px}
.social-link{
  width:36px;height:36px;border-radius:var(--radius);
  background:var(--navy-lift);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  color:var(--muted);transition:all var(--transition);
}
.social-link:hover{border-color:var(--gold);color:var(--gold)}
.social-link svg{width:16px;height:16px}

.footer-col h4{
  font-size:.8125rem;font-weight:700;letter-spacing:.12em;
  text-transform:uppercase;color:var(--gold);margin-bottom:18px;
}
.footer-col ul{display:flex;flex-direction:column;gap:10px}
.footer-col ul a{
  font-size:.875rem;color:var(--muted);
  transition:color var(--transition);
}
.footer-col ul a:hover{color:var(--white)}
.footer-contact-item{
  display:flex;align-items:flex-start;gap:8px;
  font-size:.875rem;color:var(--muted);margin-bottom:10px;
}
.footer-contact-item svg{width:16px;height:16px;stroke:var(--gold);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;margin-top:2px}

.footer-bottom{
  border-top:1px solid var(--border);
  padding:20px 0;
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;flex-wrap:wrap;
}
.footer-bottom p{font-size:.8125rem;color:var(--muted)}
.footer-bottom-links{display:flex;gap:20px}
.footer-bottom-links a{font-size:.8125rem;color:var(--muted);transition:color var(--transition)}
.footer-bottom-links a:hover{color:var(--gold)}
.sia-badge{
  display:flex;align-items:center;gap:8px;
  font-size:.8125rem;font-weight:700;color:var(--gold);
  background:var(--gold-dim);border:1px solid var(--border);
  border-radius:var(--radius);padding:6px 14px;
}

/* ═══════════════════════════════════════
   MOBILE NAV DRAWER
═══════════════════════════════════════ */
.mobile-nav{
  display:none;position:fixed;inset:0;z-index:200;
  background:rgba(7,17,30,0.97);
  flex-direction:column;padding:24px;
  opacity:0;pointer-events:none;transition:opacity var(--transition);
}
.mobile-nav.open{opacity:1;pointer-events:all}
.mobile-nav-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:40px}
.mobile-nav ul{display:flex;flex-direction:column;gap:8px}
.mobile-nav ul a{
  display:block;padding:14px 16px;
  font-size:1.125rem;font-weight:600;color:var(--text);
  border-radius:var(--radius);transition:all var(--transition);
}
.mobile-nav ul a:hover{background:var(--navy-card);color:var(--gold)}
.mobile-nav-cta{margin-top:32px;display:flex;flex-direction:column;gap:12px}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media(max-width:1024px){
  .hero-inner,.why-grid,.quote-inner{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr 1fr}
  .hero-visual{grid-template-columns:1fr 1fr;display:grid}
}
@media(max-width:768px){
  .section{padding:64px 0}
  .nav-links,.nav-cta{display:none}
  .nav-toggle{display:flex}
  .trust-bar-inner{gap:12px}
  .trust-divider{display:none}
  .why-visual{grid-template-columns:1fr 1fr}
  .metric-card:first-child{grid-column:span 2}
  .footer-top{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center}
  .form-row{grid-template-columns:1fr}
  .hero-actions{flex-direction:column}
  .hero-actions .btn{width:100%;justify-content:center}
}
@media(max-width:480px){
  .hero{padding:80px 0 60px}
  .services-grid{grid-template-columns:1fr}
  .coverage-grid{grid-template-columns:1fr 1fr}
}

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════ */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .55s ease,transform .55s ease}
.reveal.in{opacity:1;transform:none}

/* ═══════════════════════════════════════
   FORM SUCCESS STATE
═══════════════════════════════════════ */
.form-success{
  display:none;text-align:center;padding:32px;
  color:var(--gold);font-weight:600;font-size:1rem;
}
.form-success svg{width:48px;height:48px;stroke:var(--gold);fill:none;stroke-width:1.5;margin:0 auto 16px;display:block}

/* ════════════════════════════════════════════
   WORDPRESS-SPECIFIC ADDITIONS
════════════════════════════════════════════ */

/* ── Page hero (inner pages) ─────────────── */
.csuk-page-hero {
  background: var(--navy);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.csuk-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 10% 50%, rgba(201,168,76,0.05), transparent 60%);
  pointer-events: none;
}
.csuk-page-hero .container { position: relative; z-index: 1; }
.csuk-page-hero h1 { font-size: clamp(1.75rem, 4vw, 3rem); margin-top: .75rem; }

/* ── Service hero ────────────────────────── */
.csuk-service-hero {
  background: var(--navy);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.csuk-service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 60% 40%, rgba(201,168,76,0.06), transparent 65%);
  pointer-events: none;
}
.csuk-service-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 0;
}
.csuk-service-hero-icon {
  width: 80px;
  height: 80px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.csuk-service-hero-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Prose content ───────────────────────── */
.csuk-prose { max-width: 720px; margin-left: 0; }
.csuk-prose p { margin-bottom: 1.25rem; font-size: 1.0625rem; line-height: 1.8; color: var(--text); }
.csuk-prose h2 { font-size: 1.625rem; margin: 2rem 0 .875rem; color: var(--white); }
.csuk-prose h3 { font-size: 1.25rem; margin: 1.5rem 0 .75rem; color: var(--white); }
.csuk-prose ul, .csuk-prose ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.csuk-prose li { color: var(--text); line-height: 1.75; margin-bottom: .375rem; }
.csuk-prose ul li::marker { color: var(--gold); }
.csuk-prose a { color: var(--gold); }
.csuk-prose a:hover { color: var(--gold-light); }

/* ── Blog / listing post cards ───────────── */
.csuk-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.csuk-post-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.csuk-post-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.csuk-post-body { padding: 24px; }
.csuk-post-meta { font-size: .8125rem; color: var(--muted); margin-bottom: .5rem; }
.csuk-post-title { font-size: 1.125rem; margin-bottom: .75rem; }
.csuk-post-title a { color: var(--white); text-decoration: none; transition: color var(--transition); }
.csuk-post-title a:hover { color: var(--gold); }
.csuk-btn-sm { padding: .5rem 1.125rem; font-size: .875rem; }

/* ── Testimonials grid ───────────────────── */
.testimonials { background: var(--navy-mid); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0;
}
.testimonial-rating { margin-bottom: 14px; }
.csuk-star--filled { color: var(--gold); }
.csuk-star--empty { color: var(--navy-lift); }
.testimonial-text p { font-size: .9375rem; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 0; }
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-avatar--placeholder {
  background: var(--navy-lift);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-avatar--placeholder svg { width: 20px; height: 20px; stroke: var(--muted); }
.testimonial-client { display: block; font-size: .9375rem; font-weight: 700; color: var(--white); font-style: normal; }
.testimonial-position { display: block; font-size: .8125rem; color: var(--muted); }

/* ── Quote form admin notice ─────────────── */
.csuk-admin-notice {
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: .875rem;
  color: var(--gold-light);
}
.csuk-admin-notice a { color: var(--gold); text-decoration: underline; }

/* ── Quote call box ──────────────────────── */
.quote-call-box {
  margin-top: 2rem;
  padding: 20px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.quote-call-label { font-size: .875rem; font-weight: 600; color: var(--white); margin-bottom: .375rem; }
.quote-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}
.quote-phone-link svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; }
.quote-call-hours { font-size: .8125rem; color: var(--muted); margin-top: .375rem; }
.guarantee-item span { color: var(--muted); font-size: .875rem; }

/* ── Coverage HQ badge ───────────────────── */
.coverage-item--hq { border-color: rgba(201,168,76,0.4); }
.coverage-hq-badge {
  font-size: .6875rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 2px 8px;
  margin-left: auto;
}

/* ── Navigation logo custom image ───────── */
.nav-custom-logo { max-height: 40px; width: auto; display: block; }

/* ── Metric card featured ─────────────── */
.metric-card--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--navy-card), var(--navy-lift));
  border-color: rgba(201,168,76,0.3);
}
.metric-card--featured .metric-num { font-size: 3.5rem; }

/* ── No content fallback ─────────────── */
.csuk-no-content { color: var(--muted); font-style: italic; text-align: center; padding: 3rem; }

/* ── CF7 form styling override ───────── */
.wpcf7 input:not([type="submit"]),
.wpcf7 select,
.wpcf7 textarea {
  background: var(--navy-lift);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: .6875rem .875rem;
  color: var(--white);
  font-size: .9375rem;
  font-family: inherit;
  width: 100%;
  transition: border-color var(--transition);
}
.wpcf7 input:focus, .wpcf7 select:focus, .wpcf7 textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.wpcf7-submit {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: .8125rem 1.75rem;
  border-radius: var(--radius);
  font-size: .9375rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: all var(--transition);
}
.wpcf7-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── WP Pagination ───────────────────── */
.csuk-pagination { margin-top: 3rem; text-align: center; }
.csuk-pagination ul { display: flex; gap: 8px; justify-content: center; list-style: none; }
.csuk-pagination ul a, .csuk-pagination ul span {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: .875rem;
  text-decoration: none;
  transition: all var(--transition);
}
.csuk-pagination ul a:hover { border-color: var(--gold); color: var(--gold); }
.csuk-pagination ul .current span { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ── Single post layout ──────────────── */
.csuk-single-post { max-width: 720px; margin: 0 auto; }
.csuk-post-header { margin-bottom: 2rem; }
.csuk-post-featured-image { margin-bottom: 2rem; border-radius: var(--radius); overflow: hidden; }
.csuk-post-featured-image img { width: 100%; height: auto; display: block; }

/* ── Responsive additions ────────────── */
@media (max-width: 768px) {
  .csuk-service-hero-inner { flex-direction: column; gap: 24px; }
  .csuk-service-hero-icon { width: 56px; height: 56px; }
  .metric-card--featured { grid-column: span 2; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── Single service page alignment fix ────────── */
.single-security_service .csuk-prose,
.single-security_service .csuk-service-hero-inner {
  padding-left: 0;
}

/* Ensure all inner page content respects container padding */
.csuk-main .container > *:not(.services-grid):not(.section-header) {
  /* Inherits container padding — no extra override needed */
}

/* ── Dropdown nav menus ───────────────────────── */
.nav-links .menu-item-has-children { position: relative; }
.nav-links .menu-item-has-children > a::after {
  content: ' ▾';
  font-size: .65rem;
  letter-spacing: 0;
  border: none;
  background: none;
  position: static;
  width: auto;
  height: auto;
  transition: none;
  display: inline;
}
.nav-links .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px 0;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-links .menu-item-has-children:hover .sub-menu,
.nav-links .menu-item-has-children:focus-within .sub-menu { display: block; }
.nav-links .sub-menu li { list-style: none; }
.nav-links .sub-menu a {
  display: block;
  padding: 9px 18px;
  font-size: .8375rem;
  color: var(--muted);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links .sub-menu a::after { display: none !important; }
.nav-links .sub-menu a:hover { color: var(--gold); background: rgba(201,168,76,0.08); }

/* ── Hero mini form (right column) ───────────── */
.hero-mini-form {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.hero-mini-form h3 {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 4px;
}
.hero-mini-form > p {
  font-size: .8125rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.hero-mini-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}
.hero-mini-form label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
}
.hero-mini-form input,
.hero-mini-form select {
  background: var(--navy-lift);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: .625rem .875rem;
  color: var(--white);
  font-size: .9rem;
  font-family: inherit;
  width: 100%;
  transition: border-color var(--transition);
}
.hero-mini-form input:focus,
.hero-mini-form select:focus {
  outline: none;
  border-color: var(--gold);
}
.hero-mini-form select option { background: var(--navy-card); }
.hero-mini-form .btn { width: 100%; justify-content: center; margin-top: 4px; font-size: .9375rem; }
.hero-mini-form-success {
  text-align: center;
  padding: 24px 16px;
  color: var(--gold);
  font-weight: 600;
  display: none;
}
.hero-mini-form-success svg {
  width: 40px; height: 40px;
  stroke: var(--gold); fill: none; stroke-width: 1.5;
  display: block; margin: 0 auto 12px;
}

/* ── Hero image option (alternative to form) ── */
.hero-image-right {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.hero-image-right img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* ═══════════════════════════════════════════════
   NAV DROPDOWN SYSTEM — csuk-nav-dropdown
   Replaces inline sub-menu from previous version
═══════════════════════════════════════════════ */
.csuk-nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.csuk-nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: .8375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
  cursor: pointer;
}
.csuk-nav-dropdown > a span { font-size: .55rem; transition: transform var(--transition); }
.csuk-nav-dropdown:hover > a { color: var(--white); }
.csuk-nav-dropdown:hover > a span { transform: rotate(180deg); }
.csuk-nav-dropdown > a::after { display: none !important; } /* disable underline effect */

.csuk-sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 240px;
  max-height: 400px;
  overflow-y: auto;
  padding: 8px 0;
  z-index: 300;
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
}
.csuk-nav-dropdown:hover .csuk-sub-menu,
.csuk-nav-dropdown:focus-within .csuk-sub-menu { display: block; }
.csuk-sub-menu a {
  display: block;
  padding: 9px 18px;
  font-size: .8125rem;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all .18s;
}
.csuk-sub-menu a:first-child {
  font-weight: 700;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
  padding-bottom: 10px;
}
.csuk-sub-menu a:hover { color: var(--gold); background: rgba(201,168,76,.07); }

/* ═══════════════════════════════════════════════
   ALIGNMENT FIX — inner pages text left-edge
   Ensures .csuk-prose and all single page content
   always respects the container's side padding.
═══════════════════════════════════════════════ */
.csuk-main .container,
.single-security_service .container { padding-left: 24px; padding-right: 24px; }

.single-security_service .csuk-prose { margin: 0; }

/* Service hero inner always has side padding */
.csuk-service-hero .container { padding-left: 24px; padding-right: 24px; }

@media (max-width: 768px) {
  .csuk-main .container,
  .single-security_service .container { padding-left: 20px; padding-right: 20px; }
}

/* ── Button icon size fix — SVGs inside .btn always 18px ─── */
.btn svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ═══════════════════════════════════════════════
   PAGE HERO — with featured image
═══════════════════════════════════════════════ */
.csuk-page-hero--has-image {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
}
.csuk-page-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.csuk-page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.csuk-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,17,30,0.88) 0%,
    rgba(7,17,30,0.65) 60%,
    rgba(7,17,30,0.4) 100%
  );
}
.csuk-page-hero--has-image .container { position: relative; z-index: 1; }
.csuk-page-hero--has-image h1 { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.csuk-page-hero--has-image .eyebrow { color: var(--gold); }

/* ── Homepage CTA section ─────────────────────── */
.csuk-quote-cta { padding: 88px 0; }


/* ═══════════════════════════════════════
   ACCESSIBILITY AND FORM FEEDBACK FIXES
═══════════════════════════════════════ */
.mobile-nav-close:focus-visible,
.nav-toggle:focus-visible,
.btn:focus-visible,
.nav-links a:focus-visible,
.mobile-nav a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}
body.csuk-nav-open { overflow: hidden; }
.csuk-form-message {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: .875rem;
  line-height: 1.5;
}
.csuk-form-message.is-error {
  background: rgba(192,57,43,.14);
  border: 1px solid rgba(192,57,43,.42);
  color: #ffd6d1;
}
.csuk-form-message.is-success {
  background: rgba(46,204,113,.12);
  border: 1px solid rgba(46,204,113,.36);
  color: #d7ffe6;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════
   CLIENT FIX PASS — Header, hero and pages
═══════════════════════════════════════ */
.site-header .container{
  max-width: min(1440px, 100%);
  padding-left: clamp(20px, 2.6vw, 40px);
  padding-right: clamp(20px, 2.6vw, 40px);
}
.nav-inner{
  min-height: 72px;
  height: auto;
  padding: 8px 0;
  gap: clamp(18px, 2.2vw, 34px);
}
.nav-logo{
  min-width: 300px;
  max-width: 420px;
  gap: 14px;
}
.nav-logo-mark{
  width: 52px;
  height: 52px;
}
.nav-logo-mark svg{width:24px;height:24px}
.nav-logo-text{
  font-size: clamp(1rem, 1.5vw, 1.32rem);
  line-height: 1.04;
}
.nav-logo-text span{
  margin-top: 4px;
  font-size: clamp(.62rem, .82vw, .78rem);
  letter-spacing: .12em;
  line-height: 1.15;
}
.nav-links{
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
  gap: clamp(22px, 3.3vw, 52px);
  flex-wrap: nowrap;
}
.nav-links > a,
.nav-links > .csuk-nav-dropdown,
.nav-links > li{
  flex: 0 0 auto;
}
.nav-links li{
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-links a,
.csuk-nav-dropdown > a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  font-size: clamp(.92rem, 1vw, 1rem);
  font-weight: 700;
  white-space: nowrap;
}
.nav-cta{gap:14px;min-width:max-content}
.nav-cta .btn{padding:.72rem 1.25rem}
.nav-phone{font-size:clamp(.92rem, 1vw, 1rem);white-space:nowrap}

.hero{
  padding: clamp(84px, 9vw, 130px) 0 clamp(70px, 8vw, 110px);
}
.hero-inner{
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(42px, 5vw, 76px);
  align-items: center;
}
.hero-inner > div:first-child{
  max-width: 760px;
}
.hero-lead{
  max-width: 620px;
}
.hero-image-right{
  min-height: 460px;
  border: 1px solid var(--border);
  box-shadow: 0 22px 70px rgba(0,0,0,.34);
  background: linear-gradient(135deg, rgba(201,168,76,.16), rgba(17,31,48,.92));
  position: relative;
}
.hero-image-right::after{
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(7,17,30,.04), rgba(7,17,30,.32));
  pointer-events:none;
}
.hero-image-right--placeholder{
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  padding:32px;
  background:
    radial-gradient(circle at 80% 20%, rgba(201,168,76,.22), transparent 34%),
    linear-gradient(135deg, #101e30, #07111e 58%, #1a2c42);
}
.hero-image-right--placeholder::before{
  content:'';
  position:absolute;
  right:9%;
  bottom:0;
  width:42%;
  height:80%;
  background: linear-gradient(180deg, rgba(201,168,76,.34), rgba(201,168,76,.05));
  clip-path: polygon(50% 0, 100% 24%, 100% 100%, 0 100%, 0 24%);
  opacity:.42;
}
.hero-image-placeholder-content{
  position:relative;
  z-index:2;
  max-width:360px;
}
.hero-image-badge{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--gold-light);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:14px;
  background:rgba(7,17,30,.55);
}
.hero-image-placeholder-content h3{
  font-size:1.55rem;
  margin-bottom:8px;
}
.hero-image-placeholder-content p{
  color:var(--muted);
  font-size:.95rem;
  line-height:1.65;
}

.form-success,
.hero-mini-form-success{
  overflow:hidden;
}
.form-success svg,
.hero-mini-form-success svg,
.cwcsf-submit svg,
.csuk-native-form button svg,
button[type="submit"] svg{
  width:18px !important;
  height:18px !important;
  max-width:18px !important;
  max-height:18px !important;
  min-width:18px !important;
  min-height:18px !important;
  flex:0 0 18px !important;
}
.form-success svg,
.hero-mini-form-success svg{
  width:42px !important;
  height:42px !important;
  max-width:42px !important;
  max-height:42px !important;
  min-width:42px !important;
  min-height:42px !important;
}
.cwcsf-submit,
.form-submit,
.hero-mini-form .btn{
  min-height:52px;
  overflow:hidden;
}

.csuk-page-hero--location{
  min-height: 420px;
  display:flex;
  align-items:center;
  padding: 110px 0 88px;
}
.csuk-page-hero-bg--generated{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 77% 36%, rgba(201,168,76,.2), transparent 28%),
    linear-gradient(135deg, #07111e 0%, #0d1b2a 56%, #162539 100%);
}
.csuk-generated-hero-visual{
  position:absolute;
  right:8%;
  bottom:0;
  width:min(430px, 36vw);
  height:82%;
  border:1px solid rgba(201,168,76,.22);
  border-bottom:0;
  border-radius:18px 18px 0 0;
  background:
    linear-gradient(180deg, rgba(201,168,76,.16), rgba(201,168,76,.03)),
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(255,255,255,.04) 45px, transparent 46px);
  opacity:.62;
  box-shadow:0 24px 80px rgba(0,0,0,.3);
}
.csuk-location-page .csuk-page-hero h1{
  max-width:760px;
}
.csuk-location-page .csuk-prose,
.csuk-location-landing{
  max-width: 980px;
}
.csuk-location-intro{
  font-size:1.15rem !important;
  color:var(--text) !important;
  padding:22px 24px;
  border:1px solid var(--border);
  border-left:4px solid var(--gold);
  border-radius:var(--radius);
  background:rgba(201,168,76,.07);
}
.csuk-check-list,
.csuk-area-list{
  list-style:none !important;
  padding-left:0 !important;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:10px 18px;
}
.csuk-check-list li,
.csuk-area-list li{
  position:relative;
  padding-left:28px;
  margin:0 0 4px !important;
}
.csuk-check-list li::before,
.csuk-area-list li::before{
  content:'✓';
  position:absolute;
  left:0;
  top:0;
  color:var(--gold);
  font-weight:900;
}
.csuk-location-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin:28px 0 8px;
}
.csuk-location-card{
  background:var(--navy-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
}
.csuk-location-card h3{
  font-size:1.12rem;
  margin:0 0 12px;
  color:var(--gold-light);
}
.csuk-location-card ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
}
.csuk-location-card a{
  color:var(--text);
  font-weight:650;
}
.csuk-location-card a:hover{color:var(--gold-light)}
.csuk-prose .wp-block-buttons{margin-top:28px;display:flex;gap:14px;flex-wrap:wrap}
.csuk-prose .wp-block-button__link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.8125rem 1.45rem;
  border-radius:var(--radius);
  background:var(--gold);
  color:var(--navy);
  font-weight:800;
  text-decoration:none;
}
.csuk-prose .is-style-outline .wp-block-button__link{
  background:transparent;
  color:var(--gold);
  border:2px solid var(--gold);
}

@media (max-width: 1240px){
  .nav-logo{min-width:260px;max-width:360px}
  .nav-links{gap:24px}
  .nav-cta .btn{padding:.68rem 1rem}
}
@media (max-width: 1120px){
  .nav-links,.nav-cta{display:none}
  .nav-toggle{display:flex}
}
@media (max-width: 1024px){
  .hero-inner{grid-template-columns:1fr;gap:42px}
  .hero-visual{display:block}
  .hero-image-right{min-height:380px;aspect-ratio:16/9}
}
@media (max-width: 768px){
  .nav-inner{min-height:68px}
  .nav-logo{min-width:0;max-width:calc(100% - 54px)}
  .nav-logo-mark{width:44px;height:44px}
  .nav-logo-text{font-size:1rem}
  .nav-logo-text span{font-size:.58rem;letter-spacing:.09em}
  .hero-image-right{min-height:300px}
  .csuk-check-list,.csuk-area-list,.csuk-location-grid{grid-template-columns:1fr}
  .csuk-page-hero--location{min-height:340px;padding:86px 0 64px}
  .csuk-generated-hero-visual{opacity:.28;right:-10%;width:72vw}
}

/* ═══════════════════════════════════════
   CLIENT FIX PASS 2 — tighter hero and lead form
═══════════════════════════════════════ */
.hero{
  padding-top: clamp(46px, 5.5vw, 76px) !important;
  padding-bottom: clamp(58px, 6vw, 86px) !important;
}
.hero-eyebrow{margin-bottom: .95rem !important;}
.hero-title{margin-bottom: 1rem !important;}
.hero-lead{margin-bottom: 1.55rem !important;}
.hero-actions{margin-bottom: 1.7rem !important;}
.hero-inner{
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .82fr) !important;
  gap: clamp(34px, 4vw, 58px) !important;
}
.hero-mini-form{
  max-width: 460px;
  margin-left: auto;
  background: linear-gradient(180deg, rgba(17,31,48,.98), rgba(7,17,30,.96));
  box-shadow: 0 22px 70px rgba(0,0,0,.34);
  border-color: rgba(201,168,76,.24);
}
.hero-mini-form textarea{
  background: var(--navy-lift);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: .625rem .875rem;
  color: var(--white);
  font-size: .9rem;
  font-family: inherit;
  width: 100%;
  resize: vertical;
  min-height: 82px;
  transition: border-color var(--transition);
}
.hero-mini-form textarea:focus{outline:none;border-color:var(--gold)}
.trust-bar{padding: 16px 0 !important;}
.trust-bar-inner--compact{
  justify-content: center;
  gap: clamp(18px, 4vw, 58px);
}
.trust-bar-inner--compact .trust-badge{font-size: .95rem;}
@media (max-width: 1024px){
  .hero-mini-form{margin-left:0;max-width:100%;}
}
.csuk-home-editable{background:var(--navy-mid);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
