/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #7b1315;
    --dark: #0f0906;
    --electric-blue: #00d4ff;
    --purple: #a855f7;
    --orange: #fb923c;
    --green: #34d399;
    --pink: #ec4899;
    --yellow: #fbbf24;
    --light-bg: #fafafa;
    --gray: #64748b;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    animation: move 20s linear infinite;
}

@keyframes move {
    0% { transform: translateY(0); }
    100% { transform: translateY(100px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.logo-container {
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
    position: relative;
    z-index: 1;
}

.logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
    z-index: 1;
}

.handwritten {
    font-family: 'Caveat', cursive;
    font-size: 4rem;
    color: var(--yellow);
    display: block;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.4s both;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-name {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.5s both;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--purple);
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease-out 0.8s both;
    position: relative;
    z-index: 1;
}

/* Intro Section */
.intro-section {
    padding: 120px 20px;
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 800;
}

.highlight-text {
    background: linear-gradient(135deg, var(--electric-blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--green);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Exclusive Section */
.exclusive-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.exclusive-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.exclusive-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exclusive-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
}

.big-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--dark);
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    font-size: 1.1rem;
    padding: 15px 0;
    color: var(--gray);
    font-weight: 500;
}

/* Freedom Section */
.freedom-section {
    padding: 120px 20px;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 80px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--orange), var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.freedom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.freedom-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.freedom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-content p {
    color: var(--gray);
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.stat-label span {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 5px;
}

/* Process Section */
.process-section {
    padding: 120px 20px;
    background: var(--light-bg);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--purple), var(--pink));
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1;
    position: relative;
}

.timeline-content {
    flex: 1;
    padding-top: 10px;
}

.timeline-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.timeline-content p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.contact-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-box h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

.contact-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.email-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    color: var(--purple);
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.email-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.email-icon {
    font-size: 1.5rem;
}

.contact-note {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.exclusive-note {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.star {
    font-size: 1.3rem;
    margin: 0 10px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 20px 30px;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo-img {
    max-width: 180px;
    height: auto;
    opacity: 0.9;
}

.footer-tagline {
    margin-top: 15px;
    font-size: 1.1rem;
    opacity: 0.8;
}

.footer-info {
    margin-top: 20px;
}

.footer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-domain {
    font-weight: 700;
    color: var(--purple);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-info p {
    opacity: 0.7;
    margin: 5px 0;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .intro-content,
    .exclusive-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .freedom-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline::before {
        left: 30px;
    }

    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .handwritten {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .logo {
        max-width: 180px;
    }

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

    .intro-text h2,
    .exclusive-text h2 {
        font-size: 2rem;
    }

    .contact-box h2 {
        font-size: 2.2rem;
    }

    .intro-image img,
    .exclusive-image img {
        height: 350px;
    }

    .timeline-item {
        gap: 20px;
    }

    .timeline-content h3 {
        font-size: 1.4rem;
    }

    .timeline-content p {
        font-size: 1rem;
    }

    .email-button {
        font-size: 1.1rem;
        padding: 18px 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .handwritten {
        font-size: 2.5rem;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .intro-section,
    .exclusive-section,
    .freedom-section,
    .process-section,
    .contact-section {
        padding: 80px 20px;
    }

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

    .freedom-grid {
        grid-template-columns: 1fr;
    }

    .intro-image img,
    .exclusive-image img {
        height: 250px;
        border-radius: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--purple);
    color: var(--white);
}
