:root {
    --primary-gold: #FFD700;
    --secondary-gold: #B8860B;
    --text-light: #f8fafc;
    /* Slate 50 */
    --text-gray: #94a3b8;
    /* Slate 400 */
    --bg-dark: #0f172a;
    /* Slate 900 */
    --bg-darker: #020617;
    /* Slate 950 */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --neon-green: #00ff88;
    --neon-glow: 0 0 15px rgba(0, 255, 136, 0.4);
    --orb-color-1: rgba(103, 61, 230, 0.4);
    --orb-color-2: rgba(255, 215, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.8;
    /* Increased for readability */
    font-size: 1.35rem;
    /* Increased base size for better reading */
    font-weight: 500;
    /* Increased font weight for better visibility */
    overflow-x: hidden;
    /* Deep space background effect */
    background-image:
        radial-gradient(circle at 15% 50%, rgba(103, 61, 230, 0.15), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(255, 215, 0, 0.08), transparent 25%);
    background-attachment: fixed;
    position: relative;
}

/* Parallax Orbs */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    transition: transform 0.2s ease-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -100px;
    background: var(--orb-color-1);
    opacity: 0.6;
}

.orb-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    right: -50px;
    background: var(--orb-color-2);
    opacity: 0.5;
}

.orb-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 20%;
    background: rgba(0, 255, 136, 0.2);
    opacity: 0.4;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
    /* Changed to Montserrat for better legibility */
    color: var(--text-light);
    letter-spacing: -0.5px;
    font-weight: 800;
    /* Increased heading weight */
}

.highlight {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #fff 50%, var(--secondary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
    font-weight: 700;
}

.highlight-text {
    color: var(--primary-gold);
    font-weight: 700;
}

/* Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: 900;
    font-size: 1.8rem;
    /* Increased from 1.5rem */
    letter-spacing: 2px;
    background: linear-gradient(to right, #fff, var(--primary-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Cards */
.glass-effect,
.card,
.offer-box,
.accordion-item {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    border-radius: 24px;
}

/* Buttons */
.cta-button,
.cta-button-small,
.cta-button-large {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.cta-button-small {
    padding: 12px 28px;
    /* Increased padding */
    font-size: 1rem;
    /* Increased from 0.85rem */
}

.cta-button {
    padding: 22px 50px;
    /* Increased padding */
    font-size: 1.25rem;
    /* Increased from 1.1rem */
}

.cta-button-large {
    width: 100%;
    padding: 28px;
    /* Increased padding */
    font-size: 1.6rem;
    /* Increased from 1.4rem */
    margin-top: 25px;
}

.cta-button:hover,
.cta-button-small:hover,
.cta-button-large:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.6);
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.8), 0 0 20px rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Hero Section */
.hero-section {
    padding: 100px 0 60px;
    /* Reduced padding */
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background Glow for Hero */
.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    animation: pulse-glow 8s infinite alternate;
}

@keyframes pulse-glow {
    0% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }

    100% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.1);
    }
}

