/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navigation */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

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

.nav-links a {
    color: #333;
    font-weight: 500;
}

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

.nav-cta {
    background: #0066cc;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
}

.nav-cta:hover {
    background: #0052a3;
}

/* Hero Section */
.hero-visual {
    margin-top: 80px;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero-content-offset {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.97);
    padding: 3rem;
    border-radius: 8px;
}

.hero-content-offset h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-hero:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

/* Intro Story Section */
.intro-story {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.intro-story h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.intro-story p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.inline-visual {
    margin: 3rem 0;
}

.inline-visual img {
    border-radius: 8px;
}

.inline-cta {
    display: inline-block;
    color: #0066cc;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 4px;
}

.inline-cta:hover {
    color: #0052a3;
    border-color: #0052a3;
}

/* Problem Amplification */
.problem-amplification {
    padding: 6rem 2rem;
    background: white;
}

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

.split-content {
    flex: 1;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    border-radius: 8px;
}

.split-content h3 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.problem-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.problem-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e0e0e0;
    line-height: 1;
}

.problem-text h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.problem-text p {
    color: #555;
    font-size: 1.05rem;
}

/* Insight Reveal */
.insight-reveal {
    padding: 6rem 2rem;
    background: #1a1a1a;
    color: white;
}

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

.insight-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

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

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.insight-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.insight-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-inline {
    padding: 6rem 2rem;
    background: #f0f4f8;
}

.testimonial-block {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #0066cc;
}

.testimonial-block blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-block cite {
    color: #666;
    font-style: normal;
    font-size: 0.95rem;
}

/* Benefit Flow */
.benefit-flow {
    padding: 6rem 2rem;
    background: white;
}

.container-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.benefit-main {
    flex: 2;
}

.benefit-sidebar {
    flex: 1;
}

.benefit-main h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.benefit-item {
    margin-bottom: 2.5rem;
}

.benefit-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.benefit-item p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

.stat-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
}

/* Mid-Page CTA */
.cta-mid-page {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
}

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

.cta-container h3 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    background: white;
    color: #0066cc;
    padding: 1.2rem 3rem;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
}

.cta-button-large:hover {
    background: #f0f4f8;
    transform: translateY(-2px);
}

/* Approach Detail */
.approach-detail {
    padding: 6rem 2rem;
    background: white;
}

.approach-detail h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-card {
    flex: 1;
    min-width: 260px;
    padding: 2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
}

.step-number {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.step-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: #555;
    line-height: 1.6;
}

/* Services Pricing */
.services-pricing {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.services-pricing h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    border-color: #0066cc;
    transform: scale(1.02);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #0066cc;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card > p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.service-cta {
    display: block;
    text-align: center;
    background: #0066cc;
    color: white;
    padding: 1rem;
    border-radius: 6px;
    font-weight: 600;
}

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

/* Urgency Element */
.urgency-element {
    padding: 4rem 2rem;
    background: #fff9e6;
}

.urgency-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem;
    border: 2px solid #ffcc00;
    border-radius: 8px;
    background: white;
}

.urgency-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.urgency-box p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.urgency-stats {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
}

.urgency-stat strong {
    display: block;
    font-size: 1.2rem;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.urgency-stat span {
    color: #555;
}

/* Form Section */
.form-section {
    padding: 6rem 2rem;
    background: white;
}

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

.form-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

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

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

.form-group {
    margin-bottom: 1.5rem;
    flex: 1;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group a {
    color: #0066cc;
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 1.2rem;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
}

.form-submit:hover {
    background: #0052a3;
}

/* Final Trust */
.final-trust {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.final-trust h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.trust-elements {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 1.8rem;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.trust-item span {
    color: #666;
    font-size: 0.95rem;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col a {
    color: #ccc;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #999;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 102, 204, 0.98);
    padding: 1rem 2rem;
    z-index: 999;
    display: flex;
    justify-content: center;
}

.sticky-cta-button {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.sticky-cta-button:hover {
    opacity: 0.9;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.cookie-accept {
    background: #0066cc;
    color: white;
}

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

.cookie-accept:hover {
    background: #0052a3;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-image-wrapper {
        width: 50%;
    }

    .split-layout,
    .container-asymmetric {
        flex-direction: column;
    }

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

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

    .hero-content-offset h1 {
        font-size: 2rem;
    }

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

    .hero-image-wrapper {
        position: relative;
        width: 100%;
        height: 300px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .approach-steps,
    .insight-grid,
    .service-cards {
        flex-direction: column;
    }

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