/*
Theme Name: RZR Solutions
Theme URI: https://rzrsolutions.com
Author: RZR Solutions
Author URI: https://rzrsolutions.com
Description: Custom WordPress theme for RZR Solutions - Managed IT & Cybersecurity. Built from scratch, no page builders.
Version: 1.0.0
License: Proprietary
Text Domain: rzr
*/

/* ============================================================
   RZR SOLUTIONS THEME — v9
   Apple cinematic layout + Microsoft warmth
   Roboto. "We" language. WordPress-native.
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --purple: #7A5BA6;
  --purple-soft: #9B7DC4;
  --purple-bg: rgba(122,91,166,0.05);
  --purple-bg2: rgba(122,91,166,0.08);
  --dark: #2F333E;
  --dark-deep: #1a1d24;
  --blue: #42C7F4;
  --blue-bg: rgba(66,199,244,0.08);
  --grey: #585D66;
  --grey-light: #95A5A5;
  --grey-pale: #e8eaed;
  --off-white: #f8f9fa;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --font: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'Roboto Mono', monospace;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- Containers ---- */
.container { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
.container--wide { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  letter-spacing: 0.01em;
}
.btn--primary { background: var(--purple); color: var(--white); }
.btn--primary:hover { background: var(--purple-soft); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(122,91,166,0.25); }
.btn--secondary { background: rgba(0,0,0,0.06); color: var(--dark); }
.btn--secondary:hover { background: rgba(0,0,0,0.1); }
.btn--white { background: var(--white); color: var(--dark); font-weight: 700; }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.btn--outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn--outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.btn--dark { background: var(--dark); color: var(--white); }
.btn--dark:hover { background: var(--dark-deep); transform: translateY(-2px); }
.btn--sm { padding: 10px 24px; font-size: 0.8125rem; }
.btn--lg { padding: 18px 40px; font-size: 1rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.nav .container--wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 44px; transition: opacity 0.2s ease; }
.nav-logo:hover img { opacity: 0.85; }

/* Center links */
.nav-center { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-center li { list-style: none; }
.nav-center a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color 0.25s ease;
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
}
.nav-center a:hover {
  color: var(--white);
}
.nav-center a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--purple);
  border-radius: 1px;
  transition: width 0.25s ease, left 0.25s ease;
}
.nav-center a:hover::after {
  width: 100%;
  left: 0;
}

/* Right section */
.nav-right { display: flex; align-items: center; gap: 16px; }

/* Vertical divider */
.nav-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.1);
}

/* Phone */
.nav-phone {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
}
.nav-phone:hover { color: rgba(255,255,255,0.7); }

/* Emergency support */
.nav-emergency {
  font-size: 0.75rem;
  font-weight: 600;
  color: #D4393C;
  padding: 6px 14px 6px 12px;
  border-radius: 100px;
  background: transparent;
  border: 1.5px solid #9F1E21;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.01em;
}
.nav-emergency:hover {
  background: #9F1E21;
  color: var(--white);
  border-color: #9F1E21;
}
.nav-emergency:hover .emergency-dot {
  background: var(--white);
}
.emergency-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D4393C;
  display: inline-block;
  animation: emergencyPulse 2s ease-in-out infinite;
}
@keyframes emergencyPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}

/* Schedule a Call button (nav-specific) */
.btn--accent {
  background: #42C7F4;
  color: var(--white);
  padding: 10px 24px;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.01em;
  border: none;
  transition: all 0.25s ease;
}
.btn--accent:hover {
  background: #5dd4f7;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(66,199,244,0.35);
}

/* Mobile nav button */
.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
}
.nav-mobile-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.7);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}
.nav-mobile-btn span:nth-child(1) { top: 0; }
.nav-mobile-btn span:nth-child(2) { top: 9px; }
.nav-mobile-btn span:nth-child(3) { top: 18px; }
.nav-mobile-btn.active span:nth-child(1) { top: 9px; transform: rotate(45deg); background: var(--white); }
.nav-mobile-btn.active span:nth-child(2) { opacity: 0; }
.nav-mobile-btn.active span:nth-child(3) { top: 9px; transform: rotate(-45deg); background: var(--white); }

