/* ========================================
   REALITASMARA HOMEPAGE
   Dark Premium Design System
   ======================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #06060b;
    --bg-secondary: #0d0d14;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --text-primary: #f0f0f5;
    --text-secondary: rgba(240, 240, 245, 0.55);
    --text-muted: rgba(240, 240, 245, 0.35);
    --accent: #e63946;
    --accent-glow: rgba(230, 57, 70, 0.3);
    --accent-soft: rgba(230, 57, 70, 0.1);
    --accent-hover: #ff4757;
    --radius-md: 12px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Offset for sticky nav */
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === STICKY NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(6, 6, 11, 0.85);
    /* Darker glassmorphism */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 100px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

/* === ANIMATIONS === */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    color: #fff;
    background: var(--accent);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 6px 30px var(--accent-glow);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover svg {
    transform: translateX(4px);
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
    overflow: hidden;
    /* Added to contain parallax */
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Note: JS parallax overrides transform, but we need initial state */
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0.3;
    transition: transform 0.1s ease-out;
    /* Crucial for smooth mouse parallax */
    will-change: transform;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.logo-wrapper {
    margin-bottom: 16px;
    animation: slideUp 0.6s ease;
}

.logo-img {
    height: auto;
    width: 320px;
    max-width: 80%;
    object-fit: contain;
    filter: brightness(1.2);
}

.hero-title {
    font-size: clamp(36px, 8vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    animation: slideUp 0.8s ease backwards;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #a5a5b5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: clamp(16px, 4vw, 20px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
    font-weight: 400;
    animation: slideUp 1s ease backwards;
}

/* Typing Effect Cursor */
.blinking-cursor {
    font-weight: 700;
    font-size: 1.1em;
    color: var(--accent);
    animation: blink 1s step-end infinite;
    display: inline-block;
    margin-left: 2px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-cta-wrapper {
    animation: slideUp 1.2s ease backwards;
}

/* === SECTION HEADER === */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-soft);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === THE UGLY TRUTH (DATA SECTION) === */
.data-section {
    padding: 60px 0;
    position: relative;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    margin-top: -1px;
    /* Overlap border elegantly */
}

.data-card {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(230, 57, 70, 0.15);
    border-radius: var(--radius-md);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

@media (max-width: 768px) {
    .data-card {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 32px 24px;
    }
}

.data-number {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    color: var(--accent);
    text-shadow: 0 0 40px var(--accent-glow);
    display: flex;
    align-items: flex-start;
}

.data-number .percent {
    font-size: 40px;
    margin-top: 8px;
}

.data-text {
    flex-grow: 1;
}

.data-text p:first-child {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.data-text .sub-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === THE ARSENAL (TOOLS GRID) === */
.arsenal-section {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}

.tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-decoration: none;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tool-card.featured {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    padding: 48px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(230, 57, 70, 0.3);
}

.tool-card.featured .tool-icon {
    font-size: 80px;
    margin-bottom: 0;
}

.tool-card.featured .tool-content {
    flex: 1;
}

.tool-card.featured .tool-title {
    font-size: 32px;
    margin-bottom: 16px;
}

.tool-card.featured .tool-desc {
    font-size: 16px;
    margin-bottom: 32px;
}

.tool-card.featured .tool-action {
    font-size: 18px;
}

@media (max-width: 768px) {
    .tool-card.featured {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 32px 24px;
    }
    
    .tool-card.featured .tool-icon {
        font-size: 60px;
    }
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: var(--transition);
}

.active-tool:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.active-tool.new-tool:hover::before {
    background: #00d2d3;
}

.tool-status {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 1px;
}

.tool-status.live {
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
    border: 1px solid rgba(46, 213, 115, 0.2);
}

.tool-status.new {
    background: rgba(0, 210, 211, 0.1);
    color: #00d2d3;
    border: 1px solid rgba(0, 210, 211, 0.2);
}

.tool-status.coming-soon {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.tool-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tool-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
    flex-grow: 1;
}

.tool-action {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.active-tool.new-tool .tool-action {
    color: #00d2d3;
}

.active-tool:hover .tool-action {
    gap: 8px;
}

.locked-tool {
    opacity: 0.6;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.01);
}

.locked-tool .tool-action {
    color: var(--text-muted);
}

/* === THE LIBRARY (PRODUCTS) === */
.library-section {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
}

.products-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

@media (max-width: 768px) {
    .products-container {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(230, 57, 70, 0.1);
    transform: translateY(-4px);
}

.product-visual {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background: #06060b;
}

.product-mockup-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Show the full mockup without cropping */
    object-position: center;
    /* Center the mockup clearly */
    padding: 10px;
    /* Give it some breathing room */
    transition: transform 0.5s ease;
}

.product-card:hover .product-mockup-img {
    transform: scale(1.02);
    /* Very subtle zoom to avoid cutting edges */
}

.screening-bg {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-bottom: 2px solid #e63946;
}

/* We keep these for color context but images are primary now */
.screening-bg {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-bottom: 2px solid #e63946;
}

.deepening-bg {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
    border-bottom: 2px solid #00d2d3;
}

.escape-bg {
    background: linear-gradient(135deg, #2a0a0a 0%, #1a0000 100%);
    border-bottom: 2px solid #ff4757;
}

.product-content {
    padding: 32px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.product-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    min-height: 90px;
    /* Force alignment of elements below */
}

/* Specific fix for the skip link to prevent wrapping as requested */
.product-actions .btn-ghost {
    font-size: 11.5px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-actions .skip-link {
    flex-direction: column;
    padding: 16px 20px;
    height: auto;
    line-height: 1.4;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5) !important;
}

.product-actions .price-large {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-primary);
    margin-top: 6px;
    display: block;
}

.product-actions .btn-cta-main {
    height: auto;
    padding: 16px 24px;
    line-height: 1.4;
    text-align: center;
    font-size: 13px;
}

.product-discount-info {
    border: 1px dashed rgba(230, 57, 70, 0.3);
    background: rgba(230, 57, 70, 0.02);
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.discount-label {
    font-size: 10px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 1.5px;
}

.discount-instruction {
    font-size: 13px;
    color: var(--text-primary);
    line-height: 1.5;
}

/* === THE PHILOSOPHY (MANIFESTO) === */
.manifesto-section {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.manifesto-box {
    max-width: 680px;
    margin: 0 auto;
    background: rgba(230, 57, 70, 0.03);
    border: 1px solid rgba(230, 57, 70, 0.15);
    border-radius: var(--radius-md);
    padding: 48px;
    position: relative;
    text-align: center;
}

.quote-mark {
    position: absolute;
    top: -20px;
    left: 48px;
    font-size: 80px;
    font-weight: 900;
    color: var(--accent-glow);
    line-height: 1;
    font-family: serif;
}

.manifesto-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.manifesto-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.manifesto-text strong {
    color: var(--text-primary);
}

.manifesto-author {
    margin-top: 32px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
}

/* === SOCIAL PROOF SECTION === */
.social-section {
    padding: 100px 0;
    position: relative;
    background: var(--bg-primary);
    text-align: center;
}

.social-card {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 48px;
    max-width: 600px;
    margin: 0 auto;
}

.social-bio {
    margin-bottom: 32px;
}

.bio-lock {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bio-lock::before {
    content: "🔒";
    font-size: 16px;
}

.social-bio p:not(.bio-lock) {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.ig-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.ig-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.3);
}

.tiktok-btn {
    background: #000000;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tiktok-btn:hover {
    background: #111111;
    border-color: #00f2fe;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 242, 254, 0.15);
}

/* === FOOTER === */
.footer {
    padding: 60px 0 32px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    gap: 24px;
}

.footer-brand {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.disclaimer-text {
    margin-top: 16px;
    font-size: 11px !important;
    line-height: 1.5;
    color: rgba(240, 240, 245, 0.25) !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === FREE BADGE === */
.free-badge-container {
    margin-top: 24px;
}

.free-tag {
    font-size: 10px;
    font-weight: 800;
    color: #2ed573;
    background: rgba(46, 213, 115, 0.1);
    border: 1px solid rgba(46, 213, 115, 0.2);
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 1px;
}

/* === TESTIMONIAL MARQUEE === */
.testimonial-section {
    padding: 100px 0;
    overflow: hidden;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}

/* === THE INTELLIGENCE BRIEFINGS (ARTICLES) === */
.briefings-section {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
}

.briefings-grid {
    display: flex;
    overflow-x: auto;
    gap: 32px;
    padding: 20px 0 40px;
    /* Custom Scrollbar for Desktop */
    scrollbar-width: thin;
    scrollbar-color: var(--accent) rgba(255, 255, 255, 0.05);
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.briefings-grid::-webkit-scrollbar {
    height: 6px;
}

.briefings-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.briefings-grid::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.briefing-card {
    flex: 0 0 380px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
}

.briefing-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.1);
}

.briefing-img-wrapper {
    height: 240px;
    background: #0a0a0f;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.briefing-img-wrapper .category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    background: var(--accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.briefing-card-content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.briefing-meta-info {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.briefing-card-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
    transition: var(--transition);
}

.briefing-card:hover .briefing-card-title {
    color: var(--accent);
}

.briefing-card-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.briefing-read-more {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.briefing-read-more svg {
    transition: transform 0.3s ease;
}

.briefing-card:hover .briefing-read-more svg {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .briefings-grid {
        grid-template-columns: 1fr;
    }
}

.marquee-content {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee 60s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    width: 320px;
    flex-shrink: 0;
    transition: var(--transition);
}

.testi-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.testi-user {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.testi-user span {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 11px;
    margin-left: 4px;
}

.testi-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    font-style: italic;
}

/* === FAQ SECTION === */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid var(--border);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-q {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.faq-a {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === SNEAK PEEK MODAL === */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    /* Ensure solid dark background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    /* Important for rounding corners over scrollable area */
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-content {
    overflow-y: auto;
    padding: 40px 32px;
}

/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}


.modal-header {
    text-align: center;
    margin-bottom: 32px;
    padding-right: 40px;
    /* Space for close button */
    padding-left: 40px;
}

.modal-cover-img {
    width: 120px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 14px;
    color: var(--text-secondary);
}

.modal-images {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.modal-img-wrapper {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    display: flex;
    justify-content: center;
}

.modal-img-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    /* Slight rounding for inner image */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal-cta {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    text-align: center;
}

.buy-prompt {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* === RESPONSIVE OVERRIDES === */

@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .navbar {
        padding: 16px 0;
    }

    .nav-logo img {
        height: 60px !important;
    }

    .nav-links {
        display: none;
    }

    .hero-section {
        padding: 120px 0 60px;
    }

    .logo-img {
        width: 300px !important;
    }

    .hero-title {
        font-size: 38px !important;
        line-height: 1.1;
    }

    .hero-desc {
        font-size: 15px !important;
        min-height: auto;
    }

    .data-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .data-card {
        padding: 24px !important;
    }

    .data-number {
        font-size: 60px !important;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 28px !important;
    }

    .products-container {
        gap: 24px;
    }

    .product-card {
        flex-direction: column;
    }

    .product-visual {
        min-height: 220px;
    }

    .manifesto-box {
        padding: 40px 24px;
    }

    .quote-mark {
        left: 24px;
        font-size: 60px;
    }

    .manifesto-title {
        font-size: 22px;
    }

    .social-card {
        padding: 32px 20px;
    }

    .modal-container {
        width: 95%;
        max-height: 95vh;
    }

    .modal-content {
        padding: 32px 20px;
    }

    .modal-header {
        padding-left: 0;
        padding-right: 30px;
    }

    .modal-img-wrapper {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px !important;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .nav-cta {
        display: none;
    }
}