/*
Theme Name: The Opal Group Process Server
Theme URI: https://notarizr.co
Author: The Opal Group
Author URI: https://notarizr.co
Description: Professional WordPress theme for The Opal Group process server booking and agent registration. Features dual call-to-action flows for clients seeking process servers and agents looking to join the network.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: opal-group
Tags: business, one-column, two-columns, custom-colors, custom-menu, featured-images, full-width-template
*/

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  --cr-black:      #ffffff;
  --cr-dark:       #f2f4f7;
  --cr-panel:      #ffffff;
  --cr-card:       #eef0f4;
  --cr-border:     #d0d6e0;
  --cr-navy:        #0B1F3A;
  --cr-navy-bright: #1a3561;
  --cr-navy-muted:  #071428;
  --cr-green:       #1F6B4F;
  --cr-green-bright:#28885f;
  --cr-green-muted: #154a37;
  --cr-gold:        #C8A951;
  --cr-gold-bright: #dbbe6a;
  --cr-gold-muted:  #9a7e3a;
  --cr-white:       #0B1F3A;
  --cr-grey:        #5a6270;
  --cr-grey-light:  #2e3a4a;

  --font-display:  'Barlow Condensed', sans-serif;
  --font-body:     'Inter', sans-serif;
  --font-mono:     'JetBrains Mono', monospace;

  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     16px;

  --transition:    all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover:  0 8px 40px rgba(0,0,0,0.14);
  --glow-gold:     0 0 30px rgba(200,169,81,0.30);
  --glow-green:    0 0 30px rgba(31,107,79,0.30);
}

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

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

body {
  background: var(--cr-black);
  color: var(--cr-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; letter-spacing: 0.06em; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cr-grey);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-navy {
  background: var(--cr-navy);
  color: #ffffff;
  border-color: var(--cr-navy);
}
.btn-navy:hover {
  background: var(--cr-gold);
  border-color: var(--cr-gold);
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
  color: #ffffff;
}

.btn-green {
  background: var(--cr-green);
  color: #ffffff;
  border-color: var(--cr-green);
}
.btn-green:hover {
  background: var(--cr-green-bright);
  border-color: var(--cr-green-bright);
  transform: translateY(-2px);
  box-shadow: var(--glow-green);
  color: #ffffff;
}

.btn-outline-gold {
  background: transparent;
  color: var(--cr-gold-muted);
  border-color: var(--cr-gold);
}
.btn-outline-gold:hover {
  background: var(--cr-gold);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  color: var(--cr-green);
  border-color: var(--cr-green);
}
.btn-outline-green:hover {
  background: var(--cr-green);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 44px; font-size: 1.1rem; }

/* =============================================
   HEADER / NAV
   ============================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cr-border);
  transition: var(--transition);
}

#site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-logo img {
  height: 44px;
  width: auto;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.site-logo-text .name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cr-white);
}

.site-logo-text .tagline {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cr-grey);
  margin-top: 3px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cr-grey-light);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}

.site-nav a:hover { color: var(--cr-white); background: var(--cr-dark); }

.nav-cta-wrap {
  display: flex;
  gap: 10px;
  margin-left: 16px;
}

.nav-cta-wrap .btn {
  padding: 9px 20px;
  font-size: 0.8rem;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--cr-border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  cursor: pointer;
  color: var(--cr-white);
  font-size: 1.2rem;
}

/* =============================================
   HERO
   ============================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(200,169,81,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 40%, rgba(31,107,79,0.08) 0%, transparent 70%),
    var(--cr-black);
}

/* The signature element: split arc visual — CSS-only, references logo shape */
.hero-arc {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
  opacity: 0.12;
}

.hero-arc::before,
.hero-arc::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.hero-arc::before {
  border: 56px solid var(--cr-gold);
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.hero-arc::after {
  border: 56px solid var(--cr-navy);
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--cr-gold);
}

.hero-eyebrow .eyebrow { color: var(--cr-gold); }

.hero-title {
  margin-bottom: 24px;
}

.hero-title .line-accent {
  color: var(--cr-gold);
  display: block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--cr-grey-light);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--cr-border);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cr-white);
  line-height: 1;
}

.hero-stat-num span {
  color: var(--cr-gold);
}

.hero-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cr-grey);
  margin-top: 4px;
}

/* =============================================
   DUAL CTA SECTION
   ============================================= */
