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

:root {
    --color-bg-dark: #0f0f0f;
    --color-bg-darker: #121212;
    --color-green-dark: #0b3b2e;
    --color-green-medium: #0f5c3b;
    --color-neon-green: #35ff9f;
    --color-text-primary: #ffffff;
    --color-text-secondary: #b0b0b0;
    --color-text-muted: #666666;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glow-green: 0 0 20px rgba(53, 255, 159, 0.3), 0 0 40px rgba(53, 255, 159, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(180deg, #151515 0%, #0f0f0f 30%, #121212 60%, #0f0f0f 100%);
    background-attachment: fixed;
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(11, 59, 46, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(15, 92, 59, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(53, 255, 159, 0.05) 0%, transparent 70%),
        linear-gradient(135deg, rgba(11, 59, 46, 0.1) 0%, rgba(15, 92, 59, 0.08) 100%);
    pointer-events: none;
    z-index: 0;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.7) 0%, rgba(11, 11, 11, 0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-logo img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(53, 255, 159, 0.3));
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-neon-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    text-shadow: 0 0 30px rgba(53, 255, 159, 0.2);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--color-text-secondary);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 40px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border: 2px solid var(--color-neon-green);
    border-radius: 4px;
    background: transparent;
    color: var(--color-neon-green);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-neon-green);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    color: var(--color-bg-dark);
    box-shadow: var(--glow-green);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--color-neon-green);
    color: var(--color-bg-dark);
    border-color: var(--color-neon-green);
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    background: rgba(53, 255, 159, 0.2);
}

.btn-primary:hover {
    color: #1a1a1a;
    box-shadow: var(--glow-green);
}

.btn-secondary {
    background: transparent;
    color: var(--color-neon-green);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.1rem;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-neon-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Price Section */
.price-section {
    background: linear-gradient(180deg, rgba(15, 20, 18, 0.95) 0%, rgba(12, 18, 16, 0.98) 50%, rgba(15, 20, 18, 0.95) 100%);
    position: relative;
    z-index: 1;
}

.price-module {
    background: linear-gradient(135deg, rgba(11, 59, 46, 0.3) 0%, rgba(15, 92, 59, 0.3) 100%);
    border: 1px solid rgba(53, 255, 159, 0.2);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(53, 255, 159, 0.1);
    backdrop-filter: blur(10px);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--color-neon-green);
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(53, 255, 159, 0.5);
}

.price-note {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

/* Video Section */
.video-section {
    background: linear-gradient(180deg, rgba(15, 20, 18, 0.95) 0%, rgba(12, 18, 16, 0.98) 50%, rgba(15, 20, 18, 0.95) 100%);
    position: relative;
    z-index: 1;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 50px auto 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(53, 255, 159, 0.2);
    border: 1px solid rgba(53, 255, 159, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Showcase Section */
.showcase-section {
    background: linear-gradient(180deg, rgba(240, 245, 243, 0.98) 0%, rgba(250, 252, 251, 0.95) 50%, rgba(240, 245, 243, 0.98) 100%);
    position: relative;
    z-index: 1;
}

.showcase-section .section-title {
    color: #1a1a1a;
    -webkit-text-fill-color: #1a1a1a;
    background: none;
}

.showcase-section .showcase-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(11, 59, 46, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.showcase-section .showcase-card:hover {
    border-color: var(--color-neon-green);
    box-shadow: 0 6px 25px rgba(53, 255, 159, 0.3);
}

.showcase-section .showcase-content h3 {
    color: #1a1a1a;
}

.showcase-section .showcase-link {
    color: var(--color-green-medium);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.showcase-card {
    background: linear-gradient(135deg, rgba(11, 59, 46, 0.1) 0%, rgba(15, 92, 59, 0.1) 100%);
    border: 1px solid rgba(53, 255, 159, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.showcase-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-neon-green);
    box-shadow: var(--glow-green);
}

.showcase-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
}

.showcase-image {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: var(--color-bg-darker);
}

.showcase-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.showcase-card:hover .showcase-image img {
    transform: scale(1.1);
}

.placeholder-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-green-dark) 0%, var(--color-green-medium) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    transition: transform 0.3s ease;
}

.showcase-card:hover .placeholder-image {
    transform: scale(1.1);
}

.showcase-content {
    padding: 25px;
}

.showcase-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-text-primary);
}

.showcase-link {
    color: var(--color-neon-green);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: inline-block;
}

.showcase-link-wrapper:hover .showcase-link {
    text-shadow: 0 0 10px rgba(53, 255, 159, 0.5);
}

