/* ════════════════════════════════════════════════════════
   PHOTO POSSIBLE — MASTER STYLESHEET
   All pages reference this single file + cookie-consent.css
   
   Organization:
   1. Reset & Variables
   2. Typography & Base
   3. Layout
   4. Navigation
   5. Shared Components (labels, titles, buttons)
   6. Homepage Hero
   7. How It Works
   8. Services Grid
   9. Problems / Audiences
   10. Trust & Certification
   11. Pricing Cards
   12. Consultation CTA + Form
   13. CTA Band (inline dark band)
   14. Inner Page Hero
   15. Inner Page Content Sections
   16. Feature Lists
   17. Process Steps (divorce)
   18. Audience Cards (divorce)
   19. About Page
   20. Home Movie Digitization Page
   21. Business/Org Preservation Page
   22. Privacy Policy Page
   23. Cross-Links
   24. Footer
   25. Responsive Breakpoints
   26. Animations
════════════════════════════════════════════════════════ */

/* --- 1. RESET & VARIABLES --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cream:       #FAF7F2;
  --warm:        #F2EDE4;
  --sand:        #E8DFD0;
  --brown:       #8C6B4A;
  --dark:        #2C2218;
  --green:       #4A7C59;
  --green-light: #6B9E78;
  --green-dark:  #3A6347;
  --gold:        #C4873A;
  --gold-dark:   #a86e28;
  --muted:       #7A6B5A;
  --white:       #FFFFFF;
  --radius:      12px;
  --radius-lg:   20px;
}
html { scroll-behavior: smooth; }

/* --- 2. TYPOGRAPHY & BASE --- */
body {
  font-family: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.65;
  font-size: 20px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { font-family: 'Lora', Georgia, serif; line-height: 1.25; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* --- 3. LAYOUT --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* --- 4. NAVIGATION --- */
.site-nav { background: var(--white); border-bottom: 1px solid var(--sand); padding: 0 24px; position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { font-family: 'Lora', serif; font-size: 1.35rem; font-weight: 600; color: var(--dark); text-decoration: none; display: flex; align-items: center; gap: 10px; white-space: nowrap; flex-shrink: 0; }
.nav-logo:hover { text-decoration: none; }
.nav-logo .logo-img { height: 36px; width: auto; display: block; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin-left: 32px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--dark); text-decoration: none; letter-spacing: 0.01em; transition: color 0.2s; position: relative; white-space: nowrap; }
.nav-links a:not(.nav-cta)::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background: var(--green); transition: width 0.25s ease; border-radius: 1px; }
.nav-links a:hover { color: var(--green); text-decoration: none; }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-phone { font-size: 0.92rem; font-weight: 600; color: var(--dark); text-decoration: none; white-space: nowrap; flex-shrink: 0; }
.nav-phone:hover { color: var(--green); text-decoration: none; }
.nav-phone iconify-icon { vertical-align: -0.15em; margin-right: 4px; }
.nav-links .nav-cta { background: var(--green); color: var(--white) !important; padding: 9px 20px; border-radius: 8px; font-size: 0.92rem; font-weight: 600; transition: all 0.25s ease; white-space: nowrap; flex-shrink: 0; box-shadow: 0 2px 6px rgba(74,124,89,0.2); }
.nav-links .nav-cta:hover { background: var(--green-dark); color: white !important; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(74,124,89,0.3); text-decoration: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); margin: 5px 0; transition: 0.3s; }
/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.dropdown-arrow { font-size: 0.7em; margin-left: 2px; }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius); padding: 8px 0; min-width: 210px; z-index: 1000; list-style: none; box-shadow: 0 8px 24px rgba(44,34,24,0.1); }
.nav-dropdown-menu li a { display: block; padding: 10px 20px; white-space: nowrap; color: var(--dark); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: background 0.2s, color 0.2s; }
.nav-dropdown-menu li a:hover { background: var(--warm); color: var(--green); text-decoration: none; }
.nav-dropdown-menu li a::after { display: none; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
/* Iconify icon defaults */
iconify-icon { display: inline-flex; vertical-align: middle; }
.nav-icon { font-size: 1rem; }
.footer-social iconify-icon { font-size: 1.05rem; }
.footer-contact-icon iconify-icon { font-size: 1rem; }
.cert-icon iconify-icon { font-size: 1.5rem; }
.hero-badge-icon iconify-icon { font-size: 1.1rem; }
.service-icon iconify-icon { font-size: 1.6rem; }
.card-icon iconify-icon { font-size: 2rem; }
.problem-card .emoji iconify-icon { font-size: 2rem; }
.cross-link iconify-icon { font-size: 1.1rem; margin-right: 2px; }
.format-card .icon iconify-icon { font-size: 1.8rem; }

/* --- 5. SHARED COMPONENTS --- */
.section-label { font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); font-weight: 600; margin-bottom: 12px; display: block; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--dark); margin-bottom: 12px; }
.section-sub { font-size: 1.05rem; color: var(--muted); max-width: 540px; margin: 0 auto; line-height: 1.7; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-family: 'Source Sans 3', sans-serif; font-size: 0.95rem; font-weight: 600; text-decoration: none; transition: all 0.25s ease; cursor: pointer; border: none; }
.btn-primary { background: var(--green); color: white; box-shadow: 0 2px 6px rgba(74,124,89,0.2); }
.btn-primary:hover { background: var(--green-dark); text-decoration: none; color: white; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(74,124,89,0.3); }
.btn-outline { background: transparent; border: 1.5px solid var(--sand); color: var(--dark); }
.btn-outline:hover { border-color: var(--green); color: var(--green); text-decoration: none; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(74,124,89,0.1); }
.btn-gold { background: var(--gold); color: white; box-shadow: 0 2px 6px rgba(196,135,58,0.2); }
.btn-gold:hover { background: var(--gold-dark); text-decoration: none; color: white; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(196,135,58,0.3); }

