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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
}

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.split-left,
.split-right {
    flex: 1;
}

.split-left img,
.split-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.header-split {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-floating {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    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 {
    list-style: none;
    display: flex;
    gap: 30px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

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

.trust-stats {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 8px;
}

.problem-section {
    padding: 100px 20px;
}

.problem-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.problem-section p {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.highlight-text {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 30px 0;
}

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

.story-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.story-section p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-highlight {
    background: white;
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    margin-top: 40px;
    border-radius: 6px;
}

.story-highlight p {
    font-size: 1.2rem;
    margin: 0;
}

.insight-section {
    padding: 100px 20px;
}

.insight-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

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

.insight-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.insight-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.testimonial-inline {
    padding: 60px 20px;
    background: var(--primary-color);
    color: white;
}

.testimonial-inline blockquote {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.5rem;
    line-height: 1.7;
    font-style: italic;
    text-align: center;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 1rem;
    opacity: 0.9;
}

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

.services-reveal h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card.featured {
    border: 3px solid var(--accent-color);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

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

.service-header h3 {
    padding: 20px 25px 10px;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.service-body {
    padding: 0 25px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-body p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
    flex: 1;
}

.service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 0.95rem;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.service-price {
    text-align: center;
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.guarantee-section {
    padding: 80px 20px;
    background: #fef3c7;
    text-align: center;
}

.guarantee-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.guarantee-section p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.testimonial-section {
    padding: 100px 20px;
}

.testimonial-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-split {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-box {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-box cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
}

.form-section-split {
    padding: 100px 20px;
    background: var(--bg-light);
}

.form-container {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: flex;
}

.form-left {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 50px;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.form-left p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.1rem;
}

.form-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1.3rem;
}

.form-right {
    flex: 1;
    padding: 60px 50px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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(--primary-color);
}

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

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

.urgency-section {
    padding: 60px 20px;
    background: var(--accent-color);
    text-align: center;
}

.urgency-text {
    font-size: 1.4rem;
    color: white;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto;
}

.footer-split {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 20px;
}

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

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

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

.footer-column p {
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-column ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

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

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

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

.sticky-btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-cookie-accept:hover {
    background: var(--secondary-color);
}

.btn-cookie-reject {
    background: var(--bg-light);
    color: var(--text-dark);
}

.btn-cookie-reject:hover {
    background: var(--border-color);
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.thanks-container {
    max-width: 600px;
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

.contact-page {
    padding: 100px 20px;
}

.contact-page h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    text-align: center;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.legal-page {
    padding: 80px 20px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-light);
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 60px 30px;
    }

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

    .container-split {
        flex-direction: column;
        gap: 40px;
    }

    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

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

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

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }
}

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

    .trust-stats {
        flex-direction: column;
        gap: 30px;
    }

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

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