:root {
    --primary-color: #FF0000;
    --primary-dark: #8a0000;
    --secondary-color: #FFD700;
    --bg-color: #050505;
    --card-bg: rgba(20, 20, 20, 0.8);
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --font-main: 'Montserrat', sans-serif;
    --font-display: 'Oswald', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --neon-glow: 0 0 10px rgba(255, 0, 0, 0.7), 0 0 20px rgba(255, 0, 0, 0.5), 0 0 30px rgba(255, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

html {
    scroll-behavior: auto;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* Global Backgrounds */
#bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: 
        linear-gradient(rgba(255, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    perspective: 500px;
    transform-style: preserve-3d;
    animation: grid-move 20s linear infinite;
    pointer-events: none;
}

@keyframes grid-move {
    0% { background-position: 0 0; }
    100% { background-position: 0 50px; }
}

/* Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle at center, transparent 0%, #000 100%); /* Vignette */
}

/* Animated Gradient Text */
.gradient-text {
    background: linear-gradient(to right, #FF0000, #FFD700, #FF0000);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.click-particle {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    background: var(--primary-color);
    z-index: 9999;
    animation: particle-fade 0.8s ease-out forwards;
}

@keyframes particle-fade {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader-text {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.loader-bar {
    width: 0;
    height: 4px;
    background-color: var(--primary-color);
    box-shadow: var(--neon-glow);
    animation: load 2s ease-in-out forwards;
}

@keyframes load {
    0% { width: 0; }
    100% { width: 200px; }
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    text-transform: uppercase;
}

.highlight {
    background: linear-gradient(to right, #FF0000, #FFD700, #FF0000);
    background-size: 200% auto;
    color: var(--primary-color);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5));
}

.text-stroke {
    -webkit-text-stroke: 2px var(--text-color);
    color: transparent;
    position: relative;
}

/* Navbar */
.navbar {
    background-color: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed; /* Fixed position for stability */
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    transition: var(--transition);
}

.navbar.scrolled {
    height: 70px;
    background-color: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid var(--primary-color);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-color);
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
    box-shadow: var(--neon-glow);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 100svh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: -90px;
    padding-top: 90px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0.3), rgba(5,5,5,0.9));
    z-index: 2;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
    filter: contrast(1.2) brightness(0.6);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-family: var(--font-display);
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 30px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.hero-section h1 {
    font-size: 6rem;
    line-height: 0.9;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #ddd;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-button {
    padding: 18px 50px;
    background-color: var(--primary-color);
    color: var(--text-color);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-glow);
}

.cta-button.secondary {
    background-color: transparent;
    border-color: #fff;
}

.cta-button.secondary:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.glow-effect {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 20px rgba(255, 0, 0, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 0, 0, 0.8); }
    100% { box-shadow: 0 0 20px rgba(255, 0, 0, 0.5); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.scroll-indicator span {
    font-family: var(--font-display);
    letter-spacing: 3px;
    font-size: 0.8rem;
}

.arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: rotate(45deg) translate(0, 0);}
    40% {transform: rotate(45deg) translate(-10px, -10px);}
    60% {transform: rotate(45deg) translate(-5px, -5px);}
}

/* Marquee Section */
.marquee-section {
    background-color: var(--primary-color);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 5;
    transform: rotate(-2deg) scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: #000;
}

.separator {
    margin: 0 20px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Parallax Text */
.parallax-text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 20vw;
    font-family: var(--font-display);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    line-height: 1;
    opacity: 0.5;
    mix-blend-mode: overlay;
}

/* Electric Border Effect */
.electric-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
    border-radius: inherit;
}

.electric-border::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, transparent, transparent, var(--primary-color));
    animation: rotate-border 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.pricing-card:hover .electric-border::before {
    opacity: 1;
}

.electric-border::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--card-bg);
    border-radius: inherit;
    z-index: -1;
}

@keyframes rotate-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Global Skew Container */
.skew-wrapper {
    width: 100%;
    will-change: transform;
    transform-origin: center center;
}

