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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #ffa500;
    color: #1e1e1e;
}

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

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

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

.main-nav {
    background: #ffffff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B4513;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

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

.nav-menu a:hover {
    color: #8B4513;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c2c2c;
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a3020 50%, #2d1810 100%);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.95;
}

.story-opener {
    padding: 5rem 2rem;
    background: #f9f7f4;
}

.narrow-content {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
}

.lead-text {
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 1.8rem;
    color: #1a1a1a;
}

.narrow-content p {
    margin-bottom: 1.5rem;
}

.problem-reveal {
    padding: 6rem 2rem;
    background: #ffffff;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.problem-text p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.emphasis {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B4513;
    margin: 2rem 0;
}

.problem-visual {
    flex: 1;
}

.image-placeholder {
    width: 100%;
    border-radius: 8px;
}

.insight-section {
    padding: 5rem 2rem;
    background: #2d1810;
    color: #ffffff;
}

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

.insight-box h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.insight-box p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.insight-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffa500;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 180px;
    text-align: center;
}

.trust-builder {
    padding: 5rem 2rem;
    background: #f4f1ed;
}

.testimonial-flow {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #2c2c2c;
}

.testimonial-author {
    font-weight: 600;
    color: #8B4513;
}

.cta-bridge {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
}

.cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #8B4513;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f9f9f9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.benefits-deep {
    padding: 6rem 2rem;
    background: #ffffff;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f9f7f4;
    border-left: 4px solid #8B4513;
}

.benefit-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-card p {
    line-height: 1.7;
    color: #4a4a4a;
}

.service-reveal {
    padding: 6rem 2rem;
    background: #f4f1ed;
}

.service-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.service-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-subtitle {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.service-list {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
}

.service-details {
    padding: 2rem;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-details p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.service-benefit {
    font-weight: 600;
    color: #8B4513;
    font-style: italic;
}

.price-reveal {
    margin: 1.5rem 0;
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2d1810;
}

.select-service {
    padding: 1rem 2rem;
    background: #8B4513;
    color: #ffffff;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.urgency-block {
    padding: 3rem 2rem;
    background: #1a1a1a;
    text-align: center;
}

.urgency-content {
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
}

.urgency-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffa500;
}

.urgency-subtext {
    font-size: 1.1rem;
    opacity: 0.9;
}

.final-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2d1810 0%, #4a3020 100%);
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: #ffa500;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background: #ff8c00;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,165,0,0.4);
}

.order-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: #4a4a4a;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
}

.form-group input[readonly] {
    background: #f0f0f0;
    cursor: not-allowed;
}

.submit-button {
    padding: 1.2rem;
    background: #8B4513;
    color: #ffffff;
    border: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-button:hover {
    background: #6d3410;
    transform: translateY(-2px);
}

.guarantee-section {
    padding: 4rem 2rem;
    background: #f9f7f4;
    text-align: center;
}

.guarantee-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.guarantee-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: #ffa500;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

.footer-column a:hover {
    color: #ffa500;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
}

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

.sticky-cta-button {
    display: block;
    padding: 1rem 2rem;
    background: #ffa500;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background: #ff8c00;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    padding: 3rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #8B4513;
}

.thanks-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.selected-service-info {
    background: #f9f7f4;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.selected-service-info strong {
    color: #8B4513;
}

.back-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #8B4513;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.back-home:hover {
    background: #6d3410;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

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

    .service-item {
        flex-direction: column;
    }

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

    .sticky-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}