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

:root {
    --color-primary: #2d3436;
    --color-secondary: #636e72;
    --color-accent: #74b9ff;
    --color-light: #f8f9fa;
    --color-white: #ffffff;
    --color-dark: #1e272e;
    --color-warm: #ffeaa7;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.7;
    color: var(--color-primary);
    background-color: var(--color-white);
}

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

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

/* Navigation */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

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

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-secondary);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-links a:hover::after {
    width: 100%;
}

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

.nav-cta {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--color-accent);
    color: var(--color-dark);
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--color-dark);
    transition: all 0.3s ease;
}

/* Split Screen Sections */
.split-section {
    display: flex;
    min-height: 100vh;
    align-items: stretch;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 400px;
}

.split-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(116, 185, 255, 0.2), rgba(45, 52, 54, 0.3));
}

/* Hero Section */
.hero {
    padding-top: 80px;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
}

.hero .split-content {
    padding: 6rem 5rem;
}

.hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.15;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--color-secondary);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--color-dark);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--color-dark);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

/* About Section */
.section-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-size: 2.4rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
}

.section-text {
    font-size: 1.05rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Services Grid */
.services-section {
    padding: 6rem 2rem;
    background: var(--color-light);
}

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

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 380px;
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.service-content {
    padding: 2rem;
}

.service-title {
    font-size: 1.3rem;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark);
}

.price-unit {
    font-size: 0.9rem;
    color: var(--color-secondary);
}

.service-cta {
    display: block;
    text-align: center;
    background: var(--color-light);
    color: var(--color-dark);
    padding: 0.85rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

/* Stats Section */
.stats-section {
    background: var(--color-dark);
    padding: 5rem 2rem;
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-white);
    opacity: 0.85;
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 2rem;
    background: var(--color-white);
}

.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 300px;
    max-width: 500px;
    background: var(--color-light);
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--color-accent);
    opacity: 0.5;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--color-primary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.author-info h4 {
    font-size: 1rem;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

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

/* Process Section */
.process-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--color-light) 0%, var(--color-white) 100%);
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    position: relative;
    padding-bottom: 3rem;
}

.process-step:last-child {
    padding-bottom: 0;
}

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

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 29px;
    top: 60px;
    width: 2px;
    height: calc(100% - 60px);
    background: var(--color-accent);
    opacity: 0.3;
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-title {
    font-size: 1.4rem;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.step-text {
    font-size: 1rem;
    color: var(--color-secondary);
    line-height: 1.7;
}

/* Contact Form */
.contact-section {
    background: var(--color-dark);
}

.contact-section .split-content {
    background: var(--color-dark);
    color: var(--color-white);
}

.contact-section .section-tag {
    color: var(--color-accent);
}

.contact-section .section-title {
    color: var(--color-white);
}

.contact-section .section-text {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 450px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--color-dark);
    color: var(--color-white);
}

.form-submit {
    background: var(--color-accent);
    color: var(--color-dark);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.form-submit:hover {
    background: var(--color-white);
    transform: translateY(-2px);
}

.contact-image {
    background: linear-gradient(135deg, var(--color-accent), #0984e3);
}

/* Footer */
.footer {
    background: var(--color-dark);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

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

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

.footer-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 300px;
}

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

.footer-links h4 {
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

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

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-contact h4 {
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-dark);
    padding: 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

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

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

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

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    transform: scale(1.05);
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

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

.thanks-title {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-text {
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-service {
    background: var(--color-light);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-service p {
    font-size: 0.9rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.thanks-service h3 {
    font-size: 1.3rem;
    color: var(--color-dark);
}

/* Page Header */
.page-header {
    padding: 10rem 2rem 4rem;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
    text-align: center;
}

.page-header-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-title {
    font-size: 2.8rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.15rem;
    color: var(--color-secondary);
    line-height: 1.7;
}

/* About Page */
.about-content {
    padding: 5rem 2rem;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-block {
    margin-bottom: 4rem;
}

.about-block:last-child {
    margin-bottom: 0;
}

.about-block h2 {
    font-size: 1.8rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-block p {
    font-size: 1.05rem;
    color: var(--color-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 250px;
    padding: 2rem;
    background: var(--color-light);
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.2rem;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.value-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Contact Page */
.contact-page-section {
    padding: 5rem 2rem;
}

.contact-page-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: var(--color-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    font-size: 1rem;
    color: var(--color-secondary);
    line-height: 1.6;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 350px;
    background: var(--color-dark);
    padding: 3rem;
    border-radius: 8px;
}

.contact-form-wrapper h2 {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Legal Pages */
.legal-content {
    padding: 5rem 2rem;
}

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

.legal-container h2 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin: 2.5rem 0 1rem;
    font-weight: 600;
}

.legal-container h2:first-of-type {
    margin-top: 0;
}

.legal-container p {
    font-size: 1rem;
    color: var(--color-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--color-secondary);
}

.legal-container li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .split-section {
        flex-direction: column;
    }

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

    .split-content {
        padding: 4rem 2rem;
    }

    .split-image {
        min-height: 350px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .contact-page-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-title {
        font-size: 2rem;
    }

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

    .stats-container {
        flex-direction: column;
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

    .process-step {
        flex-direction: column;
        gap: 1.5rem;
    }

    .process-step::after {
        display: none;
    }

    .footer-container {
        flex-direction: column;
    }

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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