:root {
    --bg-black: #050505;
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #161616;
    
    --text-white: #ffffff;
    --text-muted: #888888;
    
    --primary-green: #44A01C;
    --primary-green-glow: rgba(68, 160, 28, 0.4);
    
    --radius-card: 24px;
    --radius-btn: 50px;
    
    --font-main: 'Inter', sans-serif;
    --nav-height: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4 { font-weight: 700; color: var(--text-white); }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.highlight { color: var(--primary-green); }

.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    height: var(--nav-height);
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; height: 100%; }

.logo-img-container {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px 0;
}

.nav-logo {
    height: 38px;
    width: auto;
    filter: none; 
}

.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 0.95rem; color: var(--text-muted); font-weight: 500; }
.nav-link:hover, .nav-link.active { color: var(--text-white); }

.nav-button {
    padding: 10px 24px;
    background-color: #fff;
    color: #000;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
}
.nav-button:hover { background-color: var(--primary-green); color: #fff; }

.btn {
    display: inline-block;
    padding: 16px 36px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}
.btn-round { border-radius: var(--radius-btn); }
.btn-sm { padding: 12px 24px; font-size: 0.9rem; width: 100%; display: block; margin-top: auto;}
.btn-block { width: 100%; display: block; }

.btn-primary { background: var(--primary-green); color: #fff; border: 1px solid var(--primary-green); }
.btn-primary:hover { box-shadow: 0 0 20px var(--primary-green-glow); transform: translateY(-2px); }

.btn-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.landing-hero {
    height: 80vh; 
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-centered { position: relative; z-index: 2; max-width: 800px; }

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}
.dot { width: 6px; height: 6px; background-color: var(--primary-green); border-radius: 50%; box-shadow: 0 0 10px var(--primary-green); }

.landing-title { font-size: 4.5rem; line-height: 1.1; margin-bottom: 24px; letter-spacing: -2px; }
.landing-sub { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 40px; }
.highlight-text { color: var(--text-white); font-weight: 700; }

.cta-group { display: flex; gap: 16px; justify-content: center; }

.glow-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(68,160,28,0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}

.novaview-section {
    padding: 80px 0;
    margin-bottom: 40px;
}

.novaview-wrapper {
    background: linear-gradient(145deg, #0d0d0d, #050505);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-card);
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    overflow: hidden;
}

.novaview-wrapper::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40%; height: 100%;
    background: radial-gradient(circle at center, rgba(68, 160, 28, 0.08), transparent 70%);
    pointer-events: none;
}

.novaview-content { flex: 1; z-index: 2; }
.novaview-visual { flex: 1; display: flex; justify-content: center; align-items: center; z-index: 2; }

.status-badge-pulse {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 165, 0, 0.1);
    color: #FFA500;
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pulse-dot {
    width: 8px; height: 8px; background: #FFA500; border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7);
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(255, 165, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 165, 0, 0); }
}

.novaview-title { font-size: 2.8rem; margin-bottom: 15px; }
.novaview-sub { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 30px; }

.novaview-features { margin-bottom: 40px; }
.novaview-features li {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 12px; font-weight: 500; font-size: 1rem;
    color: #e0e0e0;
}
.novaview-features .check-icon {
    stroke: var(--primary-green);
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-glow-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-glow-container::before {
    content: '';
    position: absolute;
    width: 350%; 
    height: 350%;
    background: radial-gradient(circle, rgba(68,160,28,0.25) 0%, transparent 70%);
    z-index: 1;
}

.novaview-logo-lg {
    width: 640px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    transition: transform 0.4s ease;
}

@media (max-width: 768px) {
    .icon-glow-container {
        width: 200px;
        height: 200px;
    }
    .novaview-logo-lg {
        width: 450px;
    }
}

.novaview-wrapper:hover .novaview-logo-lg {
    transform: scale(1.05) rotate(5deg);
}

.modal-lg { max-width: 700px; text-align: left; }
.modal-logo-sm { width: 40px; height: 40px; margin-right: 15px; }
.roadmap-header { display: flex; align-items: center; margin-bottom: 10px; }
.modal-sub { margin-bottom: 30px; color: var(--text-muted); }

.roadmap-item {
    background: #000;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.roadmap-item.active { border-color: var(--primary-green); background: rgba(68, 160, 28, 0.03); }
.roadmap-item.locked { opacity: 0.6; }

.roadmap-status {
    display: inline-block; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; padding: 4px 8px; border-radius: 4px;
    margin-bottom: 10px;
}
.active .roadmap-status { background: var(--primary-green); color: #fff; }
.locked .roadmap-status { background: #333; color: #888; }

.roadmap-specs {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.roadmap-specs li {
    font-size: 0.85rem; color: var(--primary-green);
    background: rgba(68,160,28,0.1); padding: 4px 10px; border-radius: 4px;
}

.usp-banner {
    margin-top: calc(var(--nav-height) + 20px); 
    margin-bottom: 20px; 
}

.usp-content {
    background: linear-gradient(90deg, #111 0%, #0d2208 100%);
    border: 1px solid rgba(68, 160, 28, 0.3);
    padding: 30px;
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    gap: 20px;
}

.usp-banner.usp-blue-accent .usp-content {
    background: linear-gradient(90deg, #111 0%, #081022 100%);
    border: 1px solid rgba(0, 191, 255, 0.3);
}

.usp-banner.usp-blue-accent .usp-icon .icon-exclamation {
    fill: #00BFFF;
}

.usp-banner.usp-blue-accent .usp-text h3 {
    color: #00BFFF;
}

.usp-icon { display: flex; align-items: center; justify-content: center; }
.icon-exclamation { width: 42px; height: 42px; fill: var(--primary-green); }
.icon-infinity { width: 40px; height: 40px; fill: var(--primary-green); display: inline-block; vertical-align: middle; margin-right: 12px;}

.usp-text h3 { color: var(--primary-green); margin-bottom: 5px; }
.usp-text p { color: #ccc; font-size: 0.95rem; }

main, section {
    padding-top: 40px;
    padding-bottom: 80px;
}

.category-header { margin-bottom: 40px; text-align: center; }
.category-header h2 { font-size: 2rem; display: flex; align-items: center; justify-content: center; }
.category-header p { color: var(--text-muted); }

.spacer { height: 80px; }

.highlight-guide {
    background: linear-gradient(135deg, var(--bg-card) 0%, #0d120a 100%);
    padding: 0; 
    border-radius: var(--radius-card);
    border: 1px solid rgba(68, 160, 28, 0.2);
    box-shadow: 0 0 40px rgba(68, 160, 28, 0.1);
    margin-bottom: 30px; 
    overflow: hidden;
}

.guide-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px;
}

.guide-content {
    flex: 1;
    padding-left: 20px;
    text-align: center;
}

.guide-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    padding: 0;
}

.product-cover {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-cover:hover { 
    transform: scale(1.03) translateY(-5px);
    cursor: pointer;
}

.highlight-title { font-size: 2.2rem; color: var(--primary-green); margin-bottom: 15px; line-height: 1.2;}
.highlight-subtitle { font-size: 1.1rem; color: #ccc; margin-bottom: 30px; line-height: 1.6; }
.guide-action { display: flex; justify-content: center; align-items: center; gap: 20px; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.grid-1 { display: grid; grid-template-columns: 1fr; margin-bottom: 80px;}

.collection-selector {
    display: flex;
    overflow-x: scroll; 
    gap: 15px;
    padding: 10px 0; 
    margin-bottom: 50px;
    
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    
    scrollbar-width: none;
    -ms-overflow-style: none;
    mask-image: none; 
    -webkit-mask-image: none;
    
    scroll-snap-type: x mandatory;
}

.collection-selector::-webkit-scrollbar {
    display: none;
}

.topic-btn {
    flex-shrink: 0; 
    padding: 10px 20px;
    background: var(--bg-card);
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-btn);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    scroll-snap-align: start;
}

.topic-btn.active {
    color: var(--text-white);
    background: var(--primary-green);
    border-color: var(--primary-green);
    box-shadow: 0 0 15px var(--primary-green-glow);
    transform: scale(1.05);
}

.topic-btn:hover {
    color: var(--text-white);
    border-color: rgba(255,255,255,0.3);
}

.collection-display {
    min-height: 450px;
}

.product-collection {
    position: absolute; 
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    transform: rotateY(-10deg) scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.product-collection.active {
    position: relative;
    opacity: 1;
    pointer-events: all;
    transform: rotateY(0deg) scale(1);
}

.product-list { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 20px; 
}

.product-item {
    background: var(--bg-dark); 
    padding: 20px; 
    border-radius: 16px;
    text-align: center; 
    font-size: 1rem; 
    border: 1px solid var(--bg-dark);
    transition: 0.3s; 
    font-weight: 600;
    width: 250px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.product-item:hover { border-color: rgba(68, 160, 28, 0.5); transform: translateY(-5px); background: #0d120a; }

.collection-cover {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.empty-item { display: none; }

.card {
    background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-card); padding: 32px; transition: 0.3s ease;
    display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.2); background: var(--bg-card-hover); }

.bundle-card {
    flex-direction: row; align-items: center; border-color: rgba(68, 160, 28, 0.4);
    background: radial-gradient(circle at top right, #0f1f0a, var(--bg-card));
    padding: 50px; position: relative;
}
.bundle-tag {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--primary-green); color: #fff; padding: 8px 24px;
    border-radius: 20px; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px;
}
.bundle-content { flex: 2; padding-right: 40px; }
.bundle-action { flex: 1; }
.bundle-desc { color: var(--text-muted); margin-bottom: 25px; line-height: 1.6; }

.bundle-card.no-gradient {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
}

.pricing-section {
    padding-top: 150px;
    padding-bottom: 100px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-card);
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: rgba(68, 160, 28, 0.3);
}

.price-card.featured {
    border-color: var(--primary-green);
    background: radial-gradient(circle at top, rgba(68,160,28,0.05), var(--bg-card));
}

.price-header { margin-bottom: 30px; }

.price-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-white);
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 5px;
}

.price-period {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.price-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
    text-align: left;
    padding: 0 10px;
}

.price-features li {
    margin-bottom: 15px;
    color: #ccc;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    color: var(--primary-green);
    font-weight: bold;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-green);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}


.feature-row { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 15px; 
}

.feature-row li { 
    font-size: 0.9rem; 
    padding: 6px 14px; 
    border-radius: 6px; 
    color: var(--primary-green);
    border: 2px solid rgba(68, 160, 28, 0.2);
}

.feature-row li.highlight { 
    color: #FF9500; 
    background: rgba(255, 149, 0, 0.1); 
    border: 1px solid rgba(255, 149, 0, 0.5); 
    
    font-weight: 700;
    box-shadow: 0 0 12px rgba(255, 149, 0, 0.2);
}

.imprint-section, .contact-section { padding-top: 150px; padding-bottom: 80px; text-align: center; }

.about-hero {
    padding-top: 150px;
    padding-bottom: 30px;
    text-align: center;
}

#founders {
    padding-top: 20px;
    padding-bottom: 80px;
}

.about-hero h1, .contact-section h1 { font-size: 3.5rem; margin-bottom: 20px; }
.about-lead { font-size: 1.2rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-card);
    border: 1px solid rgba(255,255,255,0.05);
}

.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    background: #000;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(68, 160, 28, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.imprint-content { text-align: left; max-width: 800px; margin: 0 auto; color: #ccc; }
.imprint-content h2 { margin-top: 30px; margin-bottom: 15px; color: var(--text-white); border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
.imprint-content p { margin-bottom: 15px; line-height: 1.8; }

.founders-section { 
    padding-top: 10px;
    padding-bottom: 100px; 
}

.founder-card { 
    text-align: center; 
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.founder-card:hover {
    transform: translateY(-10px);
}

.founder-card:active {
    transform: scale(0.98);
}

.founder-img {
    width: 100%; height: 400px; border-radius: var(--radius-card);
    overflow: hidden; 
    margin-bottom: 0px; 
    filter: grayscale(100%); 
    transition: 0.4s ease;
}
.founder-card:hover .founder-img { filter: grayscale(0%); transform: scale(1.02); }
.founder-img img { width: 100%; height: 100%; object-fit: cover; }
.role { display: block; color: var(--primary-green); font-weight: 600; font-size: 0.9rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }

.title-ceo {
    color: var(--primary-green); 
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block; 
    margin-top: 0;
    margin-bottom: 15px;
}

.founder-info {
    padding-top: 20px; 
}

.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
    padding: 20px;
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-content {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px; border-radius: var(--radius-card);
    width: 90%; max-width: 500px; text-align: center;
    position: relative; transform: translateY(20px); transition: 0.3s;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-overlay.active .modal-content { transform: translateY(0); }

.modal-xl {
    max-width: 1400px;
    width: 95%;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.modal-close {
    position: absolute; top: 20px; right: 20px;
    background: none; border: none; color: var(--text-muted);
    font-size: 1.5rem; cursor: pointer;
    z-index: 10;
}
.modal-close:hover { color: var(--text-white); }

.modal-content h3 { font-size: 1.8rem; margin-bottom: 10px; }
.modal-content p { color: var(--text-muted); margin-bottom: 25px; }

.founder-modal-body {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.founder-modal-header {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-modal-img-container {
    flex-shrink: 0;
    width: 250px;
    height: 250px;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 2px solid var(--primary-green);
    box-shadow: 0 0 30px rgba(68, 160, 28, 0.15);
}

.founder-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-modal-info {
    flex: 1;
}

.founder-modal-info h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: var(--text-white);
}

.founder-modal-info .role {
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: inline-block;
}

.founder-bio {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.05rem;
}

.founder-gallery-section {
    margin-top: 10px;
}

.gallery-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 600;
}

.founder-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    cursor: zoom-in;
}

.gallery-img:hover {
    border-color: var(--primary-green);
    transform: scale(1.02);
}

.newsletter-form input {
    width: 100%; padding: 14px; margin-bottom: 15px;
    background: #000; border: 1px solid rgba(255,255,255,0.1);
    color: white; border-radius: 8px; outline: none; font-size: 1rem;
}
.newsletter-form input:focus { border-color: var(--primary-green); }

footer { 
    padding: 40px 0; 
    border-top: 1px solid rgba(255,255,255,0.05); 
    text-align: center; 
    color: var(--text-muted); 
    font-size: 0.85rem; 
    margin-top: auto;
}
footer a:hover { color: var(--primary-green); }

.menu-toggle { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 2px; margin: 5px auto; background-color: white; }
.animate-hidden { opacity: 0; transform: translateY(20px); transition: all 0.8s ease-out; }
.animate-show { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
    .founder-modal-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .founder-modal-img-container {
        width: 180px;
        height: 180px;
    }
    
    .founder-modal-info h3 {
        font-size: 2rem;
    }
    
    .founder-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed; left: -100%; top: var(--nav-height);
        flex-direction: column; background-color: var(--bg-black);
        width: 100%; height: calc(100vh - var(--nav-height));
        padding-top: 40px; transition: 0.3s;
    }
    .nav-menu.active { left: 0; }
    .menu-toggle { display: block; }
    
    .landing-title { font-size: 2.8rem; }
    .bundle-card { flex-direction: column; text-align: center; }
    .bundle-content { padding-right: 0; margin-bottom: 30px; }
    .feature-row { justify-content: center; }
    .usp-content { flex-direction: column; text-align: center; }
    .cta-group { flex-direction: column; width: 100%; }
    
    .guide-layout { flex-direction: column; padding: 20px;}
    .guide-content { padding: 0 0 30px 0; text-align: center; }
    .guide-image-container { width: 100%; padding: 15px; }
    .guide-action { flex-direction: column; }
    
    .product-list { flex-direction: column; align-items: center; }
    .product-item { width: 100%; max-width: 350px; }
    
    .highlight-guide { margin-bottom: 60px; }

    .novaview-wrapper { flex-direction: column; padding: 30px; }
    .novaview-content { text-align: center; margin-bottom: 30px; }
    .novaview-features li { justify-content: center; }
    
    .modal-content { padding: 30px 20px; }
}

.nav-button-sm {
    padding: 6px 16px;
    font-size: 0.8rem;
    border-radius: var(--radius-btn);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-orange {
    background: rgba(255, 165, 0, 0.1);
    color: #FFA500;
    border: 1px solid rgba(255, 165, 0, 0.4);
}

.btn-orange:hover {
    background: #FFA500;
    color: #000;
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.6);
    transform: translateY(-1px);
}

/* --- New Sale/Discount Styles --- */

.sale-tag {
    display: inline-block;
    background: #FF0000; /* Bright red for attention */
    background: linear-gradient(90deg, #ff9500 0%, #ff5200 100%);
    color: #fff;
    padding: 8px 20px;
    margin-top: 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 82, 0, 0.4);
    animation: pulse-sale 1.5s infinite;
}

@keyframes pulse-sale {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 82, 0, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 4px 20px rgba(255, 82, 0, 0.8); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 82, 0, 0.4); }
}

.sale-card.price-card {
    padding-top: 60px;
    border: 1px solid #FF5200; 
}

.price-card.featured.sale-card {
    border-color: var(--primary-green); /* Keep featured green border for best value */
}

.discount-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FF5200;
    color: #fff;
    padding: 8px 15px;
    border-radius: var(--radius-btn);
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 82, 0, 0.5);
    z-index: 10;
    letter-spacing: 0.5px;
    margin-top: 30px;
}

.discount-badge.discount-30 {
    background: var(--primary-green);
    box-shadow: 0 5px 15px var(--primary-green-glow);
    margin-top: 30px;
}

.original-price {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 5px;
    font-weight: 400;
}

.sale-price {
    font-size: 4rem;
    color: #FF5200;
    line-height: 1;
}

.featured .sale-price {
    color: var(--primary-green);
}

.price-cents {
    font-size: 0.5em; 
    vertical-align: super;
    font-weight: 600;
}