/* ==========================================================================
   KJJ DESIGN SYSTEM — CSS CUSTOM PROPERTIES
   Copied from KJJ-Style-Guide.html (source of truth)
   ========================================================================== */

:root {
  /* Colors — Primary */
  --color-gold: #C4A24D;
  --color-gold-muted: #B4975A;
  --color-gold-light: #D4C49A;
  --color-gold-ultralight: rgba(196, 162, 77, 0.08);
  --color-black: #111111;
  --color-true-black: #0A0A0A;
  --color-steel: #333F42;
  --color-red: #C8102E;
  --color-slate: #1A1A2E;
  --color-offwhite: #F7F5F0;
  --color-white: #FFFFFF;
  --color-muted-text: #666666;
  --color-gray: #AAAAAA;
  --color-success: #2E7D32;

  /* Gold Gradient — Designer metallic button */
  --gradient-gold-btn: linear-gradient(180deg, #D4B85A 0%, #C4A24D 40%, #A8893D 100%);
  --gradient-gold-btn-hover: linear-gradient(180deg, #E0C96A 0%, #D4B85A 40%, #B89A4D 100%);

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #C4A24D 0%, #D4C49A 50%, #C4A24D 100%);
  --gradient-dark: linear-gradient(180deg, #111111 0%, #1A1A2E 100%);
  --gradient-steel: linear-gradient(180deg, #333F42 0%, #111111 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(17,17,17,0.85) 0%, rgba(26,26,46,0.75) 100%);

  /* Typography */
  --font-primary: "Lato", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SF Mono", "Fira Code", "Consolas", monospace;

  /* Spacing — 8px base */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
  --alert-bar-height: 36px;
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;

  /* Shadows */
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-button: 0 4px 12px rgba(196, 162, 77, 0.3);
  --shadow-button-hover: 0 6px 20px rgba(196, 162, 77, 0.45);
  --shadow-nav: 0 2px 20px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}


/* ==========================================================================
   RESET & BASE
   ========================================================================== */

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

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

body {
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--color-steel);
  background: var(--color-white);
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--color-gold); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-gold-muted); }


/* ==========================================================================
   BUTTONS (from style guide)
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gradient-gold-btn);
  color: var(--color-black);
  padding: 16px 40px;
  border-radius: 4px;
  border: 1px solid rgba(212, 184, 90, 0.4);
  box-shadow: var(--shadow-button);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.btn--primary:hover {
  background: var(--gradient-gold-btn-hover);
  box-shadow: 0 0 25px rgba(196, 162, 77, 0.5);
  transform: scale(1.02);
  color: var(--color-black);
}
.btn--primary:active {
  transform: scale(0.99);
  box-shadow: var(--shadow-button);
}

.btn--secondary {
  background: transparent;
  color: var(--color-gold);
  padding: 12px 28px;
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--color-gold);
}
.btn--secondary:hover {
  background: var(--color-gold-ultralight);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.btn--secondary-dark {
  background: transparent;
  color: var(--color-steel);
  padding: 12px 28px;
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--color-steel);
}
.btn--secondary-dark:hover {
  background: rgba(51,63,66,0.06);
  color: var(--color-steel);
  transform: translateY(-2px);
}

.btn--sm { font-size: 0.875rem; padding: 10px 20px; }
.btn--lg { font-size: 1.125rem; padding: 18px 40px; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-md); align-items: center; }


/* ==========================================================================
   CARDS (from style guide)
   ========================================================================== */

.card {
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-card);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  border-top: 3px solid var(--color-gold);
  position: relative;
}
.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-gold-ultralight);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-gold);
}
.card-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: var(--space-sm);
}
.card p {
  font-size: 0.9375rem;
  color: var(--color-steel);
  line-height: 1.6;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-top: var(--space-md);
  transition: gap var(--transition-fast);
}
.card:hover .card-link { gap: 10px; }


/* ==========================================================================
   BLOG POST CARD (NEW — Phase 3 pre-build)
   ========================================================================== */

.blog-card {
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  overflow: hidden;
}
.blog-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.blog-card-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-body {
  padding: var(--space-lg);
}
.blog-card-category {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}
.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.3;
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--color-steel);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: var(--space-md);
}
.blog-card-meta {
  font-size: 0.75rem;
  color: var(--color-muted-text);
}


/* ==========================================================================
   NAVIGATION (from style guide + mobile addition)
   ========================================================================== */

/* ---------- Alert bar (livestream banner above nav) ---------- */
.alert-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: var(--alert-bar-height);
  background: var(--color-red);
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0 var(--space-md);
}
.alert-bar .livestream-badge {
  gap: 8px;
  color: var(--color-white);
  font-size: 0.8125rem;
}
.alert-bar .livestream-dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.5);
}
.alert-bar .livestream-badge--live .livestream-dot {
  background: var(--color-white);
}
.alert-bar-btn {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 3px;
  text-decoration: none;
  transition: background var(--transition-fast);
}
.alert-bar-btn:hover {
  background: rgba(255,255,255,0.25);
  color: var(--color-white);
}

.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: box-shadow var(--transition-base);
}
.nav-fixed.scrolled {
  box-shadow: var(--shadow-nav);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-lg);
  height: var(--nav-height);
  background: var(--color-true-black);
}
.nav-logo {
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: 0.02em;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--color-gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
  position: relative;
  padding: 4px 8px;
  text-decoration: none;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--color-white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--color-gold); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--gradient-gold-btn);
  color: var(--color-black) !important;
  font-weight: 800 !important;
  font-size: 0.8125rem !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 4px;
  border: 1px solid rgba(212, 184, 90, 0.4);
  box-shadow: var(--shadow-button);
  transition: all var(--transition-base);
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--gradient-gold-btn-hover);
  box-shadow: 0 0 20px rgba(196, 162, 77, 0.4);
  transform: translateY(-1px);
  color: var(--color-black) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1010;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}
.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--gradient-dark);
  z-index: 1005;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  padding: var(--space-2xl);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.mobile-nav a:hover { color: var(--color-gold); }
.mobile-nav .nav-cta {
  margin-top: var(--space-lg);
  font-size: 1rem !important;
  padding: 14px 32px;
}


/* ==========================================================================
   HERO (from style guide)
   ========================================================================== */

