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

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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;
    min-width: 300px;
}

.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 ease;
}

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

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

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

.btn-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

.nav-links a:hover {
    color: #3498db;
}

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(52, 73, 94, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    color: #ffffff;
    padding: 30px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    opacity: 0.95;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;
}

.content-wrapper.narrow {
    max-width: 800px;
}

.intro-section {
    background: #ecf0f1;
}

.intro-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-section p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.problem-section {
    background: #ffffff;
}

.problem-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: #e74c3c;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    font-weight: 700;
}

.problem-image {
    flex: 1;
    background: #34495e;
}

.problem-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.solution-reveal {
    background: #2c3e50;
    color: #ffffff;
}

.solution-reveal h2 {
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.solution-reveal p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.benefits-visual {
    background: #ecf0f1;
}

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

.benefit-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.story-section {
    background: #ffffff;
}

.story-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.story-section p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 22px;
    color: #34495e;
}

.story-section em {
    font-style: italic;
    color: #2c3e50;
}

.testimonials-inline {
    background: #3498db;
    color: #ffffff;
}

.testimonial-row {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    opacity: 0.9;
}

.how-it-works {
    background: #ffffff;
}

.how-it-works h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.how-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.how-image {
    flex: 1;
    background: #ecf0f1;
}

.how-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.how-text {
    flex: 1;
}

.how-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.how-text ul {
    list-style: none;
    margin: 20px 0;
}

.how-text ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}

.how-text ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.services-preview {
    background: #ecf0f1;
}

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

.services-intro {
    text-align: center;
    font-size: 19px;
    margin-bottom: 50px;
    color: #34495e;
}

.services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

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

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

.service-cta {
    margin-top: auto;
}

.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.pricing-reveal-intro {
    text-align: center;
    font-size: 18px;
    margin-top: 40px;
    color: #7f8c8d;
    font-style: italic;
}

.trust-section {
    background: #ffffff;
}

.trust-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.trust-point h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.trust-point p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
}

.pricing-section {
    background: #2c3e50;
    color: #ffffff;
}

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

.pricing-intro {
    text-align: center;
    font-size: 19px;
    margin-bottom: 50px;
    opacity: 0.95;
}

.pricing-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.pricing-card.featured {
    border-color: #27ae60;
    background: rgba(39, 174, 96, 0.15);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #27ae60;
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.price {
    font-size: 42px;
    font-weight: 700;
    margin: 20px 0;
    color: #27ae60;
}

.price-desc {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.price-features {
    list-style: none;
}

.price-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.pricing-notes {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 5px;
    border-left: 4px solid #e67e22;
}

.pricing-notes p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

.cta-section {
    background: #27ae60;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
}

.cta-section p {
    font-size: 18px;
    text-align: center;
    opacity: 0.95;
}

.contact-form-section {
    background: #ecf0f1;
}

.contact-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.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: 12px 15px;
    border: 2px solid #bdc3c7;
    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: #3498db;
}

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

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

.checkbox-group a {
    color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 15px 30px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    background: #f8f9fa;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #7f8c8d;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 5px;
}

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

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

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

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

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

    .content-wrapper {
        padding: 50px 20px;
    }

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