.elementor-310 .elementor-element.elementor-element-f07c909{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-8ed8f53 */:root {
    --primary: #d4af37;
    --primary-light: #f7e08a;
    --primary-dark: #8c6e1a;
    --secondary: #1a1a1a;
    --accent: #d4af37;
    --bg-dark: #02040a;
    --bg-card: rgba(10, 15, 30, 0.4);
    --bg-glass: rgba(15, 23, 42, 0.6);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-border: rgba(212, 175, 55, 0.2);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0px);
    }

    50% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(-20px);
    }

    100% {
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0px);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    animation: fadeIn 1.2s ease-out;
}

/* Grain Overlay */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Gradients */
.text-gradient {
    background: linear-gradient(to right, #d4af37 0%, #f7e08a 50%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary), #f1c40f);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 99px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: black;
    box-shadow: 0 10px 20px -5px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--glass-border);
    color: var(--text-main);
}

.btn-outline:hover {
    background: var(--glass-border);
    border-color: var(--text-muted);
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2rem;
}

/* Sections */
section {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background: radial-gradient(circle at 50% -20%, rgba(212, 175, 55, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 0% 100%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pre-head {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.hero-beam {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    top: -50%;
    left: -50%;
    z-index: -1;
    filter: blur(40px);
}

.hero-image img {
    max-width: 166%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 1),
        0 0 50px rgba(212, 175, 55, 0.1);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: var(--transition-smooth);
    animation: float 8s ease-in-out infinite;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-item {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.bento-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-premium);
}

.bento-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--primary-light);
}

.bento-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.col-4 { grid-column: span 4; }
.col-6 { grid-column: span 6; }
.col-8 { grid-column: span 8; }
.col-12 { grid-column: span 12; }

@media (max-width: 992px) {
    .col-4, .col-6, .col-8 { grid-column: span 12; }
}

/* Offer Box */
.offer-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.8), rgba(2, 4, 10, 0.9));
    border: 2px solid var(--primary);
    border-radius: 40px;
    padding: 4rem;
    position: relative;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.15);
}

.free-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: #ef4444;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 99px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: rotate(5deg);
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.4);
    z-index: 10;
}

/* Roadmap Steps */
.roadmap-steps {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.step-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    padding: 0.5rem 1.5rem;
    border-radius: 99px;
    border: 1px solid var(--glass-border);
}

.step-number {
    color: var(--primary);
    font-weight: 700;
}

.step-text {
    font-size: 0.9rem;
}

.step-divider {
    width: 20px;
    height: 1px;
    background: var(--glass-border);
    align-self: center;
}

/* Offer Box Details */
.offer-details-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    text-align: left;
    margin-bottom: 3rem;
}

.offer-subtitle {
    margin-bottom: 2rem;
    text-align: center;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    opacity: 0.6;
    filter: grayscale(1);
    flex-wrap: wrap;
}

.trust-badges img {
    height: 30px;
}


/* Features/Deck */
.deck-section {
    background: rgba(30, 41, 59, 0.3);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transform: translateX(-100%);
    transition: 0.8s;
}

.feature-card:hover::after {
    transform: translateX(100%);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(212, 175, 55, 0.1);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-light);
}

/* Bullet Points */
.bullets-section {
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
}

.bullet-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.bullet-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 40px -10px rgba(212, 175, 55, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-light);
}

/* Bonus Box */
.bonus-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(0, 0, 0, 0.5));
    border: 1px solid var(--primary);
    border-radius: 32px;
    padding: 4rem;
    text-align: center;
    margin: 4rem 0;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.05);
}

.bonus-tag {
    display: inline-block;
    padding: 0.5rem 2rem;
    background: var(--primary);
    color: black;
    border-radius: 99px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bullets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.final-cta {
    padding: 10rem 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.btn-cta {
    display: inline-block;
    padding: 1.5rem 4rem;
    font-size: 1.4rem;
    width: auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 3rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    section {
        padding: 5rem 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero {
        padding-top: 80px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        margin: 0 auto 2.5rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        transform: none !important;
        max-width: 350px;
        width: 100%;
        margin: 0 auto;
        animation: none !important;
    }

    .offer-card {
        padding: 3rem 1.5rem;
        border-radius: 24px;
    }

    .offer-card h2 {
        font-size: 2.2rem !important;
    }

    .offer-details-box {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .roadmap-steps {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .step-divider {
        width: 1px;
        height: 20px;
    }

    .bullets-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .final-cta {
        padding: 6rem 0;
    }

    .btn-cta {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
        width: 100%;
        display: block;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .bullets-section > .container > div {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .bonus-box {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
    }

    .bonus-box h2 {
        font-size: 1.8rem;
    }
    
    .bento-grid {
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    section {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: none;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .pre-head {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .free-badge {
        right: 20px;
        padding: 0.5rem 1.5rem;
        font-size: 0.8rem;
    }

    #checkout h2 {
        font-size: 2.2rem !important;
    }
}/* End custom CSS */