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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    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;
    margin: 0;
}

.cookie-content a {
    color: #4CAF50;
    text-decoration: underline;
}

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

.btn-primary, .btn-secondary {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #4CAF50;
    color: white;
}

.btn-primary:hover {
    background: #45a049;
}

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

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

.nav-asymmetric {
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    margin: 0 60px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-logo a {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 20px 0;
}

.nav-links a:hover {
    color: #4CAF50;
}

.hero-offset {
    margin-top: 140px;
    padding: 0 60px 80px;
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 600px;
}

.hero-text-block {
    flex: 1;
    max-width: 540px;
    padding-left: 80px;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -40px;
}

.hero-image-overlap img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.btn-sticky {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.35);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(76, 175, 80, 0.4);
}

.asymmetric-intro {
    display: flex;
    gap: 40px;
    padding: 100px 60px;
    background: #f8f9fa;
}

.intro-sidebar {
    width: 120px;
    display: flex;
    align-items: flex-start;
    padding-top: 10px;
}

.label-vertical {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    font-weight: 600;
}

.intro-content {
    flex: 1;
    max-width: 800px;
}

.intro-content h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.story-grid {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 60px;
    gap: 40px;
    align-items: flex-start;
}

.story-text-main {
    flex: 1;
    min-width: 400px;
    padding-right: 60px;
}

.story-text-main h3 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.story-text-main p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.story-image-offset {
    width: 320px;
    margin-top: -60px;
}

.story-image-offset img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 8px;
}

.story-insight {
    flex: 1;
    min-width: 350px;
    background: #2c3e50;
    color: white;
    padding: 50px;
    border-radius: 8px;
    margin-top: 40px;
}

.story-insight blockquote {
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.story-insight cite {
    display: block;
    margin-top: 20px;
    font-size: 15px;
    font-style: normal;
    opacity: 0.8;
}

.problem-amplification {
    display: flex;
    gap: 60px;
    padding: 100px 60px;
    background: #fef5e7;
    align-items: center;
}

.problem-visual {
    flex: 0 0 300px;
}

.problem-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 96px;
    font-weight: 900;
    color: #e74c3c;
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    margin-top: 15px;
    color: #333;
    max-width: 250px;
}

.problem-text {
    flex: 1;
}

.problem-text h3 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.problem-list li {
    font-size: 18px;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #444;
}

.problem-list li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 24px;
    font-weight: bold;
}

.insight-reveal {
    padding: 100px 60px;
}

.insight-header {
    text-align: center;
    margin-bottom: 60px;
}

.insight-header h2 {
    font-size: 44px;
    font-weight: 700;
    color: #1a1a1a;
    max-width: 800px;
    margin: 0 auto;
}

.insight-columns {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px;
    border-left: 4px solid #4CAF50;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.insight-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.trust-section-offset {
    display: flex;
    gap: 80px;
    padding: 100px 60px;
    background: #f8f9fa;
    align-items: center;
}

.trust-image {
    flex: 0 0 420px;
}

.trust-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 8px;
}

.trust-content {
    flex: 1;
}

.trust-content h3 {
    font-size: 40px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #444;
}

.trust-metrics {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric strong {
    font-size: 48px;
    font-weight: 900;
    color: #4CAF50;
    line-height: 1;
}

.metric span {
    font-size: 15px;
    color: #666;
    margin-top: 8px;
}

.testimonial-overlap {
    padding: 120px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.testimonial-large {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.testimonial-large p {
    font-size: 28px;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 30px;
}

.testimonial-large cite {
    font-size: 17px;
    font-style: normal;
    opacity: 0.9;
}

.benefit-showcase {
    padding: 100px 60px;
}

.section-title-offset {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 60px;
    margin-left: 120px;
    color: #1a1a1a;
}

.benefit-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-item {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.benefit-large {
    flex: 1 1 100%;
    background: #2c3e50;
    color: white;
}

.benefit-medium {
    flex: 1 1 calc(50% - 15px);
}

.benefit-small {
    flex: 1 1 calc(33.333% - 20px);
    background: #4CAF50;
    color: white;
}

.benefit-item h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-break {
    padding: 80px 60px;
    background: #1a1a1a;
    text-align: center;
}

.cta-content h3 {
    font-size: 36px;
    color: white;
    margin-bottom: 30px;
    font-weight: 700;
}

.btn-large {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background: #45a049;
    transform: scale(1.05);
}

.service-reveal {
    padding: 100px 60px;
    background: #f8f9fa;
}

.reveal-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.reveal-header h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.reveal-header p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.services-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-featured {
    flex: 1 1 100%;
    display: flex;
    gap: 30px;
}

.service-featured .service-image {
    flex: 0 0 50%;
}

.service-featured .service-details {
    flex: 1;
    padding: 40px;
}

.service-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.service-featured .service-image img {
    height: 100%;
}

.service-details {
    padding: 30px;
}

.service-details h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-details p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #4CAF50;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #1a252f;
}

.btn-select.selected {
    background: #4CAF50;
}

.service-special {
    flex: 1 1 calc(50% - 15px);
}

.form-section-offset {
    padding: 100px 60px 100px 180px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.form-container {
    max-width: 700px;
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h3 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 16px;
    color: #666;
}

.asymmetric-form .form-group {
    margin-bottom: 25px;
}

.asymmetric-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.asymmetric-form input,
.asymmetric-form select,
.asymmetric-form textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.asymmetric-form input:focus,
.asymmetric-form select:focus,
.asymmetric-form textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #45a049;
}

.urgency-section {
    padding: 80px 60px;
    background: #fff3cd;
    text-align: center;
}

.urgency-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #856404;
}

.urgency-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #856404;
}

.btn-urgency {
    display: inline-block;
    background: #856404;
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-urgency:hover {
    background: #6c4e03;
}

.final-trust {
    padding: 100px 60px;
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 40px;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.trust-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: white;
    padding: 60px 60px 30px;
}

.footer-main {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

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

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

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

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

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

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        padding: 0 30px 60px;
    }

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

    .hero-text-block h1 {
        font-size: 42px;
    }

    .nav-asymmetric {
        margin: 0 30px;
        padding: 0 20px;
    }

    .story-grid {
        padding: 60px 30px;
    }

    .story-image-offset {
        width: 100%;
        margin-top: 0;
    }

    .service-featured {
        flex-direction: column;
    }

    .service-featured .service-image {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .nav-asymmetric {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }

    .hero-text-block h1 {
        font-size: 32px;
    }

    .intro-sidebar {
        display: none;
    }

    .problem-amplification {
        flex-direction: column;
        padding: 60px 30px;
    }

    .trust-section-offset {
        flex-direction: column;
        padding: 60px 30px;
    }

    .trust-image {
        flex: 1;
        width: 100%;
    }

    .benefit-small,
    .benefit-medium {
        flex: 1 1 100%;
    }

    .form-section-offset {
        padding: 60px 30px;
    }

    .form-container {
        padding: 40px 30px;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }
}
