:root {
    --bg-dark: #0b0b0b;
    --bg-card: #121212;
    --primary: #bb86fc; /* Purple */
    --secondary: #03dac6; /* Teal */
    --text-main: #f5f5f5;
    --text-muted: #a0a0a0;
    --accent-glow: rgba(187, 134, 252, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

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

span {
    color: var(--primary);
}

.bg-alt {
    background-color: #0d0d0d;
}

.section-padding {
    padding: 100px 0;
}

/* Header & Nav */
.preview-banner {
    background-color: var(--primary);
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    width: 100%;
    min-height: 40px;
    box-sizing: border-box;
    position: relative;
    z-index: 2000;
}

.preview-banner a {
    color: #000;
    text-decoration: underline;
    margin-left: 10px;
}

header {
    position: fixed;
    top: 40px; /* Offset by the banner height */
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

@media (max-width: 768px) {
    nav ul { display: none; } /* Hide raw links on mobile to prevent overflow */
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

nav a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(187, 134, 252, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to stack */
}

.btn-primary {
    padding: 1.2rem 2.5rem;
    background: var(--primary);
    color: #000;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    box-shadow: 0 10px 20px var(--accent-glow);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--accent-glow);
}

.btn-secondary {
    padding: 1.2rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: white;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    background: var(--primary);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    font-size: 0.85rem;
}

/* Products Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.product-item {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition);
}

.product-item h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.product-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.product-item:hover {
    border-color: var(--secondary);
    background: rgba(3, 218, 198, 0.03);
}

/* Reviews Section */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
}

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

.review-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.rating {
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.author {
    margin-top: 2rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Info Section */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-text h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.icon {
    font-size: 1.5rem;
}

.map-placeholder {
    height: 400px;
    background: var(--bg-card);
    background-image: url('Map.png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-box {
    text-align: center;
    background: rgba(0,0,0,0.8);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.map-box p {
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-links h3, .footer-social h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    h1 { font-size: 3.5rem; }
    .review-grid { grid-template-columns: 1fr 1fr; }
    .info-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    * { overflow-x: visible !important; } /* Reset overflow for debugging/cleanup */
    body { overflow-x: hidden !important; width: 100%; position: relative; }
    .container { padding: 0 1rem; width: 100%; box-sizing: border-box; }
    
    h1 { font-size: 2.5rem; }
    .hero { height: auto; padding: 120px 0 60px; min-height: 100vh; }
    header { top: 0; position: absolute; } /* Un-fix header to prevent sticky math issues */
    .preview-banner { 
        display: flex;
        flex-direction: column;
        width: 100% !important; 
        box-sizing: border-box; 
        font-size: 0.7rem;
        padding: 10px 20px;
        text-align: center;
    }
    .preview-banner span { width: 100%; display: block; }
    .preview-banner a { display: block; margin-left: 0; margin-top: 4px; text-decoration: underline; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .section-padding { padding: 50px 0; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; margin-top: 2rem; }
    .badge { font-size: 0.7rem; padding: 0.4rem 1rem; }
    .btn-primary, .btn-secondary { width: 100%; display: block; padding: 1rem; margin-bottom: 0.5rem; }
    .logo { font-size: 1.2rem; }
}
