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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2d5f7f;
    --accent-color: #4a9eff;
    --text-dark: #1c1c1c;
    --text-light: #6b6b6b;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ff6b35;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    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;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

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

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

.btn-cookie:hover {
    background: #3a8eef;
}

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

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    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;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

.hero-asymmetric {
    min-height: 100vh;
    padding: 140px 5% 80px;
    display: flex;
    align-items: center;
    gap: 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.hero-content-offset {
    flex: 1;
    max-width: 600px;
    transform: translateX(5%);
}

.hero-label {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.3);
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 158, 255, 0.4);
}

.hero-visual-block {
    flex: 1;
    position: relative;
    transform: translateY(-5%) rotate(-2deg);
}

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

.offset-intro {
    padding: 100px 5%;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
    background: var(--bg-white);
}

.intro-text-narrow {
    flex: 2;
    max-width: 700px;
}

.intro-text-narrow h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.intro-text-narrow p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.intro-stat-card {
    flex: 1;
    background: var(--primary-color);
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transform: translateY(20px);
    box-shadow: 0 15px 40px rgba(26, 58, 82, 0.2);
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    line-height: 1.4;
}

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

.problem-grid-asymmetric {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card-elevated {
    transform: translateY(-20px);
}

.card-offset-down {
    transform: translateY(20px);
}

.card-offset-up {
    transform: translateY(-10px);
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

.problem-card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.insight-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-image-overlap {
    flex: 1;
    position: relative;
}

.insight-image-overlap img {
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transform: rotate(3deg);
}

.insight-content {
    flex: 1;
    max-width: 600px;
}

.section-marker {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.insight-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.insight-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--accent-color);
    padding: 1rem 2.5rem;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--accent-color);
    color: white;
}

.services-preview {
    padding: 100px 5%;
    background: linear-gradient(135deg, #1a3a52 0%, #2d5f7f 100%);
    color: white;
}

.services-header-offset {
    text-align: center;
    margin-bottom: 4rem;
    transform: translateX(-3%);
}

.services-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-header-offset p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-cards-stagger {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: white;
    color: var(--text-dark);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.card-featured {
    background: var(--accent-color);
    color: white;
    transform: scale(1.05);
}

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

.service-header {
    margin-bottom: 2rem;
}

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-price {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
}

.card-featured .service-price {
    color: white;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 1.5;
}

.card-featured .service-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

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

.card-featured .select-service-btn {
    background: white;
    color: var(--accent-color);
}

.select-service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.trust-content-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.trust-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.trust-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.trust-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.trust-visual {
    flex: 1;
}

.trust-visual img {
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
}

.testimonials-inline {
    padding: 100px 5%;
    background: var(--bg-white);
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 350px;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

.cta-block-overlap {
    padding: 100px 5%;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: rotate(-1deg);
}

.cta-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.cta-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-form {
    transform: rotate(1deg);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.form-group {
    margin-bottom: 1.5rem;
    flex: 1;
    min-width: 250px;
}

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

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

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

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

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(74, 158, 255, 0.3);
}

.why-now {
    padding: 80px 5%;
    background: var(--primary-color);
    color: white;
}

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

.urgency-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.urgency-block p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

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

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

.additional-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.additional-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.additional-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.additional-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.final-cta-sticky {
    padding: 80px 5%;
    background: var(--accent-color);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-primary-large {
    display: inline-block;
    background: white;
    color: var(--accent-color);
    padding: 1.5rem 4rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

.footer-content {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

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

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

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

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

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

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

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .hamburger {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding-top: 120px;
        gap: 2rem;
    }

    .hero-content-offset {
        transform: translateX(0);
    }

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

    .hero-visual-block {
        transform: translateY(0) rotate(0);
    }

    .offset-intro {
        flex-direction: column;
        gap: 2rem;
    }

    .insight-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .trust-content-split {
        flex-direction: column;
        gap: 2rem;
    }

    .testimonials-inline {
        flex-direction: column;
    }

    .cta-container {
        padding: 2rem;
    }

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