@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&family=Kalam:wght@300;400;700&display=swap');

:root {
    --bg-dark: #000000;
    --bg-card: #0d0d0d;
    --bg-card-hover: #1a1a1a;
    --primary: #FFD700;
    /* Gold */
    --secondary: #DAA520;
    /* Goldenrod */
    --accent: #B8860B;
    /* Dark Goldenrod */
    --success: #FFD700;
    /* Gold for success too, to keep theme */
    --text-main: #ffffff;
    --text-muted: #d4d4d4;
    --gradient-main: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #0d0d0d 100%);
    --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.2);
    --border-radius: 16px;
    --container-width: 1100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.highlight-red {
    color: var(--accent);
}

.text-center {
    text-align: center;
}

/* Top Bar */
.top-bar {
    background-color: #ff0000;
    color: #ffffff;
    text-align: center;
    padding: 0.8rem;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient-main);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.5);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
    background: radial-gradient(circle at 50% 30%, rgba(255, 215, 0, 0.08), transparent 60%);
    text-align: center;
}

.hero-superhead {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #b4b4b4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p.subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.hero-image {
    margin: 3rem auto;
    position: relative;
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -50px;
    /* Negative gap for overlap */
}

.hero-image img {
    width: 800px;
    max-width: 100%;
    filter: drop-shadow(0 20px 50px rgba(255, 215, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-20px) rotate(-2deg);
    }
}

/* Pain Section */
.pain-section {
    padding: 5rem 0;
    background: #0a0a0c;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pain-card {
    background: rgba(15, 16, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.pain-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 85, 0.3);
}

.pain-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.pain-text {
    color: var(--text-muted);
}

/* Transformation Section */
.transformation-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.transformation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--success), transparent);
    opacity: 0.3;
}

.check-list {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
}

.check-icon {
    color: var(--success);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Modules Section */
.product-section {
    padding: 6rem 0;
    background: #08080a;
    position: relative;
}

.product-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.05;
    pointer-events: none;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.module-card {
    background: rgba(20, 22, 27, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.module-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.module-number {
    font-size: 0.9rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
    font-weight: 700;
}

.module-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.module-list {
    list-style: none;
    color: var(--text-muted);
}

.module-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.module-list li::before {
    content: '•';
    color: var(--primary);
}

/* Bonuses */
.bonuses-section {
    padding: 5rem 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    text-align: center;
}

.bonus-tag {
    background: var(--accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
}

/* Science Section */
.science-section {
    padding: 5rem 0;
    background: #0f1014;
    text-align: center;
}

.science-pillars {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.pillar {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 2rem;
    background: var(--bg-dark);
    border-radius: 20px;
}

/* Guarantee */
.guarantee-section {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a101f 100%);
}

.guarantee-badge {
    width: 150px;
    margin: 0 auto 2rem;
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid var(--success);
    padding: 3rem;
    border-radius: 30px;
    background: rgba(0, 255, 136, 0.05);
}

/*    margin-top: 1rem;
} */

.materials-image {
    width: 100%;
    max-width: 350px;
    margin: 1.5rem auto;
    display: block;
    /* transform: rotate(-5deg); Remove rotation for "facing forward" */
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.materials-image:hover {
    transform: scale(1.05);
}

/* Pricing */
.pricing-section {
    padding: 5rem 0;
    text-align: center;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: 3rem;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: linear-gradient(145deg, #1a1c24, #121419);
    padding: 4rem 2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 30px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 2;
    background: linear-gradient(145deg, #252830, #1a1c24);
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.15);
}

.pricing-card.featured::before {
    background: linear-gradient(180deg, var(--primary), transparent);
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin: 1.5rem 0;
}

.price-small {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 3rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .price-tag {
        font-size: 2.8rem;
    }

    .check-list {
        grid-template-columns: 1fr;
    }
}

/* Detailed Examples Section - Paper Simulation */
.examples-section {
    padding: 5rem 0;
    background: #0d0d0d;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.example-card {
    background: transparent;
    border: none;
    box-shadow: none;
    perspective: 1000px;
}

.paper-preview {
    background: #fff;
    color: #1a1a1a;
    padding: 2rem;
    min-height: 450px;
    font-family: 'Kalam', cursive;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
    border-radius: 2px;
    background-image: linear-gradient(#e1e1e1 1px, transparent 1px);
    background-size: 100% 1.5rem;
    line-height: 1.5rem;
    overflow: hidden;
}

.paper-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    height: 100%;
    width: 2px;
    background: rgba(255, 0, 0, 0.3);
}

.example-card:hover .paper-preview {
    transform: rotate(0deg) scale(1.05) translateY(-10px);
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.example-card:nth-child(even) .paper-preview {
    transform: rotate(2deg);
}

.example-card:nth-child(even):hover .paper-preview {
    transform: rotate(0deg) scale(1.05) translateY(-10px);
}

.paper-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.2rem;
    border-bottom: 2px solid #000;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    text-align: center;
    color: #000;
    letter-spacing: 1px;
}

.handwritten-text {
    font-size: 1.1rem;
    color: #2c3e50;
}

.handwritten-highlight {
    background: rgba(255, 235, 59, 0.5);
    padding: 0 5px;
    border-radius: 4px;
}

.handwritten-circle {
    border: 2px solid #e74c3c;
    border-radius: 50% 40% 60% 30% / 40% 50% 60% 50%;
    padding: 2px 8px;
    display: inline-block;
}

.paper-check {
    color: var(--success);
    font-weight: bold;
    font-size: 1.3rem;
}