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

:root {
    --primary: #1a1a2e;
    --secondary: #e94560;
    --accent: #0f3460;
    --light: #f8f9fa;
    --text: #2d2d2d;
    --text-light: #6c757d;
    --bg-dark: #16213e;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

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

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

.btn-accept:hover {
    background: #d63651;
}

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

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

.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 8px 30px rgba(0,0,0,0.12);
}

.nav-brand {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
}

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

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

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

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    padding: 8rem 3rem 3rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
}

.hero-title-large {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.highlight-text {
    color: var(--secondary);
    position: relative;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.cta-primary {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.cta-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(233,69,96,0.3);
}

.hero-visual-block {
    flex: 1;
    position: relative;
    margin-top: 5rem;
    margin-right: -3rem;
}

.hero-visual-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.visual-overlay {
    position: absolute;
    top: 10%;
    left: -8%;
    width: 40%;
    height: 60%;
    background: var(--accent);
    opacity: 0.15;
    z-index: 1;
}

.intro-offset {
    padding: 6rem 3rem;
    background: var(--light);
}

.intro-narrow {
    max-width: 800px;
    margin: 0 auto 0 15%;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.intro-text-bold {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

.problem-section {
    padding: 5rem 3rem;
}

.problem-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.problem-left {
    flex: 1.2;
    padding-left: 3rem;
}

.problem-left h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.problem-left p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.problem-right {
    flex: 1;
    margin-top: -4rem;
}

.problem-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.insight-block {
    background: var(--bg-dark);
    color: white;
    padding: 7rem 3rem;
    text-align: center;
}

.insight-content {
    max-width: 900px;
    margin: 0 auto;
}

.insight-title {
    font-size: 3.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.insight-content p {
    font-size: 1.4rem;
    line-height: 1.8;
    opacity: 0.9;
}

.services-creative {
    padding: 6rem 3rem;
    background: white;
}

.section-title-offset {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 4rem;
    margin-left: 10%;
    font-weight: 800;
}

.service-card-asymmetric {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.service-card-asymmetric.reverse {
    flex-direction: row-reverse;
    margin-left: 5%;
}

.service-visual {
    flex: 1;
    position: relative;
}

.service-visual img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.service-info h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-info p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-select-service:hover {
    background: var(--primary);
    transform: translateX(5px);
}

.trust-builder {
    background: var(--light);
    padding: 6rem 3rem;
}

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

.trust-content-narrow h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 4rem;
}

.stats-offset {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.stat-number {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.testimonials-asymmetric {
    padding: 6rem 3rem;
    background: white;
}

.testimonial-card-offset {
    max-width: 900px;
    margin: 3rem auto;
    padding: 3rem;
    background: var(--light);
    border-left: 5px solid var(--secondary);
    border-radius: 8px;
    position: relative;
}

.testimonial-card-offset.reverse {
    margin-left: auto;
    margin-right: 5%;
    border-left: none;
    border-right: 5px solid var(--accent);
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.cta-sticky-section {
    background: var(--secondary);
    color: white;
    padding: 5rem 3rem;
    text-align: center;
}

.cta-sticky-inner h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-sticky-inner p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-cta-large {
    background: white;
    color: var(--secondary);
    padding: 1.3rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.process-section {
    padding: 6rem 3rem;
    background: var(--light);
}

.process-section h2 {
    font-size: 3rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 4rem;
}

.process-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.process-step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    position: relative;
}

.process-step:nth-child(even) {
    margin-top: 3rem;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.final-cta-asymmetric {
    background: var(--primary);
    color: white;
    padding: 7rem 3rem;
    position: relative;
    overflow: hidden;
}

.final-cta-asymmetric::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: var(--accent);
    opacity: 0.1;
    transform: rotate(15deg);
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.final-cta-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-final-cta {
    background: var(--secondary);
    color: white;
    padding: 1.3rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-final-cta:hover {
    background: white;
    color: var(--secondary);
    transform: translateY(-3px);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 3rem;
    max-width: 600px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--secondary);
}

.modal-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

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

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

.btn-submit {
    background: var(--secondary);
    color: white;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

.footer-asymmetric {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 3rem 2rem;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

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

.footer-col a:hover {
    color: var(--secondary);
}

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

@media (max-width: 968px) {
    .nav-floating {
        top: 1rem;
        left: 1rem;
        right: 1rem;
        transform: none;
        justify-content: space-between;
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        border-radius: 12px;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

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

    .nav-toggle {
        display: block;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        padding: 6rem 2rem 3rem;
    }

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

    .hero-visual-block {
        margin-right: 0;
        height: 400px;
    }

    .hero-visual-block img {
        clip-path: none;
    }

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

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

    .problem-right {
        margin-top: 0;
    }

    .service-card-asymmetric,
    .service-card-asymmetric.reverse {
        flex-direction: column;
        margin-left: auto;
        margin-right: auto;
    }

    .section-title-offset {
        margin-left: 0;
        font-size: 2.5rem;
    }

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

    .process-step:nth-child(even) {
        margin-top: 0;
    }

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

@media (max-width: 600px) {
    .hero-title-large {
        font-size: 2rem;
    }

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

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

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

    .service-info h3 {
        font-size: 1.6rem;
    }

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

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