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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --light-accent: #0f3460;
    --text-color: #f1f1f1;
    --text-dark: #333;
    --bg-light: #f8f9fa;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--text-color);
    padding: 20px;
    z-index: 10000;
    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: 20px;
}

.cookie-content p {
    margin: 0;
}

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

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

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

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

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

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

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

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-brand {
    font-weight: 700;
    color: var(--text-color);
    font-size: 18px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.sticky-btn {
    background: var(--accent-color);
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 6px 24px rgba(233, 69, 96, 0.4);
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.6);
}

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

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-image: url('https://images.unsplash.com/photo-1614741118887-7a4ee193a5fa?w=1600'), linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero-text-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-color);
    max-width: 900px;
    padding: 40px;
}

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

.hero-text-overlay p {
    font-size: 22px;
    margin-bottom: 40px;
    line-height: 1.5;
    opacity: 0.9;
}

.cta-hero {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 18px 48px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.cta-hero:hover {
    background: #d63850;
    transform: scale(1.05);
}

.story-hook {
    padding: 120px 20px;
    background: var(--bg-light);
}

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

.opening-line {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.narrow-content p {
    font-size: 19px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.problem-amplification {
    padding: 100px 20px;
    background: white;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
    line-height: 1.3;
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 15px 0 15px 30px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

.highlight-text {
    background: #fff3cd;
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    font-size: 18px;
    margin-top: 30px;
    font-weight: 600;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.insight-reveal {
    padding: 120px 20px;
    background: var(--secondary-color);
    color: var(--text-color);
}

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

.insight-reveal h2 {
    font-size: 42px;
    margin-bottom: 35px;
    line-height: 1.3;
}

.lead-text {
    font-size: 21px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.method-preview {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.method-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
    opacity: 0.3;
}

.method-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.method-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.case-story {
    padding: 120px 20px;
    background: white;
}

.case-story h2 {
    font-size: 36px;
    margin-bottom: 35px;
    color: var(--primary-color);
}

.result-highlight {
    background: #d4edda;
    border-left: 4px solid #28a745;
    padding: 20px;
    margin: 30px 0;
    font-size: 19px;
    font-weight: 600;
    color: #155724;
}

.inline-cta {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 20px;
    transition: background 0.3s;
}

.inline-cta:hover {
    background: #d63850;
}

.trust-signals {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.testimonial {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.quote {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: #333;
}

.author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
}

.urgency-block {
    padding: 100px 20px;
    background: linear-gradient(135deg, #c31432 0%, #240b36 100%);
    color: white;
}

.urgency-content h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

.urgency-content p {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-intro {
    font-size: 19px;
    color: #666;
}

.services-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.service-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-item.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.service-item.featured h3,
.service-item.featured p {
    color: white;
}

.badge {
    position: absolute;
    top: -15px;
    right: 40px;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-item p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-item.featured .service-price {
    color: #ffd700;
}

.select-service {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #d63850;
    transform: scale(1.02);
}

.service-item.featured .select-service {
    background: white;
    color: var(--primary-color);
}

.service-item.featured .select-service:hover {
    background: #f1f1f1;
}

.final-push {
    padding: 100px 20px;
    background: var(--bg-light);
}

.final-push h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.form-section {
    padding: 120px 20px;
    background: var(--secondary-color);
    color: var(--text-color);
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 16px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--accent-color);
}

.submit-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #d63850;
    transform: scale(1.02);
}

.final-cta-block {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--light-accent) 100%);
    color: var(--text-color);
}

.final-cta-block h2 {
    font-size: 40px;
    margin-bottom: 25px;
}

.final-cta-block p {
    font-size: 19px;
    margin-bottom: 35px;
}

.final-cta-btn {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 20px 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
}

.final-cta-btn:hover {
    background: #d63850;
    transform: scale(1.05);
}

.site-footer {
    background: var(--primary-color);
    color: var(--text-color);
    padding: 60px 20px 30px;
}

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

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footer-section a {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

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

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

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

    .hero-text-overlay p {
        font-size: 18px;
    }

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

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

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

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

    .sticky-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}