:root {
    --bg-color: #0d001a;
    /* Deep purple background */
    --text-color: #ffffff;
    --primary-purple: #814bf6;
    --accent-gold: #ffb800;
    --accent-gold-hover: #e5a600;
    --btn-purple: #8c52ff;
    --btn-purple-hover: #7b45e6;
    --grid-line: rgba(255, 255, 255, 0.1);
    /* Subtle grid - increased opacity */
    --font-main: 'Outfit', sans-serif;
    --font-main: 'Outfit', sans-serif;
    --container-width: 1200px;

    /* New Palette */
    --charcoal: #1A1A1A;
    --coral: #FF4D88;
    --coral-hover: #e63e76;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Canvas for Snowfall */
#snowfall {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    /* Restrict to center area */
    height: 100%;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
}

.cursor-follower {
    position: fixed;
    width: 8px;
    /* Made smaller */
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px 1px rgba(255, 184, 0, 0.6);
    mix-blend-mode: screen;
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.cursor-follower.active {
    width: 60px;
    height: 60px;
    opacity: 0.2;
    box-shadow: 0 0 20px 2px rgba(255, 184, 0, 0.4);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
    position: relative;
}

/* Header */
.header {
    position: fixed;
    /* Sticky header */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: background-color 0.3s, backdrop-filter 0.3s, padding 0.3s;
}

.header.scrolled {
    background: rgba(13, 0, 26, 0.3);
    /* Transparent dark tint */
    backdrop-filter: blur(10px);
    /* Glass effect */
    padding: 15px 0;
}

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

.nav__list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav__link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

.nav__link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--btn-purple);
    transition: width 0.3s;
}

.nav__link:hover::after {
    width: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo__image {
    height: 240px;
    /* Extra large size */
    width: auto;
    max-width: 80vw;
    /* Prevent overflow on small screens */
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(129, 75, 246, 0.5));
    /* Enhanced glow */
    transition: height 0.3s ease;
}

.header.scrolled .logo__image {
    height: 140px;
    /* Larger on scroll too */
}

@media (max-width: 480px) {
    .logo__image {
        height: 160px;
    }

    .header.scrolled .logo__image {
        height: 100px;
    }
}

/* Old Logo Styles (kept for reference or removal) */
.logo__text {
    display: flex;
    flex-direction: column;
}

