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

:root {
    --primary: #0A0E27;
    --secondary: #6C63FF;
    --accent: #FF6584;
    --light: #F8F9FA;
    --dark: #1A1D2E;
    --text: #2D3142;
    --text-light: #6B7280;
    --border: #E5E7EB;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 20px;
    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: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

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

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

.nav-floating {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

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

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

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

.hero-asymmetric {
    min-height: 100vh;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.hero-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text-offset {
    flex: 1;
    padding-left: 80px;
}

.hero-tag {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-text-offset h1 {
    font-size: 72px;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-image-block {
    flex: 1;
    position: relative;
    margin-top: -100px;
}

.hero-image-block img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.floating-cta.show {
    opacity: 1;
}

.floating-cta a {
    display: block;
    background: var(--accent);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(255, 101, 132, 0.4);
    transition: transform 0.3s;
}

.floating-cta a:hover {
    transform: scale(1.05);
}

.intro-statement {
    padding: 100px 20px;
    background: white;
}

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

.intro-statement h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 700;
}

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

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

.visual-break {
    padding: 80px 20px;
    background: var(--light);
}

.offset-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

.grid-image-1 {
    flex: 1.2;
    margin-left: -60px;
}

.grid-image-1 img {
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.grid-text-overlay {
    flex: 1;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-right: -40px;
    z-index: 2;
}

.grid-text-overlay h3 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.grid-text-overlay p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.problem-amplification {
    padding: 120px 20px;
    background: var(--primary);
    color: white;
}

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.split-left,
.split-right {
    flex: 1;
}

.split-left h2 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.styled-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
}

.styled-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.stat-block {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
}

.stat-block p {
    font-size: 16px;
    line-height: 1.6;
}

.insight-reveal {
    padding: 100px 20px;
    background: white;
}

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

.insight-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px;
    border-radius: 20px;
}

.insight-card h2 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 700;
}

.insight-card > p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 50px;
    opacity: 0.95;
}

.tech-features {
    display: flex;
    gap: 40px;
}

.feature {
    flex: 1;
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.feature h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.case-narrative {
    padding: 100px 20px;
    background: var(--light);
}

.narrative-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.narrative-layout img {
    flex: 1.3;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.narrative-text {
    flex: 1;
}

.narrative-text h3 {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 700;
}

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

.cta-inline {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    font-size: 18px;
    margin-top: 15px;
    transition: transform 0.3s;
}

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

.trust-signals {
    padding: 100px 20px;
    background: white;
}

.centered {
    text-align: center;
}

.trust-signals h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 60px;
    font-weight: 700;
}

.trust-grid {
    display: flex;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
    background: var(--light);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
}

.quote {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.transition-reveal {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.transition-reveal h2 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 700;
}

.lead-text {
    font-size: 20px;
    line-height: 1.7;
}

.services-showcase {
    padding: 120px 20px;
    background: white;
}

.section-title {
    font-size: 56px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 800;
    text-align: center;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 80px;
}

.services-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-card.large {
    flex-basis: 100%;
}

.service-card.large .service-content,
.service-card.large .service-visual {
    flex: 1;
}

.service-card.large {
    flex-direction: row;
}

.service-card.medium {
    flex-basis: calc(50% - 15px);
    flex-direction: row;
}

.service-card.medium .service-content,
.service-card.medium .service-visual {
    flex: 1;
}

.service-card.small {
    flex-basis: calc(33.333% - 20px);
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-content > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: var(--text);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin: 20px 0;
}

.btn-service {
    background: var(--secondary);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    margin-top: auto;
}

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

.urgency-block {
    padding: 80px 20px;
    background: var(--accent);
    color: white;
}

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

.urgency-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 700;
}

.urgency-text p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.form-section {
    padding: 120px 20px;
    background: var(--light);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 60px;
}

.form-intro h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.main-form {
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background: var(--light);
    cursor: not-allowed;
}

.form-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--secondary);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

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

.final-push {
    padding: 100px 20px;
    background: white;
}

.final-push h2 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 700;
}

.final-push p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-final {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 20px 50px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 101, 132, 0.4);
}

.site-footer {
    background: var(--dark);
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

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

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

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text-offset {
        padding-left: 0;
    }

    .hero-text-offset h1 {
        font-size: 52px;
    }

    .hero-image-block {
        margin-top: 0;
    }

    .container-split {
        flex-direction: column;
        gap: 50px;
    }

    .tech-features {
        flex-direction: column;
    }

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

    .trust-grid {
        flex-direction: column;
    }

    .service-card.medium {
        flex-basis: 100%;
        flex-direction: column;
    }

    .service-card.small {
        flex-basis: 100%;
    }

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

    .grid-image-1 {
        margin-left: 0;
    }

    .grid-text-overlay {
        margin-right: 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

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

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        margin-top: 15px;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .hero-asymmetric {
        padding: 100px 20px 40px;
    }

    .hero-text-offset h1 {
        font-size: 36px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .intro-statement h2 {
        font-size: 32px;
    }

    .large-text {
        font-size: 19px;
    }

    .section-title {
        font-size: 36px;
    }

    .service-card.large {
        flex-direction: column;
    }

    .main-form {
        padding: 30px 20px;
    }

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

    .floating-cta {
        bottom: 20px;
        right: 20px;
    }

    .floating-cta a {
        padding: 14px 24px;
        font-size: 15px;
    }
}