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

:root {
    --primary: #1a4d2e;
    --secondary: #f4a261;
    --accent: #e76f51;
    --dark: #1f1f1f;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    overflow-x: hidden;
}

.floating-nav {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-nav a {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
    transition: all 0.3s ease;
    display: block;
}

.floating-nav a:hover,
.floating-nav a.active {
    background: var(--primary);
    transform: scale(1.4);
}

.mobile-toggle {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 1100;
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.split-hero {
    display: flex;
    min-height: 100vh;
    align-items: stretch;
}

.split-left {
    flex: 1;
    background: var(--primary);
    color: var(--white);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-right {
    flex: 1;
    background: linear-gradient(135deg, rgba(244, 162, 97, 0.15), rgba(26, 77, 46, 0.1)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23f4f9fa" width="1200" height="800"/><circle cx="200" cy="150" r="80" fill="%231a4d2e" opacity="0.05"/><circle cx="900" cy="600" r="120" fill="%23f4a261" opacity="0.08"/><rect x="700" y="100" width="200" height="200" fill="%23e76f51" opacity="0.04" transform="rotate(45 800 200)"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-primary:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(231, 111, 81, 0.3);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--white);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    margin-left: 15px;
}

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

.hero-visual {
    max-width: 100%;
    text-align: center;
}

.hero-visual svg {
    max-width: 450px;
    width: 100%;
    height: auto;
}

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

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

.content-half {
    flex: 1;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visual-half {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.visual-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-half h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

.content-half h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary);
}

.content-half p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.8;
}

.content-half ul {
    list-style: none;
    margin: 30px 0;
}

.content-half ul li {
    padding: 12px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.content-half ul li:before {
    content: "✓";
    color: var(--secondary);
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.3rem;
}

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

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

.bg-dark h2,
.bg-dark h3 {
    color: var(--white);
}

.bg-dark p {
    color: rgba(255, 255, 255, 0.9);
}

.bg-accent {
    background: var(--secondary);
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.service-card .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    margin: 20px 0;
}

.service-card p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 25px;
}

.service-card .select-btn {
    background: var(--primary);
    color: var(--white);
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.service-card .select-btn:hover {
    background: var(--secondary);
    color: var(--dark);
}

.service-card.selected {
    border: 3px solid var(--secondary);
    background: #fffbf7;
}

.form-section {
    background: linear-gradient(135deg, var(--primary), #15351f);
    color: var(--white);
    padding: 100px 80px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
    color: var(--white);
}

.form-container p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
}

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

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

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

.submit-btn {
    background: var(--secondary);
    color: var(--dark);
    padding: 18px 50px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    color: var(--white);
    padding: 20px;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.sticky-cta.hidden {
    display: none;
}

.sticky-cta p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.sticky-cta a {
    background: var(--white);
    color: var(--accent);
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: var(--primary);
    color: var(--white);
}

.testimonial-section {
    padding: 100px 80px;
    background: var(--light);
}

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

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

.testimonial {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial:before {
    content: '"';
    font-size: 5rem;
    color: var(--secondary);
    position: absolute;
    top: 20px;
    left: 30px;
    line-height: 1;
    opacity: 0.3;
}

.testimonial p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial .author {
    font-weight: 700;
    color: var(--primary);
    font-style: normal;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: 1.3rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.stats-section {
    padding: 80px;
    background: var(--accent);
    color: var(--white);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

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

.stat h3 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.inline-cta {
    background: var(--secondary);
    padding: 60px 80px;
    text-align: center;
}

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

.inline-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #15351f);
    color: var(--white);
    text-align: center;
    padding: 40px;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-info {
    background: var(--light);
    padding: 40px;
    border-radius: 12px;
    margin: 30px 0;
}

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

.contact-info p {
    margin: 10px 0;
    font-size: 1rem;
}

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

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
}

.page-content h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary);
}

.page-content h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary);
}

.page-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.page-content ul li,
.page-content ol li {
    margin-bottom: 10px;
}

@media (max-width: 968px) {
    .split-hero,
    .section-split {
        flex-direction: column;
    }

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

    .split-left,
    .split-right,
    .content-half,
    .visual-half {
        padding: 60px 40px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .content-half h2 {
        font-size: 2rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .floating-nav {
        display: none;
    }

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

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

    .sticky-cta {
        flex-direction: column;
        gap: 10px;
    }

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

    .testimonials {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .split-left,
    .split-right,
    .content-half,
    .form-section,
    .testimonial-section,
    .inline-cta,
    .stats-section,
    .footer {
        padding: 40px 25px;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .cta-primary,
    .cta-secondary {
        display: block;
        margin: 10px 0;
        text-align: center;
    }

    .page-header {
        padding: 80px 25px 40px;
    }

    .page-content {
        padding: 40px 25px;
    }
}