#dual-cta {
  padding: 100px 0;
  background: var(--cr-dark);
}

.dual-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--cr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cta-card {
  position: relative;
  padding: 56px 48px;
  overflow: hidden;
  transition: var(--transition);
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: var(--transition);
}

.cta-card-gold {
  background: var(--cr-panel);
}

.cta-card-gold::before {
  background: radial-gradient(ellipse at top left, rgba(200,169,81,0.10), transparent 60%);
}

.cta-card-green {
  background: var(--cr-panel);
}

.cta-card-green::before {
  background: radial-gradient(ellipse at top right, rgba(31,107,79,0.10), transparent 60%);
}

.cta-card:hover::before { opacity: 1; }

.cta-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 28px;
}

.cta-icon-gold { background: rgba(11,31,58,0.08); color: var(--cr-gold); border: 1px solid rgba(200,169,81,0.35); }
.cta-icon-green { background: rgba(31,107,79,0.10); color: var(--cr-green-bright); border: 1px solid rgba(31,107,79,0.25); }

.cta-card-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cta-card-gold .cta-card-label { color: var(--cr-gold); }
.cta-card-green .cta-card-label { color: var(--cr-green); }

.cta-card h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 16px;
  color: var(--cr-white);
}

.cta-card p {
  color: var(--cr-grey-light);
  margin-bottom: 32px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.cta-features {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--cr-grey-light);
}

.cta-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cta-card-gold .cta-feature-dot { background: var(--cr-gold); }
.cta-card-green .cta-feature-dot { background: var(--cr-green); }

/* =============================================
   HOW IT WORKS
   ============================================= */
#how-it-works {
  padding: 100px 0;
  background: var(--cr-black);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .eyebrow {
  display: block;
  margin-bottom: 16px;
}

.section-header h2 { margin-bottom: 16px; }

.section-header p {
  color: var(--cr-grey-light);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--cr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.process-step {
  background: var(--cr-panel);
  padding: 36px 28px;
  position: relative;
}

.process-step::after {
  content: attr(data-step);
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--cr-border);
  line-height: 1;
  letter-spacing: -0.02em;
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  color: var(--cr-white);
}

.process-step p {
  font-size: 0.85rem;
  color: var(--cr-grey);
  line-height: 1.65;
}

/* =============================================
   COVERAGE MAP SECTION
   ============================================= */
#coverage {
  padding: 100px 0;
  background: var(--cr-dark);
}

.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.coverage-text .eyebrow { display: block; margin-bottom: 16px; }
.coverage-text h2 { margin-bottom: 20px; }
.coverage-text p { color: var(--cr-grey-light); margin-bottom: 32px; line-height: 1.7; }

.coverage-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.badge {
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-red { background: rgba(11,31,58,0.08); color: var(--cr-gold); border: 1px solid rgba(200,169,81,0.35); }
.badge-blue { background: rgba(31,107,79,0.10); color: var(--cr-green-bright); border: 1px solid rgba(31,107,79,0.25); }
.badge-grey { background: var(--cr-panel); color: var(--cr-grey-light); border: 1px solid var(--cr-border); }

/* SVG Map Visual */
.coverage-map-visual {
  position: relative;
  background: var(--cr-panel);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cr-border);
  padding: 32px;
  overflow: hidden;
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 4px;
  aspect-ratio: 8/5;
}

.map-cell {
  background: var(--cr-card);
  border-radius: 2px;
  transition: var(--transition);
}

.map-cell.active-red { background: rgba(200,169,81,0.55); }
.map-cell.active-blue { background: rgba(31,107,79,0.55); }
.map-cell.active-dim { background: rgba(31,107,79,0.15); }
.map-cell.pulse { animation: cellPulse 2s ease-in-out infinite; }

@keyframes cellPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.map-label {
  text-align: center;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--cr-grey);
  text-transform: uppercase;
}

/* =============================================
   AGENT SIGNUP SECTION
   ============================================= */
#agent-signup {
  padding: 100px 0;
  background: var(--cr-black);
}

.agent-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.agent-text .eyebrow { display: block; margin-bottom: 16px; color: var(--cr-green-bright); }
.agent-text h2 { margin-bottom: 20px; }
.agent-text p { color: var(--cr-grey-light); margin-bottom: 32px; line-height: 1.7; }