/* --- 6. HOMEPAGE HERO --- */
.hero { padding: 100px 24px 90px; background: linear-gradient(170deg, var(--white) 0%, var(--cream) 40%, var(--warm) 100%); position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; top: -120px; right: -120px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(74,124,89,0.08) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-label { font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); font-weight: 600; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.hero-label::after { content: ''; width: 32px; height: 1.5px; background: var(--green); opacity: 0.5; }
.hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); color: var(--dark); margin-bottom: 20px; font-weight: 600; }
.hero h1 em { color: var(--green); font-style: italic; font-weight: 500; }
.hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 480px; line-height: 1.75; margin-bottom: 32px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image { position: relative; }
.hero-image-frame { background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 16px; box-shadow: 0 24px 60px rgba(44,34,24,0.08); transform: rotate(1.5deg); }
.hero-image-inner { background: var(--warm); border-radius: var(--radius); height: 380px; display: flex; align-items: center; justify-content: center; font-size: 4rem; color: var(--sand); }
img.hero-image-inner { display: block; width: 100%; object-fit: cover; }
.hero-badge { position: absolute; bottom: -16px; left: -16px; background: var(--white); border: 1.5px solid var(--sand); border-radius: var(--radius); padding: 8px; box-shadow: 0 8px 24px rgba(44,34,24,0.08); transform: rotate(-2deg); }
.hero-badge-img { display: block; width: 80px; height: auto; }

/* --- 7. HOW IT WORKS --- */
.how-section { padding: 60px 24px; background: var(--white); border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand); }
.how-header { text-align: center; margin-bottom: 56px; }
.how-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.how-step { text-align: center; padding: 0 0 32px; position: relative; background: var(--warm); border-radius: var(--radius-lg); }
.how-step-img-wrap { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.how-step-img-wrap::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 28%; background: linear-gradient(to bottom, transparent, var(--warm)); pointer-events: none; z-index: 1; }
.how-step-img { width: 100%; height: 240px; object-fit: cover; display: block; border: none; }
.how-num { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--green), var(--green-light)); color: white; font-family: 'Lora', serif; font-size: 1.25rem; font-weight: 600; display: flex; align-items: center; justify-content: center; margin: -16px auto 10px; position: relative; z-index: 2; box-shadow: 0 2px 8px rgba(74, 124, 89, 0.25); }
.how-step h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--dark); padding: 0 24px; }
.how-step p { font-size: 0.95rem; color: var(--muted); line-height: 1.6; padding: 0 24px; }
.how-step:not(:last-child)::after { content: ''; position: absolute; top: 145px; right: -22px; width: 14px; height: 14px; border-top: 3px solid var(--green); border-right: 3px solid var(--green); transform: rotate(45deg); z-index: 3; }

/* --- 8. SERVICES GRID --- */
.services-section { padding: 70px 24px; background: var(--cream); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: var(--white); border: 1.5px solid var(--sand); border-radius: 16px; padding: 36px 28px; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(44,34,24,0.08); border-color: var(--green); }
.service-icon { width: 52px; height: 52px; background: var(--cream); border: 1.5px solid var(--sand); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--dark); display: flex; align-items: center; gap: 8px; }
.service-card h3 iconify-icon { font-size: 1.4rem; color: var(--green); flex-shrink: 0; }
.service-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.service-features { list-style: none; margin-bottom: 24px; }
.service-features li { font-size: 0.92rem; color: var(--dark); padding: 5px 0; display: flex; align-items: flex-start; gap: 9px; line-height: 1.45; }
.service-features li::before { content: '\2713'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.service-card .btn { width: 100%; justify-content: center; padding: 12px 20px; font-size: 0.92rem; margin-top: auto; }

/* --- 9. PROBLEMS / AUDIENCES --- */
.problems-section { padding: 60px 24px; background: var(--white); border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand); }
.problems-header { text-align: center; margin-bottom: 48px; }
.problems-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.problem-card { background: var(--warm); border-radius: var(--radius-lg); padding: 0 0 32px; text-align: center; }
.problem-img-wrap { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.problem-img-wrap::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 28%; background: linear-gradient(to bottom, transparent, var(--warm)); pointer-events: none; z-index: 1; }
.problem-img { width: 100%; height: 240px; object-fit: cover; display: block; }
.problem-badge { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--green), var(--green-light)); color: white; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; margin: -16px auto 10px; position: relative; z-index: 2; box-shadow: 0 2px 8px rgba(74, 124, 89, 0.25); }
.problem-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--dark); font-weight: 600; padding: 0 24px; }
.problem-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.6; padding: 0 24px; }

