/* =========================================================================
   MOBILE MARK NOTARY — DESIGN SYSTEM
   myflron.com  |  Last updated: 2026-05-06
   Sitewide stylesheet. Cached. Served from /assets/styles.css.
   ========================================================================= */

:root {
  --navy:       #0D1B2A;
  --navy-mid:   #162032;
  --ink:        #1C2B3A;
  --gold:       #C9933A;
  --gold-light: #E8B96A;
  --gold-pale:  #F5E9D3;
  --cream:      #FAF7F2;
  --white:      #FFFFFF;
  --gray-100:   #F3F4F6;
  --gray-200:   #E5E7EB;
  --gray-400:   #9CA3AF;
  --gray-600:   #4B5563;
  --gray-800:   #1F2937;
  --seal:       #8B1A1A;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

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

  --shadow-card: 0 2px 16px rgba(13,27,42,0.08), 0 1px 4px rgba(13,27,42,0.06);
  --shadow-lift: 0 8px 32px rgba(13,27,42,0.14), 0 2px 8px rgba(13,27,42,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* TYPOGRAPHY */
.label { font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.eyebrow { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-md); font-family: var(--font-body); font-size: 0.925rem; font-weight: 600; cursor: pointer; transition: all 0.2s ease; border: none; text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: #B8832E; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,147,58,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* NAVIGATION */
#site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(13,27,42,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(201,147,58,0.15); transition: all 0.3s ease; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 10px; line-height: 1; }
.nav-logo-img { width: 38px; height: 38px; border-radius: var(--radius-sm); background: var(--navy-mid); padding: 2px; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo .logo-mark { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--white); letter-spacing: 0.02em; }
.nav-logo .logo-sub { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { padding: 8px 14px; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.75); border-radius: var(--radius-sm); transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { margin-left: 12px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.8rem; color: var(--gold-light); letter-spacing: 0.04em; padding: 8px 14px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: transparent; border: 0; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--navy); padding: 16px 24px 24px; border-bottom: 1px solid rgba(201,147,58,0.2); z-index: 999; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 14px 0; font-size: 1rem; color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav a:last-child { border-bottom: none; }

/* BREADCRUMBS */
.breadcrumbs { background: var(--cream); padding: 16px 0; border-bottom: 1px solid rgba(13,27,42,0.06); margin-top: 72px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--gray-600); }
.breadcrumbs li { display: flex; align-items: center; gap: 8px; }
.breadcrumbs li:not(:last-child)::after { content: "/"; color: var(--gold); margin-left: 4px; }
.breadcrumbs a { color: var(--gold); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--navy); }
.breadcrumbs li[aria-current="page"] { color: var(--navy); font-weight: 500; }

/* HERO */
#hero { position: relative; min-height: 92vh; display: flex; align-items: center; background: var(--navy); overflow: hidden; padding-top: 72px; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 65% 40%, rgba(201,147,58,0.06) 0%, transparent 70%), radial-gradient(ellipse 50% 80% at 10% 80%, rgba(201,147,58,0.04) 0%, transparent 60%), linear-gradient(165deg, #0D1B2A 0%, #162032 50%, #0D1B2A 100%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,147,58,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201,147,58,0.03) 1px, transparent 1px); background-size: 60px 60px; }
.hero-mascot { position: absolute; right: 4%; top: 50%; transform: translateY(-50%); width: 360px; height: 360px; opacity: 0.92; pointer-events: none; filter: drop-shadow(0 12px 40px rgba(0,0,0,0.5)); }
.hero-content { position: relative; z-index: 1; max-width: 720px; padding: 80px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,147,58,0.12); border: 1px solid rgba(201,147,58,0.25); border-radius: 100px; padding: 6px 16px 6px 10px; margin-bottom: 28px; }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.85); } }
.hero-badge span { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); }
.hero-content h1 { font-family: var(--font-display); font-size: clamp(2.6rem, 5.5vw, 4.8rem); font-weight: 600; line-height: 1.04; color: var(--white); letter-spacing: -0.02em; margin-bottom: 12px; }
.hero-content h1 em { font-style: italic; color: var(--gold-light); }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.72); max-width: 560px; margin-bottom: 24px; line-height: 1.65; }

