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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 3rem;
    color: #fff;
}

h2 {
    font-size: 2.5rem;
    color: #fff;
}

h3 {
    font-size: 2rem;
    color: #fff;
}

h4 {
    font-size: 1.5rem;
    color: #fff;
}

p {
    margin-bottom: 1rem;
    color: #b0b0b0;
}

a {
    color: #ff66fc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffe366;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline, .btn-hero, .btn-pricing, .btn-submit {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ff66fc, #ffe366);
    color: #0a0a0a !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 102, 252, 0.3);
}

.btn-secondary {
    background-color: #333;
    color: #fff;
    border: 2px solid #555;
}

.btn-secondary:hover {
    background-color: #555;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #ff66fc;
    border: 2px solid #ff66fc;
}

.btn-outline:hover {
    background-color: #ff66fc;
    color: #0a0a0a;
}

.btn-hero {
    padding: 16px 32px;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #ff66fc, #ffe366);
    color: #0a0a0a !important;
    border-radius: 50px;
}

.btn-pricing, .btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff66fc, #ffe366);
    color: #0a0a0a !important;
    font-weight: 700;
}

.btn-pricing:hover, .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 102, 252, 0.4);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff66fc;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 3px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
}

.section-title {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff66fc, #ffe366);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a1a, #0a0a0a);
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff66fc, #ffe366);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #b0b0b0;
}

/* Company Section */
.company {
    background: linear-gradient(135deg, #111, #0a0a0a);
}

.company-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.company-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.company-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 102, 252, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 102, 252, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff66fc;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b0b0b0;
    font-weight: 600;
}

/* Advantages Section */
.advantages {
    background: #0a0a0a;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: linear-gradient(135deg, #1a1a1a, #111);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: #ff66fc;
    box-shadow: 0 20px 40px rgba(255, 102, 252, 0.2);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.advantage-card h3 {
    color: #ff66fc;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #111, #0a0a0a);
}

.services-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 12px 24px;
    background: transparent;
    color: #b0b0b0;
    border: 2px solid #333;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tab-button.active,
.tab-button:hover {
    background: linear-gradient(135deg, #ff66fc, #ffe366);
    color: #0a0a0a;
    border-color: transparent;
}

.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-panel.active {
    display: block;
}

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

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

.service-card {
    background: rgba(255, 102, 252, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 102, 252, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 102, 252, 0.1);
    transform: translateY(-5px);
}

.service-card h4 {
    color: #ffe366;
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing {
    background: #0a0a0a;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, #1a1a1a, #111);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid #333;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #ff66fc;
    box-shadow: 0 25px 50px rgba(255, 102, 252, 0.3);
}

.pricing-card.featured {
    border-color: #ff66fc;
    background: linear-gradient(135deg, #2a1a2a, #1a1a1a);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff66fc, #ffe366);
    color: #0a0a0a;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-header h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: #ffe366;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ff66fc;
}

.period {
    color: #b0b0b0;
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #b0b0b0;
}

.pricing-features li:before {
    color: #ffe366;
    margin-right: 0.5rem;
}

/* Reviews Section */
.reviews {
    background: linear-gradient(135deg, #111, #0a0a0a);
}

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

.review-card {
    background: rgba(255, 227, 102, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 227, 102, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #ffe366;
    box-shadow: 0 15px 30px rgba(255, 227, 102, 0.2);
}

.review-stars {
    color: #ffe366;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.review-author strong {
    color: #ff66fc;
}

.review-author span {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Achievements Section */
.achievements {
    background: #0a0a0a;
}

.achievements-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.achievements-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.achievement-stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 227, 102, 0.1), rgba(255, 102, 252, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(255, 227, 102, 0.3);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffe366;
    margin-bottom: 0.5rem;
}

.achievement-label {
    color: #b0b0b0;
    font-weight: 600;
}

.achievements-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-item {
    padding: 2rem;
    background: rgba(255, 102, 252, 0.05);
    border-radius: 12px;
    border-left: 4px solid #ff66fc;
}

.highlight-item h4 {
    color: #ffe366;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #111, #0a0a0a);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 102, 252, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 102, 252, 0.2);
}

.contact-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #ff66fc;
    margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
    color: #e0e0e0;
    margin: 0;
}

/* Forms */
.contact-form,
.pricing-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #333;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #e0e0e0;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff66fc;
    box-shadow: 0 0 0 3px rgba(255, 102, 252, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
option {
    background-color: #0a0a0a;
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid #333;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ff66fc;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffe366;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a, #111);
    padding: 1.5rem;
    border-top: 2px solid #ff66fc;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    color: #e0e0e0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    transition: opacity 0.3s ease;
}

.cookie-modal.hidden {
    opacity: 0;
    pointer-events: none;
}

.cookie-modal-content {
    background: linear-gradient(135deg, #1a1a1a, #111);
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    border: 2px solid #ff66fc;
}

.cookie-modal h3 {
    color: #ff66fc;
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 102, 252, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 102, 252, 0.2);
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e0e0e0;
    font-weight: 600;
    cursor: pointer;
}

.cookie-option p {
    margin: 0.5rem 0 0;
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Thanks Page */
.thanks-section {
    padding: 150px 0;
    text-align: center;
    background: linear-gradient(135deg, #1a0a1a, #0a0a0a);
}

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

.thanks-icon {
    font-size: 4rem;
    color: #ffe366;
    margin-bottom: 2rem;
}

.thanks-content h1 {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff66fc, #ffe366);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.package-confirmation {
    background: rgba(255, 102, 252, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 102, 252, 0.3);
}

.package-confirmation h3 {
    color: #ff66fc;
    margin-bottom: 1rem;
}

.selected-package {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffe366;
    margin: 0;
}

.next-steps {
    background: rgba(255, 227, 102, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: left;
    border: 1px solid rgba(255, 227, 102, 0.3);
}

.next-steps h3 {
    color: #ffe366;
    margin-bottom: 1rem;
    text-align: center;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 0.5rem 0;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-urgency {
    background: rgba(255, 102, 252, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 102, 252, 0.2);
}

.contact-urgency p {
    margin: 0.5rem 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Legal Pages */
.legal-page {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #111, #0a0a0a);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ff66fc, #ffe366);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.last-updated {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #ff66fc;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.legal-section h3 {
    color: #ffe366;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #b0b0b0;
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section strong {
    color: #ff66fc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid #333;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .company-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .achievements-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tab-buttons {
        justify-content: center;
    }
    
    .tab-button {
        flex: 1;
        min-width: 120px;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thanks-actions .btn-primary,
    .thanks-actions .btn-outline {
        width: 100%;
        max-width: 300px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.6rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

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

/* Scroll animations */
.section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus states for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #ff66fc;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .section-title {
        color: #fff;
        background: none;
        -webkit-text-fill-color: inherit;
    }
    
    .hero-title {
        color: #fff;
        background: none;
        -webkit-text-fill-color: inherit;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