/* --- 10. TRUST & CERTIFICATION --- */
.trust-section { padding: 50px 24px; background: var(--cream); }
.trust-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.trust-badge-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 28px; }
.cert-badge { display: flex; align-items: center; gap: 20px; background: var(--white); border: 2px solid var(--sand); border-radius: var(--radius); padding: 20px 24px; max-width: 480px; width: 100%; transition: all 0.25s ease; box-shadow: 0 1px 4px rgba(44,34,24,0.04); }
.cert-badge:hover { border-color: var(--green); box-shadow: 0 4px 20px rgba(74,124,89,0.12); text-decoration: none; transform: translateY(-2px); }
.cert-badge.cert-badge-headshot { border-radius: var(--radius-lg); width: 220px; height: 260px; padding: 0; overflow: hidden; }
.cert-badge-headshot img { width: 100%; height: 100%; object-fit: cover; }
.cert-icon { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--green-dark)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.3rem; color: white; }
.cert-icon.cert-icon-img { width: 88px; height: 88px; border-radius: 0; background: none; }
.cert-icon-img img { width: 100%; height: 100%; object-fit: contain; }
.cert-text strong { display: block; font-family: 'Lora', serif; font-size: 1.35rem; font-weight: 600; color: var(--dark); margin-bottom: 2px; line-height: 1.35; }
.cert-text span { font-size: 0.88rem; color: var(--muted); }
.cert-text a { font-size: 0.85rem; color: var(--green); }
.trust-profile { display: flex; gap: 20px; align-items: stretch; }
.trust-tags { display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.trust-tag { display: flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius); padding: 8px 14px; font-size: 0.85rem; color: var(--dark); font-weight: 500; white-space: nowrap; }
.trust-tag iconify-icon { color: var(--green); font-size: 1.1rem; flex-shrink: 0; }
.trust-content .section-sub { margin: 0 0 20px 0; max-width: 100%; }
.trust-quote { background: var(--white); border-left: 3px solid var(--green); border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 22px; font-size: 0.95rem; font-style: italic; color: var(--muted); line-height: 1.6; }
.trust-quote cite { display: block; font-style: normal; font-weight: 600; font-size: 0.85rem; color: var(--brown); margin-top: 8px; }

/* --- 11. MORE SERVICES (secondary service cards with illustrations) --- */
.more-services { background: var(--white); border-top: 1px solid var(--sand); }
.more-services .service-card.has-illustration { background: none; border: none; box-shadow: none; padding: 0; text-align: center; }
.more-services .service-card.has-illustration:hover { transform: none; box-shadow: none; border-color: transparent; }
.more-services .service-card.has-illustration h3 { padding: 0; justify-content: center; }
.more-services .service-card.has-illustration p { padding: 0; flex-grow: 1; }
.more-services .service-card.has-illustration .btn { margin-top: auto; align-self: center; width: auto; padding: 10px 28px; }
.service-img-wrap { margin: 0 auto; }
.service-img { width: 200px; height: 200px; object-fit: contain; display: block; margin: 0 auto; }
.service-icon-placeholder { width: 200px; height: 200px; display: flex; align-items: center; justify-content: center; margin: 0 auto; font-size: 5rem; color: var(--green); opacity: 0.3; }
.service-badge { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--green), var(--green-light)); color: white; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; margin: 4px auto 10px; box-shadow: 0 2px 8px rgba(74, 124, 89, 0.25); }

