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

:root {
    --primary: #2c4a5e;
    --secondary: #5a8a9f;
    --accent: #e8b84a;
    --text-dark: #1a2e3a;
    --text-light: #5c6f7a;
    --bg-light: #f7f9fa;
    --bg-warm: #faf8f5;
    --white: #ffffff;
    --border: #d8e0e4;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.header-top {
    background: var(--primary);
    color: var(--white);
    padding: 6px 0;
    font-size: 12px;
    text-align: center;
}

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

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

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

.nav a {
    font-size: 15px;
    color: var(--text-dark);
    transition: color 0.2s;
    padding: 8px 0;
}

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

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
}

.hero-split {
    display: flex;
    min-height: 100vh;
    padding-top: 100px;
}

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

.hero-image {
    flex: 1;
    background-color: var(--secondary);
    position: relative;
    overflow: hidden;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--primary);
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 480px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 184, 74, 0.4);
}

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

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

.section {
    padding: 100px 0;
}

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

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

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

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

.section-header h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px;
}

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

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

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

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

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

.split-content {
    flex: 1;
}

.split-visual {
    flex: 1;
    background-color: var(--border);
    position: relative;
    min-height: 400px;
}

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

.split-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary);
}

.split-content p {
    color: var(--text-light);
    margin-bottom: 24px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--white);
    padding: 40px 30px;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: 24px;
}

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

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.testimonial-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.testimonial-grid {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.testimonial-info strong {
    display: block;
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 14px;
    opacity: 0.8;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 60px 0;
    background: var(--primary);
    color: var(--white);
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    display: block;
    color: var(--accent);
}

.stat-label {
    font-size: 15px;
    opacity: 0.9;
}

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

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

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    background-color: var(--border);
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

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

.team-member span {
    font-size: 14px;
    color: var(--text-light);
}

.form-section {
    display: flex;
    gap: 60px;
}

.form-content {
    flex: 1;
}

.form-content h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
}

.form-content p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.contact-form {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--border);
}

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

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

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

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

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

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
}

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

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

.footer-col ul a {
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-col ul a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    opacity: 0.7;
}

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

.page-hero {
    padding: 160px 0 80px;
    background: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 16px;
}

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

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

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

.content-narrow h2 {
    font-size: 28px;
    color: var(--primary);
    margin: 40px 0 16px;
}

.content-narrow h3 {
    font-size: 22px;
    color: var(--primary);
    margin: 32px 0 12px;
}

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

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

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

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

.contact-info {
    flex: 1;
}

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

.contact-info-item h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-info-item p {
    color: var(--text-light);
}

.contact-map {
    flex: 1;
    background-color: var(--border);
    min-height: 400px;
    position: relative;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    padding: 60px;
    background: var(--bg-light);
}

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

.thanks-content h1 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

.cookie-btn:hover {
    opacity: 0.9;
}

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

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

.disclaimer {
    background: var(--bg-light);
    padding: 24px;
    margin-top: 40px;
    border-left: 4px solid var(--secondary);
    font-size: 13px;
    color: var(--text-light);
}

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

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

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

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

@media (max-width: 968px) {
    .nav {
        display: none;
    }

    .nav-mobile-toggle {
        display: block;
    }

    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        border-bottom: 1px solid var(--border);
    }

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

    .hero-image {
        min-height: 300px;
    }

    .hero-content {
        padding: 40px 24px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .split-row,
    .split-row-reverse {
        flex-direction: column;
    }

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

    .services-grid {
        flex-direction: column;
    }

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

    .testimonial-grid {
        flex-direction: column;
    }

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

    .stat-item {
        flex: 1 1 calc(50% - 20px);
    }

    .team-grid {
        justify-content: center;
    }

    .team-member {
        flex: 1 1 calc(50% - 15px);
    }

    .form-section {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

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

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

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