/**
 * MetaScope Page Styles
 *
 * Comprehensive styles for the MetaScope product page.
 * Uses design tokens and integrates with animation system.
 */

/* ============================================
   BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #F7F9FC;
    background: #1C1C1E;
    overflow-x: hidden;
}

body.dark {
    background: #1C1C1E;
    color: #F7F9FC;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #F7F9FC;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00b0cf, #006374);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   HEADER STYLES
   ============================================ */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(28, 28, 30, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.fixed-header.scrolled {
    background: rgba(28, 28, 30, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo-container a {
    display: block;
    text-decoration: none;
}

.header-logo {
    height: 32px;
    width: auto;
    pointer-events: none;
}

.header-nav {
    display: flex;
    gap: 2rem;
}

.header-nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.header-nav-link:hover {
    background: rgba(0, 176, 207, 0.2);
    border-color: rgba(0, 176, 207, 0.4);
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: rgba(28, 28, 30, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover {
    background: rgba(0, 176, 207, 0.2);
    border-color: rgba(0, 176, 207, 0.4);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.gradient-hero-dark {
    background: linear-gradient(135deg, rgba(22, 45, 70, 0.85) 0%, rgba(28, 28, 30, 0.85) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00b0cf, #F7F9FC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-button,
.section-image-button {
    background: none;
    border: none;
    padding: 0;
    cursor: zoom-in;
    position: relative;
    display: block;
    transition: transform 0.3s ease;
}

.hero-image-button:hover,
.section-image-button:hover {
    transform: scale(1.02);
}

.hero-image-button:hover .expand-hint,
.section-image-button:hover .expand-hint {
    opacity: 1;
}

.expand-hint {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hero-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-content {
    max-width: 95vw;
    max-height: 90vh;
    cursor: default;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* ============================================
   CAPABILITIES SECTION
   ============================================ */
.capabilities-section {
    background: linear-gradient(180deg, #1C1C1E 0%, #162d46 100%);
}

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

.capability-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-8px);
    background: rgba(0, 176, 207, 0.1);
    border-color: rgba(0, 176, 207, 0.3);
    box-shadow: 0 15px 40px rgba(0, 176, 207, 0.15);
}

.capability-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #00b0cf, #006374);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.capability-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.capability-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #F7F9FC;
}

.capability-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    background: #1C1C1E;
    text-align: center;
}

.video-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   TEMPLATES SECTION (KEY FEATURE)
   ============================================ */
.templates-section {
    background: linear-gradient(180deg, #162d46 0%, #1C1C1E 100%);
    text-align: center;
}

.templates-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.templates-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.templates-features {
    text-align: left;
}

.template-feature {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.template-feature:hover {
    background: rgba(0, 176, 207, 0.1);
    border-color: rgba(0, 176, 207, 0.3);
}

.template-feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #00b0cf;
    margin-bottom: 0.5rem;
}

.template-feature p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.template-feature code {
    background: rgba(0, 176, 207, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    color: #00b0cf;
}

/* ============================================
   EXPORT SECTION
   ============================================ */
.export-section {
    background: #1C1C1E;
    text-align: center;
}

.export-stats {
    margin-bottom: 3rem;
}

.stat-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 176, 207, 0.1);
    border: 1px solid rgba(0, 176, 207, 0.3);
    border-radius: 20px;
    padding: 2rem 4rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #00b0cf;
}

.stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.export-formats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.format-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.format-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 176, 207, 0.1);
    border-color: rgba(0, 176, 207, 0.3);
}

.format-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00b0cf;
    margin-bottom: 0.75rem;
}

.format-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #F7F9FC;
    margin-bottom: 0.5rem;
}

.format-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.export-note {
    text-align: center;
}

.export-note p {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* ============================================
   DOCUMENT EXPORT SECTION
   ============================================ */
.document-export-section {
    background: linear-gradient(180deg, #1C1C1E 0%, #162d46 100%);
    padding: 6rem 0;
}

.document-export-section .container {
    max-width: 1400px;
}

.document-export-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00b0cf;
    margin-bottom: 1rem;
}

.document-export-section p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.document-export-section p strong {
    color: #F7F9FC;
    font-weight: 600;
}

/* Morph panel styling */
.document-export-section .morph-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    margin: 1rem 0;
    transition: all 0.4s ease;
}

.document-export-section .morph-panel.active {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 176, 207, 0.3);
}

.document-export-section .morph-panel h3 {
    margin-bottom: 0.75rem;
}

/* ============================================
   SECTION SCREENSHOTS (shared)
   ============================================ */
.section-screenshot {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    margin: 0 auto 3rem;
    display: block;
}

.search-screenshot,
.batch-screenshot {
    text-align: center;
    margin-bottom: 3rem;
}

.search-screenshot picture,
.batch-screenshot picture {
    display: block;
}

/* ============================================
   SEARCH SECTION
   ============================================ */
.search-section {
    background: #1C1C1E;
}

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

.search-feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.search-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 176, 207, 0.3);
}