/* HERO ANSWER BLOCK — snippet target */
.hero-answer { background: rgba(255,255,255,0.04); border-left: 3px solid var(--gold); padding: 18px 22px; margin: 0 0 32px; max-width: 600px; border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.hero-answer p { font-size: 0.95rem; color: rgba(255,255,255,0.85); line-height: 1.65; margin: 0; }
.hero-answer p strong { color: var(--gold-light); font-weight: 600; }

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-icon { width: 32px; height: 32px; border-radius: 50%; background: rgba(201,147,58,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 14px; height: 14px; }
.trust-item span { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.3; }
.trust-item strong { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.85); font-weight: 500; }

/* PAGE HEADERS (non-homepage) */
.page-hero { background: var(--navy); color: var(--white); padding: 56px 0 48px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 40% at 80% 20%, rgba(201,147,58,0.08) 0%, transparent 70%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 600; line-height: 1.1; margin-bottom: 16px; max-width: 820px; }
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero .lede { font-size: 1.1rem; color: rgba(255,255,255,0.72); max-width: 720px; line-height: 1.6; margin-bottom: 24px; }
.page-hero .meta { display: flex; gap: 24px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 0.75rem; color: var(--gold-light); letter-spacing: 0.06em; text-transform: uppercase; }

/* SNIPPET ANSWER BLOCK (in-page) — high visibility callouts engineered for FS capture */
.snippet-answer { background: var(--cream); border-left: 4px solid var(--gold); padding: 24px 28px; margin: 0 0 32px; border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.snippet-answer .snippet-label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.snippet-answer p { font-size: 1rem; color: var(--navy); line-height: 1.7; margin: 0; }

/* SCROLL HINT */
.scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.3); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--font-mono); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* TRUST BAR */
#trust-bar { background: var(--gold); padding: 14px 0; overflow: hidden; }
.trust-ticker { display: flex; gap: 48px; animation: ticker 40s linear infinite; width: max-content; }
.trust-ticker-item { display: flex; align-items: center; gap: 10px; white-space: nowrap; font-size: 0.78rem; font-weight: 600; color: var(--white); letter-spacing: 0.04em; text-transform: uppercase; }
.trust-ticker-item::before { content: "◆"; font-size: 0.5rem; opacity: 0.6; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* GLANCE BAR — 5-up snippet-format facts */
.glance-bar { background: var(--white); padding: 32px 0; border-bottom: 1px solid var(--gray-200); }
.glance-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.glance-item { text-align: center; padding: 16px 12px; }
.glance-item .num { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--navy); line-height: 1.1; display: block; }
.glance-item .num em { font-style: normal; color: var(--gold); }
.glance-item .lab { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-600); margin-top: 6px; display: block; }
@media (max-width: 768px) { .glance-grid { grid-template-columns: repeat(2, 1fr); } }

/* SECTION COMMON */
section.std { padding: 96px 0; }
section.std-tight { padding: 72px 0; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-header.left { text-align: left; margin-left: 0; }
.section-header .label { margin-bottom: 12px; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--gray-600); line-height: 1.7; }

.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.72); }
.bg-navy .label { color: var(--gold-light); }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow-card); border: 1px solid transparent; transition: all 0.3s ease; position: relative; overflow: hidden; }
.service-card::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transition: transform 0.3s ease; }
.service-card:hover { box-shadow: var(--shadow-lift); border-color: rgba(201,147,58,0.12); transform: translateY(-3px); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { width: 52px; height: 52px; background: var(--gold-pale); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-icon svg { width: 24px; height: 24px; color: var(--gold); }
.service-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.925rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 20px; }
.service-link { font-size: 0.875rem; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; }
.service-link::after { content: "→"; transition: transform 0.2s; }
.service-card:hover .service-link::after { transform: translateX(4px); }

/* HOW IT WORKS — ordered steps, snippet-engineered */
.how-it-works { background: var(--cream); }
.steps-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; position: relative; counter-reset: stepcount; }
.steps-grid::before { content: ""; position: absolute; top: 28px; left: 5%; right: 5%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); z-index: 0; }
.step-card { background: var(--white); border-radius: var(--radius-md); padding: 24px 16px; text-align: center; position: relative; z-index: 1; border: 1px solid var(--gray-200); }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--gold); color: var(--white); font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.step-card strong { font-size: 0.85rem; color: var(--navy); display: block; margin-bottom: 4px; font-weight: 600; }
.step-card span { font-size: 0.78rem; color: var(--gray-600); line-height: 1.5; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } .steps-grid::before { display: none; } }
@media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } }

