/* ═══════════════════════════════════════════════════════════════
   Inner Pages — Roof Repair Bradenton FL
   Shared styles for About, Contact, Legal & Sitemap pages
   Uses design tokens from styles.css
   ═══════════════════════════════════════════════════════════════ */

/* ─── ADDITIONAL TOKENS ─── */
:root {
    --accent-soft: rgba(14, 165, 233, 0.08);
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
    --card: #ffffff;
    --card-border: rgba(0,0,0,0.06);
}

/* ═══════════════════════════════════════
   PAGE HERO (All Inner Pages)
   ═══════════════════════════════════════ */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    padding: 110px 0 70px;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.about-page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 27, 42, 0.9), rgba(15, 42, 68, 0.76));
}

.page-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    pointer-events: none;
}

.page-hero-glow-1 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: -200px;
    right: -100px;
}

.page-hero-glow-2 {
    width: 400px;
    height: 400px;
    background: var(--cta);
    bottom: -150px;
    left: -100px;
}

.page-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    opacity: 0.85;
}

.page-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.page-breadcrumb a:hover {
    color: #fff;
}

.page-breadcrumb svg {
    width: 14px;
    height: 14px;
    stroke: rgba(255,255,255,0.4);
}

.page-breadcrumb span {
    color: rgba(255,255,255,0.5);
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(14, 165, 233, 0.25);
    border-radius: 9999px;
    color: var(--accent-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.page-hero-badge svg {
    width: 14px;
    height: 14px;
}

.page-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.page-hero h1 .accent-text {
    color: var(--accent-light);
}

.page-hero-subtitle {
    color: rgba(255,255,255,0.75);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

.page-hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

.page-hero-meta svg {
    width: 14px;
    height: 14px;
}

/* ═══════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════ */

/* --- Our Story --- */
.about-story {
    padding: 80px 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 768px) {
    .about-story-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-story-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 20px;
    line-height: 1.25;
}

.about-story-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-story-content p:last-child {
    margin-bottom: 0;
}

.about-story-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-story-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story-visual-inner {
    display: none;
}

.about-story-visual-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
}

.about-story-visual-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, 0.15);
    border-radius: 50%;
    color: var(--accent-light);
}

.about-story-visual-icon svg {
    width: 40px;
    height: 40px;
}

.about-story-visual-text {
    color: rgba(255,255,255,0.9);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
}

.about-story-visual-sub {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.about-story-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--cta) 100%);
}

/* --- Mission Card --- */
.about-mission {
    padding: 80px 0;
    background: var(--bg-alt);
}

.mission-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--cta) 100%);
}

.mission-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: 14px;
    color: var(--accent-dark);
    margin-bottom: 20px;
}

.mission-icon svg {
    width: 28px;
    height: 28px;
}

.mission-card h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    margin-bottom: 16px;
}

.mission-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.mission-card blockquote {
    margin-top: 24px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(14,165,233,0.06), rgba(14,165,233,0.02));
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--primary);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 500;
}

/* --- History Timeline --- */
.about-timeline {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent), var(--cta));
    border-radius: 3px;
}

@media (min-width: 768px) {
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-item {
    position: relative;
    padding-left: 72px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .timeline-item {
        padding-left: 0;
        width: 50%;
    }

    .timeline-item:nth-child(odd) {
        padding-right: 48px;
        text-align: right;
        margin-left: 0;
    }

    .timeline-item:nth-child(even) {
        padding-left: 48px;
        margin-left: 50%;
    }
}

.timeline-dot {
    position: absolute;
    left: 18px;
    top: 6px;
    width: 22px;
    height: 22px;
    background: var(--accent);
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(14,165,233,0.2);
    z-index: 2;
}

@media (min-width: 768px) {
    .timeline-dot {
        left: auto;
        right: -11px;
    }

    .timeline-item:nth-child(even) .timeline-dot {
        left: -11px;
        right: auto;
    }
}

.timeline-content {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.timeline-year {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-dark);
    background: var(--accent-soft);
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    font-family: var(--font-body);
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* --- Goals Grid --- */
.about-goals {
    padding: 80px 0;
    background: var(--bg-alt);
}

.goals-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .goals-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.goal-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: var(--shadow-xs);
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--goal-accent, var(--accent));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.goal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.goal-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border-radius: 14px;
    color: var(--accent-dark);
    margin: 0 auto 16px;
}

.goal-icon svg {
    width: 26px;
    height: 26px;
}

.goal-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.goal-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* --- Core Values --- */
.about-values {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-xs);
}

.value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    color: #fff;
    margin: 0 auto 14px;
}

.value-icon svg {
    width: 22px;
    height: 22px;
}

.value-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.65;
}

/* --- Stats Counter --- */
.about-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    padding: 20px 10px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

.stat-divider {
    display: none;
}

@media (min-width: 768px) {
    .stat-divider {
        display: block;
        width: 1px;
        background: rgba(255,255,255,0.1);
        margin: 10px 0;
    }
}

/* ═══════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════ */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

/* Contact Form */
.contact-form-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-md);
}

