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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fff;
}

.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: #2c3e50;
    color: #fff;
    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: 15px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: #f39c12;
}

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

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

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

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

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px 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.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    background: rgba(0, 0, 0, 0.4);
    padding: 60px 40px;
    border-radius: 10px;
}

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

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: #fff;
}

.arrow-down {
    width: 30px;
    height: 30px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(-45deg);
    margin: 10px auto 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(-45deg) translateY(0);
    }
    40% {
        transform: rotate(-45deg) translateY(-10px);
    }
    60% {
        transform: rotate(-45deg) translateY(-5px);
    }
}

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

.section-question {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 50px;
    text-align: center;
}

.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 72px;
    font-weight: 800;
    color: #e74c3c;
}

.stat-label {
    font-size: 18px;
    text-align: center;
    color: #7f8c8d;
    margin-top: 10px;
}

.problem-amplify {
    padding: 80px 20px;
}

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

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

.problem-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.content-right h3 {
    font-size: 36px;
    margin-bottom: 25px;
}

.content-right p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.inline-cta {
    display: inline-block;
    color: #e74c3c;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: #c0392b;
    transform: translateX(5px);
}

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

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

.insight-header h2 {
    font-size: 42px;
    font-weight: 700;
}

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

.insight-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.insight-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.insight-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.insight-card p {
    font-size: 16px;
    color: #7f8c8d;
}

.testimonial-inline {
    padding: 80px 20px;
    background: #34495e;
    color: #fff;
}

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

.testimonial-quote {
    font-size: 28px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 18px;
    color: #bdc3c7;
}

.collection-reveal {
    padding: 100px 20px;
}

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

.collection-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e74c3c;
    font-weight: 600;
}

.collection-title {
    font-size: 48px;
    font-weight: 700;
    margin-top: 10px;
}

.collection-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.showcase-item {
    display: flex;
    gap: 60px;
    align-items: center;
}

.showcase-item:nth-child(even) {
    flex-direction: row-reverse;
}

.showcase-img-box {
    flex: 1;
}

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

.showcase-details {
    flex: 1;
}

.showcase-details h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.showcase-details p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.showcase-price {
    font-size: 36px;
    font-weight: 700;
    color: #e74c3c;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #e74c3c;
    color: #fff;
    padding: 20px;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

.sticky-cta.show {
    display: block;
}

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

.sticky-cta-text {
    font-size: 20px;
    font-weight: 600;
}

.sticky-cta-btn {
    background: #fff;
    color: #e74c3c;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-build {
    padding: 100px 20px;
    background: #f8f9fa;
}

.trust-build h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-check {
    font-size: 32px;
    color: #27ae60;
    flex-shrink: 0;
}

.benefit-text strong {
    font-size: 22px;
    display: block;
    margin-bottom: 8px;
}

.benefit-text p {
    font-size: 16px;
    color: #7f8c8d;
}

.social-proof {
    padding: 100px 20px;
}

.proof-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

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

.review-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-rating {
    font-size: 24px;
    color: #f39c12;
    margin-bottom: 15px;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-card cite {
    font-size: 14px;
    color: #7f8c8d;
}

.services-preview {
    padding: 100px 20px;
    background: #ecf0f1;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

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

.service-box {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

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

.service-box.featured {
    background: #e74c3c;
    color: #fff;
}

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

.service-box h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.service-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 80px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.service-box.featured .service-btn {
    background: #fff;
    color: #e74c3c;
}

.service-btn:hover {
    background: #34495e;
}

.service-box.featured .service-btn:hover {
    background: #f8f9fa;
}

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

.form-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
}

.form-subtitle {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.contact-form {
    background: #fff;
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    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: #e74c3c;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #c0392b;
    transform: scale(1.02);
}

.urgency-block {
    padding: 80px 20px;
    background: #34495e;
    color: #fff;
    text-align: center;
}

.urgency-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f39c12;
    font-weight: 600;
}

.urgency-content h3 {
    font-size: 36px;
    margin: 20px 0;
}

.urgency-content p {
    font-size: 18px;
    color: #bdc3c7;
}

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

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

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

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        transition: left 0.3s ease;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .section-question {
        font-size: 28px;
    }

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

    .showcase-item {
        flex-direction: column !important;
    }

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

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