* {
    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: #2d3748;
    background: #ffffff;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #ffffff;
    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;
    margin: 0;
}

.cookie-content a {
    color: #63b3ed;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #48bb78;
    color: white;
}

.btn-accept:hover {
    background: #38a169;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Navigation */
.nav-floating {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
}

.nav-toggle {
    background: #2d3748;
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: #4a5568;
    transform: scale(1.05);
}

.nav-menu {
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

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

.nav-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #2d3748;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-menu a:hover {
    background: #f7fafc;
    color: #5a67d8;
}

/* Hero Asymmetric */
.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 600px;
    z-index: 10;
    padding-left: 5%;
}

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

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    background: #5a67d8;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(90, 103, 216, 0.4);
}

.cta-primary:hover {
    background: #4c51bf;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 103, 216, 0.5);
}

.hero-image-overlap {
    position: absolute;
    right: -10%;
    top: 15%;
    width: 45%;
    height: 70%;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Intro Asymmetric */
.intro-asymmetric {
    padding: 6rem 2rem;
    background: #f7fafc;
}

.intro-text-narrow {
    max-width: 700px;
    margin: 0 auto 0 10%;
}

.intro-paragraph {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.intro-paragraph-emphasis {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.6;
}

/* Insight Block */
.insight-block {
    padding: 8rem 2rem;
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-visual {
    flex: 0 0 40%;
}

.insight-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.insight-content {
    flex: 1;
}

.insight-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.insight-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #4a5568;
}

.cta-inline {
    display: inline-block;
    color: #5a67d8;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: #4c51bf;
    transform: translateX(5px);
}

/* Problem Stacked */
.problem-stacked {
    padding: 6rem 2rem;
    background: #1a202c;
    color: white;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.problem-card {
    flex: 1;
    padding-left: 8%;
}

.problem-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.problem-list {
    list-style: none;
}

.problem-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #63b3ed;
}

.problem-visual {
    flex: 0 0 35%;
    margin-right: 5%;
}

.problem-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Transformation Split */
.transformation-split {
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.transformation-before,
.transformation-after {
    flex: 1;
    max-width: 350px;
    text-align: center;
}

.transformation-before h4,
.transformation-after h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.transformation-before p,
.transformation-after p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.transformation-arrow {
    font-size: 3rem;
    font-weight: bold;
}

/* Testimonials Scattered */
.testimonial-scattered {
    padding: 8rem 2rem;
    position: relative;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    margin-bottom: 3rem;
}

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

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

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: block;
    font-weight: 600;
    color: #5a67d8;
}

/* Services Cards */
.services-cards {
    padding: 8rem 2rem;
    background: #f7fafc;
}

.services-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a202c;
}

.services-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 4rem;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

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

.service-card.card-small {
    flex: 0 1 calc(33.333% - 2rem);
    min-width: 280px;
}

.service-card.card-medium {
    flex: 0 1 calc(40% - 2rem);
    min-width: 320px;
}

.service-card.card-large {
    flex: 0 1 calc(45% - 2rem);
    min-width: 360px;
}

.service-card.featured {
    border: 3px solid #5a67d8;
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #5a67d8;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.service-description {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #2d3748;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #5a67d8;
    margin-bottom: 1.5rem;
}

.service-select {
    width: 100%;
    padding: 1rem;
    background: #5a67d8;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select:hover {
    background: #4c51bf;
    transform: translateY(-2px);
}

/* Guarantee Asymmetric */
.guarantee-asymmetric {
    padding: 4rem 2rem;
    background: #edf2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.guarantee-badge {
    width: 80px;
    height: 80px;
    background: #48bb78;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-icon {
    font-size: 2.5rem;
    color: white;
}

.guarantee-text h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.guarantee-text p {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 600px;
}

/* Form Section */
.form-section {
    padding: 8rem 2rem;
    background: #ffffff;
}

.form-container-offset {
    max-width: 700px;
    margin-left: 15%;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.form-intro {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.contact-form {
    background: #f7fafc;
    padding: 3rem;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5a67d8;
    box-shadow: 0 0 0 3px rgba(90, 103, 216, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: #5a67d8;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Sticky CTA */
.final-cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    padding: 1.25rem 2rem;
    z-index: 900;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: none;
}

.final-cta-sticky.show {
    display: block;
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-cta-text {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
}

.sticky-cta-btn {
    background: #5a67d8;
    color: white;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #4c51bf;
}

/* Footer */
.footer-asymmetric {
    background: #1a202c;
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-column a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #63b3ed;
}

.footer-column p {
    color: #cbd5e0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0aec0;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-image-overlap {
        opacity: 0.3;
        right: -20%;
    }

    .insight-wrapper {
        flex-direction: column;
    }

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

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

    .services-grid-asymmetric {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .hero-content-offset {
        padding-left: 0;
    }

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

    .intro-text-narrow {
        margin: 0 auto;
    }

    .form-container-offset {
        margin-left: 0;
    }

    .footer-main {
        flex-direction: column;
    }

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

    .sticky-cta-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-floating {
        top: 1rem;
        right: 1rem;
    }
}