/* WHY US */
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-content h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; color: var(--navy); line-height: 1.15; margin-bottom: 20px; }
.why-content > p { font-size: 1.02rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 32px; }
.why-list { display: flex; flex-direction: column; gap: 16px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-check { width: 22px; height: 22px; border-radius: 50%; background: var(--gold-pale); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.why-check svg { width: 12px; height: 12px; }
.why-item strong { display: block; font-size: 0.95rem; color: var(--navy); font-weight: 600; margin-bottom: 2px; }
.why-item span { font-size: 0.875rem; color: var(--gray-600); line-height: 1.55; }
.why-stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.why-stat-card { background: var(--cream); border-radius: var(--radius-md); padding: 28px 20px; border: 1px solid rgba(201,147,58,0.15); }
.why-stat-card .num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.why-stat-card .num em { font-style: normal; color: var(--gold); }
.why-stat-card .desc { font-size: 0.82rem; color: var(--gray-600); line-height: 1.5; }
@media (max-width: 1024px) { .why-layout { grid-template-columns: 1fr; gap: 48px; } }

/* AREAS */
.areas-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.areas-content h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
.areas-content > p { font-size: 1.02rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 28px; }
.county-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 28px; }
.county-grid a { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: var(--cream); border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--navy); font-weight: 500; transition: all 0.2s; border: 1px solid transparent; }
.county-grid a:hover { background: var(--white); border-color: var(--gold); transform: translateX(2px); }
.county-grid a::before { content: "▸"; color: var(--gold); font-size: 0.75rem; }
.areas-image { background: var(--navy); border-radius: var(--radius-lg); padding: 48px 40px; color: var(--white); position: relative; overflow: hidden; min-height: 380px; display: flex; flex-direction: column; justify-content: space-between; }
.areas-image::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at top right, rgba(201,147,58,0.15), transparent 70%); }
.areas-image > * { position: relative; z-index: 1; }
.areas-image .label { color: var(--gold-light); margin-bottom: 12px; }
.areas-image h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; line-height: 1.2; margin-bottom: 16px; }
.areas-image p { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.65; }
@media (max-width: 1024px) { .areas-layout { grid-template-columns: 1fr; gap: 40px; } }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: 380px 1fr; gap: 64px; align-items: start; }
.faq-intro h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 600; color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
.faq-intro p { font-size: 1rem; color: var(--gray-600); line-height: 1.7; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; transition: all 0.2s; }
.faq-item:hover { border-color: var(--gold); }
.faq-question { width: 100%; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--navy); background: transparent; border: none; cursor: pointer; text-align: left; }
.faq-chevron { width: 18px; height: 18px; transition: transform 0.3s; flex-shrink: 0; color: var(--gold); }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-question[aria-expanded="true"] + .faq-answer { max-height: 1000px; }
.faq-answer p { padding: 0 24px 24px; font-size: 0.94rem; color: var(--gray-600); line-height: 1.7; }
@media (max-width: 1024px) { .faq-layout { grid-template-columns: 1fr; gap: 40px; } }

