:root {
    /* Color Palette */
    --bg-dark: #0a0a0c;
    --bg-darker: #050505;
    --bg-panel: rgba(255, 255, 255, 0.03);
    --bg-panel-hover: rgba(255, 255, 255, 0.06);
    --text-primary: #f8f9fa;
    --text-secondary: #a0aab2;
    --accent-gold: #d4af37;
    --accent-gold-glow: rgba(212, 175, 55, 0.4);
    --accent-blue: #0070f3;
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-heading: 'Outfit', system-ui, sans-serif;
    
    /* Spacing & Sizes */
    --max-width: 1100px;
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.highlight-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin: 1.5rem 0;
}

/* Glassmorphism Panels */
.glass-panel {
    background: var(--bg-panel);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: var(--transition);
}

.glass-panel:hover {
    background: var(--bg-panel-hover);
    border-color: rgba(255,255,255,0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--bg-darker);
    box-shadow: 0 4px 15px var(--accent-gold-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

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

.btn-outline:hover {
    background: var(--bg-panel-hover);
    border-color: var(--accent-gold);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 var(--accent-gold-glow); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 6rem;
    background: radial-gradient(circle at center, rgba(212,175,55,0.05) 0%, var(--bg-dark) 70%);
}

.hero-container {
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

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

.hero-questions {
    margin: 3rem 0;
}

.question-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.chip {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

/* Section Title */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
}

.step-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-secondary);
}

/* Data Preview */
.data-preview {
    text-align: center;
}

.data-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.data-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-buttons-preview {
    margin: 3rem 0;
}

.action-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.btn-icon {
    background: rgba(255,255,255,0.05);
    color: #fff;
    border: 1px solid var(--border-color);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}
.btn-whatsapp:hover {
    background: #20b858;
}

/* Comparison */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comp-card {
    padding: 3rem;
    border-radius: var(--border-radius);
}

.old-way {
    background: rgba(255,0,0,0.03);
    border: 1px solid rgba(255,0,0,0.1);
}

.cross-list li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.final-step {
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1.5rem;
    border: none !important;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0,0,0,0.5);
    border-radius: 12px;
    font-weight: 600;
}

.process-flow .highlight {
    color: var(--accent-gold);
}

/* Installation */
.time-card {
    display: inline-block;
    text-align: center;
    margin: 3rem 0;
    max-width: 500px;
}

.time-icon {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.big-statement {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Pricing */
.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(212,175,55,0.1) 0%, var(--bg-panel) 100%);
    border: 1px solid rgba(212,175,55,0.3);
}

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.price {
    font-size: 4rem;
    color: var(--accent-gold);
}

.pricing-features ul {
    margin-top: 1rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
}

.pricing-features i {
    color: var(--accent-gold);
}

.pricing-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.extra-cost {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Objections */
.objection-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.objection-content p {
    margin-bottom: 1rem;
}

.highlight-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(212,175,55,0.1);
    border-left: 4px solid var(--accent-gold);
    border-radius: 4px;
}

/* Final CTA */
.final-cta {
    background: radial-gradient(circle at center, rgba(212,175,55,0.05) 0%, var(--bg-dark) 100%);
}

.closing-statement {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-panel);
    border-radius: var(--border-radius);
}

.final-pitch {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-top: 1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
footer {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Animations / Scroll Reveal */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .data-list {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .action-btns {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .price {
        font-size: 3rem;
    }
}

/* Mock UI Styles */
.mock-ui {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mock-card {
    background: #111113;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.mock-info h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.mock-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.mock-address {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.2rem;
}

.mock-actions {
    display: flex;
    gap: 0.5rem;
}

.mock-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: default;
    border: 1px solid var(--border-color);
}

.mock-phone {
    background: transparent;
    color: var(--accent-gold);
}

.mock-wa {
    background: transparent;
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.3);
}

.blur-text {
    filter: blur(4px);
    user-select: none;
    pointer-events: none;
}

.blur-text-light {
    filter: blur(2px);
    user-select: none;
    pointer-events: none;
}

/* Hide Netlify Badge */
[data-netlify-badge], 
.netlify-badge, 
iframe[src*="netlify"] {
    display: none !important;
}
