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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    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;
}

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #2d5016;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #3d6b1e;
}

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

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

.nav-asymmetric {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #2d5016;
}

.hero-asymmetric {
    margin-top: 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 3rem 2rem;
}

.hero-offset-left {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    padding-left: 5%;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 1.3rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2d5016;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.cta-primary:hover {
    background: #3d6b1e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.3);
}

.hero-image-offset {
    position: absolute;
    right: 0;
    top: 10%;
    width: 55%;
    height: 80%;
    z-index: 1;
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: -30px 30px 0 rgba(45, 80, 22, 0.15);
}

.intro-overlap {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    position: relative;
}

.intro-card-left {
    flex: 1.2;
    background: #f8f8f8;
    padding: 3rem;
    transform: translateY(-80px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.intro-card-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #1a1a1a;
}

.intro-card-left p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.intro-stats-right {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2d5016;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #6a6a6a;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.story-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.story-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.story-narrow h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.story-narrow p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
}

.story-image {
    width: 100%;
    height: auto;
    margin: 3rem 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.problem-amplify {
    padding: 5rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.problem-left-text {
    flex: 1;
    padding-left: 5%;
}

.problem-left-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.problem-left-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 1.2rem;
}

.problem-right-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.visual-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-left: 4px solid #2d5016;
    max-width: 400px;
}

.visual-quote {
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.visual-attribution {
    font-size: 0.95rem;
    color: #a0a0a0;
}

.solution-reveal {
    padding: 6rem 2rem;
    background: #f5f5f5;
}

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

.solution-image-block {
    flex: 0.8;
}

.solution-image-block img {
    width: 100%;
    height: auto;
    box-shadow: 20px 20px 0 rgba(45, 80, 22, 0.15);
}

.solution-text-block {
    flex: 1.2;
}

.solution-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.benefit-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.benefit-list li {
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
    color: #3a3a3a;
    position: relative;
    padding-left: 2rem;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: 700;
    font-size: 1.3rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.trust-building {
    padding: 6rem 2rem;
    background: #ffffff;
}

.trust-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.trust-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    background: #f8f8f8;
    padding: 2.5rem;
    border-top: 4px solid #2d5016;
}

.trust-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.trust-card p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.testimonial-offset {
    padding: 5rem 2rem;
    background: #2d5016;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.testimonial-block {
    flex: 1.2;
    padding-left: 5%;
}

.testimonial-text {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-image-aside {
    flex: 0.8;
}

.testimonial-image-aside img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.9;
}

.services-intro {
    padding: 4rem 2rem;
    background: #ffffff;
    text-align: center;
}

.services-intro-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-intro-text p {
    font-size: 1.2rem;
    color: #6a6a6a;
}

.services-asymmetric {
    padding: 3rem 2rem 6rem;
    background: #f9f9f9;
    position: relative;
}

.service-card {
    max-width: 450px;
    background: #ffffff;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.service-card-offset-1 {
    margin-left: 10%;
}

.service-card-offset-2 {
    margin-left: auto;
    margin-right: 15%;
}

.service-card-offset-3 {
    margin-left: 20%;
}

.service-card-offset-4 {
    margin-left: auto;
    margin-right: 10%;
}

.service-card-offset-5 {
    margin-left: 15%;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    flex: 1;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d5016;
    white-space: nowrap;
    margin-left: 1rem;
}

.service-desc {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.6rem 0;
    color: #3a3a3a;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.service-select-btn {
    width: 100%;
    padding: 1rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.why-now {
    padding: 5rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

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

.why-now-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.why-now-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 2rem;
}

.cta-inline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2d5016;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: #3d6b1e;
    transform: translateY(-2px);
}

.form-section {
    padding: 6rem 2rem;
    background: #f5f5f5;
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
    transform: translateX(-5%);
}

.form-intro-text {
    margin-bottom: 2.5rem;
}

.form-intro-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro-text p {
    font-size: 1.1rem;
    color: #6a6a6a;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    background: #fafafa;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2d5016;
    background: #ffffff;
}

.submit-btn {
    padding: 1.2rem;
    background: #2d5016;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.submit-btn:hover {
    background: #3d6b1e;
    transform: translateY(-2px);
}

.final-reassurance {
    padding: 4rem 2rem;
    background: #ffffff;
    text-align: center;
}

.reassurance-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.reassurance-content p {
    font-size: 1.15rem;
    color: #6a6a6a;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

.footer-brand h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #a0a0a0;
    font-size: 0.95rem;
}

.footer-links,
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a,
.footer-legal a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #2d5016;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background: #2d5016;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 30px rgba(45, 80, 22, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #3d6b1e;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(45, 80, 22, 0.5);
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-offset-left {
        padding-left: 0;
        max-width: 100%;
        text-align: center;
    }

    .hero-image-offset {
        position: relative;
        width: 100%;
        height: 400px;
        margin-top: 2rem;
    }

    .intro-overlap {
        flex-direction: column;
    }

    .intro-card-left {
        transform: translateY(0);
    }

    .problem-amplify {
        flex-direction: column;
    }

    .problem-left-text {
        padding-left: 0;
    }

    .solution-container {
        flex-direction: column;
    }

    .testimonial-offset {
        flex-direction: column;
    }

    .testimonial-block {
        padding-left: 0;
    }

    .service-card-offset-1,
    .service-card-offset-2,
    .service-card-offset-3,
    .service-card-offset-4,
    .service-card-offset-5 {
        margin-left: auto;
        margin-right: auto;
    }

    .form-container-asymmetric {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

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

    .hero-lead {
        font-size: 1.1rem;
    }

    .intro-card-left h2 {
        font-size: 1.8rem;
    }

    .story-narrow h3 {
        font-size: 2rem;
    }

    .problem-left-text h2 {
        font-size: 2rem;
    }

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

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

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

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