* {
    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: #333;
    overflow-x: hidden;
}

.floating-nav {
    position: fixed;
    top: 20px;
    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;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 300px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: #d4a574;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

.hero-visual {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(212, 165, 116, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text {
    color: white;
    max-width: 800px;
    padding: 20px;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 18px 50px;
    background: #d4a574;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #c29563;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

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

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

.lead-text {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 500;
}

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

.visual-break {
    position: relative;
    height: 600px;
}

.section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-card {
    position: absolute;
    bottom: 60px;
    right: 80px;
    background: white;
    padding: 40px;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.overlay-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.overlay-card p {
    color: #666;
    line-height: 1.7;
}

.problem-amplification {
    padding: 120px 20px;
    background: #1a1a1a;
    color: white;
}

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

.problem-amplification h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
}

.problem-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.problem-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.problem-item .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.problem-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #d4a574;
}

.problem-item p {
    color: #ccc;
    line-height: 1.7;
}

.insight-box {
    background: #d4a574;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 60px;
}

.insight-box p {
    font-size: 1.3rem;
    color: #1a1a1a;
    line-height: 1.8;
}

.trust-building {
    padding: 0;
}

.split-section {
    display: flex;
    min-height: 700px;
}

.split-content {
    flex: 1;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f4f4f4;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.split-image {
    flex: 1;
}

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

.cta-secondary {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #d4a574;
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    margin-top: 20px;
}

.cta-secondary:hover {
    background: #d4a574;
    color: white;
}

.testimonials-inline {
    padding: 100px 20px;
    background: #fff;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 40px;
    margin-bottom: 30px;
    border-left: 4px solid #d4a574;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: #1a1a1a;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #888;
    font-size: 0.95rem;
}

.benefits-reveal {
    padding: 120px 20px;
    background: #f4f4f4;
}

.benefits-reveal h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

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

.benefit-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.benefit-card h3 {
    padding: 25px 25px 15px;
    font-size: 1.4rem;
    color: #1a1a1a;
}

.benefit-card p {
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.7;
}

.cta-urgency {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1a1a, #3a3a3a);
    text-align: center;
}

.urgency-box {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-box h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 25px;
}

.urgency-text {
    font-size: 1.3rem;
    color: #d4a574;
    margin-bottom: 40px;
    font-weight: 500;
}

.cta-large {
    display: inline-block;
    padding: 22px 60px;
    background: #d4a574;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.cta-large:hover {
    background: #c29563;
    transform: scale(1.05);
}

.small-text {
    margin-top: 20px;
    color: #aaa;
    font-size: 0.95rem;
}

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

.services-pricing h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.price-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.price-card:hover {
    border-color: #d4a574;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
    border-color: #d4a574;
    background: #fff;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #d4a574;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.price-description {
    color: #666;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.price-amount {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4a574;
}

.period {
    color: #888;
    font-size: 1rem;
}

.features {
    list-style: none;
    margin-bottom: 30px;
}

.features li {
    padding: 10px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
}

.select-service {
    display: block;
    width: 100%;
    padding: 15px;
    background: #d4a574;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.select-service:hover {
    background: #c29563;
}

.form-section {
    padding: 100px 20px;
    background: #f4f4f4;
}

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

.form-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.main-form {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    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: #d4a574;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
}

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

.checkbox-group a {
    color: #d4a574;
}

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

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

.final-push {
    padding: 100px 20px;
    background: white;
    text-align: center;
}

.final-push h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.final-push p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-final {
    display: inline-block;
    padding: 18px 50px;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.cta-final:hover {
    background: #333;
    transform: translateY(-2px);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    padding: 20px;
    display: none;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.sticky-cta.visible {
    display: block;
}

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

.sticky-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.btn-sticky {
    padding: 12px 35px;
    background: #d4a574;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-sticky:hover {
    background: #c29563;
}

.main-footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px 30px;
}

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

.footer-section h4 {
    margin-bottom: 20px;
    color: #d4a574;
    font-size: 1.2rem;
}

.footer-section p {
    color: #aaa;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

.footer-section ul li a:hover {
    color: #d4a574;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    color: white;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: #d4a574;
    color: white;
}

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

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

.btn-reject:hover {
    background: white;
    color: #1a1a1a;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f4f4f4, #e0e0e0);
    padding: 40px 20px;
}

.thanks-content {
    background: white;
    padding: 80px 60px;
    border-radius: 16px;
    text-align: center;
    max-width: 700px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.checkmark {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.selected-service {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #d4a574;
}

.selected-service strong {
    color: #d4a574;
}

.thanks-cta {
    display: inline-block;
    padding: 15px 40px;
    background: #d4a574;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
}

.thanks-cta:hover {
    background: #c29563;
}

@media (max-width: 1024px) {
    .benefits-grid {
        gap: 30px;
    }

    .benefit-card {
        flex: 1 1 calc(50% - 15px);
    }

    .pricing-cards {
        gap: 25px;
    }

    .price-card {
        flex: 1 1 calc(50% - 15px);
    }

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

    .overlay-card {
        right: 40px;
        bottom: 40px;
        max-width: 350px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        top: 0;
        left: 0;
        right: 0;
        transform: none;
        border-radius: 0;
        padding: 15px 20px;
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        display: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

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

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }

    .lead-text {
        font-size: 1.2rem;
    }

    .problem-amplification h2,
    .benefits-reveal h2,
    .services-pricing h2 {
        font-size: 2rem;
    }

    .problem-blocks {
        gap: 30px;
    }

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

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

    .price-card {
        flex: 1 1 100%;
    }

    .split-content {
        padding: 60px 30px;
    }

    .overlay-card {
        position: static;
        margin: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .main-form {
        padding: 30px 20px;
    }

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

    .sticky-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .thanks-content {
        padding: 50px 30px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .cta-primary,
    .cta-large {
        padding: 15px 30px;
        font-size: 1rem;
    }
}