:root {
    --wk-primary: #0047AB;
    --wk-primary-dark: #003380;
    --wk-secondary: #00D4FF;
    --wk-white: #FFFFFF;
    --wk-light-gray: #F8FAFC;
    --wk-text-dark: #1E293B;
    --wk-text-light: #E2E8F0;
    --wk-glass-bg: rgba(255, 255, 255, 0.1);
    --wk-glass-border: rgba(255, 255, 255, 0.2);
    --wk-shadow: 0 8px 32px rgba(0, 71, 171, 0.15);
    --wk-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--wk-text-dark);
    background-color: var(--wk-white);
    line-height: 1.6;
    overflow-x: hidden;
}

[class*="text-"] strong,
[class*="text-"] b,
.text-white strong,
.text-white b {
    color: inherit;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--wk-transition);
}

img {
    max-width: 100%;
    height: auto;
}


h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.display-1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.display-4 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}


.btn-wk-primary {
    background: linear-gradient(135deg, var(--wk-primary) 0%, var(--wk-primary-dark) 100%);
    color: var(--wk-white);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--wk-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    min-height: 52px;
}

.btn-wk-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 71, 171, 0.35);
    color: var(--wk-white);
}

.btn-wk-secondary {
    background: transparent;
    color: var(--wk-white);
    border: 2px solid var(--wk-white);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--wk-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    min-height: 52px;
}

.btn-wk-secondary:hover {
    background: var(--wk-white);
    color: var(--wk-primary);
}

.btn-wk-glass {
    background: var(--wk-glass-bg);
    color: var(--wk-white);
    border: 1px solid var(--wk-glass-border);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--wk-transition);
}

.btn-wk-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}


.header-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 71, 171, 0.1);
    transition: var(--wk-transition);
}

.header-main.scrolled {
    box-shadow: var(--wk-shadow);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--wk-primary) 0%, var(--wk-secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wk-white);
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wk-primary);
}

.logo-text span {
    color: var(--wk-secondary);
}

.nav-link {
    color: var(--wk-text-dark);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--wk-transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--wk-primary);
    background: rgba(0, 71, 171, 0.08);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--wk-primary);
    transition: var(--wk-transition);
}


.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 50%, #0047AB 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        linear-gradient(45deg, transparent 40%, rgba(0, 71, 171, 0.2) 50%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.15);
    color: var(--wk-secondary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--wk-white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--wk-white) 0%, var(--wk-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--wk-text-light);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--wk-secondary);
    line-height: 1;
}

.stat-label {
    color: var(--wk-text-light);
    font-size: 0.875rem;
    margin-top: 8px;
}


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

.section-label {
    display: inline-block;
    color: var(--wk-primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--wk-text-dark);
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748B;
    max-width: 600px;
}


.card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 32px;
    transition: var(--wk-transition);
}

.card-glass:hover {
    transform: translateY(-8px);
    box-shadow: var(--wk-shadow);
    background: rgba(255, 255, 255, 0.9);
}

.card-service {
    background: var(--wk-white);
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid #E2E8F0;
    transition: var(--wk-transition);
    position: relative;
    overflow: hidden;
}

.card-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wk-primary), var(--wk-secondary));
    transform: scaleX(0);
    transition: var(--wk-transition);
}

.card-service:hover {
    transform: translateY(-8px);
    box-shadow: var(--wk-shadow);
    border-color: transparent;
}

.card-service:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(0, 71, 171, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
}

.service-title {
    font-size: 1.5rem;
    color: var(--wk-text-dark);
    margin-bottom: 16px;
}

.service-price {
    font-size: 1.75rem;
    color: var(--wk-primary);
    font-weight: 700;
    margin-bottom: 16px;
}

.service-price span {
    font-size: 1rem;
    color: #64748B;
    font-weight: 400;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0;
    color: #64748B;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features li::before {
    content: '✓';
    color: var(--wk-secondary);
    font-weight: bold;
}


.advantage-card {
    text-align: center;
    padding: 48px 32px;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--wk-primary) 0%, var(--wk-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--wk-white);
    transition: var(--wk-transition);
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 71, 171, 0.4);
}

.advantage-title {
    font-size: 1.25rem;
    color: var(--wk-text-dark);
    margin-bottom: 12px;
}

.advantage-text {
    color: #64748B;
}


