:root {
    --primary: #2d5a7b;
    --primary-dark: #1e3d54;
    --secondary: #4a9b8c;
    --accent: #e8a54b;
    --text-dark: #1a1a2e;
    --text-medium: #4a4a5e;
    --text-light: #6e6e82;
    --bg-light: #f8f9fc;
    --bg-white: #ffffff;
    --bg-alt: #eef2f7;
    --border: #d8dce6;
    --shadow: rgba(45, 90, 123, 0.08);
    --shadow-strong: rgba(45, 90, 123, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

header {
    background: var(--bg-white);
    box-shadow: 0 2px 12px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav a {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}

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

nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary);
}

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

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 6px 0;
    transition: 0.3s;
}

.split-hero {
    display: flex;
    min-height: 85vh;
}

.split-hero .content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background: var(--bg-light);
}

.split-hero .image-side {
    flex: 1;
    background-color: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.split-hero .image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-tag {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 36px;
    max-width: 480px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-align: center;
}

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

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

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

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

.btn-accent {
    background: var(--accent);
    color: var(--text-dark);
}

.btn-accent:hover {
    background: #d4963e;
}

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

.section {
    padding: 80px 0;
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

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

.section-title {
    font-size: 38px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-dark .section-title {
    color: white;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.split-section {
    display: flex;
    align-items: center;
    gap: 80px;
}

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

.split-section .content {
    flex: 1;
}

.split-section .visual {
    flex: 1;
    background-color: var(--bg-alt);
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    position: relative;
}

.split-section .visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.content-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.content-text {
    color: var(--text-medium);
    margin-bottom: 24px;
    font-size: 16px;
}

.feature-list {
    list-style: none;
    margin-bottom: 28px;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-medium);
}

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

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

.service-card {
    flex: 1;
    min-width: 320px;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-image {
    height: 200px;
    background-color: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-content {
    padding: 28px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
    font-size: 15px;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

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

.price-label {
    font-size: 13px;
    color: var(--text-light);
}

.testimonials-wrap {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.testimonial-info h4 {
    font-size: 15px;
    color: var(--text-dark);
}

.testimonial-info span {
    font-size: 13px;
    color: var(--text-light);
}

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    padding: 60px 0;
}

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

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

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

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

.section-dark .stat-label {
    color: rgba(255,255,255,0.7);
}

.cta-section {
    text-align: center;
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.cta-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-accent {
    padding: 16px 40px;
    font-size: 16px;
}

.form-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.form-container {
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 40px var(--shadow);
}

.form-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-dark);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 90, 123, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    margin-top: 8px;
}

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

.contact-info {
    flex: 1;
}

.contact-form-wrap {
    flex: 1.2;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--text-medium);
    font-size: 15px;
}

footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    flex: 1.5;
    min-width: 280px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links {
    flex: 1;
    min-width: 160px;
}

.footer-links h4 {
    color: white;
    font-size: 15px;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

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

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
}

.disclaimer {
    background: var(--bg-alt);
    padding: 32px;
    border-radius: 8px;
    margin: 40px 0;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

.disclaimer h4 {
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 14px;
}

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

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

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

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

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

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: 0.2s;
}

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

.cookie-accept:hover {
    background: #3d8577;
}

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

.cookie-reject:hover {
    border-color: white;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 100px 0 60px;
    text-align: center;
    color: white;
}

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

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.legal-content {
    padding: 60px 0;
}

.legal-content h2 {
    font-size: 24px;
    margin: 40px 0 16px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 18px;
    margin: 28px 0 12px;
    color: var(--text-dark);
}

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

.legal-content ul {
    margin: 16px 0 16px 24px;
    color: var(--text-medium);
}

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

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

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 3;
    fill: none;
}

.thanks-title {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.thanks-text {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 500px;
    margin-bottom: 32px;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
    fill: none;
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 14px;
    color: var(--text-medium);
}

@media (max-width: 900px) {
    .split-hero {
        flex-direction: column;
        min-height: auto;
    }

    .split-hero .content-side {
        padding: 48px 24px;
    }

    .split-hero .image-side {
        height: 300px;
    }

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

    .split-section {
        flex-direction: column;
        gap: 40px;
    }

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

    .split-section .visual {
        min-height: 280px;
        width: 100%;
    }

    nav ul {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .contact-split {
        flex-direction: column;
    }

    .stats-bar {
        gap: 40px;
    }

    .footer-grid {
        gap: 40px;
    }

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

@media (max-width: 600px) {
    .hero-title {
        font-size: 28px;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

    .service-card {
        min-width: 100%;
    }
}
