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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    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: #3498db;
    text-decoration: underline;
}

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

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

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

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

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

.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 20px rgba(0, 0, 0, 0.08);
    padding: 15px 30px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #e74c3c;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s;
}

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

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

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

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

.sticky-btn {
    background: #e74c3c;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s;
    display: inline-block;
}

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

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 1;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23764ba2" width="1200" height="600"/><path fill="%23667eea" opacity="0.3" d="M0 300L50 283.3C100 266.7 200 233.3 300 216.7C400 200 500 200 600 216.7C700 233.3 800 266.7 900 283.3C1000 300 1100 300 1150 300L1200 300L1200 601L1150 601C1100 601 1000 601 900 601C800 601 700 601 600 601C500 601 400 601 300 601C200 601 100 601 50 601L0 601Z"/></svg>');
    background-size: cover;
    opacity: 0.6;
}

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

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

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.5;
}

.hero-cta {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 18px 45px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.story-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.story-narrow h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

.story-narrow p {
    font-size: 19px;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.7;
}

.story-image-inline {
    height: 320px;
    background: linear-gradient(to right, #f093fb 0%, #f5576c 100%);
    border-radius: 8px;
    margin: 40px 0;
}

.inline-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.inline-link:hover {
    color: #c0392b;
}

.problem-amplify {
    padding: 120px 20px;
    background: white;
}

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

.problem-left {
    flex: 1;
}

.problem-left h2 {
    font-size: 42px;
    margin-bottom: 35px;
    color: #2c3e50;
    line-height: 1.2;
}

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

.problem-list li {
    padding: 18px 0 18px 40px;
    position: relative;
    font-size: 18px;
    color: #555;
    border-bottom: 1px solid #ecf0f1;
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
    font-size: 22px;
}

.problem-right {
    flex: 1;
}

.problem-image {
    height: 450px;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    border-radius: 12px;
}

.insight-reveal {
    padding: 100px 20px;
    background: #2c3e50;
    color: white;
}

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

.insight-label {
    display: inline-block;
    background: #e74c3c;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.insight-container h2 {
    font-size: 44px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.insight-container p {
    font-size: 20px;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 50px;
}

.insight-visual {
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-top: 40px;
}

.trust-building {
    padding: 100px 20px;
    background: white;
}

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

.trust-card {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s;
}

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

.trust-icon {
    width: 60px;
    height: 60px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.trust-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.trust-card p {
    color: #555;
    line-height: 1.6;
}

.testimonials-inline {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.testimonial-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 35px 40px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    color: white;
}

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

.testimonial-author {
    font-weight: 600;
    opacity: 0.9;
}

.benefits-section {
    padding: 120px 20px;
    background: white;
}

.benefits-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.benefits-wrapper h2 {
    font-size: 46px;
    text-align: center;
    margin-bottom: 80px;
    color: #2c3e50;
}

.benefits-offset {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.benefit-block {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 30px;
    border-left: 4px solid #e74c3c;
}

.benefit-block.offset {
    margin-left: 80px;
    border-left-color: #3498db;
}

.benefit-number {
    font-size: 48px;
    font-weight: 800;
    color: #ecf0f1;
    line-height: 1;
}

.benefit-block h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.benefit-block p {
    color: #555;
    line-height: 1.6;
    font-size: 17px;
}

.social-proof {
    padding: 80px 20px;
    background: #f8f9fa;
}

.social-stats {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

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

.stat-number {
    display: block;
    font-size: 52px;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #555;
}

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

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

.services-container h2 {
    font-size: 46px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro {
    text-align: center;
    font-size: 19px;
    color: #555;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

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

.service-card.featured {
    border: 3px solid #e74c3c;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    z-index: 10;
}

.service-image {
    height: 220px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-image.img-1 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.service-image.img-2 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.service-image.img-3 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.service-image.img-4 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.service-image.img-5 {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.service-image.img-6 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 24px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 25px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    display: block;
    padding: 0 25px;
    font-size: 32px;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 5px;
}

.price-note {
    display: block;
    padding: 0 25px;
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 25px;
}

.service-select {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.service-select:hover {
    background: #1a252f;
}

.service-card.selected .service-select {
    background: #27ae60;
}

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

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.urgency-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.urgency-content p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.urgency-cta {
    display: inline-block;
    background: white;
    color: #f5576c;
    padding: 18px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
}

.urgency-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-section {
    padding: 120px 20px;
    background: white;
}

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

.form-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.order-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-check {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-check input[type="checkbox"] {
    margin-top: 4px;
}

.form-check label {
    font-size: 14px;
    color: #555;
}

.form-check a {
    color: #3498db;
    text-decoration: none;
}

.form-check a:hover {
    text-decoration: underline;
}

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

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

.final-cta-block {
    padding: 100px 20px;
    background: #2c3e50;
    color: white;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 44px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.final-cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.final-cta-btn {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 18px 45px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
}

.final-cta-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

.site-footer {
    background: #1a1a1a;
    color: #ecf0f1;
    padding: 60px 20px 30px;
}

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

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

.footer-col p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

.footer-col a:hover {
    color: #e74c3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #7f8c8d;
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

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

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

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

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

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

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

    .social-stats {
        flex-direction: column;
    }

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

    .benefit-block.offset {
        margin-left: 0;
    }

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

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

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

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

    .story-narrow h2,
    .services-container h2,
    .benefits-wrapper h2 {
        font-size: 28px;
    }

    .order-form {
        padding: 25px;
    }
}