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

:root {
    --primary: #2d5a4a;
    --primary-dark: #1e3d32;
    --secondary: #c9a962;
    --accent: #e8dcc4;
    --text: #2b2b2b;
    --text-light: #5a5a5a;
    --bg: #fafaf8;
    --bg-alt: #f0ede6;
    --white: #ffffff;
    --shadow: rgba(45, 90, 74, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
}

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

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

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

header {
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

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

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

nav {
    display: flex;
    gap: 30px;
}

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

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

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

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

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

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

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

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

.hero-visual {
    flex: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-30px, -30px); }
}

.hero-icon {
    position: relative;
    z-index: 2;
}

.hero-icon svg {
    width: 180px;
    height: 180px;
    fill: var(--secondary);
    opacity: 0.9;
}

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

.hero-content h1 span {
    color: var(--secondary);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 90, 74, 0.3);
}

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

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

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

.btn-gold:hover {
    background: #b89952;
    transform: translateY(-2px);
}

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

.split-section {
    display: flex;
    min-height: 70vh;
}

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

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

.split-visual {
    flex: 1;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.split-visual.primary-bg {
    background: var(--primary);
}

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

.split-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

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

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

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

.visual-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px var(--shadow);
    max-width: 400px;
}

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

.visual-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    height: 180px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-body {
    padding: 30px;
}

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

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 20px;
}

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

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

.section-header {
    text-align: center;
    padding: 80px 20px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.section-header h2 {
    font-size: 2.6rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

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

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

.testimonials-section .section-header p {
    color: rgba(255,255,255,0.7);
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 35px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-text {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 25px;
    font-style: italic;
}

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

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

.author-info h4 {
    color: var(--white);
    font-size: 1rem;
}

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

.stats-bar {
    background: var(--secondary);
    padding: 60px 20px;
}

.stats-inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

.stat-label {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 8px;
}

.cta-section {
    padding: 120px 20px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

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

.cta-section p {
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-split {
    display: flex;
    min-height: calc(100vh - 70px);
    margin-top: 70px;
}

.contact-info {
    flex: 1;
    background: var(--primary-dark);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    color: var(--white);
    font-size: 2.4rem;
    margin-bottom: 30px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    color: rgba(255,255,255,0.85);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-details li:last-child {
    border-bottom: none;
}

.contact-details svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-details strong {
    display: block;
    color: var(--white);
    margin-bottom: 5px;
}

.contact-form-wrapper {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--bg-alt);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

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

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

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 150px 20px 80px;
    text-align: center;
    margin-top: 70px;
}

.page-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.content-section h2:first-child {
    margin-top: 0;
}

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

.content-section ul {
    margin-left: 25px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 10px;
}

.about-split {
    display: flex;
    min-height: 60vh;
}

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

.about-visual {
    flex: 1;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual svg {
    width: 200px;
    height: 200px;
    fill: var(--secondary);
    opacity: 0.8;
}

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

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.values-grid {
    display: flex;
    gap: 30px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

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

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
    margin-top: 70px;
}

.thanks-card {
    background: var(--white);
    padding: 60px 80px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 30px 80px var(--shadow);
    max-width: 600px;
}

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

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

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

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

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

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}

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

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

.cookie-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.cookie-accept:hover {
    background: #b89952;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 998;
}

.sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-cta a:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(201, 169, 98, 0.5);
}

.sticky-cta svg {
    width: 28px;
    height: 28px;
    fill: var(--primary-dark);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    z-index: 999;
}

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

.mobile-nav a {
    display: block;
    padding: 15px 0;
    color: var(--text);
    font-weight: 500;
    border-bottom: 1px solid var(--bg-alt);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

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

    .hamburger {
        display: flex;
    }

    .hero-split,
    .split-section,
    .contact-split,
    .about-split {
        flex-direction: column;
    }

    .hero-content,
    .split-content,
    .contact-info,
    .contact-form-wrapper,
    .about-content {
        padding: 60px 30px;
    }

    .hero-visual,
    .split-visual,
    .about-visual {
        min-height: 300px;
    }

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

    .section-header h2,
    .cta-section h2 {
        font-size: 2rem;
    }

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

    .stats-inner {
        flex-direction: column;
        gap: 30px;
    }

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

    .sticky-cta {
        bottom: 90px;
        right: 20px;
    }

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

    .thanks-card {
        padding: 40px 30px;
    }

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

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

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

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

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