/* ====== CSS Variables & Base ====== */
:root {
    --primary-bg: #030303;
    --secondary-bg: #0a0a0a;
    --tertiary-bg: #141414;
    --gold: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --gold-light: #E8D081;
    --text-main: #f5f5f5;
    --text-muted: #a0a0a0;
    --red: #ff4b4b;
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    --font-stack: 'Inter', system-ui, -apple-system, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    position: relative;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    font-family: var(--font-stack);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
}

.gold-text {
    color: var(--gold);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.container-narrow {
    max-width: 900px;
}

.container-tight {
    max-width: 600px;
}

.center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.z-10 {
    z-index: 10;
}

.relative {
    position: relative;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #aa8822 100%);
    color: #000;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--gold-glow);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

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

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

.logo img {
    height: 38px;
}

/* ====== Hero Section ====== */
.hero {
    padding: 9rem 0 5rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--gold-glow) 0%, rgba(0,0,0,0) 60%);
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 90%;
}

.price-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--gold);
    border-radius: 0 8px 8px 0;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.offer-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.hero-image-wrapper {
    position: relative;
}

.hero-img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
}

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    animation: float 6s ease-in-out infinite;
}

.hero-floating-card span {
    font-weight: 600;
    font-size: 0.95rem;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* ====== Sections General ====== */
section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

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

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* ====== Problem Section (Cards Grid) ====== */
.problem-section {
    background-color: var(--secondary-bg);
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-card {
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

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

.dark-glass {
    background: linear-gradient(145deg, rgba(20,20,20,0.8) 0%, rgba(10,10,10,0.9) 100%);
}

.gold-glass {
    background: linear-gradient(145deg, rgba(212,175,55,0.05) 0%, rgba(20,20,20,0.8) 100%);
    border-color: rgba(212, 175, 55, 0.2);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.red-icon {
    background: rgba(255, 75, 75, 0.1);
    color: var(--red);
}

.gold-icon {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.highlight-text {
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0 !important;
}

.cross-list, .check-list {
    list-style: none;
}

.cross-list li, .check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.cross-list li::before, .check-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--red);
    font-weight: bold;
    font-size: 0.9rem;
}

.check-list li::before {
    content: "✓";
    color: var(--gold);
}


/* ====== Approach Section (Split) ====== */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.split-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.split-image img {
    width: 100%;
    transition: transform 0.7s ease;
}

.split-image:hover img {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
    color: var(--gold);
}

.feature-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1.8rem;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255,255,255,0.04);
}

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

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
}

.feature-header h3 {
    font-size: 1.3rem;
}

.feature-desc {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.detailed-list {
    list-style: none;
}

.detailed-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.95rem;
    color: rgb(215, 215, 215);
}

.detailed-list li::before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    top: -2px;
}

.detailed-list li strong {
    color: #fff;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    list-style: none;
}

.pill-list li {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}


/* ====== Results Section ====== */
.results-section {
    background-color: var(--secondary-bg);
}

.results-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
}

.result-box {
    flex: 1 1 250px;
    max-width: 320px;
    background: var(--tertiary-bg);
    border: 1px solid var(--border-color);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    transition: var(--transition);
}

.result-box:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.result-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.03);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.result-box h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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


/* ====== CTA Form Section ====== */
.cta-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}

.glass-panel {
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid rgba(255,255,255,0.2);
    border-radius: 24px;
    padding: 4rem 3rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.offer-highlight {
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.strikethrough {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.huge-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.1;
    text-shadow: 0 0 20px var(--gold-glow);
}

.panel-name {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

input {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.glowing-btn {
    margin-top: 1rem;
    padding: 1.2rem;
    font-size: 1.1rem;
}

.form-disclaimer {
    font-size: 0.75rem !important;
    margin-top: 1rem;
    margin-bottom: 0 !important;
    opacity: 0.6;
}

/* ====== Footer ====== */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    background: var(--secondary-bg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.copyright {
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ====== Animations ====== */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* JS Scroll Animations Classes */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.slide-left {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease-out;
}

.slide-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}

.in-view {
    opacity: 1;
    transform: translate(0);
}


/* ====== Responsive Design ====== */
@media (max-width: 900px) {
    .hero {
        padding: 9rem 0 3rem;
        min-height: auto;
    }
    
    section {
        padding: 4rem 0;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 0;
        align-items: center;
    }

    .hero-content {
        display: contents;
    }

    .badge {
        order: 1;
        font-size: calc(0.85rem - 2px);
        margin: 0 auto 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .hero h1 {
        order: 2;
        font-size: 2.8rem;
    }

    .hero p {
        order: 3;
        font-size: calc(1.125rem - 2px);
        max-width: 100%;
        margin: 0 auto 2rem;
    }

    .hero-image-wrapper {
        order: 4;
        margin-bottom: 2rem;
        width: 100%;
    }

    .price-box {
        order: 5;
        justify-content: center;
        border-left: none;
        border-bottom: 4px solid var(--gold);
        border-radius: 8px;
        width: 100%;
    }

    .hero-actions {
        order: 6;
        width: 100%;
    }

    .hero-floating-card {
        left: 20px;
        bottom: 20px;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }
    
    .split-image {
        order: -1;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 9rem 0 2rem;
    }

    section {
        padding: 3rem 0;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }

    .cta-card {
        padding: 2.5rem 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .top-banner {
        font-size: min(2.2vw, 10px);
        letter-spacing: -0.02em;
        white-space: nowrap;
        padding: 0.5rem 1rem;
    }
}

/* ====== V2 Additions (Banner, Steps, Testimonials, FAQ) ====== */
.top-banner {
    background-color: var(--gold);
    color: #000;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    width: 100%;
}

.navbar {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.nav-container {
    width: 100%;
    padding: 1rem 5%;
}

.steps-section {
    background-color: var(--primary-bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: center;
    position: relative;
}

.step-card {
    background: var(--tertiary-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 16px;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px var(--gold-glow);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.testimonials-section {
    background-color: var(--secondary-bg);
}

.testimonial-card {
    padding: 3rem 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.faq-section {
    background-color: var(--primary-bg);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--tertiary-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.faq-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: var(--text-muted);
    margin: 0;
}