.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  background: url('../assets/banners/homepage-hero-bg.jpg') top center/cover no-repeat;
  overflow: hidden;
  margin-top: calc(var(--nav-height) + var(--alert-bar-height));
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.5) 40%, rgba(10,10,10,0.7) 100%);
  pointer-events: none;
}
.hero::after {
  display: none;
}
.hero-red-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-red);
  z-index: 3;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin-left: 35%;
  padding: 60px 40px;
}
.hero h1 {
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero h1 em {
  color: var(--color-gold);
  font-style: normal;
}
.hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  margin-top: var(--space-md);
  line-height: 1.7;
  font-weight: 300;
}
.hero .btn-row { margin-top: var(--space-xl); }

.hero-trust {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-trust-item { text-align: center; }
.hero-trust-number {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
}
.hero-trust-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  font-weight: 500;
}

/* Service pills */
.service-pills {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-black);
  justify-content: center;
}


/* ==========================================================================
   SECTION LAYOUT
   ========================================================================== */

.section {
  padding: var(--space-4xl) var(--space-lg);
}
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section--offwhite { background: var(--color-offwhite); }
.section--dark {
  background: var(--gradient-dark);
  position: relative;
}
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(196,162,77,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(196,162,77,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.section--dark .section-inner { position: relative; z-index: 1; }
.section--slate { background: var(--color-slate); }

/* Section heading pattern */
.section-heading {
  text-align: center;
  margin-bottom: var(--space-3xl);
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}
.section-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-black);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}
.section--dark .section-heading h2,
.section--slate .section-heading h2 { color: var(--color-white); }
.section-heading p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.0625rem;
  color: var(--color-muted-text);
  line-height: 1.7;
}
.section--dark .section-heading p { color: rgba(255,255,255,0.85); }
.section--slate .section-heading p { color: rgba(255,255,255,0.6); }

/* Grid utilities */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.grid-5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

/* Center CTA below sections */
.section-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}


/* ==========================================================================
   HOW IT WORKS — STEPS (from style guide)
   ========================================================================== */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
}
.step { text-align: center; position: relative; }
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--color-black);
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  box-shadow: var(--shadow-button);
}
.step h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}
.step p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}


/* ==========================================================================
   VIDEO EMBED (from style guide)
   ========================================================================== */

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background: var(--color-black);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  max-width: 800px;
  margin: 0 auto;
}
.video-embed-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.4) 0%, rgba(26,26,46,0.6) 100%),
              url('https://static.wixstatic.com/media/a6d65c_bf54e45076154293864e042da3a46133~mv2.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}
.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(196,162,77,0.4);
  transition: all var(--transition-base);
}
.video-embed:hover .video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(196,162,77,0.5);
}
.video-play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent var(--color-black);
  margin-left: 4px;
}
.video-embed-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.video-description {
  text-align: center;
  max-width: 600px;
  margin: var(--space-lg) auto 0;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}


/* ==========================================================================
   FORMS (from style guide — dark variant)
   ========================================================================== */

.form-container { padding: var(--space-2xl); }
.form-container--dark {
  background: var(--gradient-dark);
  position: relative;
  border-radius: var(--border-radius-md);
}
.form-container--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(196,162,77,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(196,162,77,0.03) 0%, transparent 50%);
  pointer-events: none;
  border-radius: var(--border-radius-md);
}

.form-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  position: relative;
}
.form-container--dark .form-title { color: var(--color-white); }

.form-subtitle {
  font-size: 0.9375rem;
  margin-bottom: var(--space-xl);
  position: relative;
}
.form-container--dark .form-subtitle { color: rgba(255,255,255,0.6); }

.form-group {
  margin-bottom: var(--space-lg);
  position: relative;
}
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}
.form-container--dark .form-label { color: var(--color-gold-light); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  height: 48px;
  padding: 0 var(--space-md);
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
  outline: none;
}
.form-container--dark .form-input,
.form-container--dark .form-select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,196,154,0.2);
  color: var(--color-white);
}
.form-container--dark .form-input::placeholder { color: rgba(255,255,255,0.35); }
.form-container--dark .form-input:focus,
.form-container--dark .form-select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(196,162,77,0.15);
  background: rgba(255,255,255,0.08);
}
.form-textarea {
  height: 120px;
  padding: var(--space-md);
  resize: vertical;
}
.form-container--dark .form-textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,196,154,0.2);
  color: var(--color-white);
}
.form-container--dark .form-textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-container--dark .form-textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(196,162,77,0.15);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23C4A24D' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 6l3.5 4 3.5-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}


/* ==========================================================================
   LEAD CAPTURE — Split Layout
   ========================================================================== */

.lead-capture {
  background: url('../assets/banners/homepage-leadcapture-bg.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.lead-capture::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.6) 35%, rgba(10,10,10,0.85) 100%);
  pointer-events: none;
}
.lead-capture::after {
  display: none;
}
.lead-capture .section-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.lead-capture-form {
  margin-left: 40%;
  max-width: 600px;
}
.lead-capture-form .form-container--dark {
  background: transparent;
}
.lead-capture-form .form-container--dark::before { display: none; }


/* ==========================================================================
   LOGO BAR (from style guide)
   ========================================================================== */

.logo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  padding: var(--space-xl) 0;
}
.logo-bar-item {
  display: inline-block;
}
.logo-bar-item img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}
.logo-bar-item:hover img {
  transform: scale(1.05);
}
.logo-bar-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted-text);
  margin-bottom: var(--space-lg);
}


/* ==========================================================================
   COUNTRY FLAGS (NEW — Phase 3 pre-build)
   ========================================================================== */

.flags-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.flag-item {
  display: inline-block;
  transition: all var(--transition-base);
}
.flag-item:hover {
  transform: translateY(-4px);
}
.flag-item img {
  height: 60px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.flags-context {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--color-muted-text);
  margin-top: var(--space-md);
}


/* ==========================================================================
   FOOTER (from style guide)
   ========================================================================== */

.footer {
  background: var(--color-true-black);
  padding: var(--space-3xl) var(--space-2xl) var(--space-xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  max-width: var(--max-width);
  margin: 0 auto var(--space-2xl);
}
.footer-brand-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}
.footer-brand-name span { color: var(--color-gold); }
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}
.footer-brand .footer-address {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
  margin-bottom: var(--space-lg);
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.625rem;
  font-weight: 700;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
}
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: color var(--transition-fast);
  text-decoration: none;
}
.footer-col a:hover { color: var(--color-white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--color-gold); }


