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

:root {
    --primary: #d35400;
    --secondary: #e74c3c;
    --dark: #2c3e50;
    --light: #ecf0f1;
    --accent: #27ae60;
    --text: #34495e;
    --bg: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

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

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

.btn-accept {
    background: var(--accent);
    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 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 2rem;
}

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

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

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

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

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

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

.sticky-btn {
    background: var(--secondary);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.5);
}

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

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

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

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 2rem;
    max-width: 900px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

section {
    padding: 5rem 2rem;
}

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

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

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

.story-hook {
    background: var(--light);
}

.story-hook h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

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

.story-hook em {
    color: var(--secondary);
    font-style: italic;
    font-weight: 600;
}

.problem-amplify {
    background: #fff;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.split-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.pain-points {
    list-style: none;
    padding: 0;
}

.pain-points li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--light);
}

.pain-points li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 1.4rem;
    font-weight: bold;
}

.split-visual {
    flex: 1;
}

.split-visual svg {
    width: 100%;
    height: auto;
}

.insight-reveal {
    background: var(--primary);
    color: #fff;
    text-align: center;
}

.insight-reveal h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.big-text {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
}

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

.story-scenario h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

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

.inline-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.cta-secondary {
    background: var(--accent);
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-building {
    background: #fff;
}

.trust-building h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

.trust-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    padding: 2rem;
    background: var(--light);
    border-radius: 8px;
}

.trust-icon {
    margin-bottom: 1.5rem;
}

.trust-icon svg {
    width: 80px;
    height: 80px;
}

.trust-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.trust-card p {
    font-size: 1rem;
    color: var(--text);
}

.testimonials-inline {
    background: var(--dark);
    color: #fff;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent);
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.benefits-reveal {
    background: #fff;
}

.asymmetric-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    max-width: 1300px;
    margin: 0 auto;
}

.benefit-block {
    flex: 1.5;
}

.benefit-block h2 {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    color: var(--dark);
}

.benefit-item {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary);
}

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

.benefit-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.benefit-visual {
    flex: 1;
}

.benefit-visual svg {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.pricing-reveal {
    background: var(--light);
}

.pricing-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.pricing-intro {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: var(--text);
}

.pricing-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 2rem;
}

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

.features li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.select-btn {
    width: 100%;
    background: var(--primary);
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-btn:hover {
    background: #b44700;
}

.pricing-card.selected .select-btn {
    background: var(--accent);
}

.pricing-card.selected {
    border: 3px solid var(--accent);
}

.urgency-block {
    background: var(--secondary);
    color: #fff;
}

.urgency-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

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

.urgency-note {
    font-style: italic;
    font-size: 1.05rem;
    opacity: 0.95;
}

.form-section {
    background: var(--light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--dark);
    text-align: center;
}

.form-subtitle {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: var(--text);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--light);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: #fff;
    padding: 1.2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta {
    background: var(--dark);
    color: #fff;
}

.cta-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-block p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-large {
    background: var(--accent);
    color: #fff;
    padding: 1.3rem 3rem;
    border: none;
    border-radius: 6px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background: #229954;
    transform: translateY(-3px);
}

.site-footer {
    background: #1a1a1a;
    color: var(--light);
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    padding: 2rem;
}

.thanks-container {
    max-width: 700px;
    background: #fff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    width: 100px;
    height: 100px;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.service-selected {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.service-selected strong {
    color: var(--primary);
    font-size: 1.2rem;
}

.back-home {
    display: inline-block;
    margin-top: 2rem;
    background: var(--primary);
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.back-home:hover {
    background: #b44700;
    transform: translateY(-2px);
}

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

    .hero-title {
        font-size: 2.5rem;
    }

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

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

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

    .pricing-card.featured {
        transform: scale(1);
    }

    section {
        padding: 3rem 1.5rem;
    }

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

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }

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

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

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

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }
}