:root {
    --primary: #1a5c3a;
    --secondary: #161618;
    --accent: #c8a24e;
    --text: #e0e0e0;
    --bg: #0C0C0E;
    --dark-bg: #0C0C0E;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 8px;
    --shadow: 0 2px 8px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
    --primary-light: #3EB875;
    --max-width: 1200px;
    --nav-height: 64px;
}
/* === RESET === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul, ol {
    list-style: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 0.5em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 0.5em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); margin-bottom: 0.4em; }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); margin-bottom: 0.4em; }

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    margin-bottom: 1em;
}

/* === LAYOUT === */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 800px;
}

section {
    padding: 4rem 0;
}

/* === RESPONSIVE GRID === */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    section {
        padding: 2.5rem 0;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* === NAVIGATION === */
.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    padding: 0 1.5rem;
    background: var(--bg);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
    text-decoration: none;
}
.nav-brand:hover {
    text-decoration: none;
}

.nav-tagline {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: #a0a0a0 !important;
    margin-left: 0.5rem;
    opacity: 0.8;
}


.heading-accent {
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
}

.heading-accent::after {
    content: '';
    display: block;
    width: 60%;
    height: 2px;
    background: var(--primary);
    margin: 0.75rem auto 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-light);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    
.heading-accent {
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
}

.heading-accent::after {
    content: '';
    display: block;
    width: 60%;
    height: 2px;
    background: var(--primary);
    margin: 0.75rem auto 0;
}

.nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg);
        padding: 1rem 1.5rem;
        gap: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        box-shadow: var(--shadow);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 0.75rem 0;
        width: 100%;
    }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    gap: 0.5rem;
    line-height: 1.4;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    text-decoration: none;
}

.btn:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-accent {
    background: var(--accent);
    color: #fff;
}

.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.875rem;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.link-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    text-decoration: underline;
    font: inherit;
}

/* === CARDS === */
.card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

/* === FORMS === */
.input, .textarea, .select {
    width: 100%;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    font-size: 1rem;
    background: var(--bg);
    color: var(--text);
    transition: border-color 0.2s;
}

.input:focus, .textarea:focus, .select:focus {
    outline: none;
    border-color: var(--primary);
}

.textarea {
    resize: vertical;
}

.control-group {
    margin-bottom: 1rem;
}

