* {
    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: #2c3e50;
    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: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

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

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

.btn-accept {
    background: #27ae60;
    color: #fff;
}

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

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 40px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

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

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

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.hero-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtext {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.5);
}

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

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

.narrow-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #2c3e50;
}

.narrow-content p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #555;
}

.visual-break {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.text-block {
    flex: 1.2;
}

.text-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.text-block p {
    font-size: 19px;
    margin-bottom: 18px;
    color: #555;
}

.visual-accent {
    flex: 1;
}

.visual-accent img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.insight-reveal h2 {
    font-size: 40px;
    margin-bottom: 25px;
}

.insight-reveal p {
    font-size: 20px;
    margin-bottom: 20px;
}

.benefit-list {
    list-style: none;
    margin-top: 35px;
}

.benefit-list li {
    font-size: 20px;
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-size: 24px;
    font-weight: bold;
    color: #27ae60;
}

.cta-inline {
    padding: 60px 20px;
    text-align: center;
    background: #ecf0f1;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

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

.testimonials-flow h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    color: #34495e;
}

.author {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

.benefits-layered {
    padding: 100px 20px;
    background: #f8f9fa;
}

.benefit-row {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.benefit-row.reverse {
    flex-direction: row-reverse;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.benefit-text p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.benefit-image {
    flex: 1;
}

.benefit-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.pricing-reveal {
    padding: 120px 20px;
    background: #fff;
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.pricing-intro h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.pricing-intro p {
    font-size: 20px;
    color: #7f8c8d;
}

.pricing-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    border-color: #e74c3c;
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #e74c3c;
    background: #fff;
    box-shadow: 0 15px 50px rgba(231, 76, 60, 0.15);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #e74c3c;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-desc {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 20px;
    min-height: 60px;
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 25px;
}

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

.features li {
    padding: 10px 0;
    font-size: 15px;
    color: #555;
    border-bottom: 1px solid #ecf0f1;
}

.features li:last-child {
    border-bottom: none;
}

.select-service {
    width: 100%;
    padding: 15px;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.urgency-block {
    padding: 80px 20px;
    background: #ffe6e6;
    border-top: 4px solid #e74c3c;
    border-bottom: 4px solid #e74c3c;
}

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

.urgency-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.urgency-content p {
    font-size: 20px;
    margin-bottom: 15px;
    color: #555;
}

.highlight {
    font-weight: 700;
    color: #e74c3c;
    font-size: 22px;
}

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

.form-section.hidden {
    display: none;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

#selected-service-info {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 500;
}

.sticky-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #27ae60;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #229954;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.5);
}

.trust-elements {
    padding: 80px 20px;
    background: #ecf0f1;
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.trust-item p {
    font-size: 15px;
    color: #7f8c8d;
}

.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 22px;
    margin-bottom: 40px;
}

.cta-large {
    display: inline-block;
    padding: 20px 50px;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s;
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
}

.cta-large:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(231, 76, 60, 0.5);
}

.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 30px;
}

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

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

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

.footer-section p {
    font-size: 14px;
    color: #95a5a6;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        padding: 30px;
        transition: left 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-subtext {
        font-size: 18px;
    }

    .narrow-content h2 {
        font-size: 32px;
    }

    .narrow-content p {
        font-size: 17px;
    }

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

    .benefit-row,
    .benefit-row.reverse {
        flex-direction: column;
    }

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

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

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

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

.thanks-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 22px;
    margin-bottom: 20px;
}

.thanks-details {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
}

.thanks-details h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.btn-home {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.contact-page {
    padding: 140px 20px 80px;
    min-height: 100vh;
    background: #f8f9fa;
}

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

.contact-container h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-info {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.page-content {
    padding: 140px 20px 80px;
    min-height: 100vh;
    background: #f8f9fa;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.content-wrapper h1 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.content-wrapper h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-wrapper h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.content-wrapper p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.content-wrapper li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

.content-wrapper strong {
    color: #2c3e50;
}