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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #c0392b;
    --light-bg: #f8f9fa;
    --dark-text: #2c3e50;
    --light-text: #7f8c8d;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: var(--white);
    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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

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

.btn-accept {
    background: var(--secondary-color);
    color: var(--white);
}

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

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-reject:hover {
    background: var(--white);
    color: var(--dark-text);
}

.main-nav {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.sticky-cta {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
}

.sticky-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(192, 57, 43, 0.4);
    transition: all 0.3s;
    display: inline-block;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(192, 57, 43, 0.5);
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(230, 126, 34, 0.65));
    display: flex;
    align-items: center;
    padding: 20px;
}

.hero-content-offset {
    max-width: 700px;
    margin-left: 8%;
    color: var(--white);
}

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

.highlight {
    color: var(--secondary-color);
    position: relative;
}

.hero-subtext {
    font-size: 22px;
    margin-bottom: 35px;
    font-weight: 300;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 18px 45px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s;
}

.cta-hero:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.story-intro {
    padding: 90px 20px;
    background: var(--light-bg);
}

.narrow-content {
    max-width: 750px;
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 1.3;
    color: var(--primary-color);
}

.narrow-content p {
    font-size: 19px;
    margin-bottom: 20px;
    color: var(--dark-text);
}

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

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

.content-half {
    flex: 1;
}

.content-half h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.content-half p {
    font-size: 18px;
    margin-bottom: 20px;
}

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

.problem-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.problem-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
}

.insight-text {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 19px;
    margin-top: 25px;
}

.image-half {
    flex: 1;
}

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

.insight-section {
    padding: 100px 20px;
    background: var(--primary-color);
    color: var(--white);
}

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

.big-quote {
    font-size: 32px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 300;
}

.quote-author {
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 600;
}

.story-continuation {
    padding: 90px 20px;
}

.visual-break {
    margin: 0;
    padding: 0;
}

.full-width-img {
    width: 100%;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.trust-builder {
    padding: 90px 20px;
    background: var(--light-bg);
}

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

.container-standard h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.trust-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.trust-icon {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.trust-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.trust-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-text);
}

.testimonials-inline {
    padding: 80px 20px;
}

.testimonial-item {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
    border-radius: 5px;
}

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

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.benefits-reveal {
    padding: 90px 20px;
    background: var(--light-bg);
}

.benefits-asymmetric {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.benefit-large {
    flex: 2;
    min-width: 350px;
}

.benefit-large img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 25px;
}

.benefit-large h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-large p {
    font-size: 17px;
    line-height: 1.7;
}

.benefit-small {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.benefit-small h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-small p {
    font-size: 16px;
    line-height: 1.6;
}

.deep-dive {
    padding: 90px 20px;
}

.tech-detail {
    margin: 35px 0;
    padding: 25px;
    border-left: 3px solid var(--secondary-color);
    background: var(--light-bg);
}

.tech-detail h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.tech-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--dark-text);
}

.comparison-hidden {
    padding: 90px 20px;
    background: var(--light-bg);
}

.comparison-table {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.comparison-col {
    flex: 1;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
}

.comparison-col h4 {
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
}

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

.comparison-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.comparison-list.negative li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

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

.highlight-col {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.social-proof-layer {
    padding: 70px 20px;
    background: var(--primary-color);
    color: var(--white);
}

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

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    font-weight: 300;
}

.urgency-gentle {
    padding: 80px 20px;
}

.centered-text {
    text-align: center;
}

.centered-text h2 {
    font-size: 34px;
    margin-bottom: 25px;
    line-height: 1.4;
}

.centered-text p {
    font-size: 19px;
    margin-bottom: 15px;
}

.services-pricing {
    padding: 100px 20px;
    background: var(--light-bg);
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto 50px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 25px);
    min-width: 320px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
}

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

.service-card.featured {
    border: 3px solid var(--secondary-color);
}

.badge-popular {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    z-index: 10;
}

.service-header {
    padding: 35px 30px 25px;
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    color: var(--white);
}

.service-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
}

.service-body {
    padding: 30px;
}

.service-body p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--light-text);
}

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

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
}

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

.select-service {
    width: 100%;
    padding: 15px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.select-service:hover {
    background: #d35400;
}

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

.guarantee-section {
    padding: 70px 20px;
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #27ae60, #229954);
    color: var(--white);
    padding: 50px 40px;
    border-radius: 10px;
    text-align: center;
}

.guarantee-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.guarantee-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.guarantee-sub {
    font-size: 16px;
    font-weight: 300;
}

.final-cta-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

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

.container-narrow h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-subtext {
    text-align: center;
    font-size: 17px;
    color: var(--light-text);
    margin-bottom: 40px;
}

.order-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

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

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

.checkbox-group a {
    color: var(--secondary-color);
}

.btn-submit-main {
    width: 100%;
    padding: 18px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

.form-note {
    text-align: center;
    font-size: 14px;
    color: var(--light-text);
    margin-top: 15px;
}

.final-reassurance {
    padding: 60px 20px;
}

.reassurance-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
}

.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 30px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

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

    .comparison-table {
        flex-direction: column;
    }

    .highlight-col {
        transform: scale(1);
    }

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

    .service-card {
        min-width: 100%;
    }

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

    .benefits-asymmetric {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content-offset h1 {
        font-size: 32px;
    }

    .narrow-content h2 {
        font-size: 28px;
    }

    .container-standard h2 {
        font-size: 30px;
    }

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