/* Mobile menu */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  padding: 32px;
  z-index: 99;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.nav-mobile-menu.active { display: flex; }
.nav-mobile-menu a {
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.nav-mobile-menu a:hover {
  color: var(--white);
  padding-left: 8px;
}
.mobile-emergency {
  color: #D4393C !important;
}
.mobile-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 8px 0;
}
.mobile-phone {
  font-weight: 700 !important;
  font-size: 1.375rem !important;
  color: var(--white) !important;
  border: none !important;
  padding: 20px 0 12px !important;
}
.nav-mobile-menu .btn {
  margin-top: 8px;
  text-align: center;
  padding: 16px;
  font-size: 1rem;
  border-bottom: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 32px 80px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,91,166,0.05) 0%, transparent 70%);
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  animation: fadeIn 0.8s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--purple);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.75rem, 6.5vw, 5rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 24px;
}
.hero-headline .highlight { color: var(--purple); }
.hero-sub {
  font-size: 1.1875rem;
  font-weight: 400;
  color: var(--grey);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 40px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.hero-phone {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: 0.01em;
}
.hero-phone-note {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--grey-light);
  margin-top: 4px;
}
.hero-areas {
  margin-top: 48px;
  font-size: 0.75rem;
  color: var(--grey-light);
  letter-spacing: 0.02em;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bob 2s ease-in-out infinite;
}
.hero-scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, transparent, var(--grey-pale)); }
.hero-scroll-text { font-family: var(--mono); font-size: 0.5625rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-light); }
@keyframes bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TRUST
   ============================================================ */
.trust {
  background: var(--dark);
  padding: 44px 0;
}
.trust .container {
  display: flex;
  justify-content: center;
  gap: 56px;
}
.trust-item { text-align: center; }
.trust-val { font-size: 1.625rem; font-weight: 900; color: var(--white); line-height: 1; }
.trust-val .blue { color: var(--blue); }
.trust-lbl { font-size: 0.6875rem; font-weight: 400; color: rgba(255,255,255,0.35); margin-top: 6px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 120px 32px; }
.section--dark { background: var(--dark); color: var(--white); }
.section--grey { background: var(--off-white); }
.section--purple { background: var(--purple); color: var(--white); }
.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 64px;
}
.section-eyebrow {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}
.section--dark .section-eyebrow { color: var(--blue); }
.section--purple .section-eyebrow { color: rgba(255,255,255,0.5); }
.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.65;
}
.section--dark .section-desc { color: rgba(255,255,255,0.45); }
.section--purple .section-desc { color: rgba(255,255,255,0.6); }

/* ============================================================
   PROBLEM
   ============================================================ */
.prob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.prob-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--grey-pale);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prob-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.prob-num { font-size: 3rem; font-weight: 900; color: var(--grey-pale); line-height: 1; margin-bottom: 20px; }
.prob-card h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 10px; }
.prob-card p { font-size: 0.875rem; color: var(--grey); line-height: 1.65; }

/* ============================================================
   INLINE TESTIMONIAL
   ============================================================ */
.inline-quote {
  padding: 72px 32px;
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--grey-pale);
  border-bottom: 1px solid var(--grey-pale);
}
.inline-quote--dark { background: var(--dark-deep); border: none; }
.inline-quote blockquote {
  font-size: 1.375rem;
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.6;
}
.inline-quote--dark blockquote { color: rgba(255,255,255,0.7); }
.inline-quote cite {
  font-size: 0.8125rem;
  font-weight: 700;
  font-style: normal;
  color: var(--grey);
}
.inline-quote--dark cite { color: rgba(255,255,255,0.35); }
.inline-quote .stars { color: #c9a227; font-size: 0.75rem; letter-spacing: 4px; margin-bottom: 20px; }

/* ============================================================
   CALLOUT
   ============================================================ */
.callout {
  background: var(--dark);
  padding: 100px 32px;
}
.callout-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.callout h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.callout h3 .highlight { color: var(--blue); }
.callout p { font-size: 0.9375rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 28px; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto 20px;
}
.svc-feat {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 44px 36px;
  color: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.svc-feat:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.15); }