/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Elements waiting for scroll trigger */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}
[data-animate].delay-1 { transition-delay: 0.1s; }
[data-animate].delay-2 { transition-delay: 0.2s; }
[data-animate].delay-3 { transition-delay: 0.3s; }
[data-animate].delay-4 { transition-delay: 0.4s; }


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1023px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero h1 { font-size: 2.75rem; }
  .hero-content { padding: var(--space-3xl) var(--space-lg); }

  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-5 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }

  .lead-capture .section-inner {
    grid-template-columns: 1fr;
  }
  .lead-capture-image { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .section-heading h2 { font-size: 2rem; }
}

@media (max-width: 767px) {
  .hero { min-height: 500px; background-position: 30% top; }
  .hero::before { background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.85) 60%, rgba(10,10,10,0.95) 100%); }
  .hero h1 { font-size: 1.75rem; line-height: 1.15; }
  .hero p { font-size: 0.9375rem; line-height: 1.6; margin-top: var(--space-sm); }
  .hero-content { margin-left: 0; padding: var(--space-xl) var(--space-md); display: flex; flex-direction: column; justify-content: flex-end; min-height: 400px; }
  .hero .btn-row { flex-direction: column; gap: var(--space-sm); margin-top: var(--space-md); }
  .hero .btn-row .btn { width: 100%; text-align: center; }
  .hero-trust { flex-wrap: wrap; gap: var(--space-md); margin-top: var(--space-md); padding-top: var(--space-md); }
  .hero-trust-item { flex: 1 1 45%; text-align: center; }
  .hero-trust-number { font-size: 1.25rem; }
  .hero-trust-label { font-size: 0.6875rem; }

  .service-pills { gap: 6px; padding: var(--space-sm) var(--space-md); }

  .section { padding: var(--space-3xl) var(--space-md); }
  .section-heading h2 { font-size: 1.75rem; }
  .section-heading { margin-bottom: var(--space-2xl); }

  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; gap: var(--space-md); }
  .form-container { padding: var(--space-lg) var(--space-md); }
  .form-title { font-size: 1.375rem; }
  .form-subtitle { font-size: 0.875rem; }
  .lead-capture-form { margin-left: 0; max-width: 100%; }
  .lead-capture { min-height: auto; }
  .lead-capture::before { background: rgba(10,10,10,0.85); }

  .footer { padding: var(--space-2xl) var(--space-md) var(--space-lg); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-brand p { font-size: 0.8125rem; }
  .footer-social { justify-content: flex-start; }
  .footer-col h5 { margin-bottom: var(--space-sm); }
  .footer-col a { padding: 3px 0; font-size: 0.8125rem; }
  .footer-bottom { flex-direction: column; gap: var(--space-xs); text-align: center; }

  .flags-row { gap: var(--space-md); }
  .flag-item img { height: 50px; }

  .btn--primary { padding: 14px 24px; font-size: 0.875rem; letter-spacing: 1px; }
  .btn--lg { padding: 14px 28px; font-size: 0.9375rem; }
  .btn--secondary { padding: 10px 20px; font-size: 0.875rem; }

  .blog-card-thumb { height: 160px; }
  .blog-card-body { padding: var(--space-md); }
  .blog-card-title { font-size: 1.0625rem; }

  .benefit-item { font-size: 0.9375rem; }
  .benefit-list { margin: var(--space-md) 0; }

  .about-hero { background-position: 30% top; }
  .content-block p { font-size: 1rem; }

  .contact-hero { background-position: 30% top; }
  .contact-split .section-inner { grid-template-columns: 1fr; }

  .show-is-live .live-now-badge { bottom: 72px; }
}

@media (max-width: 480px) {
  .alert-bar { font-size: 0.625rem; gap: 6px; height: auto; padding: 6px var(--space-sm); flex-wrap: wrap; justify-content: center; }
  .alert-bar .livestream-badge { font-size: 0.625rem; }
  .alert-bar-btn { font-size: 0.5625rem; padding: 2px 6px; }
  .nav-bar { padding: 0 var(--space-md); height: 60px; }
  .nav-logo { font-size: 1rem; }

  .hero h1 { font-size: 1.75rem; }
  .hero-trust { flex-direction: column; gap: var(--space-md); align-items: flex-start; }
  .hero-trust-item { text-align: left; display: flex; align-items: center; gap: var(--space-sm); }
  .hero-trust-label { margin-top: 0; }

  .section-heading h2 { font-size: 1.5rem; }
  .section-header h2 { font-size: 1.5rem; }
  .section-heading p { font-size: 0.9375rem; }

  .flag-item img { height: 45px; }

  .logo-bar { gap: var(--space-lg); }
  .logo-bar-item { font-size: 0.9375rem; }
}


/* ==========================================================================
   SERVICE HERO (shorter hero for service pages)
   ========================================================================== */

.service-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background: var(--gradient-dark);
  overflow: hidden;
  margin-top: calc(var(--nav-height) + var(--alert-bar-height));
}
.service-hero .hero-red-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--color-red);
  z-index: 2;
}
.service-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: 35%;
  padding: var(--space-3xl) var(--space-2xl);
}
.service-hero--payroll .hero-content {
  margin-left: 0;
  margin-right: 35%;
}
.service-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.service-hero h1 em {
  color: var(--color-gold);
  font-style: normal;
}
.service-hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  margin-top: var(--space-md);
  line-height: 1.7;
  font-weight: 300;
}
.service-hero .btn-row { margin-top: var(--space-xl); }

/* Per-page hero backgrounds — Designer Banners */
.service-hero--corporate {
  background: linear-gradient(90deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.5) 35%, rgba(10,10,10,0.8) 100%),
              url('../assets/banners/service-corp-purchase-bg.jpg') top center/cover no-repeat;
}
.service-hero--gst {
  background: linear-gradient(90deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.5) 35%, rgba(10,10,10,0.8) 100%),
              url('../assets/banners/service-gst-bg.jpg') top center/cover no-repeat;
}
.service-hero--payroll {
  background: linear-gradient(90deg, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.5) 65%, rgba(10,10,10,0.2) 100%),
              url('../assets/banners/service-payroll-bg.jpg') top center/cover no-repeat;
}
.service-hero--money {
  background: linear-gradient(90deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.5) 35%, rgba(10,10,10,0.8) 100%),
              url('../assets/banners/service-money-bg.png') top center/cover no-repeat;
}
.service-hero--panama,
.service-hero--offshore {
  background: linear-gradient(90deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.5) 35%, rgba(10,10,10,0.8) 100%),
              url('../assets/banners/service-offshore-bg.jpg') top center/cover no-repeat;
}
.service-hero--tax {
  background: linear-gradient(90deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.5) 35%, rgba(10,10,10,0.8) 100%),
              url('../assets/banners/service-tax-bg.jpg') top center/cover no-repeat;
}
.service-hero--recovery {
  background: linear-gradient(90deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.5) 35%, rgba(10,10,10,0.8) 100%),
              url('../assets/banners/service-recovery-bg.jpg') top center/cover no-repeat;
}
.service-hero--eliminate {
  background: linear-gradient(90deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.5) 35%, rgba(10,10,10,0.8) 100%),
              url('../assets/banners/service-eliminate-bg.png') top center/cover no-repeat;
}


