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

:root {
    --primary-color: #1a3d5c;
    --secondary-color: #2d6a8f;
    --accent-color: #f4a259;
    --text-dark: #1c1c1c;
    --text-light: #4a4a4a;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

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

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

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

.mobile-menu a {
    padding: 1rem 0;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}

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

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

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

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(26, 61, 92, 0.85);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-content-narrow {
    max-width: 700px;
    text-align: center;
    color: white;
}

.hero-content-narrow h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(244, 162, 89, 0.4);
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(244, 162, 89, 0.6);
}

.content-narrow {
    max-width: 750px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.story-intro {
    background: var(--bg-white);
}

.story-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.story-intro p {
    font-size: 1.2rem;
    margin-bottom: 1.3rem;
    color: var(--text-light);
}

.inline-image {
    margin: 3rem 0;
    border-radius: 8px;
}

.problem-amplify {
    background: var(--bg-light);
}

.problem-amplify h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

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

.split-text {
    flex: 1;
}

.split-text p {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.insight-reveal {
    background: var(--primary-color);
    color: white;
}

.insight-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.insight-lead {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    opacity: 0.95;
}

.insight-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.insight-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.insight-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.insight-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.cta-inline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.trust-builder {
    background: var(--bg-white);
}

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

.trust-builder p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
}

.full-width-image {
    margin: 3rem 0;
    border-radius: 8px;
}

.testimonials-inline {
    background: var(--bg-light);
}

.testimonial {
    padding: 2.5rem;
    background: white;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    border-radius: 4px;
}

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

.testimonial cite {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: normal;
}

.benefits-reveal {
    background: var(--bg-white);
}

.benefits-reveal h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.benefit-item {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.benefit-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.scenario-deep {
    background: var(--bg-light);
}

.scenario-deep h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.scenario-deep p {
    font-size: 1.2rem;
    margin-bottom: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
}

.urgency-section {
    background: var(--secondary-color);
    color: white;
}

.urgency-box {
    padding: 3rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}

.urgency-box h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

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

.services-pricing {
    background: var(--bg-white);
}

.services-pricing h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.service-selection-form {
    max-width: 900px;
    margin: 0 auto;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    display: flex;
    cursor: pointer;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    background: white;
}

.service-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-card input[type="radio"] {
    margin-right: 1.5rem;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    cursor: pointer;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.service-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 1rem;
}

.service-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--accent-color);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-top: 0.5rem;
}

.form-section {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

.form-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

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

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

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

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

.cta-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 162, 89, 0.4);
}

.final-push {
    background: var(--primary-color);
    color: white;
}

.final-push h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-push p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
}

.cta-final {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 162, 89, 0.4);
}

.final-reassurance {
    background: var(--bg-light);
    text-align: center;
}

.final-reassurance h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.final-reassurance p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-color);
    padding: 1.2rem 2rem;
    z-index: 999;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-content span {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.sticky-button {
    padding: 0.8rem 2rem;
    background: white;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.sticky-button:hover {
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #e89347;
}

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

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

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

    .hamburger {
        display: flex;
    }

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

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

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

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

    .benefit-item {
        flex: 1 1 100%;
    }

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

    .sticky-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}