.contact-form-card h2 {
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.contact-form-card > p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

.leadsmart-form-embed {
    width: 100%;
    overflow: hidden;
}

.leadsmart-form-frame {
    display: block;
    width: 100%;
    max-width: 600px;
    height: 545px;
    margin: 0 auto;
    border: 0;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

@media (min-width: 480px) {
    .contact-form .form-row-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.contact-form label .required {
    color: var(--danger);
    margin-left: 2px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text);
    background: #fff;
    transition: all var(--transition);
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .btn-submit {
    margin-top: 8px;
}

/* Contact Info Cards */
.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-xs);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border: 1px solid rgba(14,165,233,0.12);
    border-radius: 12px;
    color: var(--accent-dark);
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
}

.contact-info-text h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.contact-info-text p,
.contact-info-text a {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-info-text a:hover {
    color: var(--accent-dark);
}

.contact-info-text .contact-value {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

/* Contact Map */
.contact-map {
    padding: 0 0 80px;
}

.contact-map-container {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--card-border);
}

.contact-map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}

@media (max-width: 768px) {
    .contact-map-container iframe {
        height: 280px;
    }
}

/* Service Areas Badges (Contact) */
.contact-areas {
    padding: 0 0 80px;
}

.contact-areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.contact-area-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: var(--shadow-xs);
}

.contact-area-badge:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.contact-area-badge svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

/* ═══════════════════════════════════════
   LEGAL PAGES (Privacy, Terms, Disclaimer)
   ═══════════════════════════════════════ */
.legal-section {
    padding: 80px 0;
}

.legal-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 960px) {
    .legal-layout {
        grid-template-columns: 220px 1fr;
        max-width: 1100px;
    }
}

/* Table of Contents */
.legal-toc {
    position: sticky;
    top: 84px;
    align-self: start;
}

.legal-toc-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.legal-toc-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-toc-list a {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition);
    border-left: 2px solid transparent;
}

.legal-toc-list a:hover,
.legal-toc-list a.active {
    color: var(--accent-dark);
    background: var(--accent-soft);
    border-left-color: var(--accent);
}

@media (max-width: 959px) {
    .legal-toc {
        position: static;
        background: var(--bg-alt);
        padding: 20px;
        border-radius: var(--radius);
    }
}

/* Legal Content */
.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    padding-top: 32px;
    scroll-margin-top: 80px;
}

.legal-content h2:first-of-type {
    padding-top: 0;
}

.legal-content h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    margin-top: 24px;
    color: var(--text);
}

.legal-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 24px;
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    margin-bottom: 6px;
}

.legal-content strong {
    color: var(--text);
    font-weight: 600;
}

.legal-content a {
    color: var(--accent-dark);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--accent);
}

.legal-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 32px 0;
}

.legal-highlight {
    padding: 20px 24px;
    background: var(--accent-soft);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 20px;
}

.legal-highlight p {
    margin-bottom: 0;
    color: var(--text);
    font-weight: 500;
}

.legal-contact-box {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 24px;
}

.legal-contact-box h3 {
    margin-top: 0;
    font-size: 1rem;
}

.legal-contact-box p {
    margin-bottom: 8px;
}

.legal-contact-box p:last-child {
    margin-bottom: 0;
}

/* ═══════════════════════════════════════
   SITEMAP PAGE
   ═══════════════════════════════════════ */
.sitemap-section {
    padding: 80px 0;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 640px) {
    .sitemap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .sitemap-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sitemap-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-xs);
    transition: all 0.3s ease;
}

.sitemap-card:hover {
    box-shadow: var(--shadow-md);
}

.sitemap-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-light);
}

.sitemap-card-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border-radius: 10px;
    color: var(--accent-dark);
}

.sitemap-card-icon svg {
    width: 18px;
    height: 18px;
}

.sitemap-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: var(--font-display);
}

.sitemap-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition);
}

.sitemap-links li a:hover {
    color: var(--accent-dark);
    background: var(--accent-soft);
    transform: translateX(3px);
}

.sitemap-links li a svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   CTA FIX — Hide placeholder spans
   ═══════════════════════════════════════ */
.cta-bg .img-placeholder span {
    display: none;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
    .page-hero {
        padding: 90px 0 50px;
    }

    .about-story,
    .about-mission,
    .about-timeline,
    .about-goals,
    .about-values {
        padding: 56px 0;
    }

    .about-stats {
        padding: 56px 0;
    }

    .mission-card {
        padding: 28px 22px;
        border-radius: var(--radius-lg);
    }

    .contact-section {
        padding: 56px 0;
    }

    .contact-form-card {
        padding: 24px 20px;
    }

    .legal-section {
        padding: 56px 0;
    }

    .sitemap-section {
        padding: 56px 0;
    }
}

/* ─── PAGES MOBILE OVERFLOW FIXES ─── */
@media (max-width: 640px) {
    .page-hero {
        padding: 85px 0 45px;
    }
    .about-story, .about-mission, .about-timeline, .about-goals, .about-values, .about-stats, .contact-section, .legal-section, .sitemap-section {
        padding: 48px 0;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 16px;
    }
    .stat-number {
        font-size: 1.85rem;
    }
    .timeline {
        padding: 10px 0;
    }
    .timeline-item {
        padding-left: 52px;
    }
    .timeline-dot {
        left: 14px;
        width: 18px;
        height: 18px;
    }
    .timeline::before {
        left: 22px;
    }
    .goals-grid, .values-grid, .sitemap-grid {
        grid-template-columns: 1fr !important;
    }
    .contact-form-card {
        padding: 20px 16px;
    }
    .legal-content {
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .legal-highlight, .legal-contact-box, .mission-card {
        padding: 20px 16px;
    }
}