/* ==========================================================================
   BENEFIT LIST (gold checkmarks)
   ========================================================================== */

.benefit-list {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
}
.benefit-list li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-xl);
  position: relative;
  font-size: 1rem;
  color: var(--color-steel);
  line-height: 1.7;
}
.benefit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
  font-size: 1.125rem;
}
.benefit-list--dark li { color: rgba(255,255,255,0.8); }

/* Checklist (documentation requirements etc.) */
.checklist {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-xl);
}
.checklist li {
  padding: var(--space-xs) 0;
  padding-left: var(--space-lg);
  position: relative;
  font-size: 0.9375rem;
  color: var(--color-steel);
}
.checklist li::before {
  content: '☐';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 1rem;
}


/* ==========================================================================
   ELIGIBILITY SECTION (2-column for/not-for)
   ========================================================================== */

.eligibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}
.eligibility-col h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-gold);
}
.eligibility-col--yes h4 { color: var(--color-gold); }
.eligibility-col--no h4 { color: var(--color-steel); border-bottom-color: var(--color-steel); }
.eligibility-col ul {
  list-style: none;
  padding: 0;
}
.eligibility-col ul li {
  padding: var(--space-xs) 0;
  padding-left: var(--space-lg);
  position: relative;
  font-size: 0.9375rem;
  color: var(--color-steel);
  line-height: 1.6;
}
.eligibility-col--yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
}
.eligibility-col--no li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--color-muted-text);
  font-weight: 700;
}


/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-container {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-item:first-child {
  border-top: 1px solid rgba(0,0,0,0.08);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg) 0;
  font-family: var(--font-primary);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-black);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  line-height: 1.4;
  gap: var(--space-md);
}
.faq-question:hover { color: var(--color-gold); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-gold-ultralight);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.25rem;
  font-weight: 700;
  transition: transform var(--transition-base);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding-bottom: var(--space-lg);
  font-size: 0.9375rem;
  color: var(--color-steel);
  line-height: 1.7;
}


/* ==========================================================================
   PRICING INFO BLOCK (non-tiered, for Corporate Acquisition)
   ========================================================================== */

.pricing-info {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-2xl);
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--color-gold);
}
.pricing-info-highlight {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1.2;
  margin-bottom: var(--space-xs);
}
.pricing-info-label {
  font-size: 1rem;
  color: var(--color-steel);
  margin-bottom: var(--space-lg);
}
.pricing-info-details {
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
}
.pricing-info-details li {
  padding: var(--space-xs) 0;
  font-size: 0.9375rem;
  color: var(--color-steel);
  list-style: none;
  padding-left: var(--space-lg);
  position: relative;
}
.pricing-info-details li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
}
.pricing-info-note {
  font-size: 0.875rem;
  color: var(--color-muted-text);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(0,0,0,0.06);
}


/* ==========================================================================
   SAVINGS CALCULATOR (Payroll page)
   ========================================================================== */

.savings-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.savings-hero-stat {
  margin-bottom: var(--space-xl);
}
.savings-hero-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
}
.savings-hero-label {
  font-size: 1.125rem;
  color: var(--color-steel);
  margin-top: var(--space-xs);
}
.savings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.savings-card {
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-card);
  padding: var(--space-xl);
  border-top: 3px solid var(--color-gold);
  text-align: center;
}
.savings-card-number {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1.2;
}
.savings-card-label {
  font-size: 0.875rem;
  color: var(--color-steel);
  margin-top: var(--space-xs);
}
.savings-card-employees {
  font-size: 0.75rem;
  color: var(--color-muted-text);
  margin-top: var(--space-xs);
}
.savings-note {
  font-size: 0.875rem;
  color: var(--color-muted-text);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}


/* ==========================================================================
   SUB-SERVICE BLOCKS (Money Services page)
   ========================================================================== */

.sub-service {
  padding: var(--space-2xl);
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--color-gold);
  margin-bottom: var(--space-xl);
}
.sub-service:last-child { margin-bottom: 0; }
.sub-service h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: var(--space-md);
}
.sub-service p {
  font-size: 1rem;
  color: var(--color-steel);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.sub-service .benefit-list { margin-bottom: var(--space-lg); }


/* ==========================================================================
   PANAMA REASONS GRID
   ========================================================================== */

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md) var(--space-2xl);
  margin: var(--space-xl) 0;
  counter-reset: reason;
}
.reason-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  counter-increment: reason;
}
.reason-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-gold-ultralight);
  color: var(--color-gold);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reason-text {
  font-size: 0.9375rem;
  color: var(--color-steel);
  line-height: 1.5;
  padding-top: var(--space-xs);
}


/* ==========================================================================
   CRA POWERS 2-COLUMN (GST page)
   ========================================================================== */

.powers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}
.powers-col h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
}
.powers-col--can h4 {
  color: var(--color-red);
  border-bottom: 2px solid var(--color-red);
}
.powers-col--cannot h4 {
  color: var(--color-success);
  border-bottom: 2px solid var(--color-success);
}
.powers-col ul {
  list-style: none;
  padding: 0;
}
.powers-col ul li {
  padding: var(--space-xs) 0;
  padding-left: var(--space-lg);
  position: relative;
  font-size: 0.9375rem;
  color: var(--color-steel);
  line-height: 1.6;
}
.powers-col--can li::before { content: '⚠'; position: absolute; left: 0; font-size: 0.875rem; }
.powers-col--cannot li::before { content: '✓'; position: absolute; left: 0; color: var(--color-success); font-weight: 700; }


/* ==========================================================================
   CONTENT ACCENT IMAGE
   ========================================================================== */

.accent-image {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-card);
  max-width: 100%;
  height: auto;
}


/* ==========================================================================
   FORM SUCCESS STATE
   ========================================================================== */

.form-success {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  position: relative;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(46,125,50,0.15);
  color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto var(--space-lg);
}
.form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}
.form-success p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
}


