:root {
    --primary: #2d5a3d;
    --primary-dark: #1e3d2a;
    --secondary: #c9a962;
    --accent: #4a7c59;
    --text: #2c2c2c;
    --text-light: #5a5a5a;
    --bg: #fafaf8;
    --bg-alt: #f0ede6;
    --bg-dark: #1a1a1a;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    --radius: 6px;
    --radius-lg: 12px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

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

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

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

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

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

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

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

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

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

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav a {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.nav a:hover,
.nav a.active {
    background: var(--bg-alt);
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all var(--transition);
}

/* Split Layout */
.split {
    display: flex;
    min-height: 100vh;
    margin-top: 68px;
}

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

.split-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-visual img,
.split-visual svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--secondary);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    margin-bottom: 24px;
}

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

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 100px 0;
}

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

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

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

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header p {
    margin-top: 16px;
    color: var(--text-light);
    font-size: 18px;
}

/* Split Section */
.split-section {
    display: flex;
    align-items: stretch;
    gap: 0;
}

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

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

.split-section-visual {
    flex: 1;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

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

.split-section-content h2 {
    margin-bottom: 20px;
}

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

/* Services */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

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

.service-card-img {
    height: 200px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.service-card:hover .service-card-img img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 28px;
}

.service-card h3 {
    margin-bottom: 12px;
}

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

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

.service-price .amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

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

/* Features */
.features-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.features-content {
    flex: 1;
}

.features-visual {
    flex: 1;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

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

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.feature-text h4 {
    margin-bottom: 6px;
}

.feature-text p {
    color: var(--text-light);
    font-size: 15px;
}

/* Stats */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials-wrapper {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.8;
}

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

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

.testimonial-info h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

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

/* Process */
.process-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

.process-step h4 {
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-light);
    font-size: 15px;
}

/* Contact Form */
.contact-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-detail-text h4 {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-detail-text p {
    font-size: 16px;
    color: var(--text);
}

.form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid #e5e5e5;
    border-radius: var(--radius);
    transition: all var(--transition);
    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;
}

.form .btn {
    width: 100%;
}

/* About Page */
.about-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.about-hero h1 {
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 19px;
    color: var(--text-light);
    max-width: 600px;
}

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

.team-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 260px;
    text-align: center;
}

.team-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--bg-alt);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 600;
    color: var(--primary);
}

.team-card h3 {
    margin-bottom: 4px;
}

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

/* Values */
.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    display: flex;
    gap: 20px;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.value-text h4 {
    margin-bottom: 8px;
}

.value-text p {
    color: var(--text-light);
    font-size: 15px;
}

/* Thanks Page */
.thanks-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
}

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

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

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

.thanks-content h1 {
    margin-bottom: 16px;
}

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

.thanks-service {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 32px;
    font-weight: 600;
    color: var(--primary);
}

/* Legal Pages */
.legal-page {
    padding: 140px 0 80px;
}

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

.legal-content h1 {
    margin-bottom: 16px;
}

.legal-content .legal-date {
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    margin: 40px 0 16px;
    font-size: 1.4rem;
}

.legal-content h3 {
    margin: 32px 0 12px;
    font-size: 1.1rem;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--white);
    padding: 20px 24px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

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

.cookie-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

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

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

.cookie-btns .btn {
    padding: 10px 24px;
    font-size: 14px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

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

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 80px 0 40px;
}

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

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

.footer-col.wide {
    flex: 2 1 300px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: color var(--transition);
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

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

    .split-content {
        padding: 60px 24px;
    }

    .split-visual {
        min-height: 400px;
    }

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

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

    .split-section-content {
        padding: 60px 24px;
    }

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

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

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

    .service-card {
        flex: 1 1 calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav a {
        width: 100%;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }

    .section {
        padding: 60px 0;
    }

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

    .stats-row {
        gap: 40px;
    }

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

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

    .hero-btns .btn {
        width: 100%;
    }

    .form {
        padding: 24px;
    }

    .footer-grid {
        gap: 40px;
    }

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