.testimonial-card {
    background: var(--wk-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    margin: 16px;
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--wk-text-dark);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

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

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wk-primary), var(--wk-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wk-white);
    font-weight: 600;
    font-size: 1.25rem;
}

.author-name {
    font-weight: 600;
    color: var(--wk-text-dark);
}

.author-location {
    font-size: 0.875rem;
    color: #64748B;
}


.cta-section {
    background: linear-gradient(135deg, var(--wk-primary) 0%, var(--wk-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--wk-white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


.contact-form-container {
    background: var(--wk-white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--wk-shadow);
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: var(--wk-text-dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--wk-transition);
    background: var(--wk-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--wk-primary);
    box-shadow: 0 0 0 4px rgba(0, 71, 171, 0.1);
}

.form-control::placeholder {
    color: #94A3B8;
}

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


.footer-main {
    background: #0f172a;
    color: var(--wk-white);
    padding: 80px 0 40px;
}

.footer-brand {
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    background: linear-gradient(135deg, var(--wk-primary) 0%, var(--wk-secondary) 100%);
}

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

.footer-logo .logo-text span {
    color: var(--wk-secondary);
}

.footer-desc {
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--wk-white);
}

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

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

.footer-links a {
    color: #94A3B8;
    transition: var(--wk-transition);
}

.footer-links a:hover {
    color: var(--wk-secondary);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    color: #94A3B8;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 71, 171, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wk-secondary);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    margin-top: 60px;
    text-align: center;
    color: #64748B;
    font-size: 0.875rem;
}

.footer-bottom a {
    color: var(--wk-secondary);
}


.page-header {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 50%, #0047AB 100%);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--wk-secondary);
    font-size: 0.875rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--wk-white);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--wk-white);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}


.team-card {
    background: var(--wk-white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--wk-transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--wk-shadow);
}

.team-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: linear-gradient(135deg, var(--wk-primary), var(--wk-secondary));
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-name {
    font-size: 1.25rem;
    color: var(--wk-text-dark);
    margin-bottom: 4px;
}

.team-role {
    color: var(--wk-primary);
    font-weight: 500;
    font-size: 0.875rem;
}


.cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 480px;
    background: var(--wk-white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: block;
}

.cookie-title {
    font-size: 1.25rem;
    color: var(--wk-text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-text {
    color: #64748B;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.cookie-btn {
    flex: 1;
    min-width: 140px;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--wk-transition);
    border: none;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--wk-primary) 0%, var(--wk-primary-dark) 100%);
    color: var(--wk-white);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 71, 171, 0.3);
}

.cookie-btn-decline {
    background: #F1F5F9;
    color: var(--wk-text-dark);
}

.cookie-btn-decline:hover {
    background: #E2E8F0;
}


.faq-item {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: var(--wk-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--wk-text-dark);
    text-align: left;
    transition: var(--wk-transition);
}

.faq-question:hover {
    background: var(--wk-light-gray);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: rgba(0, 71, 171, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wk-primary);
    font-size: 1.25rem;
    transition: var(--wk-transition);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--wk-primary);
    color: var(--wk-white);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 24px 24px;
    color: #64748B;
    line-height: 1.7;
}


.process-step {
    position: relative;
    padding-left: 80px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--wk-primary), var(--wk-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wk-white);
    font-size: 1.5rem;
    font-weight: 700;
}

.process-title {
    font-size: 1.25rem;
    color: var(--wk-text-dark);
    margin-bottom: 12px;
}

.process-text {
    color: #64748B;
    line-height: 1.7;
}


.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    background: var(--wk-light-gray);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}


.text-gradient {
    background: linear-gradient(135deg, var(--wk-primary) 0%, var(--wk-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-light {
    background: var(--wk-light-gray);
}


@media (max-width: 991px) {
    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--wk-white);
        padding: 24px;
        transform: translateY(-150%);
        transition: var(--wk-transition);
        box-shadow: var(--wk-shadow);
    }

    .main-nav.active {
        transform: translateY(0);
    }

    .main-nav .nav {
        flex-direction: column;
    }

    .main-nav .nav-link {
        padding: 16px;
        border-bottom: 1px solid #E2E8F0;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 32px;
    }

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

    .cookie-consent-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 767px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-wk-primary,
    .hero-buttons .btn-wk-secondary {
        width: 100%;
    }

    .contact-form-container {
        padding: 32px 24px;
    }

    .footer-main {
        padding: 60px 0 30px;
    }
}


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

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}