/* Features Section */
.features-section {
    padding: 150px 0;
    background-color: rgba(5, 5, 5, 0.8); /* Transparent for grid */
    position: relative;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.05) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.01) 0px, rgba(255, 255, 255, 0.01) 1px, transparent 1px, transparent 10px);
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    opacity: 0.3;
    transform: translateX(-50%);
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1;
    text-wrap: balance;
    overflow-wrap: anywhere;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background-color: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border-radius: 5px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: 0.5s;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    font-family: var(--font-display);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    transition: 0.5s;
}

.feature-card:hover .step-number {
    color: rgba(255, 0, 0, 0.1);
    transform: scale(1.1);
}

.feature-card .icon-box {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.feature-card:hover .icon-box {
    transform: scale(1.2);
    text-shadow: var(--neon-glow);
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* Transformation Section */
.transformation-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), rgba(5, 5, 5, 0.98));
    position: relative;
    overflow: hidden;
}

.transformation-group {
    margin-bottom: 80px;
}

.transformation-label {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 4px;
    color: var(--text-muted);
    position: relative;
    display: inline-block;
    width: 100%;
}

.transformation-label.after {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.transformation-label::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.transformation-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
}

.transformation-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1400px;
}

.transformation-card {
    perspective: 1000px;
}

.image-frame {
    position: relative;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    overflow: hidden;
    transition: var(--transition);
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 15px), 
        calc(100% - 15px) 100%, 
        0 100%
    );
}

.image-frame:hover {
    transform: translateY(-10px) rotateX(2deg);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.image-frame.elite {
    border-color: rgba(255, 0, 0, 0.2);
}

.image-frame.elite:hover {
    border-color: rgba(255, 0, 0, 0.6);
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.3);
}

.image-frame img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    filter: grayscale(80%) contrast(1.1);
    transition: var(--transition);
}

.image-frame:hover img {
    filter: grayscale(0%) contrast(1.2);
    transform: scale(1.05);
}

.image-frame.elite img {
    filter: grayscale(0%) contrast(1.2) brightness(1.1);
}

.elite-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
    animation: pulse-fire 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes pulse-fire {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 50px rgba(255, 0, 0, 0.8);
    }
}

.transformation-video-container {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}

.video-frame {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 0, 0, 0.3);
    padding: 20px;
    transition: var(--transition);
    overflow: hidden;
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 20px), 
        calc(100% - 20px) 100%, 
        0 100%
    );
}

.video-frame:hover {
    border-color: rgba(255, 0, 0, 0.6);
    box-shadow: 0 30px 70px rgba(255, 0, 0, 0.3);
}

.transformation-video {
    width: auto;
    max-width: 100%;
    max-height: min(72svh, 820px);
    height: auto;
    min-height: 0;
    display: block;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
}

.video-frame:hover .video-play-overlay {
    opacity: 1;
}

.video-play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
}

/* Results Section */
.results-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.9), rgba(15, 15, 15, 0.9));
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.result-card {
    background: transparent;
    padding: 0;
    border: none;
    perspective: 1000px;
}

.card-frame {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    position: relative;
    transition: var(--transition);
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 20px), 
        calc(100% - 20px) 100%, 
        0 100%
    );
}

.card-frame:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.corner-accents::before,
.corner-accents::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    opacity: 0.5;
}

.corner-accents::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.corner-accents::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.card-frame:hover .corner-accents::before,
.card-frame:hover .corner-accents::after {
    width: 100%;
    height: 100%;
    opacity: 1;
}

.image-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    filter: grayscale(100%) contrast(1.2);
}

.card-frame:hover .image-container img {
    transform: scale(1.1);
    filter: grayscale(0%) contrast(1.1);
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
    z-index: 3;
    animation: scan 3s linear infinite;
    opacity: 0;
}

.card-frame:hover .scan-line {
    opacity: 1;
}

@keyframes scan {
    0% { top: 0%; }
    100% { top: 100%; }
}

