/*
Theme Name: VBR24 Vermessungsbüro Roßbach
Theme URI: https://vermessungsbuero24.de
Author: VBR24
Description: 1:1 Theme für Vermessungsbüro Mark Roßbach – Wabern-Harle
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: vbr24
*/

/* ===== CSS RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --bg-white: #ffffff;
    --bg-light: #fafafa;
    --bg-cream: #fffef5;
    --yellow: #f5c518;
    --yellow-light: #ffe066;
    --yellow-dark: #e0b000;
    --yellow-pale: #fff9db;
    --text-dark: #1a1a1a;
    --text-gray: #555555;
    --text-muted: #888888;
    --border: #e5e5e5;
    --border-light: #f0f0f0;
}
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.yellow-text { color: var(--yellow-dark); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes scan { 0% { transform: rotate(-30deg); } 50% { transform: rotate(30deg); } 100% { transform: rotate(-30deg); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.7; transform: scale(1.05); } }
@keyframes drawLine { from { stroke-dashoffset: 1000; } to { stroke-dashoffset: 0; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ===== NAVIGATION ===== */
nav#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}
nav#navbar.scrolled { padding: 12px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
nav#navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 800; color: var(--text-dark); letter-spacing: -1px; text-decoration: none; }
.logo span { color: var(--yellow-dark); }
.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a { color: var(--text-gray); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.3s ease; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--yellow); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--text-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--yellow); color: var(--text-dark); padding: 12px 24px; border-radius: 8px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; }
.nav-cta:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,197,24,0.35); color: var(--text-dark); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; background: none; border: none; }
.mobile-toggle span { width: 25px; height: 2px; background: var(--text-dark); transition: all 0.3s ease; display: block; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden; padding-top: 100px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-cream) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 600px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--yellow-pale); border: 1px solid var(--yellow);
    padding: 8px 16px; border-radius: 50px;
    font-size: 0.85rem; color: var(--yellow-dark); margin-bottom: 24px;
    animation: fadeInUp 0.6s ease forwards;
}
.hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; margin-bottom: 24px; letter-spacing: -2px; color: var(--text-dark); animation: fadeInUp 0.6s ease 0.1s forwards; opacity: 0; }
.hero p { font-size: 1.15rem; color: var(--text-gray); margin-bottom: 32px; line-height: 1.8; animation: fadeInUp 0.6s ease 0.2s forwards; opacity: 0; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.6s ease 0.3s forwards; opacity: 0; }
.btn-primary { background: var(--yellow); color: var(--text-dark); padding: 16px 32px; border-radius: 8px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s ease; }
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-3px); box-shadow: 0 12px 35px rgba(245,197,24,0.4); color: var(--text-dark); }
.btn-secondary { background: transparent; color: var(--text-dark); padding: 16px 32px; border-radius: 8px; font-weight: 600; text-decoration: none; border: 2px solid var(--border); transition: all 0.3s ease; }
.btn-secondary:hover { border-color: var(--yellow); background: var(--yellow-pale); color: var(--text-dark); }