/* Novateso Gradients */
.text-gradient-blue {
    background: linear-gradient(to right, #4cc9f0, #4361ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.text-gradient-cyan {
    background: linear-gradient(to right, #00f260, #0575e6);
    /* Cyan/Greenish mix */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.logo__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo__subtitle {
    font-size: 0.5rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn:active {
    transform: scale(0.98);
}

.btn--header {
    background-color: var(--btn-purple);
    color: white;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 10px 24px;
    border-radius: 4px;
    /* More rectangular as in image */
}

.btn--header:hover {
    background-color: var(--btn-purple-hover);
    box-shadow: 0 0 15px rgba(140, 82, 255, 0.4);
}

.btn--gold {
    background-color: var(--accent-gold);
    color: #000;
    font-size: 1.1rem;
    padding: 16px 36px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn--gold:hover {
    background: linear-gradient(135deg, #ffd66b 0%, #ffb800 100%);
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.6);
    transform: translateY(-3px) scale(1.02);
    color: #000;
}

.btn--gold:active {
    transform: translateY(-1px) scale(1);
}

.btn--outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #0b0216;
    color: white;
    font-size: 1.1rem;
    padding: 16px 36px;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn--outline:hover {
    border-color: var(--primary-purple);
    background: linear-gradient(135deg, rgba(140, 82, 255, 0.2) 0%, rgba(140, 82, 255, 0.1) 100%);
    box-shadow: 0 0 20px rgba(140, 82, 255, 0.3);
    transform: translateY(-2px);
    color: white;
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    padding-top: 140px;
    /* Moved hero higher */
    padding-bottom: 40px;
    /* Reduced from 80px */
    text-align: center;
    background-color: transparent;
    /* Transparent to show global grid/bg */
    overflow: hidden;
}

/* Grid Background */
/* Global Grid */
.global-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    opacity: 0.6;
    /* Slight visibility */
    mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
    pointer-events: none;
}

.hero__glow {
    position: fixed;
    /* Fixed to follow scroll/viewport */
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(129, 75, 246, 0.25) 0%, rgba(13, 0, 26, 0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    /* Just above grid */
    filter: blur(80px);
    transition: background 0.5s ease;
}

.hero__bottom-glow {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    height: 600px;
    /* More focused gradient, less glow */
    background: radial-gradient(ellipse at bottom, rgba(129, 75, 246, 0.5) 0%, rgba(129, 75, 246, 0.05) 40%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Ensure grid covers the page if needed, or repeat it */
/* For now, the requests implies following the pattern top to bottom, 
   so let's make the background applied to body sufficient, 
   but we can add a fixed grid if desired.
   Let's keep the hero grid as is, but maybe add a global grid if the user wants "background grid till the footer"
*/
.global-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.1;
    /* Faint global grid */
}

.hero__curve {
    position: absolute;
    bottom: -100px;
    /* Lowered further */
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 1000px;
    border-radius: 50%;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    /* Reduced shadow intensity */
    box-shadow: 0 10px 30px rgba(129, 75, 246, 0.3),
        inset 0 -10px 30px rgba(129, 75, 246, 0.1);
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    background: linear-gradient(to bottom, transparent 95%, rgba(129, 75, 246, 0.05) 100%);
    /* Mask to fade out the sides/corners */
    mask-image: linear-gradient(to right, transparent 15%, black 40%, black 60%, transparent 85%);
    -webkit-mask-image: linear-gradient(to right, transparent 15%, black 40%, black 60%, transparent 85%);
}



.hero__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Sections Utility */
.section-padding {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    /* Above global grid */
}

.text-center {
    text-align: center;
}

.mb-large {
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Product Intro */
.product-showcase {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
}

.product-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    border-radius: 20px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s;
}

.product-image img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.product-details {
    flex: 1;
    text-align: left;
}

.price-tag {
    margin-bottom: 30px;
}

.amount {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.meta {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefit-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.check {
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

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

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 184, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 184, 0, 0);
    }
}

/* Product Feature Sections */
.bg-charcoal {
    background-color: transparent;
    /* Transparent to show global grid/bg */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.feature-reverse .feature-container {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.floating-ebook {
    max-width: 80%;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
    animation: float-ebook 6s ease-in-out infinite;
    border-radius: 10px;
    /* Slight rounding if needed, usually image has it */
}

@keyframes float-ebook {

    0%,
    100% {
        transform: translateY(0) rotateY(-5deg);
    }

    50% {
        transform: translateY(-20px) rotateY(0deg);
    }
}

.feature-label {
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
    font-weight: 700;
}

.feature-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
    color: white;
}

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

.feature-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

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

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.bullet {
    display: inline-block;
    min-width: 10px;
    height: 10px;
    background-color: var(--coral);
    border-radius: 50%;
    margin-top: 7px;
    margin-right: 15px;
    box-shadow: 0 0 10px var(--coral);
}

.feature-list strong {
    color: white;
    margin-right: 5px;
}

/* Response for alternating layout */
@media (max-width: 900px) {

    .feature-container,
    .feature-reverse .feature-container {
        flex-direction: column-reverse;
        /* Image on top usually better, or content first? Let's do Content top, Image bottom for standard flow, or vice versa */
        gap: 40px;
        text-align: center;
    }

    .feature-image {
        justify-content: center;
    }

    .feature-list li {
        justify-content: left;
        /* Keep list aligned left usually looks better, or center if text center */
        text-align: left;
    }
}

.grid-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.component-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s, background 0.3s;
    backdrop-filter: blur(10px);
}

.component-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(129, 75, 246, 0.3);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.component-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.card-focus {
    font-size: 0.9rem;
    color: #bdbdbd;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.card-content {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Lifestyle */
.lifestyle-container {
    display: flex;
    align-items: center;
    gap: 60px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.lifestyle-content {
    flex: 1;
}

.lifestyle-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.lifestyle-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.lifestyle-image {
    flex: 1;
}

.lifestyle-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: #11041f;
    /* Slightly lighter dark */
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(129, 75, 246, 0.2);
    text-align: center;
}

.stars {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.reviewer {
    font-weight: 700;
    color: var(--primary-purple);
}

/* Newsletter */
.container-narrow {
    max-width: 600px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: var(--font-main);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: rgba(255, 255, 255, 0.15);
}

/* Footer */
.footer {
    background: #000000;
    padding: 30px 0;
    /* Reduced padding */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    /* Reduced gap further */
}

.footer__tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Feature Price */
.feature-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.price-strikethrough {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 10px;
}

/* Secure Purchase Section */
.secure-purchase {
    background-color: transparent;
    /* Changed from #0d001a to match global grid */
    position: relative;
    overflow: hidden;
}

.secure-purchase .section-title {
    font-size: 2.2rem;
    /* Reduced from 3rem */
    line-height: 1.2;
    margin-bottom: 30px;
}

.secure-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(129, 75, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.pricing-display {
    margin: 20px 0;
    /* Reduced from 40px */
}

.pricing-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 15px;
}

.pricing-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    /* Reduced gap */
    margin-bottom: 5px;
    /* Reduced margin */
}

.old-price {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    font-weight: 700;
}

.new-price {
    font-size: 4rem;
    /* Reduced from 5rem */
    color: #df00ff;
    /* Neon Purple/Pink */
    font-weight: 800;
    line-height: 0.9;
    /* Tighter line height */
    text-shadow: 0 0 20px rgba(223, 0, 255, 0.5);
}

.savings {
    font-size: 1.5rem;
    color: #00ff7f;
    /* Spring Green */
    font-weight: 700;
}

.savings-text {
    color: #00ff7f;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn--wide {
    width: 100%;
    max-width: 500px;
    font-size: 1.2rem;
    padding: 20px 40px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.cta-subtext {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 25px;
    /* Reduced from 40px */
}

/* Payment Badges */
.secure-badges {
    margin-bottom: 20px;
    /* Reduced */
}

.secure-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.stripe-purple {
    color: #6772e5;
    font-weight: bold;
    font-size: 1.1rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.pay-icon {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    min-width: 40px;
}

.digital-wallets {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.wallet-btn {
    background: white;
    color: black;
    border: none;
    padding: 8px 24px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1rem;
    cursor: default;
    /* Just mockups */
    min-width: 100px;
}

.paypal-pay {
    background: #ffc439;
    color: #003087;
}

.guarantee-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Footer (Existing) */

.footer__links {
    display: flex;
    gap: 30px;
}

.footer__links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer__links a:hover {
    opacity: 1;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    margin-top: 5px;
    /* Reduced from 20px */
}

/* Responsive */
@media(max-width: 900px) {
    .product-showcase {
        flex-direction: column;
        text-align: center;
    }

    .product-details {
        text-align: center;
    }

    .benefit-list li {
        justify-content: center;
    }

    .lifestyle-container {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

/* Badge */
.badge-wrapper {
    margin-bottom: 30px;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 20px;
    /* Reduced padding */
    border-radius: 50px;
    font-size: 0.9rem;
    /* Reduced font size */
    color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.15),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.badge--small {
    font-size: 0.9rem;
    padding: 8px 16px;
    margin-bottom: 20px;
}

/* Typography */
.hero__title {
    font-size: 3.8rem;
    /* Reduced from 4.5rem */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    /* Reduced from 50px */
}

.hero__title .text-gradient-purple,
.hero__title .text-gradient-gold {
    font-size: 1.15em;
    /* Larger than surrounding text */
    font-weight: 800;
    letter-spacing: -1px;
}

.text-gradient-purple {
    background: linear-gradient(90deg, #9d7cff 0%, #b499ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-gold {
    background: linear-gradient(90deg, #ffb800 0%, #ffd66b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-white {
    color: white;
}

.hero__subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.rocket-icon {
    font-size: 2rem;
}

.hero__subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    color: white;
    text-align: left;
    line-height: 1.3;
}

.underline-decoration {
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    text-underline-offset: 4px;
}

.hero__description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin-bottom: 25px;
    /* Reduced from 40px */
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    gap: 20px;
}

/* Arrow Animation */
.arrow-icon {
    transition: transform 0.3s;
}

.btn:hover .arrow-icon {
    transform: rotate(90deg);
    /* Or translate, depending on desired effect. Image shows down arrow sort of? Assuming simple hover */
}

/* Responsive */
@media (max-width: 1024px) {

    .header__cta,
    .nav {
        display: none;
        /* Simplification for small check */
    }

    .hero__title {
        font-size: 3.5rem;
    }

    .hero__subtitle {
        font-size: 1.4rem;
    }
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: linear-gradient(180deg, rgba(32, 10, 56, 0.8) 0%, rgba(13, 0, 26, 0.8) 100%);
    border-color: rgba(140, 82, 255, 0.4);
    box-shadow: 0 0 20px rgba(140, 82, 255, 0.15);
}

.faq-item:hover:not(.active) {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.faq-header {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
}

.faq-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 20px;
    min-width: 20px;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    flex: 1;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--primary-purple);
}

.faq-item.active .faq-icon path {
    stroke: var(--primary-purple);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content {
    padding: 0 25px 25px 50px;
    /* Aligned with question text */
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* Support Card */
.support-card {
    background: linear-gradient(145deg, #120324 0%, #05010a 100%);
    border: 1px solid rgba(140, 82, 255, 0.2);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(140, 82, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.support-icon {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(157, 124, 255, 0.5));
}

.support-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    position: relative;
    z-index: 1;
}

.support-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.support-card .btn {
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .support-card {
        margin-top: 40px;
        min-height: 300px;
    }

    .btn--wide-mobile {
        width: 100%;
    }
}

/* Contact Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #1a0b2e;
    border: 1px solid rgba(140, 82, 255, 0.3);
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.modal-close:hover {
    opacity: 1;
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    color: white;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-family: var(--font-main);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: rgba(255, 255, 255, 0.1);
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

/* Notification Toast */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #00b84f;
    /* Green */
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
}

/* FAQ Override */
.faq-section {
    padding-top: 40px;
    /* Reduced from default 100px */
}

/* Improved Reviews */
.review-card {
    text-align: left;
    /* Changed from center */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.stars {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 0;
}

.review-text {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 10px;
    flex: 1;
}

.verified-badge {
    font-size: 0.8rem;
    color: #4cd964;
    /* Verified green */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}