* {
    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;
}

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

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

header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #00d4ff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #00d4ff;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00d4ff;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00d4ff;
    transition: all 0.3s ease;
}

.hero-section {
    background: linear-gradient(165deg, #0a0a0a 0%, #1e1e2e 50%, #0a0a0a 100%);
    padding: 140px 20px 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0,212,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 62px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.hero-accent {
    color: #00d4ff;
    display: block;
    font-size: 48px;
    margin-top: 10px;
}

.hero-content p {
    font-size: 20px;
    color: #b8b8b8;
    margin-bottom: 40px;
    max-width: 680px;
}

.cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff 0%, #0080ff 100%);
    color: #ffffff;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,212,255,0.4);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,212,255,0.6);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #00d4ff;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid #00d4ff;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.cta-secondary:hover {
    background: #00d4ff;
    color: #ffffff;
}

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

.story-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.3;
}

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

.story-highlight {
    background: #f0f9ff;
    padding: 30px;
    border-left: 4px solid #00d4ff;
    margin: 40px 0;
    font-size: 20px;
    font-style: italic;
    color: #2a2a2a;
}

.split-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 20px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.split-image {
    flex: 1;
    background: linear-gradient(135deg, #00d4ff20 0%, #0080ff20 100%);
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.problem-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a3a 100%);
    padding: 100px 20px;
    color: #ffffff;
}

.problem-section h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
    color: #ffffff;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.05);
    padding: 35px;
    border-radius: 10px;
    border: 1px solid rgba(0,212,255,0.2);
}

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

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

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

.insight-section h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 35px;
    color: #1a1a1a;
}

.insight-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

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

.insight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff 0%, #0080ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
}

.insight-text h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.insight-text p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.testimonials-section h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 17px;
    color: #2a2a2a;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 14px;
    color: #7a7a7a;
}

.services-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #f0f9ff 100%);
}

.services-section h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    margin-top: 50px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,212,255,0.2);
    border-color: #00d4ff;
}

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

.service-card p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #00d4ff;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid #e8e8e8;
    font-size: 15px;
    color: #4a4a4a;
}

.service-features li:last-child {
    border-bottom: none;
}

.select-service-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #00d4ff 0%, #0080ff 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,212,255,0.4);
}

.select-service-btn.selected {
    background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
}

.form-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a3a 100%);
}

.form-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    color: #ffffff;
}

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

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    padding: 45px;
    border-radius: 12px;
    border: 1px solid rgba(0,212,255,0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(0,212,255,0.3);
    border-radius: 8px;
    font-size: 16px;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(255,255,255,0.15);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #00d4ff 0%, #0080ff 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,212,255,0.6);
}

.urgency-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    text-align: center;
}

.urgency-section h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.urgency-section p {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 35px;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #00d4ff 0%, #0080ff 100%);
    padding: 20px;
    text-align: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}

.benefits-section {
    padding: 100px 20px;
    background: #ffffff;
}

.benefits-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff 0%, #0080ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px;
}

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

.benefit-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.trust-section h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    min-width: 200px;
}

.trust-badge-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.trust-badge-text {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #00d4ff;
}

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

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

.footer-column ul li a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #00d4ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #7a7a7a;
    font-size: 14px;
}

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

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #b8b8b8;
}

.cookie-text a {
    color: #00d4ff;
    text-decoration: none;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: linear-gradient(135deg, #00d4ff 0%, #0080ff 100%);
    color: #ffffff;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,212,255,0.4);
}

.cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #7a7a7a;
}

.cookie-reject:hover {
    border-color: #ffffff;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00d4ff 0%, #0080ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 25px;
    line-height: 1.7;
}

.contact-info {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

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

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

.contact-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.policy-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.policy-container h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.policy-container h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.policy-container ul,
.policy-container ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-container li {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

    nav {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        background: #1a1a1a;
        flex-direction: column;
        padding: 30px;
        transition: left 0.3s ease;
        align-items: flex-start;
    }

    nav.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-accent {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .cta-secondary {
        margin-left: 0;
        margin-top: 15px;
        display: block;
    }

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

    .story-section h2,
    .services-section h2 {
        font-size: 32px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}
