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

@font-face {
    font-family: 'Inter';
    src: url('./assets/font/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('./assets/font/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Color Variables */
:root {
    --primary-color: #B5DE7C;
    --secondary-color: #1F3161;
    --accent-color: #B5DE7C;
    --white: #ffffff;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --black: #000000;
}

/* Background */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2847 0%, rgba(31, 49, 97, 0.2) 50%, #0f172a 100%);
}

.mouse-follower {
    position: absolute;
    width: 384px;
    height: 384px;
    background: linear-gradient(45deg, rgba(181, 222, 124, 0.3), rgba(31, 49, 97, 0.3));
    border-radius: 50%;
    filter: blur(48px);
    transform: translate(-50%, -50%);
    transition: all .5s ease-out;
    pointer-events: none;
}

.dot-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B5DE7C' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

/* Text Gradients */
.text-gradient-primary {
    background: linear-gradient(45deg, #B5DE7C, rgba(181, 222, 124, 0.8), #1F3161);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(45deg, #B5DE7C, #1F3161);
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(181, 222, 124, 0.5);
}

.btn-primary.large {
    padding: 20px 40px;
    font-size: 1.25rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border: 2px solid #B5DE7C;
    background: transparent;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    color: #B5DE7C;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #B5DE7C;
    color: #000;
    transform: scale(1.05);
}

.btn-secondary.large {
    padding: 20px 40px;
    font-size: 1.25rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 80px 0;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(181, 222, 124, 0.1);
    border: 1px solid rgba(181, 222, 124, 0.3);
    border-radius: 20px;
    margin-bottom: 32px;
}

.hero-badge span {
    color: #B5DE7C;
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 48px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* What is Section */
.what-is-section {
    position: relative;
    padding: 120px 0;
    z-index: 10;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 64px;
}

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

.what-is-text p {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 48px;
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(181, 222, 124, 0.3);
    transform: translateX(8px);
}

.benefit-icon {
    color: #B5DE7C;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 1.125rem;
    color: var(--gray-300);
    font-weight: 500;
}

/* Target Section */
.target-section {
    position: relative;
    padding: 120px 0;
    z-index: 10;
}

.target-description {
    font-size: 1.25rem;
    color: var(--gray-300);
    text-align: center;
    margin-bottom: 48px;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.target-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.target-card:hover {
    transform: translateY(-8px);
    border-color: rgba(181, 222, 124, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.target-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(45deg, #B5DE7C, #1F3161);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.target-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.target-card p {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits-section {
    position: relative;
    padding: 120px 0;
    z-index: 10;
}

.benefits-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.highlight-icon {
    color: #B5DE7C;
    flex-shrink: 0;
}

.benefits-highlight p {
    font-size: 1.5rem;
    color: var(--gray-300);
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(181, 222, 124, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-card .benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(45deg, #B5DE7C, #1F3161);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
}

.benefit-card p {
    color: var(--gray-400);
    line-height: 1.6;
}

/* Methodology Section */
.methodology-section {
    position: relative;
    padding: 120px 0;
    z-index: 10;
}

.methodology-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    text-align: center;
    margin-bottom: 48px;
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 48px;
}

.step-card {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateX(8px);
    border-color: rgba(181, 222, 124, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(45deg, #B5DE7C, #1F3161);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.step-content p {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.methodology-note {
    text-align: center;
    padding: 24px;
    background: rgba(181, 222, 124, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(181, 222, 124, 0.3);
}

.methodology-note p {
    color: var(--gray-300);
    font-size: 1rem;
    line-height: 1.6;
}

/* Package Section */
.package-section {
    position: relative;
    padding: 120px 0;
    z-index: 10;
}

.package-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: start;
}

.package-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 32px;
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(181, 222, 124, 0.3);
}

.feature-icon {
    color: #B5DE7C;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--gray-300);
    font-size: 1rem;
    font-weight: 500;
}

.package-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 111px;
}

.detail-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(181, 222, 124, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(181, 222, 124, 0.3);
}

.detail-icon {
    color: #B5DE7C;
    flex-shrink: 0;
}

.detail-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.detail-content p {
    color: var(--gray-300);
    font-size: 0.9rem;
}

/* Investment Section */
.investment-section {
    position: relative;
    padding: 120px 0;
    z-index: 10;
    background: linear-gradient(135deg, rgba(181, 222, 124, 0.1), rgba(31, 49, 97, 0.1));
}

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

.investment-price h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: white;
}

.price-note {
    color: var(--gray-400);
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 32px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-icon {
    color: #B5DE7C;
    flex-shrink: 0;
}

.payment-item span {
    color: var(--gray-300);
    font-size: 1rem;
}

.investment-note {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.investment-note p {
    color: var(--gray-300);
    font-size: 1rem;
    line-height: 1.6;
}

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

/* Testimonials Section */
.testimonials-section {
    position: relative;
    padding: 120px 0;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

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

.testimonial-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(181, 222, 124, 0.3);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 1.125rem;
    color: var(--gray-300);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.author-info span {
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Final CTA Section */
.final-cta-section {
    position: relative;
    padding: 120px 0;
    z-index: 10;
    background: linear-gradient(135deg, rgba(181, 222, 124, 0.1), rgba(31, 49, 97, 0.1));
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 48px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
}

.contact-icon {
    color: #B5DE7C;
}

/* Back to Home Button */
.back-to-home {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 1000;
}

.btn-back-home {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    background: rgba(181, 222, 124, 0.2);
    border-color: rgba(181, 222, 124, 0.5);
    color: #B5DE7C;
    transform: translateX(-4px);
}

.btn-back-home svg {
    transition: transform 0.3s ease;
}

.btn-back-home:hover svg {
    transform: translateX(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .package-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .investment-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .target-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .hero-section,
    .what-is-section,
    .target-section,
    .benefits-section,
    .methodology-section,
    .package-section,
    .investment-section,
    .testimonials-section,
    .final-cta-section {
        padding: 80px 0;
    }
    
    .target-card,
    .benefit-card,
    .testimonial-card {
        padding: 24px;
    }
    
    .step-card {
        padding: 20px;
    }
    
    .feature-item {
        padding: 12px;
    }
    
    .back-to-home {
        top: 16px;
        left: 16px;
    }
    
    .btn-back-home {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .btn-back-home span {
        display: none;
    }
    
    .btn-back-home {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        justify-content: center;
    }
} 