/* --- 12. CONSULTATION CTA + FORM --- */
.consult-section { padding: 70px 24px; background: var(--dark); position: relative; overflow: hidden; }
.consult-section::before { content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(74,124,89,0.2) 0%, transparent 70%); pointer-events: none; }
.consult-section::after { content: ''; position: absolute; bottom: -60px; left: -60px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(196,135,58,0.12) 0%, transparent 70%); pointer-events: none; }
.consult-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; position: relative; z-index: 1; }
.consult-label { font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-light); font-weight: 600; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.consult-label::after { content: ''; width: 28px; height: 1px; background: var(--green-light); opacity: 0.6; }
.consult-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--cream); margin-bottom: 20px; }
.consult-title em { color: var(--green-light); font-style: italic; }
.consult-body { color: rgba(250,247,242,0.65); font-size: 1rem; max-width: 520px; line-height: 1.7; margin-bottom: 28px; }
.consult-perks { display: flex; gap: 20px; flex-wrap: wrap; }
.consult-perk { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: rgba(250,247,242,0.7); }
.consult-perk .icon { color: var(--green-light); font-weight: 700; }
.btn-consult { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; padding: 14px 28px; background: var(--white); color: var(--dark); border-radius: 10px; font-family: 'Source Sans 3', sans-serif; font-size: 0.95rem; font-weight: 600; text-decoration: none; transition: all 0.25s ease; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.btn-consult:hover { background: var(--green); color: white; text-decoration: none; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,0.15); }
.btn-consult iconify-icon { font-size: 1.15rem; }
.consult-form-box { background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px; width: 400px; flex-shrink: 0; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.dubsado-form-embed { margin: 0 -16px; }
.dubsado-form-embed iframe { border: none; width: 100%; min-height: 550px; overflow: hidden; }
.form-title { font-family: 'Lora', serif; font-size: 1.25rem; color: var(--dark); margin-bottom: 6px; }
.form-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 20px; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--dark); margin-bottom: 5px; letter-spacing: 0.02em; }
.form-field input, .form-field select { width: 100%; padding: 10px 14px; border: 1.5px solid var(--sand); border-radius: 8px; font-family: 'Source Sans 3', sans-serif; font-size: 0.88rem; color: var(--dark); background: var(--cream); outline: none; transition: border-color 0.2s; -webkit-appearance: none; appearance: none; }
.form-field input:focus, .form-field select:focus { border-color: var(--green); }
.form-optional { font-weight: 400; color: var(--muted); font-size: 0.75rem; }
.form-submit { width: 100%; padding: 14px; background: var(--green); color: white; border: none; border-radius: 8px; font-family: 'Source Sans 3', sans-serif; font-size: 0.92rem; font-weight: 600; cursor: pointer; margin-top: 6px; transition: all 0.25s ease; box-shadow: 0 2px 6px rgba(74,124,89,0.2); }
.form-submit:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(74,124,89,0.3); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-fine { text-align: center; font-size: 0.8rem; color: var(--muted); margin-top: 10px; }
.form-success { text-align: center; padding: 24px 0 8px; }
.form-success-title { font-family: 'Lora', serif; font-size: 1.15rem; font-weight: 600; color: var(--dark); margin-top: 8px; }
.form-success-sub { font-size: 0.88rem; color: var(--muted); margin-top: 4px; }
.form-error { background: #fef2f2; border: 1px solid #fecaca; border-radius: 8px; padding: 12px 16px; margin-top: 12px; }
.form-error-text { font-size: 0.85rem; color: #991b1b; }

/* Lead capture form */
.form-field textarea { width: 100%; padding: 10px 14px; border: 1.5px solid var(--sand); border-radius: 8px; font-family: 'Source Sans 3', sans-serif; font-size: 0.88rem; color: var(--dark); background: var(--cream); outline: none; transition: border-color 0.2s; resize: vertical; min-height: 72px; }
.form-field textarea:focus { border-color: var(--green); }
.form-divider { height: 1px; background: var(--sand); margin: 18px 0; }
.form-alt-label { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); text-align: center; margin-bottom: 10px; }
.form-direct { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.form-direct a { font-size: 0.9rem; color: var(--muted); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.form-direct a:hover { color: var(--green); text-decoration: none; }
.form-direct iconify-icon { font-size: 0.95rem; }
.form-hp { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; pointer-events: none; }
/* Dubsado scheduler (on schedule.html) */

/* Schedule consultation page */
.schedule-hero { padding-bottom: 48px; }
.schedule-perks { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 8px; }
.schedule-perk { display: flex; align-items: center; gap: 6px; font-size: 0.88rem; color: var(--muted); font-weight: 500; }
.schedule-perk iconify-icon { font-size: 1.1rem; color: var(--green); }
.schedule-section { padding: 0 24px 80px; background: var(--cream); }
.schedule-embed { max-width: 820px; margin: 0 auto; background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 32px rgba(44,34,24,0.06); }
.schedule-embed iframe { display: block; border: none; width: 100%; min-height: 600px; }
.schedule-alt { max-width: 820px; margin: 28px auto 0; text-align: center; font-size: 0.92rem; color: var(--muted); }
.schedule-alt a { color: var(--green); font-weight: 600; }

/* --- 13. CTA BAND --- */
.cta-band { padding: 56px 24px; background: var(--dark); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 500px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(74,124,89,0.15) 0%, transparent 70%); pointer-events: none; }
.cta-band h2 { color: var(--cream); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 8px; position: relative; z-index: 1; }
.cta-band h2 em { color: var(--green-light); font-style: italic; }
.cta-band p { color: rgba(250,247,242,0.6); font-size: 1rem; margin-bottom: 24px; position: relative; z-index: 1; }
.cta-band .btn { position: relative; z-index: 1; }

/* --- 14. INNER PAGE HERO --- */
.page-hero { padding: 72px 24px 64px; background: linear-gradient(170deg, var(--white) 0%, var(--cream) 50%, var(--warm) 100%); text-align: center; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(74,124,89,0.07) 0%, transparent 70%); pointer-events: none; }
.page-hero .section-label { margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--dark); margin-bottom: 18px; max-width: 700px; margin-left: auto; margin-right: auto; }
.page-hero h1 em { color: var(--green); font-style: italic; font-weight: 500; }
.page-hero p { font-size: 1.08rem; color: var(--muted); max-width: 560px; margin: 0 auto 28px; line-height: 1.7; }
.page-hero .hero-sub { font-family: 'Lora', Georgia, serif; font-size: clamp(1.3rem, 2.5vw, 1.6rem); color: var(--dark); margin-bottom: 18px; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.35; }
.page-hero .hero-sub em { color: var(--green); font-style: italic; }

/* --- 15. INNER PAGE CONTENT SECTIONS --- */
.content-section { padding: 36px 24px; }
.content-section h2 { margin-bottom: 20px; }
.content-section.alt { background: var(--white); border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand); }
.content-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.content-grid.reverse > *:first-child { order: 2; }
.content-grid.reverse > *:last-child { order: 1; }
.content-text h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 16px; color: var(--dark); }
.content-text p { font-size: 1.05rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.content-text p:last-of-type { margin-bottom: 24px; }
.content-image-placeholder { background: var(--warm); border: 1px solid var(--sand); border-radius: var(--radius-lg); height: 340px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; color: var(--sand); }
.content-image { width: 100%; border-radius: var(--radius-lg); object-fit: cover; }

/* --- 15b. FORMAT CARDS (scanning page) --- */
.format-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.format-card-item { background: var(--cream); border: 1px solid var(--sand); border-radius: var(--radius); padding: 24px; }
.format-card-icon { font-size: 1.8rem; margin-bottom: 8px; display: none; }
.format-card-item strong { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 4px; color: var(--dark); }
.format-card-item strong iconify-icon { font-size: 1.3rem; color: var(--green); flex-shrink: 0; }
.format-card-item span { font-size: 0.92rem; color: var(--muted); }

/* --- 16. FEATURE LISTS --- */
.feature-list { list-style: none; margin-bottom: 28px; }
.feature-list li { font-size: 0.95rem; color: var(--dark); padding: 7px 0; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.feature-list li::before { content: '\2713'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* --- 17. PROCESS STEPS (separated families) --- */
.sf-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; max-width: 1100px; margin: 0 auto; }
.sf-step { text-align: center; padding: 0 0 16px; position: relative; }
.sf-step-img { width: 160px; height: 160px; object-fit: contain; display: block; margin: 0 auto; }
.sf-step-num { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--green), var(--green-light)); color: white; font-family: 'Lora', serif; font-size: 1.25rem; font-weight: 600; display: flex; align-items: center; justify-content: center; margin: 4px auto 10px; box-shadow: 0 2px 8px rgba(74, 124, 89, 0.25); }
.sf-step h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--dark); padding: 0 24px; }
.sf-step p { font-size: 0.95rem; color: var(--muted); line-height: 1.6; padding: 0 24px; }
.sf-step:not(:last-child)::after { content: ''; position: absolute; top: 110px; right: -22px; width: 14px; height: 14px; border-top: 3px solid var(--green); border-right: 3px solid var(--green); transform: rotate(45deg); z-index: 3; }