.svc-ic {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.svc-ic--purple { background: var(--purple); color: var(--white); }
.svc-ic--blue { background: var(--blue); color: var(--white); }
.svc-ic--light { background: var(--purple-bg2); color: var(--purple); }
.svc-ic svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.svc-feat h3 { font-size: 1.1875rem; font-weight: 700; margin-bottom: 10px; }
.svc-feat p { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.65; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 0.8125rem; font-weight: 500; color: var(--blue);
  transition: gap 0.25s ease;
}
.svc-feat:hover .svc-link { gap: 10px; }

.svc-row-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto 20px;
}
.svc-row-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.svc-sm {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--grey-pale);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.svc-sm:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.05); }
.svc-sm .svc-ic { width: 40px; height: 40px; border-radius: 10px; margin-bottom: 20px; }
.svc-sm .svc-ic svg { width: 20px; height: 20px; }
.svc-sm h3 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 8px; }
.svc-sm p { font-size: 0.8125rem; color: var(--grey); line-height: 1.6; }
.svc-sm .svc-link { font-size: 0.75rem; color: var(--purple); margin-top: 14px; }
.svc-sm:hover .svc-link { gap: 10px; }

/* ============================================================
   LEAD MAGNET
   ============================================================ */
.lead-magnet {
  padding: 80px 32px;
  background: linear-gradient(135deg, var(--dark) 0%, #3a3f4c 100%);
}
.lead-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.lead-text .section-eyebrow { color: var(--blue); text-align: left; margin-bottom: 12px; }
.lead-text h3 {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.15;
}
.lead-text p { font-size: 0.9375rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
.lead-form {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.06);
}
.lead-form input, .lead-form select {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}
.lead-form input::placeholder { color: rgba(255,255,255,0.25); }
.lead-form input:focus { border-color: var(--purple); }
.lead-form .btn { width: 100%; margin-top: 4px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 72px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--dark);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-text .section-eyebrow { text-align: left; margin-bottom: 12px; }
.about-name { font-size: 2.25rem; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 20px; }
.about-lead { font-size: 1rem; color: var(--grey); line-height: 1.7; margin-bottom: 28px; }
.about-quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--dark);
  padding: 20px 0 20px 20px;
  border-left: 3px solid var(--purple);
  margin-bottom: 6px;
  line-height: 1.55;
}
.about-ref { font-size: 0.6875rem; color: var(--grey-light); padding-left: 20px; margin-bottom: 32px; }
.about-tl { border-top: 1px solid var(--grey-pale); }
.about-tl-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-pale);
  align-items: baseline;
}
.about-tl-yr { font-family: var(--mono); font-size: 0.6875rem; font-weight: 500; color: var(--purple); }
.about-tl-tx { font-size: 0.875rem; color: var(--grey); }

/* ============================================================
   WHY RZR
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease, transform 0.3s ease;
}
.why-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.why-num { font-size: 3rem; font-weight: 900; color: rgba(255,255,255,0.06); line-height: 1; margin-bottom: 16px; }
.why-card h3 { font-size: 0.9375rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 0.8125rem; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--grey-pale);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testi-card:nth-child(2) { margin-top: 24px; }
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.05); }
.testi-stars { color: #c9a227; font-size: 0.6875rem; letter-spacing: 3px; margin-bottom: 16px; }
.testi-quote { font-size: 0.9375rem; font-style: italic; color: var(--grey); line-height: 1.7; margin-bottom: 24px; }
.testi-name { font-size: 0.875rem; font-weight: 700; }
.testi-role { font-size: 0.6875rem; color: var(--grey-light); margin-top: 2px; }

/* ============================================================
   CTA
   ============================================================ */
.cta-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.cta-actions { display: flex; justify-content: center; gap: 12px; margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark-deep); padding: 56px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px 48px;
}
.footer-brand img { height: 32px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.8125rem; color: rgba(255,255,255,0.28); line-height: 1.6; max-width: 220px; }
.footer h4 {
  font-family: var(--mono);
  font-size: 0.5625rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.2); margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.8125rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.ft-c { display: flex; gap: 8px; align-items: baseline; margin-bottom: 10px; }
