:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--secondary);
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

.ad-disclosure {
    background: var(--gray-light);
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    color: var(--gray);
}

header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: var(--secondary);
    font-weight: 500;
    transition: color 0.3s;
}

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

.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    margin: 5px 0;
}

.split-section {
    display: flex;
    min-height: 80vh;
}

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

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

.split-right {
    background: var(--secondary);
    color: var(--white);
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 500px;
}

.split-right .hero-subtitle {
    color: var(--gray-light);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
}

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

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

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

.btn-light:hover {
    background: var(--light);
}

.section {
    padding: 80px 0;
}

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

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

.section-title {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 48px;
    max-width: 600px;
}

.section-dark .section-subtitle {
    color: var(--gray-light);
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-text,
.split-image {
    flex: 1;
}

.split-image {
    background-color: var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 400px;
    display: block;
}

.services-split {
    display: flex;
    gap: 40px;
}

.services-info {
    flex: 1;
    padding-right: 40px;
}

.services-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.service-content p {
    color: var(--gray);
    font-size: 14px;
}

.service-price {
    text-align: right;
    white-space: nowrap;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.price-unit {
    font-size: 12px;
    color: var(--gray);
}

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

.feature-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.feature-text h4 {
    margin-bottom: 8px;
}

.feature-text p {
    color: var(--gray);
    font-size: 14px;
}

.testimonials-row {
    display: flex;
    gap: 32px;
}

.testimonial-card {
    flex: 1;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 24px;
    color: var(--gray);
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gray-light);
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
}

.author-info strong {
    display: block;
    font-size: 14px;
}

.author-info span {
    font-size: 12px;
    color: var(--gray);
}

.cta-split {
    display: flex;
    min-height: 400px;
}

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

.cta-left {
    background: var(--primary);
    color: var(--white);
}

.cta-right {
    background: var(--light);
}

.cta-title {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-text {
    margin-bottom: 24px;
    opacity: 0.9;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 16px;
    font-family: inherit;
}

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

.contact-split {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.contact-details h4 {
    margin-bottom: 4px;
}

.contact-details p {
    color: var(--gray);
    font-size: 14px;
}

.about-timeline {
    position: relative;
    padding-left: 40px;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-light);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
}

.timeline-year {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-content h4 {
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--gray);
    font-size: 14px;
}

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

.team-member {
    flex: 1;
    text-align: center;
}

.member-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--gray-light);
    margin: 0 auto 16px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
}

.team-member h4 {
    margin-bottom: 4px;
}

.team-member p {
    color: var(--gray);
    font-size: 14px;
}

footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 16px;
}

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

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

.footer-col a {
    color: var(--gray-light);
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-col p {
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-light);
}

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

.footer-links a {
    color: var(--gray-light);
    font-size: 14px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-text {
    flex: 1;
    font-size: 14px;
}

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

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
}

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

.cookie-reject {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.thanks-title {
    font-size: 36px;
    margin-bottom: 16px;
}

.thanks-text {
    color: var(--gray);
    margin-bottom: 32px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 24px;
}

.legal-content h2 {
    font-size: 24px;
    margin: 32px 0 16px;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--gray);
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--gray);
}

.disclaimer {
    background: var(--light);
    padding: 24px;
    border-radius: var(--radius);
    margin: 40px 0;
    font-size: 14px;
    color: var(--gray);
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

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

.stat-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
}

.section-dark .stat-value {
    color: var(--accent);
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
}

.section-dark .stat-label {
    color: var(--gray-light);
}

.page-header {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.page-header p {
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
}

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

    nav.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .split-section,
    .split-content,
    .services-split,
    .cta-split,
    .contact-split,
    .footer-grid,
    .testimonials-row,
    .team-row,
    .stats-row {
        flex-direction: column;
    }

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

    .split-left,
    .split-right,
    .cta-left,
    .cta-right {
        padding: 40px 24px;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .feature-item {
        flex: 1 1 100%;
    }

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

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