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

:root {
    --primary-color: #1a1a1a;
    --accent-color: #e63946;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --border-color: #dee2e6;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

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

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

.cookie-actions {
    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: var(--white);
}

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

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

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

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

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

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

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

.hero-overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

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

.intro-hook {
    padding: 100px 20px;
    background: var(--white);
    text-align: center;
}

.intro-hook h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.lead-text {
    font-size: 1.25rem;
    color: var(--gray);
    line-height: 1.8;
}

.visual-break {
    padding: 0;
}

.image-grid-asymmetric {
    display: flex;
    gap: 20px;
}

.grid-item {
    overflow: hidden;
}

.grid-large {
    flex: 2;
}

.grid-small {
    flex: 1;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.story-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.inline-cta {
    margin-top: 40px;
    text-align: center;
}

.cta-link {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.problem-amplify {
    padding: 80px 20px;
    background: var(--white);
}

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

.split-text,
.split-image {
    flex: 1;
}

.split-text h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.problem-list {
    list-style: none;
}

.problem-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
}

.problem-list li:before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.split-image img {
    border-radius: 8px;
}

.insight-reveal {
    padding: 100px 20px;
    background: var(--primary-color);
    color: var(--white);
}

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

.insight-box h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.insight-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.visual-immersive {
    padding: 0;
}

.full-width-img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

.trust-builder {
    padding: 100px 20px;
    background: var(--white);
}

.trust-builder h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 40px 30px;
    background: var(--light-bg);
    border-radius: 8px;
    text-align: center;
}

.value-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--gray);
    line-height: 1.6;
}

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

.testimonial {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--white);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

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

.testimonial cite {
    font-style: normal;
    color: var(--gray);
    font-weight: 600;
}

.benefits-reveal {
    padding: 100px 20px;
    background: var(--white);
}

.benefits-reveal h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.benefits-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.benefit-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-item p {
    color: var(--gray);
    line-height: 1.6;
}

.cta-section-mid {
    padding: 80px 20px;
    background: var(--accent-color);
    text-align: center;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 30px;
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 50px;
    background: var(--white);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

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

.service-card {
    flex: 1;
    min-width: 300px;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 8px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent;
}

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

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

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.btn-select {
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.urgency-element {
    padding: 60px 20px;
    background: var(--white);
}

.urgency-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    border-radius: 4px;
    text-align: center;
}

.urgency-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.urgency-box p {
    font-size: 1.1rem;
    color: var(--text-color);
}

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

.form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 50px;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    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(--accent-color);
}

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

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

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.checkbox-group a {
    color: var(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #d62839;
}

.final-push {
    padding: 100px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.final-push h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-push p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

.sticky-btn {
    display: block;
    padding: 15px 30px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(230, 57, 70, 0.5);
}

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

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

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

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

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--white);
}

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

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

.thanks-box {
    max-width: 600px;
    text-align: center;
    background: var(--white);
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-box h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-box p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-box .selected-service {
    display: inline-block;
    padding: 10px 20px;
    background: var(--light-bg);
    border-radius: 4px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.contact-page {
    padding: 120px 20px 80px;
}

.contact-page h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    padding: 30px;
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

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

.contact-item p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
}

.policy-page {
    padding: 120px 20px 80px;
    background: var(--white);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.policy-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-color);
}

.policy-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.policy-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 20px;
        right: 20px;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

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

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

    .intro-hook h2 {
        font-size: 1.8rem;
    }

    .image-grid-asymmetric {
        flex-direction: column;
    }

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

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

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

    .services-showcase {
        flex-direction: column;
    }

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

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

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