/* ==========================================================================
   CONTENT LAYOUT HELPERS
   ========================================================================== */

.content-block {
  max-width: 720px;
  margin: 0 auto;
}
.content-block p {
  font-size: 1.0625rem;
  color: var(--color-steel);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.content-block h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-black);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.content-wide {
  max-width: 900px;
  margin: 0 auto;
}

/* Steps grid for 4 and 6 columns */
.steps--4 { grid-template-columns: repeat(4, 1fr); }
.steps--6 { grid-template-columns: repeat(3, 1fr); }


/* ==========================================================================
   SERVICE PAGE RESPONSIVE ADDITIONS
   ========================================================================== */

@media (max-width: 1023px) {
  .service-hero h1 { font-size: 2.5rem; }
  .service-hero .hero-content { padding: var(--space-2xl) var(--space-lg); }
  .steps--4 { grid-template-columns: 1fr 1fr; }
  .steps--6 { grid-template-columns: 1fr 1fr; }
  .eligibility-grid { grid-template-columns: 1fr; }
  .content-split { grid-template-columns: 1fr; }
  .powers-grid { grid-template-columns: 1fr; }
  .savings-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .service-hero { min-height: auto; background-position: 30% top; }
  .service-hero::before,
  .service-hero--corporate,
  .service-hero--gst,
  .service-hero--payroll,
  .service-hero--money,
  .service-hero--offshore,
  .service-hero--panama,
  .service-hero--tax,
  .service-hero--recovery,
  .service-hero--eliminate { background-position: 30% top; }
  .service-hero h1 { font-size: 1.625rem; line-height: 1.15; }
  .service-hero p { font-size: 0.9375rem; }
  .service-hero .hero-content { margin-left: 0; margin-right: 0; padding: var(--space-xl) var(--space-md); max-width: 100%; }
  .service-hero .btn-row { flex-direction: column; }
  .service-hero .btn-row .btn { width: 100%; text-align: center; }
  .checklist { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }
  .savings-grid { grid-template-columns: 1fr; }
  .savings-hero-number { font-size: 3rem; }
  .steps--4, .steps--6 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .service-hero h1 { font-size: 1.5rem; }
}


/* ==========================================================================
   PRICING CARDS (Consultation page)
   ========================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
.card--pricing {
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-card);
  padding: var(--space-xl);
  text-align: center;
  border-top: 3px solid var(--color-gold);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}
.card--pricing:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.card--pricing.featured {
  transform: scale(1.03);
  box-shadow: 0 8px 40px rgba(196,162,77,0.2);
  border-top: 4px solid var(--color-gold);
  position: relative;
}
.card--pricing.featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 12px 48px rgba(196,162,77,0.3);
}
.card--pricing .pricing-tier-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}
.card--pricing .pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-black);
  line-height: 1.1;
}
.card--pricing .pricing-duration {
  font-size: 0.875rem;
  color: var(--color-muted-text);
  margin-top: var(--space-xs);
  margin-bottom: var(--space-lg);
}
.card--pricing .pricing-details {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl);
  text-align: left;
  flex-grow: 1;
}
.card--pricing .pricing-details li {
  padding: var(--space-xs) 0;
  padding-left: var(--space-lg);
  position: relative;
  font-size: 0.875rem;
  color: var(--color-steel);
  line-height: 1.5;
}
.card--pricing .pricing-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
}
.card--pricing .btn { width: 100%; }


/* ==========================================================================
   ABOUT PAGE — HEADSHOT & BIO
   ========================================================================== */

.bio-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.headshot-container {
  width: 300px;
  height: 300px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--color-offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
}
.headshot-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.bio-text p {
  font-size: 1.0625rem;
  color: var(--color-steel);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.trust-row {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(0,0,0,0.06);
  flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-number {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
}
.trust-label {
  font-size: 0.75rem;
  color: var(--color-muted-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  font-weight: 500;
}


/* ==========================================================================
   CONTACT PAGE — DARK SPLIT LAYOUT
   ========================================================================== */

.contact-split {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}
.contact-split::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(196,162,77,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(196,162,77,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.contact-split .section-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-2xl);
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}
.contact-address {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  text-align: center;
}


/* ==========================================================================
   PRIVACY PAGE
   ========================================================================== */

.privacy-content {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
  margin-top: calc(var(--nav-height) + var(--alert-bar-height));
}
.privacy-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: var(--space-xl);
}
.privacy-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-black);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}
.privacy-content p {
  font-size: 1rem;
  color: var(--color-steel);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.privacy-content ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-xl);
}
.privacy-content li {
  font-size: 1rem;
  color: var(--color-steel);
  line-height: 1.7;
  margin-bottom: var(--space-xs);
}
.privacy-content .last-updated {
  font-size: 0.875rem;
  color: var(--color-muted-text);
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(0,0,0,0.06);
}


/* ==========================================================================
   SERVICE ROUTING CARDS
   ========================================================================== */

.routing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}


/* ==========================================================================
   CONTAINER (alias for section-inner — used by service pages)
   ========================================================================== */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}


/* ==========================================================================
   MISSING UTILITY CLASSES (used in service page HTML)
   ========================================================================== */

/* Eyebrow label (standalone, outside .section-heading) */
.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

/* Section header (alias for .section-heading, used on service pages) */
.section-header {
  margin-bottom: var(--space-2xl);
}
.section-header .eyebrow {
  margin-bottom: var(--space-sm);
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}
.section--dark .section-header h2,
.section--slate .section-header h2 { color: var(--color-white); }
.section--dark .eyebrow { color: var(--color-gold); }

/* Section content (body text in service pages) */
.section-content {
  max-width: 900px;
}
.section-content p {
  font-size: 1.0625rem;
  color: var(--color-steel);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

/* Hero subtitle & hero CTAs */
.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  margin-top: var(--space-md);
  line-height: 1.7;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  margin-top: var(--space-xl);
}


/* ==========================================================================
   BENEFIT ITEMS (SVG checkmark variant used on service pages)
   ========================================================================== */

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  font-size: 1rem;
  color: var(--color-steel);
  line-height: 1.7;
}
.benefit-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: var(--color-gold);
  margin-top: 2px;
}
.benefit-icon svg,
svg.benefit-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ==========================================================================
   CHECKLIST ITEMS (checkbox variant used on corporate-acquisition)
   ========================================================================== */