.ft-cl { font-family: var(--mono); font-size: 0.5625rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.15); min-width: 44px; }
.ft-cv { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }
.ft-cv a:hover { color: var(--white); }
.footer-verse {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 24px 32px; text-align: center;
}
.footer-verse p { font-size: 0.8125rem; font-style: italic; color: rgba(255,255,255,0.1); max-width: 480px; margin: 0 auto; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 16px 32px;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.6875rem; color: rgba(255,255,255,0.12); }
.footer-badges { display: flex; gap: 12px; }
.footer-badge {
  font-family: var(--mono);
  font-size: 0.5rem; font-weight: 500;
  color: rgba(255,255,255,0.12);
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
}

/* ============================================================
   HOVER & MICRO-INTERACTIONS
   ============================================================ */

/* -- Trust bar items: gentle scale -- */
.trust-item {
  transition: transform 0.3s ease;
  cursor: default;
}
.trust-item:hover {
  transform: scale(1.08);
}
.trust-val {
  transition: color 0.3s ease;
}
.trust-item:hover .trust-val {
  color: var(--blue);
}

/* -- Problem cards: border accent on hover -- */
.prob-card {
  border-bottom: 3px solid transparent;
}
.prob-card:hover {
  border-bottom-color: var(--purple);
}
.prob-card:hover .prob-num {
  color: var(--purple-soft);
  transition: color 0.3s ease;
}

/* -- Inline quotes: subtle grow -- */
.inline-quote blockquote {
  transition: transform 0.4s ease;
}
.inline-quote:hover blockquote {
  transform: scale(1.015);
}

