@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #6d28d9; /* Brand Purple */
    --primary-light: #8b5cf6;
    --primary-dark: #4c1d95;
    --secondary: #1e293b; /* Deep Slate */
    --accent: #fefce8; /* Soft Yellow Tint */
    --brand-yellow: #fbbf24;
    --background: #ffffff;
    --surface: #f8fafc;
    --text: #0f172a;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --white: #ffffff;
    --success: #10b981;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 30px rgba(109, 40, 217, 0.1);
}

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

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

h1, h2, h3, h4, h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

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

/* Disclaimer Bar */
.top-bar {
    background-color: #f3f4f6;
    padding: 8px 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.top-bar p {
    max-width: 800px;
    margin: 0 auto;
}

/* Navigation */
nav {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

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

.cta-btn {
    background-color: var(--secondary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-btn:hover {
    transform: translateY(-2px);
    background-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.cta-btn.amazon {
    background-color: #232f3e;
}

.cta-btn.amazon:hover {
    background-color: #000;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--accent);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    background-color: var(--accent);
    overflow: hidden;
    padding-top: 140px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-subtext {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-disclaimer {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--primary-dark);
    margin-bottom: 35px;
    background: rgba(125, 140, 125, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    z-index: 1;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(125, 140, 125, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero-image img {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

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

/* Backgrounds */
.bg-light {
    background-color: var(--surface);
}

.text-center-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Awareness Card */
.awareness-card {
    background: var(--white);
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.warning-box {
    margin-top: 30px;
    padding: 20px;
    background-color: #fff9f0;
    border: 1px solid #ffedcc;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #856404;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.f-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 15px;
    margin-bottom: 25px;
}

/* Texture Section */
.texture-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.texture-image img {
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

/* References */
.references-box {
    background: var(--secondary);
    color: var(--white);
    padding: 60px;
    border-radius: 30px;
}

.ref-list {
    margin: 30px 0;
}

.ref-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ref-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Amazon Section */
.amazon-highlight {
    background-color: #f8f9fa;
}

.amazon-box {
    background: #232f3e;
    color: var(--white);
    padding: 80px;
    border-radius: 40px;
    text-align: center;
}

.amazon-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff9900;
}

.amazon-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.amazon-outline {
    background: transparent;
    border: 2px solid var(--white);
}

/* Order Section */
.order-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
}

.product-gallery .main-img img {
    background: var(--accent);
    border-radius: 20px;
    width: 100%;
}

.thumbnails {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.thumbnails img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbnails img:hover {
    border-color: var(--primary);
}

.price-block {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
}

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

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.discount-badge {
    background: #fee2e2;
    color: #b91c1c;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.purchase-controls {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.quantity {
    display: flex;
    border: 1px solid var(--border);
    border-radius: 50px;
    overflow: hidden;
}

.qty-btn {
    width: 50px;
    border: none;
    background: transparent;
    font-size: 1.2rem;
    cursor: pointer;
}

.quantity input {
    width: 50px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    font-size: 1.1rem;
}

.buy-now {
    flex-grow: 1;
}

.trust-icons {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.t-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    text-align: center;
}

/* Accordions */
.accordions {
    margin-top: 30px;
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-header {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
}

.accordion-content {
    padding-bottom: 20px;
    display: none;
    color: var(--text-muted);
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-item.active svg {
    transform: rotate(180deg);
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.faq-item h4 {
    margin-bottom: 15px;
    color: var(--secondary);
}

/* Final CTA */
.cta-card {
    background: var(--accent);
    padding: 100px 60px;
    border-radius: 40px;
    text-align: center;
}

.final-disclaimer {
    margin-top: 30px;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    background-color: var(--text);
    color: var(--white);
    padding: 80px 0 40px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 12px;
    opacity: 0.7;
}

.footer-col ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    nav {
        height: 70px;
    }
    .nav-links {
        display: none;
    }
    section {
        padding: 60px 0;
    }
}