.checklist-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) 0;
  font-size: 0.9375rem;
  color: var(--color-steel);
}
.checklist-item input[type="checkbox"] {
  accent-color: var(--color-gold);
  width: 16px;
  height: 16px;
}
.checklist-item label {
  cursor: default;
}


/* ==========================================================================
   SERVICE CROSS-LINK CARDS (bottom of service pages)
   ========================================================================== */

.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-card);
  padding: var(--space-xl);
  border-top: 3px solid var(--color-gold);
  transition: all var(--transition-base);
}
.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  color: inherit;
}
.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-gold-ultralight);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-gold);
}
.service-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: var(--space-sm);
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--color-steel);
  line-height: 1.6;
}


/* ==========================================================================
   LEAD CAPTURE GRID (service page variant)
   ========================================================================== */

.lead-capture-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-2xl);
  align-items: center;
}
.lead-capture-form h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}
.lead-capture-form > p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-xl);
}


/* ==========================================================================
   SERVICE PAGE FORM ELEMENTS (raw inputs without .form-input class)
   ========================================================================== */

.lead-capture-form input[type="text"],
.lead-capture-form input[type="email"],
.lead-capture-form input[type="tel"],
.lead-capture-form select,
.lead-capture-form textarea {
  width: 100%;
  height: 48px;
  padding: 0 var(--space-md);
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  border-radius: var(--border-radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,196,154,0.2);
  color: var(--color-white);
  transition: all var(--transition-fast);
  outline: none;
}
.lead-capture-form input::placeholder,
.lead-capture-form textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
.lead-capture-form input:focus,
.lead-capture-form select:focus,
.lead-capture-form textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(196,162,77,0.15);
  background: rgba(255,255,255,0.08);
}
.lead-capture-form textarea {
  height: 120px;
  padding: var(--space-md);
  resize: vertical;
}
.lead-capture-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23C4A24D' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 6l3.5 4 3.5-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.lead-capture-form select option {
  background: var(--color-black);
  color: var(--color-white);
}
.lead-capture-form .form-group {
  margin-bottom: var(--space-lg);
}


/* ==========================================================================
   PRICING HIGHLIGHT (corporate acquisition page variant)
   ========================================================================== */

.pricing-highlight {
  margin-bottom: var(--space-xl);
}
.pricing-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1.2;
  margin-bottom: var(--space-xs);
}
.pricing-label {
  font-size: 1rem;
  color: var(--color-steel);
}


/* ==========================================================================
   SERVICE PAGE RESPONSIVE ADDITIONS (new classes)
   ========================================================================== */

@media (max-width: 1023px) {
  .lead-capture-grid { grid-template-columns: 1fr; }
  .lead-capture-grid .lead-capture-image { display: none; }
  .section-content { max-width: 100%; }
}

@media (max-width: 767px) {
  .section-header h2 { font-size: 1.5rem; }
  .lead-capture-form h2 { font-size: 1.5rem; }
  .pricing-amount { font-size: 2rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}


/* ==========================================================================
   SERVICE HERO CONTENT (alias — about.html, blog, show use this)
   ========================================================================== */

.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: var(--space-3xl) var(--space-2xl);
}
.service-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.service-hero-content h1 em {
  color: var(--color-gold);
  font-style: normal;
}
.service-hero-content p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  margin-top: var(--space-md);
  line-height: 1.7;
  font-weight: 300;
}
.service-hero-content .btn-row { margin-top: var(--space-xl); }

/* Hero subtitle alias */
.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  margin-top: var(--space-md);
  line-height: 1.7;
  font-weight: 300;
}


/* ==========================================================================
   GLOBAL FORM DARK STYLING (for forms inside dark sections)
   ========================================================================== */

.lead-capture form input[type="text"],
.lead-capture form input[type="email"],
.lead-capture form input[type="tel"],
.lead-capture form select,
.lead-capture form textarea,
.section--dark form input[type="text"],
.section--dark form input[type="email"],
.section--dark form input[type="tel"],
.section--dark form select,
.section--dark form textarea,
.contact-split form input[type="text"],
.contact-split form input[type="email"],
.contact-split form input[type="tel"],
.contact-split form select,
.contact-split form textarea {
  width: 100%;
  height: 48px;
  padding: 0 var(--space-md);
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  border-radius: var(--border-radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,196,154,0.2);
  color: var(--color-white);
  transition: all var(--transition-fast);
  outline: none;
}
.lead-capture form input::placeholder,
.lead-capture form textarea::placeholder,
.section--dark form input::placeholder,
.section--dark form textarea::placeholder,
.contact-split form input::placeholder,
.contact-split form textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
.lead-capture form input:focus,
.lead-capture form select:focus,
.lead-capture form textarea:focus,
.section--dark form input:focus,
.section--dark form select:focus,
.section--dark form textarea:focus,
.contact-split form input:focus,
.contact-split form select:focus,
.contact-split form textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(196,162,77,0.15);
  background: rgba(255,255,255,0.08);
}
.lead-capture form textarea,
.section--dark form textarea,
.contact-split form textarea {
  height: 120px;
  padding: var(--space-md);
  resize: vertical;
}
.lead-capture form select,
.section--dark form select,
.contact-split form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23C4A24D' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 6l3.5 4 3.5-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.lead-capture form select option,
.section--dark form select option,
.contact-split form select option {
  background: var(--color-black);
  color: var(--color-white);
}


/* ==========================================================================
   CONSULTATION FAQ <details> STYLING
   ========================================================================== */

details {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
details:first-of-type {
  border-top: 1px solid rgba(0,0,0,0.08);
}
details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  font-family: var(--font-primary);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-black);
  cursor: pointer;
  list-style: none;
  line-height: 1.4;
}
details summary::-webkit-details-marker { display: none; }
details summary::marker { display: none; content: ''; }
details summary:hover { color: var(--color-gold); }
details[open] summary { color: var(--color-gold); }
details > div,
details > p {
  padding-bottom: var(--space-lg);
  font-size: 0.9375rem;
  color: var(--color-steel);
  line-height: 1.7;
}


/* ==========================================================================
   INFOGRAPHIC — How It Works visual layout
   ========================================================================== */
.infographic {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: var(--space-xl);
}

.infographic-step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 var(--space-md);
}

.infographic-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-sm);
  background: rgba(196, 162, 77, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.infographic-icon svg {
  width: 48px;
  height: 48px;
}

.infographic-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-black);
  font-weight: 900;
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
}