h1 {
    font-size: 5.5rem;
    /* Increased from 5rem */
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.sub-headline {
    font-family: 'Arial Black', 'Arial', sans-serif;
    /* Use Arial Black for max weight */
    font-size: 1.6rem;
    /* Reduced to ideal size */
    font-weight: 900;
    /* Extra Bold */
    color: #ffffff;
    /* White for contrast */
    margin-bottom: 50px;
    letter-spacing: 2px;
    /* Wider spacing */
    line-height: 1.3;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
    /* Stronger shadow */
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
    border-bottom: 2px solid var(--glass-border);
    padding-bottom: 20px;
}



.hero-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 50px;
    filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.guarantee-text {
    margin-top: 25px;
    font-size: 1.1rem;
    /* Increased from 0.95rem */
    color: var(--text-gray);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.guarantee-text img {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    width: 20px;
}

/* Sections Global */
section {
    padding: 60px 0;
    /* Reduced global padding from 80px */
    position: relative;
}

.section-title {
    font-size: 3rem;
    /* Reduced from 3.5rem */
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.section-desc {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 40px;
    /* Reduced from 50px */
    font-size: 1.35rem;
    /* Slightly reduced */
}

/* Split Layout */
.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    /* Reduced form 80px */
    margin-bottom: 0;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
    z-index: 2;
}

.image-content {
    flex: 1;
    text-align: center;
    perspective: 1000px;
    z-index: 2;
}

.image-content img {
    max-width: 100%;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.image-content:hover img {
    transform: scale(1.03) rotateY(2deg);
}

.text-content h3 {
    font-size: 2.2rem;
    /* Reduced from 2.5rem */
    margin-bottom: 20px;
    /* Reduced from 25px */
    color: var(--primary-gold);
}

.text-content p {
    color: #ffffff;
    /* White as requested */
    font-size: 1.25rem;
    /* Slightly increased */
    font-weight: 600;
    /* Stronger */
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    /* Better readability */
}

.check-title {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    /* Reduced gap */
}

.check-icon {
    width: 28px;
    /* Slightly smaller */
    filter: drop-shadow(0 0 8px var(--primary-gold));
}

/* Bonuses */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    /* Reduced gap */
    margin-top: 40px;
}

.card {
    padding: 30px;
    /* Reduced padding */
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 215, 0, 0.05);
    /* Inner glow */
}

/* Shine effect on card hover */
.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.card:hover::after {
    left: 150%;
}

.card-image {
    width: 100%;
    height: 250px;
    /* Increased from 180px */
    object-fit: contain;
    margin-bottom: 25px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

.bonus-tag {
    background: linear-gradient(90deg, var(--secondary-gold), var(--primary-gold));
    color: #000;
    display: inline-block;
    padding: 10px 24px;
    /* Increased padding */
    border-radius: 20px;
    font-size: 1.1rem;
    /* Increased from 0.9rem */
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.price-strike {
    margin-top: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 10px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    display: inline-block;
    border: 1px solid var(--glass-border);
}

.valuation-text {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.valuation-text .strikethrough-red {
    font-size: 1.7rem;
    font-weight: 800;
    opacity: 1;
    color: #f87171;
    margin-left: 5px;
}

.red-text {
    color: #f87171;
}

.green-text {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.strikethrough-red {
    text-decoration: line-through;
    color: #f87171;
    opacity: 0.6;
}

/* Offer Box */
.offer-box {
    border: 1px solid var(--primary-gold);
    padding: 50px;
    /* Reduced from 70px */
    max-width: 1000px;
    margin: 0 auto;
    background: radial-gradient(circle at center, rgba(30, 27, 75, 0.5), rgba(15, 23, 42, 0.8));
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.1);
}

.offer-content {
    display: flex;
    align-items: center;
    gap: 50px;
    /* Reduced gap */
}

.offer-images {
    flex: 1;
    text-align: center;
}

.offer-details {
    flex: 1;
}

.offer-main-img {
    max-width: 100%;
    filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.5));
    transform: scale(1.15);
    /* Reduced scale to prevent overflow */
    margin: 20px 0;
}

/* ... existing code ... */

@media (max-width: 768px) {
    /* ... existing mobile styles ... */

    .offer-main-img {
        transform: scale(1);
        /* Reset scale on mobile to prevent overflow */
        margin: 10px 0;
    }
}

.offer-headline {
    font-size: 2rem;
    /* Reduced form 2.2rem */
    margin-bottom: 20px;
    line-height: 1.3;
}

.price-tag {
    font-size: 5.5rem;
    /* Reduced from 6.5rem */
    color: #fff;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 0 40px rgba(5, 150, 105, 0.4);
    margin: 20px 0;
}

.currency {
    font-size: 2.2rem;
    vertical-align: super;
    color: var(--primary-gold);
    opacity: 0.9;
}

.old-price-label {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 700;
    /* Added bold */
}

.strikethrough {
    text-decoration: line-through;
    color: #ef4444;
}

.check-list p {
    margin-bottom: 10px;
    font-weight: 600;
    /* Stronger */
    font-size: 1.2rem;
    /* Reduced to fit better */
    color: #ffffff;
    /* White */
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Visibility */
}

.payment-icons {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: var(--text-gray);
    justify-content: center;
}

.payment-text {
    font-weight: 700;
    /* Added bold */
    color: var(--text-light);
    /* Lighter text for visibility */
    letter-spacing: 0.5px;
}

.payment-icons img {
    width: 25px;
    filter: invert(1);
    opacity: 0.7;
}

.shipping-info p {
    font-weight: 700;
    /* Added bold */
    font-size: 1.2rem;
    color: var(--primary-gold);
    /* Change color to make it stronger */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* FAQ */
.accordion-item {
    background: rgba(2, 6, 23, 0.4);
    margin-bottom: 15px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.accordion-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(2, 6, 23, 0.6);
}

.accordion-header {
    width: 100%;
    padding: 20px;
    border: none;
    background: none;
    text-align: left;
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    color: var(--text-light);
}

.accordion-header:after {
    content: '+';
    font-size: 1.8rem;
    color: var(--primary-gold);
    transition: transform 0.3s;
    font-weight: 300;
}

.accordion-header.active:after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 20px;
}

.accordion-content p {
    padding-bottom: 20px;
    color: #ffffff;
    /* White */
    line-height: 1.7;
    font-size: 1.25rem;
    /* Increased */
    font-weight: 500;
    /* Stronger */
}

.accordion-content.active {
    max-height: 300px;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-gray);
    border-top: 1px solid var(--glass-border);
    background: var(--bg-darker);
}

/* Animations (Scroll Triggered) */
.fade-in-up,
.reveal,
.reveal-zoom {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 900px) {
    h1 {
        font-size: 4rem;
        /* Increased from 3.5rem */
    }

    .hero-section {
        padding: 80px 0 50px;
    }

    .split-layout {
        gap: 40px;
    }

    .offer-box {
        padding: 40px;
    }

    .price-tag {
        font-size: 4.5rem;
        /* Increased from 4rem */
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .logo {
        font-size: 1.3rem;
    }

    h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .sub-headline {
        font-size: 1.15rem;
        /* Adjusted for mobile */
        margin-bottom: 30px;
        line-height: 1.4;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .section-desc {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    section {
        padding: 50px 0;
        /* Reduced padding for mobile */
    }

    .hero-section {
        padding: 60px 0 40px;
    }

    .split-layout,
    .split-layout.reverse,
    .offer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .check-title {
        justify-content: center;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        /* Reduced gap */
    }

    .card {
        padding: 25px;
    }

    .offer-box {
        padding: 20px;
    }

    .price-tag {
        font-size: 3.5rem;
        margin: 15px 0;
    }

    .offer-headline {
        font-size: 1.6rem;
    }

    /* Adjust Orbs for Mobile */
    .orb-1 {
        width: 250px;
        height: 250px;
        left: -50px;
        opacity: 0.4;
    }

    .orb-2 {
        width: 200px;
        height: 200px;
        bottom: 10%;
        opacity: 0.3;
    }

    .cta-button,
    .cta-button-large {
        padding: 18px 30px;
        font-size: 1.1rem;
    }

    .valuation-text {
        font-size: 1.25rem;
    }

    .valuation-text .strikethrough-red {
        font-size: 1.4rem;
    }

    .check-list p {
        font-size: 1.1rem;
    }

    .accordion-content p {
        font-size: 1.1rem;
    }
}