/* PROSE — for guides and long content */
.prose { max-width: 760px; margin: 0 auto; font-size: 1.04rem; line-height: 1.8; color: var(--ink); }
.prose h2 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: var(--navy); margin: 56px 0 16px; line-height: 1.25; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--navy); margin: 36px 0 12px; }
.prose h4 { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin: 24px 0 8px; }
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 24px 24px; }
.prose ul li, .prose ol li { margin-bottom: 10px; padding-left: 6px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose strong { color: var(--navy); font-weight: 600; }
.prose a { color: var(--gold); border-bottom: 1px solid rgba(201,147,58,0.3); transition: border-color 0.2s; }
.prose a:hover { border-bottom-color: var(--gold); }
.prose blockquote { border-left: 3px solid var(--gold); padding: 8px 24px; margin: 24px 0; font-style: italic; color: var(--gray-600); }
.prose table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 0.95rem; }
.prose table thead { background: var(--navy); color: var(--white); }
.prose table th { padding: 14px 16px; text-align: left; font-weight: 600; font-size: 0.88rem; }
.prose table td { padding: 14px 16px; border-bottom: 1px solid var(--gray-200); }
.prose table tr:nth-child(even) td { background: var(--cream); }
.prose .citation { font-family: var(--font-mono); font-size: 0.78rem; color: var(--gray-600); padding: 12px 16px; background: var(--gray-100); border-radius: var(--radius-sm); margin: 16px 0; border-left: 3px solid var(--gold); }
.prose .related-block { margin: 56px 0 0; padding: 28px; background: var(--cream); border-radius: var(--radius-md); border: 1px solid var(--gray-200); }
.prose .related-block .label { margin-bottom: 14px; }
.prose .related-block ul { list-style: none; margin: 0; }
.prose .related-block ul li { margin-bottom: 8px; padding-left: 0; }
.prose .related-block ul li::before { content: "→ "; color: var(--gold); font-weight: 600; }
.prose .author-bio { display: flex; gap: 18px; align-items: flex-start; margin: 56px 0 0; padding: 24px; background: var(--navy); color: var(--white); border-radius: var(--radius-md); }
.prose .author-bio img { width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0; }
.prose .author-bio p { color: rgba(255,255,255,0.8); margin-bottom: 8px; font-size: 0.92rem; }
.prose .author-bio strong { color: var(--gold-light); display: block; margin-bottom: 4px; }

/* CTA */
#cta { background: var(--navy); color: var(--white); padding: 96px 0; position: relative; overflow: hidden; text-align: center; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(201,147,58,0.1) 0%, transparent 70%); }
.cta-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-content .label { color: var(--gold-light); margin-bottom: 16px; }
.cta-content h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.cta-content p { font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.65; margin-bottom: 36px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta-divider { font-size: 0.85rem; color: rgba(255,255,255,0.4); font-family: var(--font-mono); }

/* REVIEW SECTION */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; max-width: 1080px; margin: 0 auto; }
.review-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 28px 24px; }
.review-stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 14px; letter-spacing: 0.08em; }
.review-text { font-size: 0.94rem; color: var(--gray-800); line-height: 1.7; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--gold-pale); color: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.85rem; }
.review-author-info strong { display: block; font-size: 0.85rem; color: var(--navy); font-weight: 600; }
.review-author-info span { font-size: 0.76rem; color: var(--gray-600); font-family: var(--font-mono); }

/* MEET MARK / AUTHORITY */
.meet-mark { background: var(--cream); padding: 88px 0; }
.meet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1080px; margin: 0 auto; }
.meet-image { background: var(--navy); border-radius: var(--radius-lg); padding: 48px; display: flex; align-items: center; justify-content: center; min-height: 380px; }
.meet-image img { max-width: 280px; height: auto; }
.meet-content h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
.meet-content > p { font-size: 1rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 18px; }
.meet-creds { display: flex; flex-direction: column; gap: 8px; margin-top: 24px; padding: 18px 20px; background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--gray-200); font-family: var(--font-mono); font-size: 0.78rem; }
.meet-creds div { display: flex; justify-content: space-between; gap: 12px; padding: 4px 0; }
.meet-creds div span:first-child { color: var(--gray-600); letter-spacing: 0.06em; text-transform: uppercase; }
.meet-creds div span:last-child { color: var(--navy); font-weight: 500; }
@media (max-width: 1024px) { .meet-grid { grid-template-columns: 1fr; gap: 40px; } .meet-image { min-height: 300px; } }