/* Hero Animation */
.hero-animation { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); width: 500px; height: 500px; z-index: 1; }
.theodolite { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.theodolite-base { width: 80px; height: 20px; background: var(--yellow); border-radius: 4px; position: relative; margin: 0 auto; }
.theodolite-tripod { position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%); }
.tripod-leg { position: absolute; width: 4px; height: 80px; background: linear-gradient(to bottom, var(--yellow-dark), var(--yellow)); border-radius: 2px; }
.tripod-leg:nth-child(1) { left: -30px; transform: rotate(-15deg); transform-origin: top center; }
.tripod-leg:nth-child(2) { left: 50%; transform: translateX(-50%); }
.tripod-leg:nth-child(3) { right: -30px; transform: rotate(15deg); transform-origin: top center; }
.theodolite-body { width: 60px; height: 40px; background: linear-gradient(135deg, #333 0%, #555 100%); border-radius: 8px; position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); }
.theodolite-scope { position: absolute; top: -25px; left: 50%; transform: translateX(-50%); width: 100px; height: 20px; background: linear-gradient(90deg, #444, #666, #444); border-radius: 10px; animation: scan 4s ease-in-out infinite; transform-origin: center center; }
.theodolite-scope::before { content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%); width: 15px; height: 15px; background: var(--yellow); border-radius: 50%; box-shadow: 0 0 20px var(--yellow); }
.measurement-lines { position: absolute; width: 100%; height: 100%; top: 0; left: 0; }
.measurement-line { stroke: var(--yellow); stroke-width: 2; fill: none; opacity: 0.6; stroke-dasharray: 1000; animation: drawLine 3s ease-in-out infinite; }
.measurement-point { position: absolute; width: 12px; height: 12px; background: var(--yellow); border-radius: 50%; box-shadow: 0 0 15px var(--yellow); }
.measurement-point:nth-child(1) { top: 15%; right: 20%; animation: pulse 2s ease-in-out infinite; }
.measurement-point:nth-child(2) { top: 35%; right: 5%; animation: pulse 2s ease-in-out infinite 0.5s; }
.measurement-point:nth-child(3) { bottom: 30%; right: 15%; animation: pulse 2s ease-in-out infinite 1s; }
.measurement-point:nth-child(4) { bottom: 20%; right: 35%; animation: pulse 2s ease-in-out infinite 1.5s; }
.grid-pattern { position: absolute; width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.15; }
.grid-line { stroke: var(--yellow-dark); stroke-width: 1; }
.coordinate-display { position: absolute; top: 10%; right: 10%; background: white; border: 2px solid var(--yellow); border-radius: 8px; padding: 12px 16px; font-family: 'Courier New', monospace; font-size: 0.85rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); animation: float 3s ease-in-out infinite; }
.coordinate-display span { display: block; color: var(--text-gray); }
.coordinate-display strong { color: var(--yellow-dark); }

/* Hero Stats */
.hero-stats { display: flex; gap: 50px; margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--border); animation: fadeInUp 0.6s ease 0.4s forwards; opacity: 0; }
.hero-stat-number { font-size: 2.5rem; font-weight: 800; color: var(--yellow-dark); line-height: 1; }
.hero-stat-label { font-size: 0.9rem; color: var(--text-muted); margin-top: 8px; }

/* ===== SECTIONS ===== */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label { display: inline-block; color: var(--yellow-dark); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 12px; }
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; color: var(--text-dark); }
.section-subtitle { color: var(--text-gray); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ===== SERVICES ===== */
.services { background: var(--bg-light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: white; border: 1px solid var(--border-light); border-radius: 16px; padding: 36px 28px; transition: all 0.3s ease; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--yellow); transform: scaleX(0); transition: transform 0.3s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); border-color: var(--yellow); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 56px; height: 56px; background: var(--yellow-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: all 0.3s ease; }
.service-card:hover .service-icon { background: var(--yellow); }
.service-icon svg { width: 26px; height: 26px; stroke: var(--yellow-dark); stroke-width: 1.5; fill: none; transition: stroke 0.3s ease; }
.service-card:hover .service-icon svg { stroke: var(--text-dark); }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.service-card p { color: var(--text-gray); font-size: 0.95rem; line-height: 1.7; }

/* ===== PROCESS ===== */
.process { background: white; }
.process-steps { display: flex; justify-content: space-between; position: relative; max-width: 900px; margin: 0 auto; }
.process-steps::before { content: ''; position: absolute; top: 50px; left: 100px; right: 100px; height: 2px; background: var(--yellow); opacity: 0.3; }
.process-step { text-align: center; flex: 1; padding: 0 20px; }
.process-number { width: 100px; height: 100px; background: white; border: 3px solid var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 800; color: var(--yellow-dark); margin: 0 auto 24px; position: relative; z-index: 1; transition: all 0.3s ease; }
.process-step:hover .process-number { background: var(--yellow); color: var(--text-dark); transform: scale(1.1); box-shadow: 0 10px 30px rgba(245,197,24,0.4); }
.process-step h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.process-step p { color: var(--text-gray); font-size: 0.95rem; line-height: 1.7; }

/* ===== REFERENCES ===== */
.references { background: var(--bg-light); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; background: white; border: 1px solid var(--border-light); cursor: pointer; transition: all 0.3s ease; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:hover { transform: scale(1.02); box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-color: var(--yellow); }
.gallery-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--yellow-pale) 0%, white 100%); padding: 20px; }
.gallery-placeholder svg { width: 36px; height: 36px; stroke: var(--yellow-dark); stroke-width: 1.5; fill: none; margin-bottom: 10px; opacity: 0.6; }
.gallery-placeholder span { color: var(--text-muted); font-size: 0.85rem; text-align: center; font-weight: 500; }
.gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.65)); color: white; font-size: 0.85rem; font-weight: 600; padding: 24px 16px 12px; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--bg-light); border: 1px solid var(--border-light); border-radius: 16px; padding: 32px; transition: all 0.3s ease; }
.testimonial-card:hover { border-color: var(--yellow); box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-stars svg { width: 18px; height: 18px; fill: var(--yellow); }
.testimonial-text { color: var(--text-gray); font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 48px; height: 48px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--text-dark); font-size: 1rem; }
.testimonial-info h4 { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); }
.testimonial-info span { color: var(--text-muted); font-size: 0.85rem; }