.verified-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #00ff00;
    padding: 5px 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 2;
    border: 1px solid #00ff00;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(5px);
}

.stats-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    background: linear-gradient(to top, #000, transparent);
    padding: 20px;
    gap: 20px;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.card-frame:hover .stats-overlay {
    transform: translateY(0);
    opacity: 1;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.result-info {
    padding: 10px;
}

.user-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.user-header h4 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
}

.stars {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.testimonial {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 150px 0;
    position: relative;
    background-color: rgba(8, 8, 8, 0.8);
    overflow: hidden;
}

.pricing-bg-overlay {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.15), transparent 50%);
    pointer-events: none;
    animation: spotlight-move 10s infinite alternate ease-in-out;
    z-index: 0;
}

@keyframes spotlight-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-20%, -20%); }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.1);
}

.pricing-card.featured {
    background: linear-gradient(145deg, rgba(20, 0, 0, 0.9), rgba(40, 0, 0, 0.9));
    border: 2px solid var(--primary-color);
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.2);
    animation: border-pulse 3s infinite;
}

@keyframes border-pulse {
    0% { border-color: var(--primary-color); box-shadow: 0 0 50px rgba(255, 0, 0, 0.2); }
    50% { border-color: #ff4d4d; box-shadow: 0 0 70px rgba(255, 0, 0, 0.5); }
    100% { border-color: var(--primary-color); box-shadow: 0 0 50px rgba(255, 0, 0, 0.2); }
}

.pricing-card.featured:hover {
    transform: scale(1.12);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: var(--secondary-color);
    color: #000;
    padding: 8px 20px;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    animation: glow-gold 2s infinite;
}

@keyframes glow-gold {
    0% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.6); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.9); }
    100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.6); }
}

.card-header h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.price {
    font-size: 4.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: var(--neon-glow);
}

.price span {
    font-size: 2rem;
    vertical-align: top;
}

.features-list {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.features-list li {
    margin-bottom: 15px;
    color: #ccc;
    display: flex;
    align-items: center;
}

.features-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.9rem;
    text-shadow: 0 0 5px var(--primary-color);
}

/* Adrenaline Mode (Body Class) */
body.adrenaline-mode {
    animation: screen-shake 0.2s infinite;
}

body.adrenaline-mode::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 50%, rgba(255, 0, 0, 0.15) 100%);
    z-index: 9990;
    pointer-events: none;
    animation: vignette-pulse 0.5s infinite alternate;
}

@keyframes screen-shake {
    0% { transform: translate(0.1px, 0.1px) rotate(0deg); }
    10% { transform: translate(-0.1px, -0.15px) rotate(-0.05deg); }
    20% { transform: translate(-0.15px, 0px) rotate(0.05deg); }
    30% { transform: translate(0.15px, 0.1px) rotate(0deg); }
    40% { transform: translate(0.1px, -0.1px) rotate(0.05deg); }
    50% { transform: translate(-0.1px, 0.15px) rotate(-0.05deg); }
    60% { transform: translate(-0.15px, 0.1px) rotate(0deg); }
    70% { transform: translate(0.15px, 0.1px) rotate(-0.05deg); }
    80% { transform: translate(-0.1px, -0.1px) rotate(0.05deg); }
    90% { transform: translate(0.1px, 0.15px) rotate(0deg); }
    100% { transform: translate(0.1px, -0.15px) rotate(-0.05deg); }
}

@keyframes vignette-pulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.5; }
}