/* PRICING TABLE */
.pricing-table { width: 100%; border-collapse: collapse; margin: 32px 0; background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.pricing-table thead { background: var(--navy); color: var(--white); }
.pricing-table th { padding: 16px 20px; text-align: left; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em; }
.pricing-table td { padding: 16px 20px; border-bottom: 1px solid var(--gray-200); font-size: 0.94rem; color: var(--gray-800); }
.pricing-table td:first-child { font-weight: 600; color: var(--navy); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: var(--cream); }

/* SERVICE AREA / CITY PAGES */
.area-grid-large { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin: 32px 0; }
.area-card-large { display: block; padding: 22px 24px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); transition: all 0.2s; text-decoration: none; }
.area-card-large:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.area-card-large strong { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--navy); margin-bottom: 4px; font-weight: 600; }
.area-card-large span { font-size: 0.82rem; color: var(--gray-600); }

/* FOOTER */
#site-footer { background: var(--navy); color: var(--white); padding: 80px 0 24px; position: relative; }
#site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 24px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand-row { display: flex; align-items: center; gap: 12px; }
.footer-brand-img { width: 56px; height: 56px; border-radius: var(--radius-sm); background: var(--navy-mid); padding: 4px; }
.footer-brand-text .footer-brand-name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 2px; line-height: 1; display: block; }
.footer-brand-text .footer-brand-domain { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.footer-tagline { font-size: 0.92rem; color: rgba(255,255,255,0.55); max-width: 320px; line-height: 1.65; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; font-weight: 500; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-license { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-md); padding: 16px 20px; margin-top: 16px; }
.footer-license p { font-family: var(--font-mono); font-size: 0.72rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-license strong { color: rgba(255,255,255,0.7); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* FLOATING / STICKY MOBILE CTA */
.float-call { position: fixed; bottom: 24px; right: 24px; background: var(--gold); color: var(--white); border-radius: 100px; padding: 14px 22px; font-size: 0.875rem; font-weight: 600; box-shadow: 0 4px 20px rgba(201,147,58,0.5); display: flex; align-items: center; gap: 8px; z-index: 900; transition: all 0.2s; text-decoration: none; }
.float-call:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(201,147,58,0.6); }
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy); border-top: 2px solid var(--gold); z-index: 950; padding: 8px; gap: 6px; }
.mobile-cta-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 14px 12px; font-size: 0.92rem; font-weight: 600; border-radius: var(--radius-sm); text-decoration: none; }
.mobile-cta-bar .cta-call { background: var(--gold); color: var(--white); }
.mobile-cta-bar .cta-book { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }

/* DISCLAIMER */
.disclaimer-bar { background: #F0F0EE; border-top: 3px solid var(--gold); padding: 16px 0; }
.disclaimer-bar p { font-size: 0.72rem; color: var(--gray-600); line-height: 1.5; text-align: center; max-width: 880px; margin: 0 auto; }

/* RESPONSIVE */
@media (max-width: 1024px) { .why-layout { grid-template-columns: 1fr; gap: 48px; } .faq-layout { grid-template-columns: 1fr; gap: 40px; } .areas-layout { grid-template-columns: 1fr; gap: 40px; } .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } .hero-mascot { width: 240px; height: 240px; opacity: 0.45; right: -20px; } }
@media (max-width: 768px) { .nav-links, .nav-cta, .nav-phone { display: none; } .hamburger { display: flex; } .steps-grid { grid-template-columns: repeat(2, 1fr); } .steps-grid::before { display: none; } .services-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; } .why-stat-cards { grid-template-columns: 1fr 1fr; } .county-grid { grid-template-columns: 1fr; } .hero-mascot { display: none; } .mobile-cta-bar { display: flex; } body { padding-bottom: 64px; } .float-call { display: none; } }
@media (max-width: 480px) { .hero-actions { flex-direction: column; align-items: stretch; } .hero-actions .btn { justify-content: center; } .cta-actions { flex-direction: column; align-items: stretch; } .cta-actions .btn { justify-content: center; } .steps-grid { grid-template-columns: 1fr; } }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; animation: fadeUp 0.6s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.25s; }
.fade-up-3 { animation-delay: 0.4s; }
.fade-up-4 { animation-delay: 0.55s; }
.fade-up-5 { animation-delay: 0.7s; }

/* PRINT */
@media print { #site-header, #trust-bar, .float-call, .mobile-cta-bar, #cta, #site-footer { display: none; } body { color: #000; } }
