/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.97);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: #27ae60;
    color: #fff;
}

.btn-cookie:hover {
    background: #229954;
}

.btn-cookie-alt {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-cookie-alt:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Navigation */
.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 3rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 90%;
}

.nav-brand {
    font-weight: 600;
    font-size: 1.1rem;
    color: #27ae60;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #2c3e50;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #27ae60;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Asymmetric */
.hero-asymmetric {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    position: relative;
    background: linear-gradient(135deg, #f5f9f7 0%, #ffffff 100%);
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.hero-text-block {
    flex: 1;
    padding-right: 2rem;
}

.hero-title-split {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    font-weight: 700;
    color: #1a4d2e;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
}

.hero-image-overlap img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
}

.hero-stats-floating {
    position: absolute;
    bottom: 4rem;
    right: 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
}

.stat-label {
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #27ae60;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #27ae60;
    border: 2px solid #27ae60;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #27ae60;
    color: #fff;
}

.link-arrow {
    color: #27ae60;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
}

/* Manifesto Offset */
.manifesto-offset {
    padding: 6rem 2rem;
    background: #fff;
}

.manifesto-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.manifesto-image {
    flex: 0.9;
    transform: translateY(-3rem);
}

.manifesto-image img {
    border-radius: 8px;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.12);
}

.manifesto-text {
    flex: 1.1;
}

.manifesto-text h2 {
    font-size: 2.5rem;
    color: #1a4d2e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.manifesto-text p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

/* Approach Staggered */
.approach-staggered {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, #f5f9f7, #fff);
}

.approach-header-small {
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.section-label {
    display: block;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: #27ae60;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.approach-header-small h2 {
    font-size: 2.5rem;
    color: #1a4d2e;
}

.approach-blocks {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.approach-card {
    flex: 1;
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.approach-card-1 {
    transform: translateY(-1rem);
}

.approach-card-2 {
    transform: translateY(1rem);
}

.approach-card-3 {
    transform: translateY(-0.5rem);
}

.approach-card:hover {
    transform: translateY(-0.5rem);
}

.approach-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e8f5e9;
    margin-bottom: 1rem;
}

.approach-card h3 {
    font-size: 1.5rem;
    color: #1a4d2e;
    margin-bottom: 1rem;
}

.approach-card p {
    color: #5a6c7d;
}

/* Services Irregular */
.services-irregular {
    padding: 6rem 2rem;
    background: #fff;
}

.services-intro-box {
    max-width: 600px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro-box h2 {
    font-size: 2.5rem;
    color: #1a4d2e;
    margin-bottom: 1rem;
}

.services-intro-box p {
    font-size: 1.1rem;
    color: #5a6c7d;
}

.services-grid-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #f8faf9;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:nth-child(odd) {
    transform: translateY(-1rem);
}

.service-card:nth-child(even) {
    transform: translateY(1rem);
}

.service-card:hover {
    border-color: #27ae60;
    transform: translateY(-0.5rem);
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.15);
}

.service-card.selected {
    border-color: #27ae60;
    background: #e8f5e9;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #1a4d2e;
    margin-bottom: 1rem;
}

.service-card p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.btn-service-select {
    width: 100%;
    padding: 0.9rem;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service-select:hover {
    background: #229954;
}

/* Testimonial Overlap */
.testimonial-overlap {
    padding: 6rem 2rem;
    background: #f5f9f7;
    position: relative;
}

.testimonial-image-bg {
    max-width: 1400px;
    margin: 0 auto;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

.testimonial-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.testimonial-box {
    max-width: 800px;
    margin: -8rem auto 0;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
}

.testimonial-text {
    font-size: 1.3rem;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: #1a4d2e;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* Impact Asymmetric */
.impact-asymmetric {
    padding: 6rem 2rem;
    background: #fff;
}

.impact-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.impact-text-column {
    flex: 1.2;
}

.impact-text-column h2 {
    font-size: 2.5rem;
    color: #1a4d2e;
    margin-bottom: 1.5rem;
}

.impact-text-column p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.impact-list {
    list-style: none;
    margin: 2rem 0;
}

.impact-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e8f5e9;
    color: #2c3e50;
    font-size: 1.05rem;
    padding-left: 2rem;
    position: relative;
}

.impact-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

.impact-visual {
    flex: 0.8;
    transform: translateY(2rem) rotate(-3deg);
}

.impact-visual img {
    border-radius: 12px;
    box-shadow: 20px -20px 60px rgba(0, 0, 0, 0.12);
}

/* Form Section Diagonal */
.form-section-diagonal {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a4d2e 0%, #27ae60 100%);
    position: relative;
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    transform: skewY(2deg);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.contact-form {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e8f5e9;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

/* Trust Signals */
.trust-signals {
    padding: 4rem 2rem;
    background: #f5f9f7;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h3 {
    font-size: 1.5rem;
    color: #1a4d2e;
    margin-bottom: 2rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    padding: 1rem 2rem;
    background: #fff;
    border-radius: 8px;
    color: #5a6c7d;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Footer */
.footer-minimal {
    background: #1a4d2e;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col a {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background: #27ae60;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #229954;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(39, 174, 96, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content-offset,
    .manifesto-grid,
    .impact-content {
        flex-direction: column;
    }

    .hero-stats-floating {
        position: static;
        margin-top: 2rem;
        justify-content: center;
    }

    .approach-blocks {
        flex-direction: column;
    }

    .approach-card-1,
    .approach-card-2,
    .approach-card-3 {
        transform: translateY(0);
    }

    .manifesto-image {
        transform: translateY(0);
    }

    .impact-visual {
        transform: rotate(0);
    }

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

    .footer-col {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        top: 1rem;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 1rem;
        border-radius: 12px;
        margin-top: 0.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: block;
    }

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

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

    .service-card:nth-child(odd),
    .service-card:nth-child(even) {
        transform: translateY(0);
    }

    .testimonial-box {
        margin-top: -4rem;
        padding: 2rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

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

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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