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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --accent-alt: #f39c12;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: var(--shadow-lg);
}

.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: 20px;
}

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

.cookie-content a {
    color: var(--accent-alt);
    text-decoration: underline;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

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

.nav-floating {
    position: fixed;
    top: 30px;
    left: 5%;
    right: 5%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.nav-logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 60px;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    width: 55%;
    z-index: 2;
    padding-right: 50px;
}

.hero-text-block {
    margin-bottom: 40px;
}

.hero-title-large {
    font-size: clamp(48px, 8vw, 92px);
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text-light);
    line-height: 1.5;
}

.btn-primary-hero {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-primary-hero:hover {
    background: #d63851;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
    box-shadow: var(--shadow-lg);
}

.story-intro-offset {
    padding: 100px 5%;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-narrow {
    width: 40%;
}

.story-narrow h2 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.story-narrow p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.story-wide-visual {
    width: 60%;
}

.visual-card-overlap {
    position: relative;
}

.visual-card-overlap img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
}

.visual-overlay-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(26, 26, 46, 0.9);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.visual-overlay-text p {
    color: white;
    font-size: 22px;
    font-style: italic;
    margin: 0;
}

.manifesto-irregular {
    padding: 80px 5%;
    background: var(--bg-light);
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.manifesto-left {
    width: 45%;
    padding-top: 60px;
}

.manifesto-left h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.manifesto-left p {
    font-size: 17px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

.manifesto-right-stacked {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mini-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.mini-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.mini-card h4 {
    font-size: 22px;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.mini-card p {
    color: var(--text-light);
    font-size: 16px;
    margin: 0;
}

.cta-floating-section {
    padding: 100px 5%;
    display: flex;
    justify-content: flex-end;
}

.cta-box-angled {
    background: var(--accent-color);
    padding: 50px 60px;
    border-radius: 15px;
    transform: rotate(-2deg);
    box-shadow: var(--shadow-lg);
    max-width: 500px;
}

.cta-box-angled h3 {
    color: white;
    font-size: 32px;
    margin-bottom: 25px;
    transform: rotate(2deg);
}

.btn-cta-white {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px;
    transform: rotate(2deg);
    transition: all 0.3s;
}

.btn-cta-white:hover {
    background: var(--bg-light);
    transform: rotate(2deg) translateY(-2px);
}

.problem-amplification {
    padding: 100px 5%;
}

.problem-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-text {
    width: 50%;
}

.problem-text h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.problem-text p {
    font-size: 17px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

.problem-visual {
    width: 50%;
}

.problem-visual img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.insight-reveal {
    padding: 100px 5%;
    background: var(--secondary-color);
    color: white;
}

.insight-header-centered {
    text-align: center;
    margin-bottom: 70px;
}

.insight-header-centered h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.insight-lead {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.services-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card-offset {
    background: white;
    color: var(--text-color);
    padding: 40px;
    border-radius: 15px;
    width: calc(50% - 15px);
    position: relative;
    transition: all 0.3s;
}

.service-card-offset:nth-child(odd) {
    transform: translateY(20px);
}

.service-card-offset:nth-child(even) {
    transform: translateY(-20px);
}

.service-card-offset:hover {
    transform: translateY(0) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.service-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 30px;
}

.service-card-offset h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card-offset p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 30px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.trust-building {
    padding: 100px 5%;
}

.trust-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
}

.trust-quote-large {
    width: calc(60% - 20px);
    background: var(--bg-light);
    padding: 50px;
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
}

.trust-quote-large blockquote {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 25px;
}

.trust-quote-large cite {
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
}

.trust-stat-box {
    width: calc(20% - 20px);
    background: var(--accent-color);
    color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-large {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
}

.trust-stat-box p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.testimonials-scattered {
    padding: 100px 5%;
    background: var(--bg-light);
}

.section-title-offset {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 60px;
    padding-left: 60px;
}

.testimonial-layout-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    max-width: 600px;
}

.testimonial-left {
    align-self: flex-start;
    transform: translateX(-30px);
}

.testimonial-right {
    align-self: flex-end;
    transform: translateX(30px);
}

.testimonial-center {
    align-self: center;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
}

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

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 16px;
}

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

.benefits-layered {
    padding: 100px 5%;
}

.benefits-header-angled {
    transform: translateX(80px);
    margin-bottom: 60px;
}

.benefits-header-angled h2 {
    font-size: 48px;
    color: var(--primary-color);
}

.benefits-columns-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-item {
    width: calc(33.333% - 20px);
    padding: 35px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
}

.benefit-item:nth-child(odd) {
    transform: translateY(20px);
}

.benefit-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(0);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.form-section-creative {
    padding: 100px 5%;
    background: var(--primary-color);
    color: white;
}

.form-container-offset {
    max-width: 800px;
    margin-left: 10%;
}

.form-intro {
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 18px;
    opacity: 0.9;
}

.contact-form-asymmetric {
    background: rgba(255,255,255,0.1);
    padding: 50px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    font-size: 15px;
    background: rgba(255,255,255,0.95);
    color: var(--text-color);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.btn-submit-form {
    padding: 16px 50px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit-form:hover {
    background: #d63851;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.urgency-block {
    padding: 80px 5%;
    background: var(--accent-alt);
}

.urgency-content-centered {
    text-align: center;
}

.urgency-content-centered h3 {
    font-size: 38px;
    color: white;
    margin-bottom: 20px;
}

.urgency-content-centered p {
    font-size: 20px;
    color: white;
    opacity: 0.95;
    margin-bottom: 30px;
}

.btn-urgency {
    display: inline-block;
    padding: 16px 45px;
    background: white;
    color: var(--accent-alt);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s;
}

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

.final-cta-creative {
    padding: 100px 5%;
}

.final-split {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--secondary-color);
    padding: 60px;
    border-radius: 20px;
}

.final-text {
    flex: 1;
    color: white;
}

.final-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-text p {
    font-size: 18px;
    opacity: 0.9;
}

.final-action {
    flex-shrink: 0;
}

.btn-final-large {
    display: inline-block;
    padding: 20px 50px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    border-radius: 10px;
    transition: all 0.3s;
}

.btn-final-large:hover {
    background: #d63851;
    transform: scale(1.05);
}

.footer-asymmetric {
    background: var(--primary-color);
    color: white;
    padding: 60px 5% 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 16px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s;
}

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

.btn-sticky {
    display: block;
    padding: 16px 35px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

.btn-sticky:hover {
    background: #d63851;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding-top: 140px;
    }

    .hero-content-offset {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
    }

    .story-intro-offset {
        flex-direction: column;
    }

    .story-narrow,
    .story-wide-visual {
        width: 100%;
    }

    .manifesto-irregular {
        flex-direction: column;
        gap: 40px;
    }

    .manifesto-left,
    .manifesto-right-stacked {
        width: 100%;
        padding-top: 0;
    }

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

    .problem-text,
    .problem-visual {
        width: 100%;
    }

    .service-card-offset {
        width: 100%;
    }

    .trust-quote-large,
    .trust-stat-box {
        width: 100%;
    }

    .benefit-item {
        width: calc(50% - 15px);
    }

    .final-split {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .nav-floating {
        top: 20px;
        left: 4%;
        right: 4%;
        padding: 15px 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        margin-top: 15px;
        border-radius: 15px;
        box-shadow: var(--shadow-md);
        display: none;
    }

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

    .hero-title-large {
        font-size: 42px;
    }

    .cta-box-angled {
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .benefit-item {
        width: 100%;
    }

    .benefits-header-angled {
        transform: translateX(0);
    }
}