/* ===== ABOUT ===== */
.about { background: var(--bg-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-content h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; color: var(--text-dark); }
.about-content p { color: var(--text-gray); font-size: 1rem; line-height: 1.8; margin-bottom: 14px; }
.about-features { margin-top: 32px; display: grid; gap: 16px; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; }
.about-feature-icon { width: 44px; height: 44px; background: var(--yellow-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-feature-icon svg { width: 22px; height: 22px; stroke: var(--yellow-dark); stroke-width: 1.5; fill: none; }
.about-feature h4 { font-weight: 600; margin-bottom: 2px; color: var(--text-dark); }
.about-feature p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0; }
.about-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.about-stat { background: white; border: 1px solid var(--border-light); border-radius: 16px; padding: 32px 24px; text-align: center; transition: all 0.3s ease; }
.about-stat:hover { border-color: var(--yellow); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.06); }
.about-stat-number { font-size: 3rem; font-weight: 800; color: var(--yellow-dark); line-height: 1; margin-bottom: 8px; }
.about-stat-label { color: var(--text-gray); font-size: 0.9rem; }

/* ===== CONTACT ===== */
.contact { background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; }
.contact-info h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); }
.contact-info > p { color: var(--text-gray); margin-bottom: 32px; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon { width: 50px; height: 50px; background: var(--yellow-pale); border: 1px solid var(--yellow); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 22px; height: 22px; stroke: var(--yellow-dark); stroke-width: 1.5; fill: none; }
.contact-item h4 { font-weight: 600; margin-bottom: 2px; color: var(--text-dark); }
.contact-item p { color: var(--text-gray); font-size: 0.95rem; }
.contact-item a { color: var(--text-gray); text-decoration: none; }
.contact-item a:hover { color: var(--yellow-dark); }
.contact-form-wrapper { background: var(--bg-light); border: 1px solid var(--border-light); border-radius: 20px; padding: 40px; }
.contact-form-wrapper h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; color: var(--text-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 6px; color: var(--text-gray); }
.form-group input, .form-group textarea { width: 100%; background: white; border: 1px solid var(--border); border-radius: 10px; padding: 14px 18px; color: var(--text-dark); font-size: 1rem; font-family: inherit; transition: all 0.3s ease; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px var(--yellow-pale); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.form-note a { color: var(--yellow-dark); text-decoration: none; }
.form-note a:hover { text-decoration: underline; }
.btn-submit { width: 100%; background: var(--yellow); color: var(--text-dark); border: none; padding: 16px 32px; border-radius: 10px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 10px; font-family: inherit; }
.btn-submit:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,197,24,0.35); }

/* ===== FOOTER ===== */
footer { background: var(--text-dark); color: white; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand .logo { color: white; margin-bottom: 16px; display: block; }
.footer-brand p { color: rgba(255,255,255,0.7); line-height: 1.7; font-size: 0.95rem; }
.footer-column h4 { font-size: 1rem; font-weight: 700; margin-bottom: 20px; color: white; }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 12px; }
.footer-column a, .footer-column li { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.95rem; transition: color 0.3s ease; }
.footer-column a:hover { color: var(--yellow); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; }
.footer-legal a:hover { color: var(--yellow); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-animation { width: 350px; height: 350px; right: 0; opacity: 0.5; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .mobile-toggle { display: flex; }
    .hero-animation { display: none; }
    .hero h1 { font-size: 2rem; }
    .hero-stats { flex-direction: column; gap: 24px; }
    .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; gap: 40px; }
    .process-steps::before { display: none; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(1) { grid-column: span 1; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    section { padding: 70px 0; }
}

/* ===== LEGAL PAGES (Impressum / Datenschutz) ===== */
.legal-page-header {
    background: var(--bg-light);
    padding: 140px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.legal-page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}
.legal-page-header p {
    color: var(--text-gray);
    font-size: 1.05rem;
}
.legal-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 24px 100px;
}
.legal-content .container {
    max-width: 820px;
    padding: 0;
}
.legal-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 48px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--yellow);
    color: var(--text-dark);
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 24px 0 10px;
    color: var(--text-dark);
}
.legal-content p {
    margin-bottom: 16px;
    color: var(--text-gray);
    line-height: 1.8;
}
.legal-content ul, .legal-content ol {
    margin: 12px 0 20px 24px;
    color: var(--text-gray);
    line-height: 1.8;
}
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--yellow-dark); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-content .info-box {
    background: var(--yellow-pale);
    border-left: 4px solid var(--yellow);
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
}
.legal-content .info-box p { color: var(--text-dark); margin-bottom: 6px; }
.legal-content .info-box p:last-child { margin-bottom: 0; }
.legal-toc {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    align-items: center;
}
.legal-toc strong { color: var(--text-dark); margin-right: 8px; }
.legal-toc a { color: var(--text-gray); text-decoration: none; font-size: 0.92rem; }
.legal-toc a:hover { color: var(--yellow-dark); }
.legal-date {
    margin-top: 48px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--text-muted) !important;
    font-size: 0.88rem;
}
@media (max-width: 768px) {
    .legal-page-header { padding: 120px 20px 40px; }
    .legal-page-header h1 { font-size: 1.9rem; }
    .legal-content { padding: 40px 20px 80px; }
}

/* Testimonial verified badge */
.testimonial-verified {
    font-size: 0.78rem;
    color: #16a34a;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-weight: 500;
}

/* About photo placeholder */
.about-image-wrap { display: flex; flex-direction: column; gap: 20px; }
.about-photo-placeholder { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--yellow-pale) 0%, #fff 100%); border: 2px dashed var(--yellow); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--text-muted); text-align: center; }
.about-photo-placeholder svg { width: 48px; height: 48px; stroke: var(--yellow-dark); opacity: 0.5; }
.about-photo-placeholder span { font-size: 0.9rem; font-weight: 500; }
.about-photo-placeholder small { font-size: 0.78rem; font-weight: 400; }
.about-photo-real { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.about-photo-real img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
