* {
    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: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    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 {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

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

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

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

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

.floating-nav {
    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: 40px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.sticky-btn {
    background: #0066cc;
    color: white;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #444;
    line-height: 1.6;
}

.story-intro {
    padding: 120px 20px;
    background: #f9f9f9;
}

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

.story-lead {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #2a2a2a;
}

.story-text {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #444;
}

.story-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 40px 0;
    padding: 30px;
    background: #fff;
    border-left: 5px solid #0066cc;
    color: #1a1a1a;
}

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

.btn-inline-large {
    display: inline-block;
    background: #ffd700;
    color: #1a1a1a;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s;
}

.btn-inline-large:hover {
    transform: scale(1.05);
}

.problem-amplification {
    padding: 100px 20px;
    background: #fff;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.2;
}

.split-text p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #444;
}

.problem-bold {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 30px;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.section-title-center {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 800;
}

.insight-text {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.insight-card {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.insight-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.insight-card p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.storytelling-deeper {
    padding: 100px 20px;
    background: #f4f4f4;
}

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

.story-column {
    flex: 1.2;
    padding-top: 60px;
}

.story-column h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    font-weight: 800;
}

.story-column p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #444;
}

.quote-box {
    background: #fff;
    padding: 30px;
    border-left: 4px solid #764ba2;
    font-size: 1.4rem;
    font-weight: 600;
    font-style: italic;
    margin: 40px 0;
    color: #1a1a1a;
}

.story-image-offset {
    flex: 0.8;
    margin-top: -80px;
}

.story-image-offset img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-inline-2 {
    padding: 100px 20px;
    background: #0066cc;
}

.cta-box-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-box-centered h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.btn-cta-mid {
    display: inline-block;
    background: white;
    color: #0066cc;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s;
}

.btn-cta-mid:hover {
    transform: scale(1.05);
}

.trust-building {
    padding: 120px 20px;
    background: #fff;
}

.testimonial-flow {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    margin-bottom: 60px;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 8px;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #2a2a2a;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #666;
    font-size: 1.05rem;
}

.benefits-reveal {
    padding: 100px 20px;
    background: #1a1a1a;
    color: white;
}

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

.section-title-left {
    font-size: 2.8rem;
    margin-bottom: 60px;
    font-weight: 800;
}

.benefits-stack {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.benefit-block {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 5px solid #ffd700;
    border-radius: 4px;
}

.benefit-block h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #ffd700;
}

.benefit-block p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #ddd;
}

.urgency-section {
    padding: 80px 20px;
    background: #d32f2f;
    color: white;
}

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

.urgency-text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
}

.services-pricing {
    padding: 120px 20px;
    background: #f4f4f4;
}

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

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #444;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

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

.service-card.selected {
    border: 3px solid #0066cc;
}

.service-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-description {
    font-size: 1.05rem;
    margin-bottom: 30px;
    color: #444;
    flex-grow: 1;
    line-height: 1.6;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 28px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #0052a3;
}

.final-cta-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
}

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

.form-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 800;
}

.form-subtitle {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 50px;
    color: #ddd;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.05rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #ffd700;
    color: #1a1a1a;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-submit:hover {
    transform: scale(1.02);
}

.site-footer {
    background: #0a0a0a;
    color: #ddd;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .floating-nav {
        top: 10px;
        padding: 12px 20px;
        gap: 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

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

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

    .split-layout {
        flex-direction: column;
        gap: 40px;
    }

    .offset-container {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .sticky-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

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

    .contact-form {
        padding: 30px;
    }

    .footer-content {
        flex-direction: column;
    }
}

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

    .floating-nav {
        justify-content: center;
    }

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

    .section-title-center,
    .section-title-left {
        font-size: 2rem;
    }
}