/* Trust Section */
.trust-section {
    background: linear-gradient(180deg, rgba(15, 20, 18, 0.95) 0%, rgba(12, 18, 16, 0.98) 50%, rgba(15, 20, 18, 0.95) 100%);
    position: relative;
    z-index: 1;
}

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

.testimonial-card {
    background: rgba(11, 59, 46, 0.2);
    border: 1px solid rgba(53, 255, 159, 0.1);
    border-radius: 8px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    text-align: center;
}

.testimonial-card:hover {
    border-color: var(--color-neon-green);
    box-shadow: 0 0 20px rgba(53, 255, 159, 0.2);
    transform: translateY(-3px);
}

.testimonial-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 25px;
    overflow: hidden;
    border: 3px solid var(--color-neon-green);
    box-shadow: 0 0 20px rgba(53, 255, 159, 0.4);
    transition: var(--transition-smooth);
}

.testimonial-card:hover .testimonial-avatar {
    box-shadow: 0 0 25px rgba(53, 255, 159, 0.5);
    transform: scale(1.05);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--color-text-primary);
    font-style: italic;
}

.testimonial-author {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* Process Section */
.process-section {
    background: linear-gradient(180deg, rgba(240, 245, 243, 0.98) 0%, rgba(250, 252, 251, 0.95) 50%, rgba(240, 245, 243, 0.98) 100%);
    position: relative;
    z-index: 1;
}

.process-section .section-title {
    color: #1a1a1a;
    -webkit-text-fill-color: #1a1a1a;
    background: none;
}

.process-section .process-step {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(11, 59, 46, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.process-section .process-step:hover {
    border-color: var(--color-neon-green);
    box-shadow: 0 6px 25px rgba(53, 255, 159, 0.3);
}

.process-section .process-step h3 {
    color: var(--color-green-medium);
}

.process-section .process-step p {
    color: #4a4a4a;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(11, 59, 46, 0.1) 0%, rgba(15, 92, 59, 0.1) 100%);
    border: 1px solid rgba(53, 255, 159, 0.1);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.process-step:hover {
    border-color: var(--color-neon-green);
    box-shadow: 0 0 20px rgba(53, 255, 159, 0.2);
    transform: translateY(-5px);
}

.process-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-neon-green) 0%, rgba(53, 255, 159, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 0 30px rgba(53, 255, 159, 0.3);
    letter-spacing: -2px;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-neon-green);
}

.process-step p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-green-dark) 0%, var(--color-green-medium) 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(53, 255, 159, 0.1) 0%, transparent 70%);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, rgba(15, 20, 18, 0.95) 0%, rgba(12, 18, 16, 0.98) 50%, rgba(15, 20, 18, 0.95) 100%);
    position: relative;
    z-index: 1;
}

.contact-form {
    max-width: 700px;
    margin: 50px auto 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-text-primary);
}

.required {
    color: var(--color-neon-green);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(11, 59, 46, 0.2);
    border: 1px solid rgba(53, 255, 159, 0.2);
    border-radius: 4px;
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-neon-green);
    box-shadow: 0 0 10px rgba(53, 255, 159, 0.2);
    background: rgba(11, 59, 46, 0.3);
}

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

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(53, 255, 159, 0.1);
    border: 1px solid var(--color-neon-green);
    color: var(--color-neon-green);
}

.form-message.error {
    display: block;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff4444;
    color: #ff4444;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(180deg, rgba(12, 18, 16, 0.98) 0%, rgba(15, 20, 18, 0.95) 50%, rgba(12, 18, 16, 0.98) 100%);
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    background: rgba(11, 59, 46, 0.1);
    border: 1px solid rgba(53, 255, 159, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--color-neon-green);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--color-neon-green);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-neon-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(12, 18, 16, 0.98) 0%, rgba(10, 15, 13, 1) 100%);
    border-top: 1px solid rgba(53, 255, 159, 0.1);
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(53, 255, 159, 0.2));
}

.footer-tagline {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.footer-contact {
    color: var(--color-text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--color-neon-green);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact a:hover {
    text-shadow: 0 0 10px rgba(53, 255, 159, 0.5);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-neon-green);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(53, 255, 159, 0.5));
}

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

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(11, 59, 46, 0.9) 0%, rgba(15, 92, 59, 0.9) 100%);
    border: 2px solid var(--color-neon-green);
    border-radius: 50%;
    color: var(--color-neon-green);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: var(--transition-smooth);
    box-shadow: 0 0 20px rgba(53, 255, 159, 0.3);
    backdrop-filter: blur(10px);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-green);
    background: linear-gradient(135deg, rgba(11, 59, 46, 1) 0%, rgba(15, 92, 59, 1) 100%);
}

.scroll-to-top.visible {
    display: flex;
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 60px 20px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .price-module {
        padding: 40px 20px;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
    }
}


