* {
    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: #1a1a1a;
    background: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    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-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.btn-primary {
    background: #e74c3c;
    color: #fff;
}

.btn-primary:hover {
    background: #c0392b;
}

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

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

.nav-floating {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: rgba(255,255,255,0.95);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: #2c3e50;
}

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

.nav-links a {
    text-decoration: none;
    color: #34495e;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    padding: 2rem;
    margin-left: 5%;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
}

.cta-primary {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(231,76,60,0.3);
}

.hero-visual-block {
    flex: 1;
    position: relative;
    margin-top: 8rem;
    margin-right: -5%;
}

.hero-visual-block img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: rotate(-3deg);
}

.story-intro {
    padding: 8rem 2rem;
    background: #f8f9fa;
}

.story-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.6rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.story-narrow p {
    font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.problem-amplify {
    padding: 6rem 2rem;
}

.offset-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.problem-text {
    flex: 1.2;
    padding-left: 3rem;
}

.problem-text h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.problem-list {
    list-style: none;
    margin: 2rem 0;
}

.problem-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.15rem;
    color: #5a6c7d;
}

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

.emphasis-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e74c3c;
    margin-top: 2rem;
}

.problem-visual {
    flex: 1;
}

.problem-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.1);
}

.insight-reveal {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.insight-card-overlap {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
}

.insight-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.insight-item {
    background: rgba(255,255,255,0.15);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    backdrop-filter: blur(10px);
}

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

.insight-item p {
    font-size: 1.1rem;
    line-height: 1.5;
}

.trust-building {
    padding: 8rem 2rem;
}

.asymmetric-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.trust-image-left {
    flex: 1;
}

.trust-image-left img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 16px 56px rgba(0,0,0,0.12);
}

.trust-text-right {
    flex: 1.3;
    padding-right: 2rem;
}

.trust-text-right h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.trust-text-right p {
    font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.inline-testimonial {
    background: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid #e74c3c;
    font-style: italic;
    margin-top: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.inline-testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #34495e;
}

.services-preview {
    padding: 8rem 2rem;
    background: #f8f9fa;
}

.centered-title {
    font-size: 3rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 5rem;
}

.services-staggered {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    position: relative;
}

.card-left {
    margin-right: 15%;
}

.card-right {
    margin-left: 15%;
}

.card-center {
    margin: 0 auto;
    max-width: 700px;
}

.service-card h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.price-tag {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 24px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-cta {
    display: inline-block;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #e74c3c;
    padding: 0.7rem 1.8rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.service-cta:hover {
    background: #e74c3c;
    color: #fff;
}

.process-visual {
    padding: 8rem 2rem;
}

.process-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.process-wrapper h2 {
    font-size: 2.8rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 4rem;
}

.process-flow {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.step-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.process-step h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.process-step p {
    color: #5a6c7d;
    font-size: 1rem;
}

.urgency-block {
    padding: 5rem 2rem;
    background: #2c3e50;
    color: #fff;
}

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

.urgency-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-urgent {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 1rem 3rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-urgent:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.testimonials-inline {
    padding: 8rem 2rem;
    background: #f8f9fa;
}

.testimonials-inline h2 {
    font-size: 2.8rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 4rem;
}

.testimonial-blocks {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial-full {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #34495e;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-full cite {
    display: block;
    margin-top: 1.5rem;
    font-weight: 600;
    color: #5a6c7d;
    font-style: normal;
}

.form-section {
    padding: 8rem 2rem;
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto;
    margin-left: 15%;
}

.form-header {
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.1rem;
    color: #5a6c7d;
}

.contact-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 16px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #dfe4ea;
    border-radius: 8px;
    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: #e74c3c;
}

.btn-submit {
    background: #e74c3c;
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

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

.final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
}

.final-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-large {
    display: inline-block;
    background: #fff;
    color: #f5576c;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.cta-large:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 48px rgba(0,0,0,0.2);
}

.footer-asymmetric {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #e74c3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    background: #e74c3c;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(231,76,60,0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(231,76,60,0.5);
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.page-content h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.page-content h2 {
    font-size: 2rem;
    color: #34495e;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.page-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.page-content ul,
.page-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.8rem;
    color: #5a6c7d;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .nav-floating {
        top: 1rem;
        right: 1rem;
        gap: 1.5rem;
        padding: 0.8rem 1.5rem;
    }

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

    .hero-content-offset {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-visual-block {
        margin-top: 3rem;
        margin-right: 0;
    }

    .offset-container,
    .asymmetric-content {
        flex-direction: column;
        gap: 3rem;
    }

    .problem-text {
        padding-left: 0;
    }

    .card-left,
    .card-right {
        margin: 0;
    }

    .form-container-asymmetric {
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title,
    .centered-title {
        font-size: 2.2rem;
    }

    .process-flow {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }
}