.search-feature-card.featured {
    background: rgba(0, 176, 207, 0.1);
    border-color: rgba(0, 176, 207, 0.3);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    color: #00b0cf;
}

.search-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #F7F9FC;
}

.search-feature-card > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.feature-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #00b0cf;
}

/* ============================================
   KEYWORD RULES SECTION
   ============================================ */
.keyword-rules-section {
    background: linear-gradient(180deg, #1C1C1E 0%, #162d46 50%, #1C1C1E 100%);
}

.pro-badge {
    background: linear-gradient(135deg, #F5A623, #E09400);
    color: #1C1C1E;
    font-weight: 700;
}

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

.keyword-rule-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.keyword-rule-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 176, 207, 0.3);
}

.keyword-rule-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #00b0cf;
    margin-bottom: 1rem;
}

.rule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rule-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

.rule-list li:last-child {
    border-bottom: none;
}

.rule-list li strong {
    color: #F7F9FC;
    font-weight: 600;
}

.rule-list li code {
    background: rgba(0, 176, 207, 0.2);
    color: #00b0cf;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-family: 'SF Mono', Consolas, monospace;
    font-size: 0.85rem;
}

.keyword-rules-note {
    text-align: center;
    margin-top: 2rem;
}

.keyword-rules-note p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-style: italic;
}

/* Keyword Rules morph panel styling */
.keyword-rules-section .morph-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    margin: 1rem 0;
    transition: all 0.4s ease;
}

.keyword-rules-section .morph-panel.active {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(245, 166, 35, 0.3);
}

.keyword-rules-section .morph-panel h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F5A623;
    margin-bottom: 0.75rem;
}

.keyword-rules-section .morph-panel p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.keyword-rules-section .morph-panel p strong {
    color: #F7F9FC;
}

.keyword-rules-section .morph-panel p code {
    background: rgba(245, 166, 35, 0.2);
    color: #F5A623;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-family: 'SF Mono', Consolas, monospace;
    font-size: 0.85rem;
}

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

/* ============================================
   BATCH SECTION
   ============================================ */
.batch-section {
    background: linear-gradient(180deg, #162d46 0%, #1C1C1E 100%);
    text-align: center;
}

.batch-stats {
    margin-bottom: 3rem;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.batch-stat {
    text-align: center;
}

.batch-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #00b0cf;
    display: block;
}

.batch-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.batch-feature {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.batch-feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #F7F9FC;
    margin-bottom: 0.5rem;
}

.batch-feature p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* ============================================
   EXPLORE SECTION
   ============================================ */
.explore-section {
    background: #1C1C1E;
    text-align: center;
    padding: 4rem 0;
}

.explore-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #00b0cf, #006374);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.125rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 176, 207, 0.3);
}

.explore-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 176, 207, 0.4);
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.explore-cta:hover .arrow-icon {
    transform: translateX(5px);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    background: linear-gradient(135deg, rgba(22, 45, 70, 0.85), rgba(28, 28, 30, 0.85)),
                url(/images/backgrounds/webp/dense_web_of_interconnected_nodes_01.webp),
                url(/images/backgrounds/jpg/dense_web_of_interconnected_nodes_01.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured {
    background: rgba(0, 176, 207, 0.1);
    border-color: rgba(0, 176, 207, 0.4);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00b0cf, #006374);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F7F9FC;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: #00b0cf;
}

.price .period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.price-alternative {
    margin-top: 0.5rem;
}

.annual-price {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.plan-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.check-icon {
    color: #00b0cf;
    font-weight: 600;
    flex-shrink: 0;
}

.star-icon {
    flex-shrink: 0;
}

.feature-item span:last-child {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.4;
}

.pricing-action {
    text-align: center;
}

.pricing-disclaimer {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-disclaimer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.page-footer {
    background: rgba(28, 28, 30, 0.98);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-features-grid {
        grid-template-columns: 1fr;
    }
}

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

    .mobile-nav-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.25rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .templates-showcase {
        grid-template-columns: 1fr;
    }

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

    .stats-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .batch-features {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stat-number, .batch-stat-number {
        font-size: 2.5rem;
    }

    .export-formats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .pricing-section {
        background-attachment: scroll;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