/* Footer */
footer {
    background-color: #000;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15vw;
    font-family: var(--font-display);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
    margin-top: 10px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-icon:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.period {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.features-list li {
    margin-bottom: 20px;
    color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.features-list li i {
    color: var(--primary-color);
}

.full-width {
    width: 100%;
    display: block;
    margin-top: 30px;
}

/* Footer */
footer {
    background-color: #000;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 10px;
    max-width: 300px;
}

.social-icon {
    font-size: 1.5rem;
    color: #fff;
    margin-left: 20px;
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
    text-shadow: var(--neon-glow);
}

.footer-bottom {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    .navbar,
    .navbar.scrolled {
        height: 78px;
    }

    .logo {
        font-size: 1.55rem;
        letter-spacing: 1px;
    }

    .navbar .container {
        min-height: 78px;
    }

    .hero-section h1 {
        font-size: clamp(3rem, 16vw, 4.6rem);
        line-height: 0.88;
        letter-spacing: -1px;
    }

    .hero-section {
        height: auto;
        min-height: 100svh;
        margin-top: 0;
        padding-top: calc(108px + env(safe-area-inset-top));
        padding-bottom: 48px;
    }

    .hero-badge {
        margin-bottom: 20px;
        padding: 8px 14px;
        letter-spacing: 2px;
        font-size: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .cta-button {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
        text-align: center;
    }

    .scroll-indicator {
        display: none;
    }

    .marquee-section {
        transform: none;
        padding: 12px 0;
    }

    .marquee-content {
        font-size: 1rem;
        animation-duration: 14s;
    }

    .parallax-text {
        display: none;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .section-title {
        font-size: clamp(2.35rem, 13vw, 3.4rem);
        line-height: 0.92;
    }

    .section-desc {
        font-size: 1rem;
        line-height: 1.65;
    }
    
    .pricing-card.featured {
        transform: none;
    }

    .features-section,
    .transformation-section,
    .pricing-section {
        padding: 72px 0;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding-bottom: 32px;
    }
    
    .social-icon {
        margin: 0;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1002;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: 100%;
        top: calc(78px + env(safe-area-inset-top));
        flex-direction: column;
        gap: 0;
        background-color: rgba(0, 0, 0, 0.97);
        width: 100%;
        height: calc(100svh - 78px - env(safe-area-inset-top));
        justify-content: flex-start;
        align-items: stretch;
        padding: 24px 18px calc(28px + env(safe-area-inset-bottom));
        transition: 0.3s;
        border-bottom: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        font-size: 1.05rem;
        margin: 0;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .features-grid,
    .pricing-grid,
    .results-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .feature-card,
    .pricing-card {
        padding: 28px 22px;
    }

    .feature-card:hover,
    .pricing-card:hover,
    .pricing-card.featured:hover,
    .image-frame:hover {
        transform: none;
    }

    .popular-badge {
        font-size: 0.85rem;
        padding: 8px 16px;
        max-width: calc(100% - 32px);
        text-align: center;
    }

    .price {
        font-size: clamp(3rem, 18vw, 4rem);
    }

    .price span {
        font-size: 1.5rem;
    }

    .features-list {
        margin: 24px 0;
    }

    .features-list li {
        justify-content: flex-start;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .transformation-group {
        margin-bottom: 56px;
    }

    .transformation-label {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
        margin-bottom: 28px;
    }

    .transformation-grid-2,
    .transformation-grid-3 {
        grid-template-columns: 1fr;
    }

    .transformation-grid {
        gap: 22px;
    }

    .image-frame {
        padding: 12px;
    }

    .image-frame img {
        height: min(60svh, 400px);
    }

    .transformation-video-container {
        max-width: 100%;
    }

    .video-frame {
        padding: 12px;
    }

    .transformation-video {
        max-height: 62svh;
    }

    .video-play-overlay {
        display: none;
    }

    .elite-badge {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        bottom: 18px;
        left: 18px;
    }

    .footer-watermark {
        font-size: 22vw;
        bottom: -20px;
    }

    .footer-brand p {
        max-width: none;
    }

    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .logo {
        font-size: 1.35rem;
    }

    .hero-section {
        padding-bottom: 36px;
    }

    .hero-section h1 {
        font-size: clamp(2.6rem, 18vw, 3.5rem);
    }

    .section-title {
        font-size: clamp(2rem, 16vw, 2.9rem);
    }

    .transformation-video {
        max-height: 56svh;
    }

    .price {
        font-size: 2.8rem;
    }
}
