/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #8B5CF6;
    --color-primary-dark: #6D28D9;
    --color-primary-light: #A78BFA;
    --color-secondary: #D4AF37;
    --color-gold: #FFD700;
    --color-bg-dark: #0F0A1E;
    --color-bg-purple: #1A0E3E;
    --color-bg-card: #1E1337;
    --color-text: #E5E7EB;
    --color-text-light: #9CA3AF;
    --color-accent: #F59E0B;
    --gradient-primary: linear-gradient(135deg, #6D28D9 0%, #8B5CF6 50%, #A78BFA 100%);
    --gradient-secondary: linear-gradient(135deg, #1A0E3E 0%, #2D1B69 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    --shadow-sm: 0 2px 8px rgba(139, 92, 246, 0.1);
    --shadow-md: 0 4px 16px rgba(139, 92, 246, 0.2);
    --shadow-lg: 0 8px 32px rgba(139, 92, 246, 0.3);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.4);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg-dark);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(109, 40, 217, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1E1337 0%, #2D1B69 100%);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(139, 92, 246, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 2px solid var(--color-primary);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    color: var(--color-text);
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-primary);
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 10, 30, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-gold);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-cta {
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-hero-primary {
    padding: 16px 32px;
    background: var(--gradient-gold);
    color: var(--color-bg-dark);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.6);
}

.btn-hero-secondary {
    padding: 16px 32px;
    background: transparent;
    color: var(--color-text);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid var(--color-primary);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-light);
}

.hero-image {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(139, 92, 246, 0.3);
    background: var(--gradient-secondary);
    display: block;
}

/* Services Section */
.services {
    padding: 100px 20px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--gradient-secondary);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    border: 2px solid var(--color-gold);
    background: linear-gradient(135deg, #2D1B69 0%, #3D2580 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--color-bg-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    position: relative;
    z-index: 1;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.service-title {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--color-gold);
    position: relative;
    z-index: 1;
}

.service-description {
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    position: relative;
    z-index: 1;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--color-text);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

/* Benefits Section */
.benefits {
    padding: 100px 20px;
    background: var(--gradient-secondary);
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(15, 10, 30, 0.6);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.benefit-number {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--color-primary-light);
}

.benefit-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Process Section */
.process {
    padding: 100px 20px;
    position: relative;
    z-index: 1;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: var(--gradient-primary);
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-bg-dark);
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
    z-index: 2;
    position: relative;
}

.step-content {
    flex: 1;
    background: var(--gradient-secondary);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--color-gold);
}

.step-content p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 100px 20px;
    background: var(--gradient-secondary);
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 30px;
}

.about-text p {
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    padding: 20px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--color-gold);
}

.value-item strong {
    display: block;
    color: var(--color-gold);
    font-size: 18px;
    margin-bottom: 8px;
}

.value-item p {
    margin: 0;
    font-size: 14px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(139, 92, 246, 0.3);
}

/* Booking Section */
.booking {
    padding: 100px 20px;
    position: relative;
    z-index: 1;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-info > p {
    color: var(--color-text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text);
}

.booking-benefit svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.booking-form {
    background: var(--gradient-secondary);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 8px;
    color: var(--color-text);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: rgba(15, 10, 30, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    color: var(--color-text);
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    flex: 1;
    font-size: 14px;
    color: var(--color-text-light);
}

.checkbox-label a {
    color: var(--color-primary-light);
    text-decoration: underline;
}

.btn-submit {
    grid-column: 1 / -1;
    padding: 16px;
    background: var(--gradient-gold);
    color: var(--color-bg-dark);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.6);
}

.form-message {
    grid-column: 1 / -1;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #86efac;
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #fca5a5;
    display: block;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: var(--gradient-secondary);
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.contact-card {
    background: rgba(15, 10, 30, 0.6);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.contact-icon svg {
    width: 40px;
    height: 40px;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--color-gold);
}

.contact-card a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--color-primary-light);
}

.contact-card p {
    color: var(--color-text-light);
}

/* Footer */
.footer {
    padding: 60px 20px 30px;
    background: var(--color-bg-purple);
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--color-gold);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-primary-light);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-section p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding-top: 30px;
    text-align: center;
    color: var(--color-text-light);
}

/* Responsive Design */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 10, 30, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        justify-content: space-around;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        left: 15px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.benefit-card,
.process-step,
.contact-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Pricing Section */
.pricing {
    padding: 100px 20px;
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--gradient-secondary);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold);
}

.pricing-card.featured {
    border: 2px solid var(--color-gold);
    box-shadow: var(--shadow-gold);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
}

.pricing-header h3 {
    font-size: 28px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price .amount {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price .period {
    font-size: 20px;
    color: var(--color-text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--color-text);
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-pricing {
    display: block;
    padding: 16px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured .btn-pricing {
    background: var(--gradient-gold);
    color: var(--color-bg-dark);
    box-shadow: var(--shadow-gold);
}

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: var(--color-text-light);
    font-style: italic;
}

.pricing-footer {
    text-align: center;
    margin-top: 40px;
    color: var(--color-text-light);
    font-size: 14px;
}

.pricing-footer a {
    color: var(--color-primary-light);
    text-decoration: underline;
}

/* Team Section */
.team {
    padding: 100px 20px;
    background: var(--gradient-secondary);
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.team-member {
    background: rgba(15, 10, 30, 0.6);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-md);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 22px;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.member-role {
    font-size: 16px;
    color: var(--color-primary-light);
    margin-bottom: 16px;
    font-weight: 600;
}

.member-bio {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.member-credentials span {
    padding: 6px 12px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    font-size: 12px;
    color: var(--color-text);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 20px;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--gradient-secondary);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    color: var(--color-gold);
    font-size: 20px;
}

.testimonial-text {
    color: var(--color-text);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-gold);
}

.testimonial-author div {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--color-text);
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--color-text-light);
    font-size: 14px;
}

/* Guarantees Section */
.guarantees {
    padding: 100px 20px;
    background: var(--gradient-secondary);
    position: relative;
    z-index: 1;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.guarantee-card {
    background: rgba(15, 10, 30, 0.6);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.guarantee-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-md);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.guarantee-icon svg {
    width: 40px;
    height: 40px;
}

.guarantee-card h3 {
    font-size: 20px;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.guarantee-card p {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 14px;
}

/* FAQ Section */
.faq {
    padding: 100px 20px;
    position: relative;
    z-index: 1;
}

.faq-grid {
    max-width: 900px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--gradient-secondary);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-primary);
}

.faq-item.active {
    border-color: var(--color-gold);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin: 0;
}

/* Responsive Design for New Sections */
@media (max-width: 968px) {
    .pricing-grid,
    .team-grid,
    .testimonials-grid,
    .guarantees-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: scale(1) translateY(-10px);
    }
}

@media (max-width: 640px) {
    .price .amount {
        font-size: 36px;
    }

    .pricing-header h3 {
        font-size: 24px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

