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

:root {
    --primary-color: #1a4d6f;
    --secondary-color: #2d7a9f;
    --accent-color: #f4a261;
    --text-dark: #2b2b2b;
    --text-light: #f5f5f5;
    --background-light: #fafafa;
    --background-dark: #1a1a1a;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #fff;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--background-dark);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 9999;
    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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

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

.btn-cookie {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-cookie:hover {
    background: #e76f51;
}

.btn-cookie-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px 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: var(--primary-color);
    text-decoration: none;
}

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

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

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

.nav-cta {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: var(--secondary-color);
}

.hero-overlay {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a4d6f 0%, #2d7a9f 50%, #4a90b8 100%);
    opacity: 0.95;
}

.hero-image-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 50 Q 25 30, 50 50 T 100 50" stroke="rgba(255,255,255,0.1)" fill="none" stroke-width="2"/></svg>');
    opacity: 0.3;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-light);
}

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

.hero-subtext {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(244, 162, 97, 0.4);
}

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

.story-container p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.opening-line {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
}

.image-break {
    height: 400px;
    margin: 4rem 0;
}

.image-block {
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #e0e0e0 0%, #f5f5f5 50%, #e0e0e0 100%);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.problem-amplify {
    background: var(--background-light);
    padding: 5rem 0;
}

.amplify-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.amplify-text {
    flex: 1;
}

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

.amplify-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.amplify-visual {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.insight-reveal {
    padding: 6rem 0;
    background: white;
}

.reveal-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.reveal-container h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.reveal-container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.insight-cards {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.insight-card {
    flex: 1;
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.insight-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.cta-inline {
    background: var(--primary-color);
    padding: 3rem 2rem;
    text-align: center;
}

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

.cta-inline-content p {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.btn-text-link {
    color: var(--accent-color);
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-text-link:hover {
    color: #e76f51;
}

.story-proof {
    padding: 5rem 0;
    background: var(--background-light);
}

.proof-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.proof-wrapper h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial-item {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.benefits-cascade {
    padding: 6rem 0;
    background: white;
}

.cascade-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.benefit-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-block {
    padding: 2rem;
    background: var(--background-light);
    border-left: 5px solid var(--accent-color);
    border-radius: 4px;
}

.benefit-block h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.benefit-block p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.trust-layer {
    background: var(--primary-color);
    padding: 5rem 0;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.trust-credentials {
    flex: 1;
    color: var(--text-light);
}

.trust-credentials h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.trust-credentials p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.trust-image {
    flex: 0 0 400px;
    height: 350px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.cta-sticky-trigger {
    padding: 4rem 2rem;
    background: var(--background-light);
    text-align: center;
}

.trigger-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trigger-content p {
    font-size: 1.2rem;
    color: #555;
}

.services-reveal {
    padding: 4rem 0 6rem;
    background: white;
}

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

.service-item {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.service-item.featured {
    border-color: var(--accent-color);
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.service-duration {
    color: #666;
    font-size: 0.95rem;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-select-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.urgency-layer {
    background: #fff9f5;
    padding: 4rem 0;
    border-top: 3px solid var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
}

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

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

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

.final-cta {
    padding: 5rem 2rem;
    background: var(--background-dark);
    text-align: center;
}

.final-cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.final-cta-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta-wrapper p {
    font-size: 1.2rem;
}

.form-section {
    padding: 4rem 0 6rem;
    background: white;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    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: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    padding: 1.2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

.guarantee {
    background: var(--primary-color);
    padding: 3rem 2rem;
    text-align: center;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.guarantee-content h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.guarantee-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.site-footer {
    background: var(--background-dark);
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    line-height: 1.6;
    opacity: 0.8;
}

.footer-column a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.6rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

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

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

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

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

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

.sticky-cta-content span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.sticky-cta-btn {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.sticky-cta-btn:hover {
    background: var(--secondary-color);
}

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

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

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

    .amplify-grid,
    .trust-content {
        flex-direction: column;
    }

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

    .insight-cards {
        flex-direction: column;
    }

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

    .sticky-cta-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