.infographic-step h4 {
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.infographic-step p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.infographic-connector {
  display: flex;
  align-items: center;
  padding-top: 48px;
  flex-shrink: 0;
  width: 60px;
}

.infographic-connector svg {
  width: 60px;
  height: 24px;
}


/* ==========================================================================
   LIVESTREAM BANNER
   ========================================================================== */
.livestream-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-xl);
  background: rgba(196, 162, 77, 0.08);
  border: 1px solid rgba(196, 162, 77, 0.2);
  border-radius: var(--border-radius-md);
}

.livestream-badge {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.livestream-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-steel);
  flex-shrink: 0;
}

.livestream-badge--live .livestream-dot {
  background: #e74c3c;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.livestream-badge--live {
  color: var(--color-white);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.5); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(231, 76, 60, 0); }
}

.livestream-btn {
  white-space: nowrap;
}


/* ==========================================================================
   PRICING CURRENCY BADGE (maple leaf / CAD indicator)
   ========================================================================== */
.pricing-currency-badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gold);
  background: rgba(196, 162, 77, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.pricing-currency-badge--usd {
  color: var(--color-steel);
  background: rgba(51, 63, 66, 0.1);
}

.card--pricing {
  position: relative;
}


/* ==========================================================================
   REASONS GRID (used on offshore/panama page)
   ========================================================================== */
.reasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.reason-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm);
}

.reason-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-black);
  font-weight: 900;
  font-size: 0.75rem;
}

.reason-text {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-steel);
}


/* ==========================================================================
   PHASE 5 RESPONSIVE ADDITIONS
   ========================================================================== */

@media (max-width: 1023px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .bio-grid { grid-template-columns: 1fr; justify-items: center; }
  .bio-text { text-align: left; }
  .contact-split .section-inner { grid-template-columns: 1fr; }
  .contact-info { display: none; }
  .service-hero-content { padding: var(--space-2xl) var(--space-lg); }
  .service-hero-content h1 { font-size: 2.5rem; }
  .infographic-connector { width: 40px; }
  .infographic-connector svg { width: 40px; }
  .reasons-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .pricing-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .card--pricing { padding: var(--space-lg); }
  .card--pricing .pricing-price { font-size: 2rem; }
  .card--pricing.featured { transform: none; box-shadow: 0 4px 24px rgba(196,162,77,0.2); }
  .card--pricing.featured:hover { transform: none; }
  .card--pricing .btn { padding: 14px 20px; font-size: 0.875rem; }
  .routing-grid { grid-template-columns: 1fr; }
  .trust-row { gap: var(--space-lg); justify-content: center; }
  .privacy-content { padding: var(--space-2xl) var(--space-md); }
  .privacy-content h1 { font-size: 2rem; }
  .service-hero-content h1 { font-size: 2rem; }
  .service-hero-content { padding: var(--space-2xl) var(--space-md); }
  .infographic { flex-direction: column; align-items: center; gap: var(--space-md); }
  .infographic-connector { transform: rotate(90deg); padding-top: 0; width: 60px; height: 30px; }
  .infographic-step { max-width: 100%; }
  .livestream-banner { flex-direction: column; text-align: center; gap: var(--space-sm); }
  .reasons-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CTA PULSE ANIMATION
   ========================================================================== */

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 162, 77, 0.4); }
  50% { box-shadow: 0 0 16px 4px rgba(196, 162, 77, 0.25); }
}

.btn--primary {
  animation: ctaPulse 2.5s ease-in-out infinite;
}

.btn--primary:hover {
  animation: none;
  box-shadow: 0 0 24px 6px rgba(196, 162, 77, 0.5);
}

/* ==========================================================================
   PRICING TAGS & TAGLINES
   ========================================================================== */

.pricing-tag {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-black);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--border-radius-sm);
  margin-bottom: var(--space-sm);
}

.pricing-tagline {
  font-size: 0.95rem;
  color: var(--color-muted-text);
  font-style: italic;
  margin-top: var(--space-sm);
  line-height: 1.5;
}

/* ==========================================================================
   URGENCY BANNER
   ========================================================================== */

.urgency-banner {
  background: #CC0000;
  color: var(--color-white);
  text-align: center;
  padding: var(--space-md) var(--space-lg);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

/* ==========================================================================
   MOBILE STICKY CTA
   ========================================================================== */

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 767px) {
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-gold);
    text-align: center;
    padding: var(--space-sm) var(--space-md);
    z-index: 999;
  }
  .mobile-sticky-cta .btn {
    display: block;
    width: 100%;
    background: var(--color-black);
    color: var(--color-gold);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 14px var(--space-md);
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    text-transform: uppercase;
  }
  body {
    padding-bottom: 72px;
  }
}

/* ==========================================================================
   KEVIN STORY BLOCK
   ========================================================================== */

.kevin-story-block {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px var(--space-2xl);
}

.kevin-story-block blockquote {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--color-white);
  font-style: italic;
  margin: 0;
  border-left: none;
  padding-left: 0;
}

.kevin-story-block .quote-attribution {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--color-gold);
  margin-top: var(--space-lg);
  font-size: 1.25rem;
}

@media (max-width: 767px) {
  .kevin-story-block {
    padding: var(--space-2xl) var(--space-md);
  }
  .kevin-story-block blockquote {
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   HOMEPAGE BLOCKS — Banner-backed sections
   ========================================================================== */

.homepage-block {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding: 60px 5%;
}

.homepage-block::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.homepage-block.text-right::before {
  background: linear-gradient(90deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.6) 35%, rgba(10,10,10,0.85) 100%);
}

.homepage-block.text-left::before {
  background: linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.6) 65%, rgba(10,10,10,0.1) 100%);
}

.homepage-block .block-content {
  position: relative;
  z-index: 1;
  max-width: 550px;
}

.homepage-block.text-right .block-content {
  margin-left: auto;
}

.homepage-block.text-left .block-content {
  margin-right: auto;
}

.homepage-block h4 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.homepage-block h4 em {
  color: var(--color-gold);
  font-style: italic;
}

.homepage-block p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.homepage-block .btn {
  margin-top: var(--space-sm);
}

/* Panama / Money Services section */
.section--panama {
  background: url('../assets/banners/homepage-panama-usa-bg.jpg') center/cover no-repeat;
  position: relative;
}

.section--panama::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.7);
  pointer-events: none;
}

.section--panama .section-inner {
  position: relative;
  z-index: 1;
}

.section--panama .section-heading h2 {
  color: var(--color-white);
}

.section--panama .section-heading p {
  color: rgba(255,255,255,0.8);
}

.section--panama .flags-context {
  color: var(--color-gold);
}

