* {
    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: #1a1a1a;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.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 {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #4a9eff;
    color: #fff;
}

.btn-accept:hover {
    background: #357abd;
}

.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: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.floating-nav.scrolled {
    top: 10px;
    padding: 10px 25px;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4a9eff;
}

.nav-btn {
    background: #4a9eff;
    color: #fff;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: #357abd;
    transform: translateY(-2px);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 40px 20px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    border-radius: 20px;
}

.hero-badge {
    display: inline-block;
    background: #ff4757;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #4a9eff;
}

.stat-label {
    font-size: 14px;
    color: #fff;
    margin-top: 5px;
}

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

.story-container {
    max-width: 800px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
    color: #1a1a1a;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
}

.highlight-box {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 25px;
    margin: 35px 0;
}

.highlight-text {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.problem-amplify {
    padding: 100px 20px;
    background: #1a1a1a;
    color: #fff;
}

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

.problem-amplify h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.problem-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #2a2a2a;
    padding: 40px;
    border-radius: 15px;
    transition: transform 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #4a9eff;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
}

.insight-reveal {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
}

.insight-text {
    font-size: 24px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

.solution-intro {
    padding: 100px 20px;
    background: #fff;
}

.solution-content {
    margin-top: 30px;
}

.comparison-visual {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.compare-item {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
}

.compare-item.highlight {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    border: 3px solid #4a9eff;
}

.compare-item h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.compare-chain {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 14px;
}

.compare-chain span {
    padding: 8px 15px;
    background: #fff;
    border-radius: 20px;
    color: #1a1a1a;
}

.highlight-step {
    background: #4a9eff;
    color: #fff;
    font-weight: 700;
}

.trust-section {
    padding: 100px 20px;
    background: #f9f9f9;
}

.trust-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.trust-intro {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #444;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.trust-badge {
    width: 60px;
    height: 60px;
    background: #4ade80;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

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

.trust-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.testimonials-flow {
    padding: 100px 20px;
    background: #fff;
}

.testimonial-item {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 5px solid #4a9eff;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 16px;
    color: #1a1a1a;
}

.urgency-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #fff;
}

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

.urgency-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.urgency-container h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

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

.urgency-highlight {
    font-size: 22px;
    font-weight: 700;
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.services-reveal {
    padding: 100px 20px;
    background: #fff;
}

.services-reveal h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #444;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
}

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

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

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #4a9eff;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

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

.price-comparison {
    padding: 0 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.old-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-size: 28px;
    font-weight: 700;
    color: #4a9eff;
}

.save-badge {
    display: inline-block;
    background: #4ade80;
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    align-self: flex-start;
}

.service-features {
    padding: 0 25px 25px;
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    font-size: 15px;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 700;
}

.select-service {
    margin: 0 25px 25px;
    width: calc(100% - 50px);
    padding: 15px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #4a9eff;
    transform: translateY(-2px);
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.2);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-consent {
    margin-top: 10px;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.form-consent input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.form-consent a {
    color: #4a9eff;
    text-decoration: underline;
}

.submit-btn {
    padding: 18px;
    background: #4a9eff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin-top: 15px;
}

.final-push {
    padding: 100px 20px;
    background: #f9f9f9;
}

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

.final-cta-btn {
    display: inline-block;
    padding: 20px 50px;
    background: #4a9eff;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(74,158,255,0.3);
}

.final-cta-btn:hover {
    background: #357abd;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74,158,255,0.4);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: 15px 20px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

.sticky-text {
    color: #fff;
    font-size: 16px;
}

.sticky-btn {
    padding: 12px 30px;
    background: #4a9eff;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #357abd;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px 20px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #4a9eff;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-box {
    background: #fff;
    padding: 60px 50px;
    border-radius: 20px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(0,0,0,0.2);
}

.thanks-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.thanks-box h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-box p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.thanks-service {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    font-size: 16px;
    color: #1a1a1a;
}

.thanks-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: #4a9eff;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.thanks-btn:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 80px;
    min-height: 100vh;
}

.page-container h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.page-container h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-container h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.page-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.page-container ul {
    margin-bottom: 20px;
    padding-left: 40px;
}

.page-container ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}

.contact-info {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

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

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

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

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

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 28px;
    }

    .story-container h2,
    .problem-amplify h2,
    .services-reveal h2 {
        font-size: 32px;
    }

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

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

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

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

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

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

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

    .page-container {
        padding: 100px 20px 60px;
    }

    .page-container h1 {
        font-size: 36px;
    }
}