/* -- Service cards: icon lift + glow -- */
.svc-ic {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.svc-feat:hover .svc-ic {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(122,91,166,0.3);
}
.svc-sm:hover .svc-ic {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(122,91,166,0.15);
}

/* -- Service "Learn More" arrow slide -- */
.svc-link {
  position: relative;
  overflow: hidden;
}
.svc-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.svc-feat:hover .svc-link::after,
.svc-sm:hover .svc-link::after {
  width: 100%;
}

/* -- Small service cards: top border accent -- */
.svc-sm {
  border-top: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.svc-sm:hover {
  border-top-color: var(--purple);
}

/* -- Lead magnet form inputs: glow on focus -- */
.lead-form input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(122,91,166,0.15);
}

/* -- Lead magnet button: pulse on hover -- */
.lead-form .btn:hover {
  animation: btnPulse 0.6s ease;
}
@keyframes btnPulse {
  0% { box-shadow: 0 0 0 0 rgba(122,91,166,0.4); }
  70% { box-shadow: 0 0 0 12px rgba(122,91,166,0); }
  100% { box-shadow: 0 0 0 0 rgba(122,91,166,0); }
}

/* -- About photo: subtle zoom -- */
.about-photo img {
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.about-photo:hover img {
  transform: scale(1.04);
}

/* -- About timeline rows: highlight on hover -- */
.about-tl-row {
  transition: background 0.25s ease, padding-left 0.25s ease;
  border-radius: 4px;
}
.about-tl-row:hover {
  background: var(--purple-bg);
  padding-left: 8px;
}

/* -- Why RZR cards: border glow -- */
.why-card {
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover {
  border-color: rgba(122,91,166,0.3);
  box-shadow: 0 0 24px rgba(122,91,166,0.08);
}
.why-card:hover .why-num {
  color: rgba(122,91,166,0.2);
  transition: color 0.3s ease;
}

/* -- Testimonial cards: left border accent -- */
.testi-card {
  border-left: 3px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.testi-card:hover {
  border-left-color: var(--purple);
}

/* -- Stars: shimmer on card hover -- */
.testi-card:hover .testi-stars,
.inline-quote:hover .stars {
  animation: starShimmer 0.5s ease;
}
@keyframes starShimmer {
  0% { opacity: 1; }
  30% { opacity: 0.5; }
  100% { opacity: 1; }
}

/* -- CTA buttons: all buttons get smooth lift -- */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: width 0.4s ease, height 0.4s ease, top 0.4s ease, left 0.4s ease;
  transform: translate(-50%,-50%);
}
.btn:hover::before {
  width: 300px;
  height: 300px;
}

/* -- Footer links: slide right on hover -- */
.footer-links a {
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-links a:hover {
  transform: translateX(4px);
}

/* -- Footer contact values: color shift -- */
.ft-cv a {
  transition: color 0.2s ease;
}

/* -- Footer badges: lift on hover -- */
.footer-badge {
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.footer-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.3);
}

/* -- Blog cards: image zoom on hover -- */
.blog-card-img img {
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

/* -- Phone number in hero: color pulse -- */
.hero-phone {
  transition: color 0.3s ease;
}
.hero-phone:hover {
  color: var(--purple);
}

/* -- Eyebrow text: letter-spacing expand on section entry -- */
.section-eyebrow {
  transition: letter-spacing 0.5s ease;
}
.rv.vis .section-eyebrow {
  letter-spacing: 0.12em;
}

/* ---- Scroll reveal ---- */
.rv {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.rv.vis { opacity: 1; transform: translateY(0); }
.rv-stagger > .rv:nth-child(1) { transition-delay: 0s; }
.rv-stagger > .rv:nth-child(2) { transition-delay: 0.08s; }
.rv-stagger > .rv:nth-child(3) { transition-delay: 0.16s; }
.rv-stagger > .rv:nth-child(4) { transition-delay: 0.24s; }
.rv-stagger > .rv:nth-child(5) { transition-delay: 0.32s; }

/* ============================================================
   BLOG / INNER PAGES
   ============================================================ */
.page-header {
  padding: 150px 32px 60px;
  text-align: center;
  background: var(--off-white);
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 32px 120px;
}
.page-content h2 { font-size: 1.5rem; font-weight: 900; margin: 40px 0 16px; }
.page-content h3 { font-size: 1.125rem; font-weight: 700; margin: 32px 0 12px; }
.page-content p { font-size: 1rem; color: var(--grey); line-height: 1.7; margin-bottom: 20px; }
.page-content ul, .page-content ol { margin: 0 0 20px 24px; color: var(--grey); }
.page-content li { margin-bottom: 8px; line-height: 1.6; }
.page-content img { border-radius: var(--radius-sm); margin: 24px 0; }
.page-content a { color: var(--purple); font-weight: 500; }
.page-content a:hover { text-decoration: underline; }

/* Blog listing */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px 32px 120px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-pale);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.05); }
.blog-card-img { aspect-ratio: 16/9; background: var(--grey-pale); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-date { font-family: var(--mono); font-size: 0.6875rem; color: var(--grey-light); margin-bottom: 8px; }
.blog-card-title { font-size: 1rem; font-weight: 700; line-height: 1.35; margin-bottom: 8px; }
.blog-card-title a:hover { color: var(--purple); }
.blog-card-excerpt { font-size: 0.8125rem; color: var(--grey); line-height: 1.6; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .svc-row-2 { grid-template-columns: 1fr 1fr; }
  .svc-row-3 { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lead-inner { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 80px 24px; }
  .hero { padding: 110px 24px 60px; min-height: auto; }
  .nav-center { display: none; }
  .nav-emergency { display: none; }
  .nav-divider { display: none; }
  .nav-phone { display: none; }
  .nav-right .btn--accent { display: none; }
  .nav-mobile-btn { display: block; }
  .trust .container { flex-wrap: wrap; gap: 20px 40px; justify-content: center; }
  .prob-grid { grid-template-columns: 1fr; }
  .callout-inner { grid-template-columns: 1fr; gap: 32px; }
  .svc-featured { grid-template-columns: 1fr; }
  .svc-row-2 { grid-template-columns: 1fr; }
  .svc-row-3 { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 300px; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card:nth-child(2) { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-scroll { display: none; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .footer-badges { flex-wrap: wrap; justify-content: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .page-content { padding: 40px 24px 80px; }
}