.control-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-grid .full-width {
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* === HERO === */
.hero {
    background: var(--dark-bg);
    color: #fff;
    text-align: center;
    padding: 6rem 1.5rem;
}

.hero h1 {
    color: #fff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    opacity: 1;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #fff;
}


.text-accent-dark {
    color: var(--primary-light);
    font-weight: 600;
}

.text-accent {
    color: var(--primary-light);
}
.hero .btn {
    font-size: 1.15rem;
    padding: 1rem 2.5rem;
}

/* === FEATURES === */
.features {
    background: var(--secondary);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    background: #111113;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}


/* === CUSTOM FEATURE ICONS === */
.feature-icon svg {
    display: inline-block;
    margin: 0 auto;
}

.feature-icon--number {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.hero-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-light);
    line-height: 1;
    letter-spacing: -0.02em;
    display: block;
}

.hero-number sup {
    font-size: 0.5em;
    color: var(--primary-light);
    vertical-align: super;
    line-height: 0;
}

/* === TRUST SIGNALS === */
.trust-signals {
    padding: 3rem 0;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.05rem;
}

.trust-icon {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

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

.trust-badge-inline {
    text-align: center;
    padding: 1.5rem;
    font-weight: 500;
    color: var(--primary);
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* === AD SLOTS === */
.ad-slot {
    display: none; /* Hidden until AdSense approved — divs stay in DOM for activation */
}

.ad-slot.ad-active {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    margin: 1rem auto;
    max-width: var(--max-width);
    position: relative;
}

.ad-header {
    margin-top: 0;
}

.ad-sidebar {
    min-height: 250px;
}

/* === SEARCH === */
.search-section {
    background: var(--dark-bg);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.search-section h1 {
    color: #fff;
}

.search-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.search-input-group {
    display: flex;
    gap: 0;
    background: #1a1a1f;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.search-input {
    flex: 1;
    border: none;
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    outline: none;
    color: var(--text);
    background: transparent;
}

.search-input-group .btn {
    border-radius: 0;
    padding: 1rem 2rem;
}

/* Single-column centered search results — matches homepage/about axis */
.search-results-centered {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Inline ad slots between results — activated when AdSense approved */
.ad-slot.ad-inline {
    display: none; /* Hidden until AdSense */
}

.ad-slot.ad-inline.ad-active {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    border-radius: var(--radius);
    margin: 1.5rem 0;
    background: var(--secondary);
    border: 1px solid rgba(255,255,255,0.04);
}

.search-status {
    padding: 0.75rem 1rem;
    background: var(--secondary);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.result-card {
    background: #141416;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: box-shadow 0.2s;
}

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

.result-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.result-card h3 a {
    color: var(--primary-light);
}

/* === RESULT CARD INTERACTIONS === */
.result-card {
    position: relative;
}

.result-dismiss {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #666;
    cursor: pointer;
    padding: 0.15rem 0.4rem;
    line-height: 1;
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
}

.result-dismiss:hover {
    color: #999;
    background: rgba(255,255,255,0.05);
}

.result-card h3 {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    padding-right: 2rem;
}

.copy-link-btn {
    flex-shrink: 0;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.2rem;
    margin-top: 0.15rem;
    border-radius: 4px;
    transition: color 0.15s;
    position: relative;
}

.copy-link-btn:hover {
    color: var(--primary);
}

.copy-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
}

.copy-tooltip.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

.result-actions {
    margin-top: 0.6rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.copy-citation-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.12);
    color: #999;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s;
}

.copy-citation-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--secondary);
}

.copy-citation-btn.copied {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--secondary);
}

.result-meta {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.result-abstract {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.5;
}

.result-abstract .expand-btn {
    color: var(--primary);
    cursor: pointer;
    background: none;
    border: none;
    font: inherit;
    font-weight: 600;
    font-size: 0.875rem;
}

.citation-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--secondary);
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

/* === SKELETON LOADING === */
.skeleton-card {
    background: var(--bg);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.skeleton-line {
    height: 1rem;
    background: linear-gradient(90deg, #1e1e22 25%, #2a2a2e 50%, #1e1e22 75%);
    background-size: 200% 100%;
    animation: skeleton-pulse 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.skeleton-title {
    width: 70%;
    height: 1.25rem;
}

.skeleton-text {
    width: 100%;
}

.skeleton-text.short {
    width: 60%;
}

@keyframes skeleton-pulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* === EMPTY STATES === */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: #999;
}

.empty-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.suggested-searches {
    margin-top: 1.5rem;
}

.suggested-searches .btn {
    margin: 0.25rem;
}

/* === FILE CONVERTER === */
.converter-section {
    padding-top: 3rem;
}

.section-subtitle {
    text-align: center;
    color: #999;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.tool-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 0.65rem 1.5rem;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn.active {
    background: var(--primary);
    color: #fff;
}

.tool-panel {
    max-width: 700px;
    margin: 0 auto;
}

.upload-zone {
    border: 2px dashed rgba(0,0,0,0.2);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.upload-zone:hover,
.upload-zone.dragover {
    border-color: var(--primary);
    background: var(--secondary);
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.file-info {
    background: var(--secondary);
    border-radius: var(--radius);
    padding: 1rem;
    margin: 1rem 0;
    font-size: 0.95rem;
}

.tool-controls {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .tool-controls {
        grid-template-columns: 1fr;
    }
}

.pdf-mode-toggle,
.zip-mode-toggle {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.action-bar {
    text-align: center;
    margin: 2rem 0;
}

.action-bar .btn {
    margin: 0 0.5rem;
}

.progress-bar {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem auto;
    max-width: 400px;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
    transition: width 0.3s;
    width: 0%;
}

/* === FORM WIZARD === */
.form-wizard-section {
    padding-top: 3rem;
}

.wizard-progress {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.wizard-progress .progress-bar {
    margin-bottom: 0.75rem;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.step-label {
    font-size: 0.85rem;
    color: #999;
    font-weight: 600;
}

.step-label.active {
    color: var(--primary);
}

.step-label.completed {
    color: var(--primary);
}

.wizard-step {
    max-width: 700px;
    margin: 0 auto;
}

.wizard-nav {
    display: flex;
    justify-content: space-between;
    max-width: 700px;
    margin: 2rem auto 0;
}

.helper-prompts {
    background: var(--secondary);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.helper-prompts ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
    list-style: disc;
}

.char-count {
    text-align: right;
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.25rem;
}

.agency-dropdown {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    max-height: 250px;
    overflow-y: auto;
    background: var(--bg);
    box-shadow: var(--shadow);
}

.agency-option {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.agency-option:hover {
    background: var(--secondary);
}

.agency-details {
    background: var(--secondary);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-top: 1rem;
}

.agency-details h4 {
    margin-bottom: 0.5rem;
}

.agency-details p {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.letter-preview {
    background: var(--bg);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 2rem;
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    line-height: 1.7;
    white-space: pre-wrap;
    max-height: 500px;
    overflow-y: auto;
}

.letter-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* === PRICING === */
.pricing-section {
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    align-items: start;
}

.pricing-card {
    background: var(--bg);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.pricing-card.popular {
    border-color: var(--primary);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.tier-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.tier-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
}

.price-period {
    font-size: 1rem;
    color: #999;
}

.tier-features {
    text-align: left;
    margin-bottom: 2rem;
}

.tier-features li {
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.tier-features .check {
    color: var(--primary);
    font-weight: bold;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* === FAQ === */
.faq-section {
    max-width: 700px;
    margin: 3rem auto 0;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 0;
}

.faq-item summary {
    font-weight: 600;
    cursor: pointer;
    padding: 0.25rem 0;
    font-size: 1.05rem;
}

.faq-item p {
    margin-top: 0.75rem;
    color: #aaa;
}

/* === ABOUT === */
.about-section {
    padding: 4rem 0;
}

.about-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-content strong {
    font-weight: 700;
}

/* === BLOG ARTICLE === */
.blog-article {
    padding: 3rem 0;
}

.article-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 1rem;
}

.article-date, .article-author {
    font-size: 0.9rem;
    color: #999;
    margin-right: 1rem;
}

.article-body {
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-body p {
    margin-bottom: 1.25em;
}

/* === FOOTER === */
.site-footer {
    background: var(--dark-bg);
    color: rgba(255,255,255,0.7);
    padding: 1.25rem 1.5rem;
    margin-top: auto;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copyright {
    text-align: center;
    font-size: 0.8rem;
    margin-bottom: 0.35rem;
}

.attribution {
    text-align: center;
    font-size: 0.7rem;
    color: var(--primary-light);
    margin: 0;
}

/* === GEO: DEFINITION LEAD === */
.definition-lead-section {
    padding: 2rem 0 2rem;
}

.definition-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* === GEO: ANSWER BLOCK === */
.answer-block {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--secondary);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: center;
}

/* === GEO: TOOL FAQ === */
.tool-faq {
    max-width: 700px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    text-align: left;
}

.tool-faq h2 {
    margin-bottom: 1.5rem;
}

/* === GEO: FRESHNESS === */
/* Removed — freshness line taken out of footer */

/* === UTILITIES === */
#load-more-container {
    text-align: center;
    padding: 2rem 0;
}

/* Hero Split Layout — Image Right, Text Left */
.hero-split {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 3rem;
}
.hero-text {
    flex: 1 1 50%;
    max-width: 50%;
}
.hero-image {
    flex: 0 0 auto;
    max-width: 35%;
}
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    opacity: 0.9;
    filter: contrast(1.1);
}

.hero-split .hero-text {
    text-align: left;
}
.hero-split .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
}
.hero-split .hero-text h1 {
    margin-left: 0;
    margin-right: 0;
}
@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        text-align: center;
    }
    .hero-text, .hero-image {
        max-width: 100%;
    }
    .hero-image {
        order: -1;
        max-width: 60%;
        margin: 0 auto;
    }
}