/* --- 18. AUDIENCE CARDS (divorce) --- */
.audience-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 0 auto; }
.audience-cards .audience-card { background: var(--cream); border: 1px solid var(--sand); border-radius: var(--radius); padding: 28px 24px; }
.audience-cards .audience-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--dark); }
.audience-cards .audience-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* --- 19. ABOUT PAGE --- */
.about-intro { max-width: 720px; margin: 0 auto; }
.about-intro p { font-size: 1.08rem; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.about-intro p strong { color: var(--dark); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; max-width: 1100px; margin: 0 auto; }
.value-card { background: var(--warm); border-radius: var(--radius-lg); padding: 0 0 32px; text-align: center; }
.value-img-wrap { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.value-img-wrap::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 28%; background: linear-gradient(to bottom, transparent, var(--warm)); pointer-events: none; z-index: 1; }
.value-img { width: 100%; height: 240px; object-fit: cover; display: block; }
.value-badge { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--green), var(--green-light)); color: white; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; margin: -16px auto 10px; position: relative; z-index: 2; box-shadow: 0 2px 8px rgba(74, 124, 89, 0.25); }
.value-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--dark); padding: 20px 24px 0; }
.value-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; padding: 0 24px; }

/* --- 20. HOME MOVIE DIGITIZATION PAGE --- */
.projector-highlight { background: linear-gradient(135deg, #2d5038 0%, var(--green-dark) 50%, #2d5038 100%); padding: 80px 24px; position: relative; overflow: hidden; }
.projector-highlight::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(74,124,89,0.15) 0%, transparent 70%); pointer-events: none; }
.projector-highlight::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 350px; height: 350px; border-radius: 50%; background: radial-gradient(circle, rgba(196,135,58,0.1) 0%, transparent 70%); pointer-events: none; }
.projector-intro { max-width: 700px; margin: 0 auto 48px; text-align: center; position: relative; z-index: 1; }
.projector-intro .section-label { color: #8bb896; }
.projector-logo { display: block; max-width: 180px; height: auto; margin: 8px auto 20px; }
.projector-affiliate-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--cream); border: 1px solid var(--sand); border-radius: var(--radius); padding: 8px 16px; margin-top: 12px; text-decoration: none; transition: border-color 0.2s, box-shadow 0.2s; }
.projector-affiliate-badge:hover { border-color: var(--green); box-shadow: 0 2px 8px rgba(74, 124, 89, 0.15); }
.projector-affiliate-badge img { width: 28px; height: 28px; object-fit: contain; }
.projector-affiliate-badge span { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.projector-intro h2 { color: #f0ebe4; font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 16px; }
.projector-intro h2 em { color: #8bb896; font-style: italic; }
.projector-intro p { color: rgba(240,235,228,0.6); font-size: 1.05rem; line-height: 1.7; }
.projector-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.pf-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 18px 20px; transition: border-color 0.2s, background 0.2s; }
.pf-card:hover { border-color: rgba(139,184,150,0.4); background: rgba(255,255,255,0.09); }
.pf-card .icon { font-size: 1.3rem; display: none; color: #fff; }
.pf-card h3 { color: #f0ebe4; font-size: 1.05rem; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.pf-card h3 iconify-icon { font-size: 1.3rem; color: rgba(139,184,150,0.8); flex-shrink: 0; }
.pf-card p { color: rgba(240,235,228,0.55); font-size: 0.88rem; line-height: 1.55; }
.projector-tv-image { width: 100%; max-height: 380px; object-fit: cover; object-position: center 40%; border-radius: var(--radius-lg); box-shadow: 0 24px 60px rgba(0,0,0,0.35); display: block; }
.tv-mockup { max-width: 520px; margin: 0 auto; background: #111; border-radius: 16px; padding: 20px 20px 8px; box-shadow: 0 24px 60px rgba(0,0,0,0.4); position: relative; }
.tv-screen { background: linear-gradient(135deg, #1e3a2f 0%, #0f2318 100%); border-radius: 8px; padding: 32px 28px; min-height: 260px; display: flex; flex-direction: column; justify-content: center; }
.tv-screen .tv-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(139,184,150,0.6); margin-bottom: 12px; }
.tv-screen .tv-title { font-family: 'Lora', serif; color: #f0ebe4; font-size: 1.3rem; margin-bottom: 20px; }
.tv-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.tv-thumb { background: rgba(255,255,255,0.08); border-radius: 6px; height: 48px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: rgba(255,255,255,0.3); }
.tv-stand { width: 80px; height: 4px; background: #333; border-radius: 0 0 4px 4px; margin: 0 auto; }
.devices-strip { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 32px; position: relative; z-index: 1; }
.device-badge { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; padding: 6px 14px; font-size: 0.78rem; color: rgba(240,235,228,0.5); }
.comparison-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: start; max-width: 900px; margin: 0 auto; }
.compare-col { text-align: center; }
.compare-col h3 { font-size: 1.1rem; margin-bottom: 16px; color: var(--dark); }
.compare-col.old h3 { color: var(--muted); }
.compare-col.new h3 { color: var(--green); }
.compare-list { list-style: none; text-align: left; }
.compare-list li { font-size: 0.9rem; padding: 8px 0; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.compare-list li .mark { flex-shrink: 0; font-weight: 700; }
.compare-list li .mark.x { color: #c0392b; }
.compare-list li .mark.check { color: var(--green); }
.compare-divider { width: 1px; background: var(--sand); align-self: stretch; margin-top: 48px; }
.steps-vertical { max-width: 640px; margin: 0 auto; }
.step-row { display: flex; gap: 20px; padding: 24px 0; position: relative; }
.step-row:not(:last-child)::after { content: ''; position: absolute; left: 22px; top: 72px; bottom: 0; width: 2px; background: var(--sand); }
.steps-vertical .step-num { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--green-light)); color: white; font-family: 'Lora', serif; font-size: 1.1rem; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1; }
.step-body h3 { font-size: 1.05rem; margin-bottom: 4px; color: var(--dark); }
.step-body p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }
.formats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 800px; margin: 0 auto; }
.format-card { background: var(--cream); border: 1px solid var(--sand); border-radius: var(--radius); padding: 20px 16px; text-align: center; transition: border-color 0.2s; }
.format-card:hover { border-color: var(--green); }
.format-card .icon { display: none; }
.format-card strong { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 0.9rem; margin-bottom: 2px; color: var(--dark); }
.format-card strong iconify-icon { font-size: 1.2rem; color: var(--green); flex-shrink: 0; }
.format-card span { font-size: 0.78rem; color: var(--muted); }
.callout-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.callout-pair .legacy-callout { max-width: none; display: flex; flex-direction: column; }
.callout-pair .legacy-callout .btn { margin-top: auto; }
.legacy-callout { max-width: 700px; margin: 0 auto; background: var(--cream); border: 2px solid var(--sand); border-radius: var(--radius-lg); padding: 36px 32px; text-align: center; }
.legacy-callout h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--dark); }
.legacy-callout p { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }

/* --- 21. BUSINESS / ORG PRESERVATION PAGE --- */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.audience-grid .audience-card { background: var(--white); border: 1.5px solid var(--sand); border-radius: var(--radius); padding: 28px 24px; transition: border-color 0.2s, transform 0.2s; }
.audience-grid .audience-card:hover { border-color: var(--green); transform: translateY(-2px); }
.audience-grid .audience-card .icon { display: none; }
.audience-grid .audience-card h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--dark); display: flex; align-items: center; justify-content: center; gap: 8px; }
.audience-grid .audience-card h3 iconify-icon { font-size: 1.3rem; color: var(--green); flex-shrink: 0; }
.audience-grid .audience-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }
.scenario-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
.scenario { background: var(--cream); border: 1px solid var(--sand); border-radius: var(--radius); padding: 24px 22px; }
.scenario .q { font-family: 'Lora', serif; font-size: 1rem; font-style: italic; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.scenario .a { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.tier-card { background: var(--white); border: 1.5px solid var(--sand); border-radius: 16px; padding: 24px 24px; display: flex; flex-direction: column; transition: border-color 0.2s, transform 0.2s; }
.tier-card:hover { border-color: var(--green); transform: translateY(-3px); }
.tier-card.featured { border-color: var(--green); background: linear-gradient(160deg, var(--white) 60%, #EEF5F0); }
.tier-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green); font-weight: 600; margin-bottom: 4px; }
.tier-card h3 { font-size: 0.95rem; color: var(--muted); margin-bottom: 10px; line-height: 1.3; font-family: 'Source Sans 3', sans-serif; font-weight: 600; letter-spacing: 0.02em; }
.tier-card .tier-name { font-family: 'Lora', serif; font-size: 2.6rem; font-weight: 700; font-style: italic; color: var(--gold); display: block; margin-bottom: 2px; letter-spacing: 0.02em; }
.tier-card .desc { font-size: 0.88rem; color: var(--muted); line-height: 1.5; margin-bottom: 16px; text-align: left; }
.tier-card .card-divider { height: 1px; background: var(--sand); margin-bottom: 12px; }
.tier-card .includes { list-style: none; margin-bottom: 12px; }
.tier-card .includes li { font-size: 0.92rem; color: var(--dark); padding: 3px 0; display: flex; align-items: flex-start; gap: 9px; line-height: 1.45; text-align: left; }
.tier-card .includes li::before { content: '\2713'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.tier-card .ideal { font-size: 0.82rem; color: var(--muted); font-style: italic; padding-top: 10px; border-top: 1px solid var(--sand); margin-bottom: 16px; text-align: left; }
.tier-card .ideal strong { color: var(--dark); font-style: normal; }
.tier-price { font-family: 'Lora', serif; font-size: 2.2rem; font-weight: 700; color: var(--green); margin-bottom: 4px; }
.tier-price-unit { font-size: 1rem; font-weight: 400; color: var(--muted); }
.tier-card .tier-result { font-size: 0.82rem; color: var(--muted); line-height: 1.5; margin-bottom: 8px; text-align: left; }
.tier-card .tier-result strong { color: var(--dark); }
.tier-card .tier-body { font-size: 0.88rem; color: var(--muted); line-height: 1.5; margin-bottom: 12px; text-align: left; }
.tier-card-bottom { margin-top: auto; display: flex; flex-direction: column; }
.tier-card-bottom .tier-cta { align-self: center; margin-top: 4px; }
.tier-cta { flex-shrink: 0; }

/* 3-2-1 Rule Visual */
.rule-321 { display: flex; justify-content: center; gap: 56px; margin: 0 auto; }
.rule-321-item { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; max-width: 220px; }
.rule-321-circle { width: 96px; height: 96px; border-radius: 50%; border: 3px solid var(--green); display: flex; align-items: center; justify-content: center; font-family: 'Lora', serif; font-size: 4.2rem; font-weight: 700; color: var(--green); margin-bottom: 6px; line-height: 1; }
.rule-321-label { font-family: 'Lora', serif; font-size: 1.5rem; font-weight: 700; color: var(--dark); }
.rule-321-text { font-size: 1.1rem; color: var(--muted); line-height: 1.5; }

/* CTA Perks (bottom CTA band) */
.cta-perks { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 32px; margin: 24px 0; }
.cta-perk { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; color: var(--sand); }
.cta-perk iconify-icon { color: var(--green-light); font-size: 1.2rem; }

.use-case-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1000px; margin: 0 auto; }
.use-case { text-align: center; padding: 20px 12px; }
.use-case .icon { display: none; }
.use-case strong { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 0.9rem; color: var(--dark); margin-bottom: 4px; }
.use-case strong iconify-icon { font-size: 1.2rem; color: var(--green); flex-shrink: 0; }
.use-case span { font-size: 0.82rem; color: var(--muted); line-height: 1.5; display: block; }
.stats-band { padding: 56px 24px; background: var(--dark); position: relative; overflow: hidden; }
.stats-band::before { content: ''; position: absolute; top: -60px; right: -60px; width: 350px; height: 350px; border-radius: 50%; background: radial-gradient(circle, rgba(74,124,89,0.15) 0%, transparent 70%); pointer-events: none; }
.stats-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.stat-item .number { font-family: 'Lora', serif; font-size: 2.2rem; font-weight: 600; color: var(--green-light); margin-bottom: 4px; display: block; }
.stat-item .label { font-size: 0.88rem; color: rgba(250,247,242,0.55); line-height: 1.5; }

/* --- 22. PRIVACY POLICY PAGE --- */
.policy-section { padding: 60px 24px; }
.policy-content { max-width: 760px; margin: 0 auto; }
.policy-content h2 { font-size: 1.4rem; color: var(--dark); margin: 40px 0 12px; }
.policy-content h2:first-of-type { margin-top: 0; }
.policy-content h3 { font-size: 1.1rem; color: var(--dark); margin: 28px 0 8px; }
.policy-content p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.policy-content ul { margin: 0 0 16px 20px; padding: 0; }
.policy-content li { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-bottom: 6px; }
.policy-content strong { color: var(--dark); }
.policy-content a { color: var(--green); }
.policy-content .effective-date { font-size: 0.85rem; color: var(--muted); font-style: italic; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--sand); }
.policy-content .policy-toc { background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 36px; }
.policy-toc h3 { margin-top: 0; }
.policy-toc ol { margin: 0 0 0 20px; padding: 0; }
.policy-toc li { font-size: 0.9rem; margin-bottom: 4px; }
.policy-toc li a { text-decoration: none; }
.policy-toc li a:hover { text-decoration: underline; }

/* --- 23. CROSS-LINKS --- */
.cross-links { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 16px; }
.cross-link { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; background: var(--white); border: 1.5px solid var(--sand); border-radius: var(--radius); font-size: 0.88rem; font-weight: 500; color: var(--dark); text-decoration: none; transition: all 0.25s ease; box-shadow: 0 1px 4px rgba(44,34,24,0.04); }
.cross-link iconify-icon { color: var(--green); font-size: 1.15rem; }
.cross-link:hover { border-color: var(--green); color: var(--green); text-decoration: none; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(74,124,89,0.12); }

/* --- 24. FOOTER --- */
.site-footer { background: var(--dark); color: rgba(250,247,242,0.6); padding: 36px 24px 32px; border-top: 3px solid var(--green); }
.footer-top { max-width: 1100px; margin: 0 auto 24px; display: flex; flex-direction: column; align-items: center; text-align: center; padding-bottom: 20px; border-bottom: 1px solid rgba(250,247,242,0.1); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand-link { display: flex; align-items: center; gap: 16px; margin-bottom: 6px; text-decoration: none; justify-content: center; }
.footer-brand-link:hover { text-decoration: none; }
img.footer-logo { width: 52px; height: 52px; max-width: 52px; object-fit: contain; background: #ffffff; border: 1px solid rgba(250,247,242,0.2); border-radius: 8px; padding: 2px; box-sizing: content-box; margin-bottom: 0; }
.footer-brand { font-family: 'Lora', serif; font-size: 1.6rem; font-weight: 600; color: var(--cream); margin-bottom: 0; }
.footer-desc { font-family: 'Lora', serif; font-style: italic; font-size: 1.75rem; line-height: 1.65; margin-bottom: 0; letter-spacing: 0.4px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(250,247,242,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(250,247,242,0.6); font-size: 0.85rem; transition: border-color 0.2s, color 0.2s; text-decoration: none; }
.footer-social a:hover { border-color: var(--green-light); color: var(--green-light); text-decoration: none; }
.footer-heading { font-family: 'Lora', serif; font-size: 0.9rem; font-weight: 600; color: var(--cream); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.9rem; color: rgba(250,247,242,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--green-light); text-decoration: none; }
.footer-contact-item { font-size: 0.9rem; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact-item a { color: rgba(250,247,242,0.55); }
.footer-contact-item a:hover { color: var(--green-light); text-decoration: none; }
.footer-contact-icon { flex-shrink: 0; margin-top: 2px; }
.footer-badges { margin-top: 16px; }
.footer-badge { display: block; max-width: 120px; }
.footer-badge img { width: 100%; height: auto; object-fit: contain; }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(250,247,242,0.1); display: flex; justify-content: space-between; align-items: center; font-size: 0.84rem; }
.footer-bottom a { color: rgba(250,247,242,0.4); }
.footer-bottom-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-top: 20px; }
.footer-bottom-brand:hover { text-decoration: none; }
.footer-bottom-brand img { width: 32px; height: 32px; max-width: 32px; object-fit: contain; background: #ffffff; border: 1px solid rgba(250,247,242,0.2); border-radius: 6px; padding: 1px; box-sizing: content-box; }
.footer-bottom-brand span { font-family: 'Lora', serif; font-size: 1rem; font-weight: 600; color: var(--cream); }

/* --- 25. RESPONSIVE BREAKPOINTS --- */
@media (max-width: 900px) {
  .hero-inner, .trust-inner, .consult-inner, .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-profile { flex-direction: column; align-items: center; }
  .trust-tags { align-items: center; }
  .trust-tag { white-space: normal; }
  .content-grid.reverse > *:first-child { order: 1; }
  .content-grid.reverse > *:last-child { order: 2; }
  .hero-image { display: none; }
  .consult-form-box { width: 100%; }
  .services-grid, .problems-grid, .how-grid, .values-grid, .audience-grid, .tier-grid, .projector-features, .format-cards, .callout-pair { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .rule-321 { flex-direction: column; gap: 28px; align-items: center; }
  .cta-perks { flex-direction: column; align-items: center; }
  .how-step::after { display: none; }
  .sf-steps { grid-template-columns: 1fr 1fr; }
  .sf-step:not(:last-child)::after { display: none; }
  .audience-cards, .scenario-grid { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .compare-divider { width: 100%; height: 1px; margin: 0; }
  .formats-grid { grid-template-columns: 1fr 1fr; }
  .use-case-strip { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-top { margin-bottom: 24px; padding-bottom: 24px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--sand); padding: 20px 24px; gap: 16px; }
  .nav-dropdown-menu { position: static; box-shadow: none; border: none; background: transparent; display: block; padding: 4px 0 0 16px; min-width: 0; }
  .nav-dropdown-menu li a { padding: 6px 0; font-size: 0.9rem; color: var(--muted); }
  .nav-dropdown-menu li a:hover { background: transparent; color: var(--green); }
  .dropdown-arrow { display: none; }
  .hero { padding: 60px 24px 50px; }
  .hero h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .sf-steps { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
  .formats-grid { grid-template-columns: 1fr; max-width: 280px; }
  .tv-thumbs { grid-template-columns: repeat(2, 1fr); }
  .use-case-strip { grid-template-columns: 1fr; max-width: 280px; margin-left: auto; margin-right: auto; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-top { margin-bottom: 20px; padding-bottom: 20px; }
  .footer-desc { font-size: 1.2rem; }
  .footer-bottom-brand { margin-top: 4px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* --- 26. IMAGE COMPARE SLIDER --- */
.img-compare {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 2px solid var(--sand);
  max-width: 700px;
  margin: 0 auto;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  line-height: 0;
  --slider-pos: 50%;
}
.img-compare-after {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.img-compare-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 calc(100% - var(--slider-pos)) 0 0);
  pointer-events: none;
}
.img-compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--slider-pos);
  transform: translateX(-50%);
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  pointer-events: none;
}
.img-compare-handle-line {
  flex: 1;
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 6px rgba(0,0,0,0.35);
}
.img-compare-handle-grip {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  pointer-events: auto;
  cursor: ew-resize;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--green);
  transition: box-shadow 0.2s;
}
.img-compare-handle-grip:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(74,124,89,0.35), 0 2px 8px rgba(0,0,0,0.25);
}
.img-compare-active .img-compare-handle-grip {
  box-shadow: 0 0 0 4px rgba(74,124,89,0.25), 0 2px 8px rgba(0,0,0,0.25);
}
.img-compare-label {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}
.img-compare-label-before {
  left: 16px;
  background: var(--dark);
  color: var(--cream);
}
.img-compare-label-after {
  right: 16px;
  background: var(--green);
  color: var(--white);
}
@media (max-width: 768px) {
  .img-compare { border-radius: var(--radius); }
  .img-compare-label { font-size: 0.72rem; padding: 5px 10px; top: 10px; }
  .img-compare-label-before { left: 10px; }
  .img-compare-label-after { right: 10px; }
  .img-compare-handle-grip { width: 38px; height: 38px; font-size: 16px; }
  .img-compare-handle { width: 38px; }
}
@media (prefers-reduced-motion: reduce) {
  .img-compare { cursor: default; }
  .img-compare-handle-grip { cursor: default; }
}

/* --- 27. ANIMATIONS --- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.page-hero { animation: fadeUp 0.5s ease-out; }
.hero-content { animation: fadeUp 0.6s ease-out; }
.hero-image { animation: fadeUp 0.6s ease-out 0.15s both; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
