:root {
    --primary: #1a365d;
    --secondary: #e53e3e;
    --accent: #f6ad55;
    --dark: #1a202c;
    --light: #f7fafc;
    --gray: #718096;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(26, 54, 93, 0.12);
    --shadow-lg: 0 25px 60px rgba(26, 54, 93, 0.18);
    --radius: 8px;
    --transition: all 0.3s ease;
}

* {
    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.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

.split-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
}

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

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

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

.split-reverse .split-left {
    order: 2;
}

.split-reverse .split-right {
    order: 1;
}

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

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

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

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

nav ul {
    display: flex;
    gap: 35px;
}

nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    padding: 8px 0;
    position: relative;
}

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

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

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

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #2c5282 100%);
    position: relative;
    overflow: hidden;
}

.hero .split-left {
    background: transparent;
    padding: 100px 60px;
}

.hero .split-right {
    background: url('https://images.unsplash.com/photo-1562654501-a0ccc0fc3fb1?w=800&q=80') center/cover;
    position: relative;
    min-height: 600px;
}

.hero .split-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(26, 54, 93, 0.3), transparent);
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 480px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(229, 62, 62, 0.35);
}

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

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

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

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

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

.section-intro {
    padding: 100px 20px;
    text-align: center;
    background: var(--white);
}

.section-intro h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-intro p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.15rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 80px 40px;
    background: var(--light);
    justify-content: center;
}

.service-card {
    flex: 1 1 340px;
    max-width: 380px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--secondary);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
}

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

.features-split .split-left {
    background: url('https://images.unsplash.com/photo-1586717791821-3f44a563fa4c?w=800&q=80') center/cover;
    min-height: 500px;
}

.features-split .split-right {
    background: var(--white);
    padding: 80px 60px;
}

.features-split h2 {
    font-size: 2.3rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

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

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

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

.testimonials {
    background: var(--primary);
    padding: 100px 20px;
}

.testimonials h2 {
    text-align: center;
    color: var(--white);
    font-size: 2.3rem;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 320px;
    max-width: 350px;
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    color: var(--light);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card p {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
}

.testimonial-info strong {
    display: block;
    color: var(--dark);
    font-size: 0.95rem;
}

.testimonial-info span {
    color: var(--gray);
    font-size: 0.85rem;
}

.cta-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, #c53030 100%);
    padding: 80px 20px;
    text-align: center;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

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

.process-section {
    padding: 100px 20px;
    background: var(--light);
}

.process-section h2 {
    text-align: center;
    font-size: 2.3rem;
    color: var(--primary);
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.process-step {
    flex: 1 1 200px;
    max-width: 220px;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    color: var(--dark);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--gray);
    font-size: 0.9rem;
}

.contact-split .split-left {
    background: var(--dark);
    padding: 80px 60px;
}

.contact-split .split-right {
    background: var(--white);
    padding: 80px 60px;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-detail svg {
    width: 24px;
    height: 24px;
    fill: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-detail p {
    opacity: 0.9;
}

.contact-detail strong {
    display: block;
    margin-bottom: 5px;
}

.form-container h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
}

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

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

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

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

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

footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 20px 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto 50px;
}

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

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

.footer-col p {
    opacity: 0.7;
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.footer-col a {
    opacity: 0.7;
    font-size: 0.95rem;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 25px 30px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1 1 400px;
    font-size: 0.95rem;
    opacity: 0.9;
}

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

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

.cookie-btn {
    padding: 12px 25px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

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

.page-hero {
    margin-top: 80px;
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #2c5282 100%);
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

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

.content-section {
    padding: 80px 20px;
    background: var(--white);
}

.content-section h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.content-section p {
    color: var(--gray);
    margin-bottom: 20px;
    max-width: 800px;
}

.content-section ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.content-section ul li {
    list-style: disc;
    color: var(--gray);
    margin-bottom: 10px;
}

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

.services-list {
    padding: 80px 20px;
    background: var(--white);
}

.service-full {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e2e8f0;
    align-items: center;
}

.service-full:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-full.reverse {
    flex-direction: row-reverse;
}

.service-full-img {
    flex: 1 1 350px;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.service-full-content {
    flex: 1 1 400px;
}

.service-full-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-full-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-full-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

.contact-page-info {
    padding: 80px 20px;
    background: var(--light);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    flex: 1 1 280px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-card svg {
    width: 50px;
    height: 50px;
    fill: var(--secondary);
    margin-bottom: 20px;
}

.contact-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--gray);
}

.thanks-container {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #2c5282 100%);
    padding: 40px 20px;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #48bb78;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

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

.thanks-box h1 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.thanks-box p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
    display: none;
}

.sticky-cta.active {
    display: block;
}

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

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

.legal-content h1 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-top: 40px;
    margin-bottom: 15px;
}

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

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

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

.about-story {
    padding: 100px 20px;
    background: var(--white);
}

.about-story .container {
    max-width: 900px;
}

.about-story h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.about-story p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.team-section {
    padding: 100px 20px;
    background: var(--light);
}

.team-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    justify-content: center;
}

.team-member {
    flex: 1 1 250px;
    max-width: 280px;
    text-align: center;
}

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

.team-member h4 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

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

@media (max-width: 768px) {
    .header-inner {
        padding: 15px 20px;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
    }

    nav.active {
        max-height: 300px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav li {
        border-bottom: 1px solid var(--light);
    }

    nav a {
        display: block;
        padding: 15px 0;
    }

    .split-left,
    .split-right {
        flex: 1 1 100%;
        padding: 50px 25px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .split-right {
        min-height: 350px;
    }

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

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .section-intro h2,
    .testimonials h2,
    .process-section h2 {
        font-size: 1.8rem;
    }

    .cta-banner h2 {
        font-size: 1.8rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .service-full {
        gap: 25px;
    }

    .service-full-img {
        height: 220px;
    }

    .thanks-box {
        padding: 40px 25px;
    }

    .thanks-box h1 {
        font-size: 1.8rem;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}
