:root {
    --primary: #4c1d95;
    --accent: #8b5cf6;
    --background: #faf5ff;
    --text: #3b0764;
    --white: #ffffff;
    --light: #f3e8ff;
    --gray: #e9d5ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent);
}

.btn {
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 29, 149, 0.2);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-light:hover {
    background-color: var(--light);
    color: var(--primary);
    border-color: var(--light);
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary);
}

.section-padding {
    padding: 100px 0;
}

.navbar {
    padding: 20px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    color: var(--text);
    margin: 0 15px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 150px 0 100px;
}

.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: 0;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
}

.hero-content h1 {
    margin-bottom: 25px;
}

.hero-cta {
    margin-top: 35px;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 150px 0 80px;
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.page-hero .lead {
    color: var(--white);
    opacity: 0.95;
}

.service-card, .value-card, .benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover, .value-card:hover, .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(76, 29, 149, 0.15);
}

.service-icon, .benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
}

.service-card h3, .value-card h3, .benefit-card h4 {
    margin-bottom: 15px;
    color: var(--primary);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.feature-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: var(--text);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.process-steps {
    margin-top: 30px;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--background);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: var(--light);
    transform: translateX(10px);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 60px;
}

.step-content h4 {
    margin-bottom: 10px;
    color: var(--primary);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background-color: var(--white);
    color: var(--text);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 25px;
    background-color: var(--background);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 100px 0;
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section .lead {
    color: var(--white);
    margin-bottom: 35px;
    opacity: 0.95;
}

.footer {
    background-color: var(--text);
    color: var(--white);
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact svg {
    min-width: 16px;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-newsletter {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px 0;
}

.footer-newsletter h4 {
    color: var(--white);
}

.newsletter-form .input-group {
    max-width: 500px;
    margin-left: auto;
}

.newsletter-form .form-control {
    padding: 12px 20px;
    border: none;
    border-radius: 8px 0 0 8px;
}

.newsletter-form .btn {
    border-radius: 0 8px 8px 0;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    justify-content: flex-end;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-legal a:hover {
    color: var(--white);
}

.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 5px 25px rgba(76, 29, 149, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-contact:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 35px rgba(76, 29, 149, 0.4);
    color: var(--white);
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text);
    color: var(--white);
    padding: 25px;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

.cookie-consent.show {
    display: block;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--accent);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

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

.contact-form .form-control,
.contact-form .form-select {
    padding: 12px 20px;
    border: 2px solid var(--gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--background);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: var(--light);
    transform: translateX(10px);
}

.contact-info-icon {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-info-card h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary);
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 1.5rem;
}

.legal-content p {
    margin-bottom: 15px;
}

.legal-content ul {
    margin-bottom: 20px;
}

.legal-content ul li {
    margin-bottom: 10px;
}

.thanks-icon {
    display: inline-block;
}

.thanks-icon svg {
    color: var(--accent);
}

.step-card {
    text-align: center;
    padding: 30px 20px;
}

.step-card .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.bg-light {
    background-color: var(--background) !important;
}

.map-container {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    .hero-content {
        padding: 40px 30px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .nav-link {
        margin: 10px 0;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-cta .btn {
        display: block;
        margin: 10px 0;
    }
    
    .floating-contact {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

.reveal {
    opacity: 1 !important;
    visibility: visible !important;
}