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

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --light: #f1f1f1;
    --text: #333;
    --gray: #666;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    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: var(--accent);
    text-decoration: underline;
}

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

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

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

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

.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(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-brand {
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s;
}

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

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

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

.hero-offset {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.hero-content-left {
    flex: 1;
    max-width: 550px;
    position: relative;
    z-index: 2;
    padding-right: 3rem;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--primary);
    font-weight: 800;
}

.hero-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

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

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

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 30px 30px 0 var(--accent);
}

.story-block {
    padding: 8rem 5%;
    background: white;
}

.story-inner {
    max-width: 700px;
    margin: 0 auto;
}

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

.story-inner p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.insight-asymmetric {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
    background: var(--secondary);
    gap: 4rem;
}

.insight-left-col {
    flex: 0.8;
    position: relative;
    margin-left: 5rem;
}

.insight-left-col img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: -40px 40px 0 rgba(233, 69, 96, 0.8);
}

.insight-right-col {
    flex: 1.2;
    color: white;
}

.insight-right-col h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.insight-right-col p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-inline {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s;
}

.cta-inline:hover {
    color: white;
    transform: translateX(10px);
}

.services-overview {
    padding: 8rem 5%;
    background: linear-gradient(180deg, #fff 0%, #f9f9f9 100%);
}

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

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
}

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

.card-1 {
    flex: 1 1 calc(33.333% - 2rem);
    margin-top: 0;
}

.card-2 {
    flex: 1 1 calc(33.333% - 2rem);
    margin-top: 3rem;
}

.card-3 {
    flex: 1 1 calc(33.333% - 2rem);
    margin-top: 1.5rem;
}

.card-4 {
    flex: 1 1 calc(33.333% - 2rem);
    margin-top: 2rem;
}

.card-5 {
    flex: 1 1 calc(33.333% - 2rem);
    margin-top: 0.5rem;
}

.card-6 {
    flex: 1 1 calc(33.333% - 2rem);
    margin-top: 2.5rem;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.service-card .price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
}

.trust-block-overlap {
    padding: 8rem 5%;
    background: var(--primary);
    position: relative;
    margin-top: -3rem;
}

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

.trust-content h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1 1 calc(33.333% - 2rem);
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.testimonial p {
    color: white;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial span {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
}

.process-visual {
    padding: 8rem 5%;
    background: white;
}

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

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

.step {
    flex: 1 1 calc(50% - 3rem);
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    position: relative;
}

.step-offset-1 {
    margin-top: 0;
}

.step-offset-2 {
    margin-top: 4rem;
}

.step-offset-3 {
    margin-top: 2rem;
}

.step-offset-4 {
    margin-top: 6rem;
}

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.step h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.step p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
}

.form-section-asymmetric {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: rotate(-1deg);
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.form-intro {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    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(--accent);
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.urgency-banner {
    padding: 4rem 5%;
    background: var(--accent);
    text-align: center;
}

.urgency-content h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.urgency-content p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-urgency {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s;
}

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

.footer-asymmetric {
    background: var(--primary);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col-1 {
    flex: 1.5;
}

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

.footer-col p {
    line-height: 1.7;
    opacity: 0.9;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

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

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--accent);
}

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

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

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 12px;
        display: none;
    }

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

    .hero-offset {
        flex-direction: column;
        padding: 6rem 5% 3rem;
    }

    .hero-content-left {
        padding-right: 0;
        max-width: 100%;
    }

    .hero-content-left h1 {
        font-size: 2.5rem;
    }

    .hero-image-right {
        margin-left: 0;
        margin-top: 2rem;
        width: 100%;
    }

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

    .insight-left-col {
        margin-left: 0;
    }

    .service-card {
        flex: 1 1 100%;
        margin-top: 0 !important;
    }

    .testimonial {
        flex: 1 1 100%;
    }

    .step {
        flex: 1 1 100%;
        margin-top: 0 !important;
    }

    .form-container {
        transform: none;
    }

    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }
}