.section--panama .flags-row {
  border-top: none;
}

/* NHL Panama section */
.section--nhl {
  background: url('../assets/banners/homepage-nhl-bg.jpg') center/cover no-repeat;
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  padding: 60px 5%;
}

.section--nhl::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.5) 60%, rgba(10,10,10,0.3) 100%);
  pointer-events: none;
}

.section--nhl .nhl-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.section--nhl h2 {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.section--nhl h2 em {
  color: var(--color-gold);
  font-style: normal;
}

.section--nhl p {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.section--nhl p em {
  color: var(--color-gold);
  font-style: normal;
  font-weight: 700;
}

.section--nhl .nhl-logo {
  text-align: center;
}

.section--nhl .nhl-logo img {
  max-width: 280px;
  margin: 0 auto;
  filter: drop-shadow(0 0 30px rgba(255,255,255,0.15));
}

/* Show section — side by side layout */
.section--show {
  background: url('../assets/banners/homepage-show-bg.jpg') center/cover no-repeat;
}

.section--show::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.75);
  pointer-events: none;
}

.section--show .section-inner {
  position: relative;
  z-index: 1;
}

.show-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.show-info .section-eyebrow {
  text-align: left;
}

.show-info h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.show-info h2 em {
  color: var(--color-gold);
  font-style: normal;
}

.show-info .show-subtitle {
  color: var(--color-gold);
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
}

/* Story section with bg image */
.section--story {
  background: url('../assets/banners/homepage-story-bg.jpg') center/cover no-repeat;
  position: relative;
}

.section--story::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.6);
  pointer-events: none;
}

.section--story .kevin-story-block {
  position: relative;
  z-index: 1;
}

/* Logo bar section */
.section--logobar {
  background: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
  border-top: 3px solid var(--color-gold);
  border-bottom: 3px solid var(--color-gold);
}

.section--logobar .logo-bar-label {
  color: var(--color-white);
  font-size: 0.875rem;
}

.section--logobar .logo-bar-label strong {
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  .homepage-block .block-content {
    max-width: 100%;
  }
  .homepage-block.text-right .block-content,
  .homepage-block.text-left .block-content {
    margin-left: 0;
    margin-right: 0;
  }
  .section--nhl .nhl-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .show-layout {
    grid-template-columns: 1fr;
  }
  .lead-capture-form {
    margin-left: 0;
    max-width: 100%;
  }
  .hero-content {
    margin-left: 0;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .homepage-block {
    min-height: auto;
    padding: var(--space-2xl) var(--space-md);
  }
  .homepage-block.text-right::before,
  .homepage-block.text-left::before {
    background: rgba(10,10,10,0.8);
  }
  .homepage-block h4 {
    font-size: 1.375rem;
  }
  .homepage-block p {
    font-size: 0.9375rem;
  }
  .homepage-block .btn {
    width: 100%;
    text-align: center;
    font-size: 0.875rem;
    padding: 14px 20px;
  }
  .section--nhl {
    min-height: auto;
    padding: var(--space-2xl) var(--space-md);
  }
  .section--nhl .nhl-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-lg);
  }
  .section--nhl h2 {
    font-size: 1.5rem;
  }
  .section--nhl .nhl-logo img {
    max-width: 140px;
  }
  .show-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .show-layout-info {
    text-align: center;
  }
  .show-layout-info .btn {
    width: 100%;
  }
  .consultation-hero {
    min-height: auto;
    background-position: 30% top;
  }
  .consultation-hero .hero-content {
    margin-left: 0;
    padding: var(--space-xl) var(--space-md);
    max-width: 100%;
  }
  .lead-capture {
    background-position: 25% center;
  }
}


/* ============================================
   CONSULTATION PAGE
   ============================================ */
.consultation-hero {
  background: linear-gradient(90deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.5) 40%, rgba(10,10,10,0.7) 100%),
              url('../assets/banners/consultation-hero-bg.png') top center/cover no-repeat;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: calc(var(--nav-height) + var(--alert-bar-height));
}
.consultation-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: 35%;
  padding: var(--space-3xl) var(--space-2xl);
}

.consultation-pricing-section {
  background: url('../assets/banners/consultation-pricing-bg.jpg') center/cover no-repeat;
  position: relative;
}
.consultation-pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.8);
  pointer-events: none;
}
.consultation-pricing-section > * {
  position: relative;
  z-index: 1;
}

.consultation-cta-section {
  background: url('../assets/banners/consultation-cta-bg.jpg') center/cover no-repeat;
  position: relative;
  padding: 80px 0;
  text-align: center;
}
.consultation-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.6);
  pointer-events: none;
}
.consultation-cta-section > * {
  position: relative;
  z-index: 1;
}

/* About page hero */
.about-hero {
  background: linear-gradient(90deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.5) 40%, rgba(10,10,10,0.7) 100%),
              url('../assets/banners/about-hero-bg.jpg') top center/cover no-repeat;
}

/* Contact page hero */
.contact-hero {
  background: linear-gradient(90deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.5) 40%, rgba(10,10,10,0.7) 100%),
              url('../assets/banners/contact-hero-bg.jpg') top center/cover no-repeat;
}

@media (max-width: 1023px) {
  .consultation-hero .hero-content {
    margin-left: 0;
    max-width: 100%;
  }
  .service-hero .hero-content {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
}


/* ============================================
   LIVE NOW FLOATING BADGE
   ============================================ */
.live-now-badge {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #CC0000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 998;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.5);
  animation: livePulse 2s ease-in-out infinite;
}
.show-is-live .live-now-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-now-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(200, 16, 46, 0.5); }
  50% { box-shadow: 0 4px 30px rgba(200, 16, 46, 0.8); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ON AIR indicator for /show page */
.on-air-indicator {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #CC0000;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}


/* SERVICE PILLS — FINAL */
.service-pills .service-pill {
  background: linear-gradient(180deg, #D4B85A 0%, #C4A24D 40%, #A8893D 100%);
  color: #000;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(212, 184, 90, 0.4);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.8125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.service-pills .service-pill:hover {
  background: linear-gradient(180deg, #E0C96A 0%, #D4B85A 40%, #B89A4D 100%);
  box-shadow: 0 0 20px rgba(196, 162, 77, 0.5);
  transform: scale(1.05);
  color: #000;
  border-color: #D4B85A;
}
@media (max-width: 767px) {
  .service-pills .service-pill { font-size: 0.75rem; padding: 6px 12px; }
}