.agent-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.agent-perk {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.perk-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(31,107,79,0.10);
  border: 1px solid rgba(31,107,79,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.perk-body h4 {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--cr-white);
  margin-bottom: 4px;
}

.perk-body p {
  font-size: 0.83rem;
  color: var(--cr-grey);
  line-height: 1.6;
  margin: 0;
}

/* Agent form card */
.agent-form-card {
  background: var(--cr-panel);
  border: 1px solid var(--cr-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.agent-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cr-gold-muted), var(--cr-gold), var(--cr-gold-muted));
}

.agent-form-card h3 {
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--cr-grey);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cr-grey);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--cr-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cr-green-bright);
  box-shadow: 0 0 0 3px rgba(31,107,79,0.15);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group select option { background: var(--cr-card); }

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 0.95rem;
}

.form-legal {
  font-size: 0.72rem;
  color: var(--cr-grey);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
#testimonials {
  padding: 100px 0;
  background: var(--cr-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  background: var(--cr-panel);
  border: 1px solid var(--cr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 5rem;
  color: var(--cr-border);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star { color: var(--cr-gold); font-size: 0.85rem; }

.testimonial-text {
  font-size: 0.9rem;
  color: var(--cr-grey-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
}

.avatar-gold { background: rgba(200,169,81,0.15); color: var(--cr-gold); border: 1px solid rgba(200,169,81,0.4); }
.avatar-green { background: rgba(31,107,79,0.15); color: var(--cr-green-bright); border: 1px solid rgba(31,107,79,0.35); }

.author-info .name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--cr-white);
}

.author-info .role {
  font-size: 0.72rem;
  color: var(--cr-grey);
  letter-spacing: 0.06em;
}

/* =============================================
   FINAL CTA BANNER
   ============================================= */
#cta-banner {
  padding: 80px 0;
  background: var(--cr-panel);
  border-top: 1px solid var(--cr-border);
  border-bottom: 1px solid var(--cr-border);
  position: relative;
  overflow: hidden;
}

#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 80% at 10% 50%, rgba(200,169,81,0.06), transparent),
    radial-gradient(ellipse 40% 80% at 90% 50%, rgba(31,107,79,0.06), transparent);
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-banner-inner h2 { margin-bottom: 16px; }
.cta-banner-inner p { color: var(--cr-grey-light); max-width: 520px; margin: 0 auto 36px; }

.cta-banner-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: #0B1F3A;
  padding: 64px 0 32px;
  border-top: 1px solid var(--cr-border);
  color: #f0f2f7;
}

#site-footer p,
#site-footer a,
#site-footer .footer-col h4,
#site-footer .footer-col ul a,
#site-footer .footer-bottom p,
#site-footer .footer-legal a,
#site-footer .footer-brand p,
#site-footer .footer-logo .name {
  color: inherit;
}

#site-footer .footer-col h4 { color: #8890a4; }
#site-footer .footer-col ul a,
#site-footer .footer-bottom p,
#site-footer .footer-legal a,
#site-footer .footer-brand p { color: #b0b8cc; }
#site-footer .footer-col ul a:hover,
#site-footer .footer-legal a:hover { color: #f0f2f7; }
#site-footer .footer-logo .name { color: #f0f2f7; font-family: var(--font-display); font-weight: 800; font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--cr-grey);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.footer-logo img { height: 36px; }

.footer-logo .name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cr-grey);
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  font-size: 0.88rem;
  color: var(--cr-grey-light);
}

.footer-col ul a:hover { color: var(--cr-white); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #1a3561;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--cr-grey);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--cr-grey);
}

.footer-legal a:hover { color: var(--cr-white); }

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: #132d50;
  border: 1px solid #1a3561;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #b0b8cc;
  transition: var(--transition);
}

.social-icon:hover {
  border-color: var(--cr-green);
  color: var(--cr-white);
  background: var(--cr-green-muted);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.7rem; }

  .site-nav, .nav-cta-wrap { display: none; }
  .site-nav.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--cr-dark); border-bottom: 1px solid var(--cr-border); padding: 16px 24px; z-index: 999; }
  .nav-cta-wrap.open { display: flex; flex-direction: column; padding: 0 24px 16px; position: absolute; top: auto; left: 0; right: 0; background: var(--cr-dark); }
  .menu-toggle { display: block; }

  .hero-arc { display: none; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }

  .dual-cta-grid { grid-template-columns: 1fr; }
  .coverage-inner { grid-template-columns: 1fr; }
  .agent-inner { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .cta-card { padding: 40px 28px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
