:root {
    --primary: #0a2540;
    --secondary: #635bff;
    --accent: #00d4aa;
    --light: #f6f9fc;
    --dark: #0a2540;
    --text: #425466;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #635bff 0%, #00d4aa 100%);
    --gradient-2: linear-gradient(180deg, #0a2540 0%, #1a3a5c 100%);
    --shadow: 0 13px 27px -5px rgba(50,50,93,0.25), 0 8px 16px -8px rgba(0,0,0,0.3);
    --shadow-sm: 0 6px 12px -2px rgba(50,50,93,0.15), 0 3px 7px -3px rgba(0,0,0,0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

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

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

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

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo svg {
    width: 40px;
    height: 40px;
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    font-weight: 500;
    color: var(--text);
    position: relative;
}

nav a:hover {
    color: var(--secondary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--secondary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--primary);
}

.nav-cta::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.split-section {
    display: flex;
    min-height: 100vh;
    align-items: stretch;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-left, .split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.split-left {
    background: var(--white);
}

.split-right {
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.split-visual {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-visual svg {
    width: 80%;
    max-width: 500px;
    height: auto;
}

.hero-section {
    padding-top: 80px;
}

.hero-section .split-right {
    background: var(--gradient-2);
}

.hero-badge {
    display: inline-block;
    background: rgba(99, 91, 255, 0.1);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.lead {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 32px;
    max-width: 520px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

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

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.stats-row {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(10, 37, 64, 0.1);
}

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

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

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

.section-alt {
    background: var(--light);
}

.section-dark {
    background: var(--gradient-2);
    color: var(--white);
}

.section-dark h2, .section-dark h3 {
    color: var(--white);
}

.section-dark .lead {
    color: rgba(255,255,255,0.8);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    margin-bottom: 12px;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 300px;
    background: var(--white);
    border-radius: 12px;
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(99, 91, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--secondary);
}

.service-price {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 16px;
}

.service-desc {
    color: var(--text);
    margin-top: 12px;
    font-size: 0.95rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(0, 212, 170, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.feature-text h4 {
    color: var(--primary);
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.feature-text p {
    color: var(--text);
    font-size: 0.95rem;
}

.testimonials-wrapper {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    flex: 0 0 400px;
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    scroll-snap-align: start;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text);
    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: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info h5 {
    color: var(--primary);
    font-size: 1rem;
}

.author-info span {
    color: var(--text);
    font-size: 0.875rem;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.process-step {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 92px;
    width: 2px;
    height: calc(100% - 60px);
    background: rgba(99, 91, 255, 0.2);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.cta-banner {
    background: var(--gradient-1);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

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

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

.cta-banner .btn {
    background: var(--white);
    color: var(--secondary);
    white-space: nowrap;
}

.cta-banner .btn:hover {
    background: var(--primary);
    color: var(--white);
}

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

.form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.form-group {
    flex: 1 1 calc(50% - 12px);
    min-width: 250px;
}

.form-group.full {
    flex: 1 1 100%;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e6e9ec;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

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

.form-submit {
    margin-top: 24px;
}

.form-submit .btn {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 16px 32px;
}

footer {
    background: var(--primary);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 32px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col:first-child {
    flex: 2;
    min-width: 280px;
}

.footer-logo {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

.footer-col p {
    max-width: 300px;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}

.footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

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

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

.cookie-accept {
    background: var(--accent);
    color: var(--primary);
}

.cookie-reject {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
}

.cookie-btn:hover {
    transform: scale(1.05);
}

.page-hero {
    padding: 140px 0 80px;
    background: var(--gradient-2);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
}

.page-hero .lead {
    color: rgba(255,255,255,0.8);
    margin: 0 auto;
}

.content-section {
    padding: 80px 0;
}

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

.prose h2 {
    font-size: 1.75rem;
    margin-top: 48px;
    margin-bottom: 16px;
}

.prose h3 {
    font-size: 1.25rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.prose p {
    margin-bottom: 20px;
}

.prose ul, .prose ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.prose li {
    margin-bottom: 8px;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    padding: 40px 20px;
}

.thanks-card {
    background: var(--white);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    max-width: 600px;
    box-shadow: var(--shadow);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: rgba(0, 212, 170, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    color: var(--accent);
}

.thanks-card h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.thanks-card p {
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.contact-info-item {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.contact-info-item h4 {
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info-item svg {
    width: 24px;
    height: 24px;
    color: var(--secondary);
}

.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-cta .btn {
    box-shadow: var(--shadow);
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.value-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    padding: 32px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.value-card h4 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.team-member {
    flex: 1 1 calc(25% - 24px);
    min-width: 200px;
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-1);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
}

.team-member h4 {
    color: var(--primary);
    margin-bottom: 4px;
}

.team-member span {
    color: var(--text);
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .split-section {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .split-left, .split-right {
        padding: 60px 32px;
        min-height: auto;
    }

    .split-right {
        min-height: 400px;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow);
    }

    nav.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 24px;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .testimonial-card {
        flex: 0 0 85%;
    }
}

@media (max-width: 600px) {
    .split-left, .split-right {
        padding: 40px 20px;
    }

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

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

    .form-group {
        flex: 1 1 100%;
    }

    .footer-col {
        flex: 1 1 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }
}
