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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.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-buttons {
    display: flex;
    gap: 1rem;
}

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

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

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

.btn-cookie-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-cookie-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;
    justify-content: space-between;
    gap: 3rem;
    z-index: 1000;
    box-shadow: var(--shadow-medium);
    max-width: 90%;
    width: auto;
}

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

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

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

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

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

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

.hero-visual {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 1000px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    opacity: 0.95;
}

.intro-asymmetric {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

.intro-block-left {
    flex: 1;
    background: var(--gradient-dark);
    color: var(--white);
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-block-left h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-block-left p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
}

.intro-block-right {
    flex: 1;
    background: var(--light-bg);
    padding: 6rem 4rem;
    display: flex;
    align-items: center;
}

.intro-block-right p {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-color);
}

.problem-section {
    padding: 8rem 2rem;
    background: var(--white);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.problem-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.problem-section p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 3rem;
}

.problem-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.5;
}

.insight-visual {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.insight-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.insight-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    color: var(--white);
}

.insight-text-overlay h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.insight-text-overlay p {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 700px;
}

.storytelling-cards {
    padding: 8rem 2rem;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    color: var(--primary-color);
}

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

.card-story {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-story:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.card-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

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

.card-story p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.case-study-split {
    display: flex;
    min-height: 90vh;
}

.case-left {
    flex: 1;
    overflow: hidden;
}

.case-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-right {
    flex: 1;
    padding: 6rem 4rem;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-right h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.case-right p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

.cta-inline:hover {
    background: #d63850;
}

.testimonial-visual {
    padding: 8rem 2rem;
    background: var(--light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-large {
    max-width: 900px;
    text-align: center;
}

.testimonial-large p {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.6;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.testimonial-large cite {
    font-size: 1.1rem;
    font-style: normal;
    color: var(--text-color);
}

.benefits-asymmetric {
    padding: 8rem 2rem;
    background: var(--white);
}

.section-title-left {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    color: var(--primary-color);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-major {
    flex: 2;
    min-width: 350px;
    background: var(--gradient-dark);
    color: var(--white);
    padding: 3rem;
    border-radius: 12px;
}

.benefit-minor {
    flex: 1;
    min-width: 300px;
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 12px;
}

.benefit-major h3,
.benefit-minor h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.benefit-minor h3 {
    color: var(--primary-color);
}

.benefit-major p,
.benefit-minor p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.benefit-minor p {
    color: var(--text-color);
}

.cta-sticky-trigger {
    padding: 6rem 2rem 3rem;
    background: var(--light-bg);
    text-align: center;
}

.cta-sticky-trigger h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

.services-pricing {
    padding: 4rem 2rem 8rem;
    background: var(--light-bg);
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-card.featured {
    border: 3px solid var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

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

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

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

.btn-select-service:hover {
    background: var(--secondary-color);
}

.urgency-block {
    padding: 6rem 2rem;
    background: var(--accent-color);
    color: var(--white);
}

.urgency-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.urgency-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.3rem;
    line-height: 1.7;
}

.form-section {
    padding: 8rem 2rem;
    background: var(--white);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 3rem;
}

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

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

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

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

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

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

.btn-submit:hover {
    background: #d63850;
}

.final-cta {
    padding: 8rem 2rem;
    background: var(--gradient-dark);
    text-align: center;
    color: var(--white);
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
}

.btn-final-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: background 0.3s ease;
}

.btn-final-cta:hover {
    background: #d63850;
}

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

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

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

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-column a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.4);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.sticky-cta span {
    font-weight: 600;
}

.btn-sticky {
    padding: 0.6rem 1.5rem;
    background: var(--white);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 700;
    transition: background 0.3s ease;
}

.btn-sticky:hover {
    background: var(--light-bg);
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 1rem 1.5rem;
        gap: 1rem;
        border-radius: 30px;
    }

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

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

    .nav-menu a {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
    }

    .intro-asymmetric,
    .case-study-split {
        flex-direction: column;
    }

    .intro-block-left,
    .intro-block-right,
    .case-right {
        padding: 4rem 2rem;
    }

    .cards-grid,
    .benefits-layout,
    .services-pricing {
        flex-direction: column;
    }

    .benefit-major,
    .benefit-minor {
        min-width: 100%;
    }

    .sticky-cta {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem 1.5rem;
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        text-align: center;
    }

    .sticky-cta span {
        font-size: 0.9rem;
    }

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

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