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

:root {
    --primary-color: #d84315;
    --secondary-color: #5d4037;
    --accent-color: #ff6f00;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --text-dark: #212121;
    --text-light: #757575;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px 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;
    min-width: 250px;
}

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

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

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

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

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

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

.main-nav {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    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: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

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

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

.nav-menu a:hover {
    color: var(--primary-color);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.btn-sticky {
    display: inline-block;
    padding: 15px 30px;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
    transition: all 0.3s;
}

.btn-sticky:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.5);
}

.hero-story {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    padding: 80px 20px;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtext {
    font-size: 22px;
    color: var(--white);
    line-height: 1.5;
}

.story-hook {
    padding: 80px 20px;
    background: var(--white);
}

.opening-line {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.story-hook p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.emphasis-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 40px;
}

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

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

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

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

.problem-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.visual-break {
    padding: 0;
}

.image-overlay-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.image-overlay-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    background: rgba(0,0,0,0.6);
    padding: 40px 60px;
    max-width: 600px;
}

.overlay-text p {
    font-size: 28px;
    font-style: italic;
    line-height: 1.4;
}

.story-middle {
    padding: 80px 20px;
    background: var(--white);
}

.story-middle h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
}

.story-middle p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-inline {
    background: var(--light-bg);
    padding: 30px 40px;
    margin: 40px 0;
    border-left: 4px solid var(--primary-color);
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
}

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

.insight-split {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

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

.insight-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
}

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

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

.insight-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 18px;
}

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

.btn-inline {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.insight-image {
    flex: 1;
    min-width: 300px;
}

.insight-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.trust-build {
    padding: 80px 20px;
    background: var(--white);
}

.trust-build h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    border-top: 3px solid var(--primary-color);
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
    font-size: 14px;
}

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

.benefits-reveal h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.benefit-item {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

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

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.5;
}

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

.comparison-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.comparison-table {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.comparison-column {
    flex: 1;
    min-width: 300px;
    padding: 40px 30px;
    border-radius: 8px;
}

.comparison-bad {
    background: #ffebee;
}

.comparison-good {
    background: #e8f5e9;
    border: 2px solid var(--primary-color);
}

.comparison-column h3 {
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 700;
}

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

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

.comparison-bad li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #c62828;
    font-weight: 700;
    font-size: 18px;
}

.comparison-good li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: 700;
    font-size: 18px;
}

.comparison-cta {
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #bf360c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(216, 67, 21, 0.3);
}

.gallery-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.gallery-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-item {
    flex: 1;
    min-width: 280px;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.services-preview {
    padding: 100px 20px;
    background: var(--white);
}

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

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card-featured {
    flex: 1;
    min-width: 320px;
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    position: relative;
    transition: all 0.3s;
}

.service-card-featured:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
}

.service-card-featured h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 10px;
    font-weight: 700;
}

.service-card-featured p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 20px 0;
}

.btn-service {
    display: inline-block;
    width: 100%;
    padding: 14px 20px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-service:hover {
    background: #bf360c;
}

.urgency-section {
    padding: 60px 20px;
    background: var(--accent-color);
    color: var(--white);
}

.urgency-box {
    text-align: center;
}

.urgency-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.urgency-box p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.urgency-highlight {
    font-size: 22px;
    font-weight: 700;
    margin: 25px 0;
}

.final-push {
    padding: 100px 20px;
    background: var(--dark-bg);
    color: var(--white);
}

.final-push h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.big-text {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.4;
}

.final-push p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

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

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    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: var(--primary-color);
}

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

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

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

.guarantee-section {
    padding: 80px 20px;
    background: var(--white);
}

.guarantee-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.guarantee-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px 20px;
    background: var(--light-bg);
    border-radius: 8px;
}

.guarantee-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--primary-color);
}

.guarantee-item p {
    font-size: 16px;
    color: var(--text-light);
}

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

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

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

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

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

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

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

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

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

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

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

    .opening-line {
        font-size: 22px;
    }

    .problem-grid,
    .testimonials,
    .benefits-grid,
    .comparison-table,
    .gallery-grid,
    .services-showcase,
    .guarantee-grid {
        flex-direction: column;
    }

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

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

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

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