:root {
    --primary: #1a5f4a;
    --primary-light: #2d8a6e;
    --primary-dark: #0f3d2f;
    --secondary: #f4a932;
    --secondary-light: #ffc55c;
    --accent: #e8f5e9;
    --dark: #1a1a2e;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #f9fafb;
    --bg-alt: #eef2f0;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-strong: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 6px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text);
    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 {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

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

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

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

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

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

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

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo svg {
    width: 40px;
    height: 40px;
}

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

.nav-link {
    font-weight: 500;
    color: var(--text);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

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

/* Hero Split */
.hero-split {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--accent);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    margin-bottom: 24px;
    width: fit-content;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--primary);
}

.hero-text {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 500px;
}

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

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 40px;
    right: 40px;
    background: rgba(255,255,255,0.95);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Split Section */
.split-section {
    display: flex;
    min-height: 600px;
}

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

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

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

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

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

.split-content.bg-primary .section-title {
    color: var(--white);
}

.split-content.bg-primary .section-subtitle {
    color: rgba(255,255,255,0.85);
}

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

.feature-list {
    margin-top: 32px;
}

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

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

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

.feature-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
}

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

.bg-primary .feature-icon {
    background: rgba(255,255,255,0.15);
}

.bg-primary .feature-icon svg {
    color: var(--white);
}

.bg-primary .feature-text p {
    color: rgba(255,255,255,0.8);
}

/* Services Grid */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header .section-subtitle {
    margin: 0 auto;
}

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

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

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

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

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

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

.service-body {
    padding: 28px;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

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

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

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

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

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text);
    margin-bottom: 8px;
}

.service-features li svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.about-badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
}

.about-badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dark);
}

.about-content {
    flex: 1;
}

.about-text {
    margin-bottom: 32px;
}

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

.values-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 200px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

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

.value-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-desc {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--primary);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.testimonials-header .section-subtitle {
    color: rgba(255,255,255,0.8);
    margin: 0 auto;
}

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

.testimonial-card {
    flex: 1;
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.testimonial-quote {
    font-size: 2.5rem;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 20px;
}

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

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

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.25rem;
}

.author-info h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a4a 100%);
    text-align: center;
}

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

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

.cta-text {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-intro {
    margin-bottom: 40px;
}

.contact-intro p {
    color: var(--text-light);
    margin-top: 16px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

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

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

.contact-text h4 {
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-text p,
.contact-text a {
    color: var(--text-light);
}

.contact-text a:hover {
    color: var(--primary);
}

.contact-form-wrapper {
    flex: 1;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

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

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

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.form-checkbox label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.form-checkbox a {
    color: var(--primary);
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.0625rem;
}

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

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

.footer-brand {
    flex: 1.5;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo svg {
    width: 40px;
    height: 40px;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.footer-col {
    flex: 1;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

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

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

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 24px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.9375rem;
    color: var(--text);
}

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

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.cookie-accept:hover {
    background: var(--primary-light);
}

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

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

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--secondary);
    color: var(--dark);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: var(--shadow-strong);
}

.sticky-cta a:hover {
    transform: scale(1.05);
}

/* Page Header */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.page-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    color: rgba(255,255,255,0.8);
}

.page-breadcrumb a {
    color: var(--white);
}

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

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

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 40px 0 16px;
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin: 32px 0 12px;
}

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

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

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

.legal-content a {
    color: var(--primary);
}

/* Thanks Page */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px;
    background: var(--bg-light);
}

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

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

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

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

.thanks-text {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-service {
    background: var(--white);
    padding: 20px 32px;
    border-radius: var(--radius);
    display: inline-block;
    margin-bottom: 32px;
    box-shadow: var(--shadow);
}

.thanks-service span {
    color: var(--text-light);
}

.thanks-service strong {
    color: var(--primary);
    font-weight: 700;
}

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

    .hero-content {
        padding: 40px 24px;
    }

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

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

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

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

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

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

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

    .about-badge {
        right: 20px;
        bottom: -20px;
    }

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

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

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        box-shadow: var(--shadow);
        display: none;
    }

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

    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

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

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

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

    .cta-title {
        font-size: 1.75rem;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .sticky-cta {
        right: 16px;
        bottom: 16px;
    }

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