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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f4f4f4;
    --accent-color: #d4a373;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

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

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

.centered {
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-cookie:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

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

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

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

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

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

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

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

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

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.hero-content-offset {
    max-width: 600px;
    margin-left: 10%;
    z-index: 2;
}

.hero-title-large {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-image-overlap {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%) rotate(-5deg);
    width: 450px;
    height: 450px;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-primary {
    display: inline-block;
    padding: 18px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-primary.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

.hook-text {
    font-size: 32px;
    line-height: 1.5;
    color: var(--text-dark);
    font-weight: 300;
    font-style: italic;
    text-align: center;
}

.story-section {
    padding: 120px 20px;
    background: var(--secondary-color);
}

.story-section.offset-left {
    padding-left: 10%;
}

.story-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
}

.story-image {
    flex: 0 0 400px;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px var(--shadow);
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.problem-amplify {
    padding: 100px 20px;
    background: var(--white);
}

.section-title-offset {
    font-size: 48px;
    margin-bottom: 60px;
    color: var(--primary-color);
    margin-left: 15%;
}

.problem-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.problem-card {
    background: var(--secondary-color);
    padding: 40px;
    border-left: 4px solid var(--accent-color);
}

.problem-card.card-large {
    flex: 0 0 calc(60% - 15px);
}

.problem-card.card-small {
    flex: 0 0 calc(40% - 15px);
}

.problem-card.card-medium {
    flex: 0 0 calc(50% - 15px);
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.cta-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.cta-secondary.inline {
    margin-left: 15%;
}

.insight-section {
    padding: 120px 20px;
}

.insight-section.dark-bg {
    background: var(--primary-color);
    color: var(--white);
}

.insight-section h2 {
    font-size: 48px;
    margin-bottom: 40px;
    color: var(--white);
}

.insight-large {
    font-size: 28px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
}

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

.trust-title {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary-color);
}

.trust-grid-offset {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
    text-align: center;
    padding: 30px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    font-weight: 700;
}

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

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

.testimonials-inline {
    padding: 100px 20px;
    background: var(--secondary-color);
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-color);
    max-width: 700px;
}

.testimonial-card.offset-right {
    margin-left: auto;
    margin-right: 10%;
}

.testimonial-card.offset-left {
    margin-left: 10%;
}

.testimonial-card.centered {
    margin-left: auto;
    margin-right: auto;
}

.testimonial-quote {
    font-size: 20px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

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

.benefits-title {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary-color);
}

.benefits-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-large {
    flex: 0 0 calc(55% - 15px);
}

.benefit-small {
    flex: 0 0 calc(45% - 15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background: var(--secondary-color);
}

.benefit-medium {
    flex: 0 0 calc(50% - 15px);
}

.benefit-large img,
.benefit-medium img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.benefits-asymmetric h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefits-asymmetric p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-block-sticky {
    position: sticky;
    top: 70px;
    background: var(--accent-color);
    padding: 30px 20px;
    z-index: 100;
    text-align: center;
}

.cta-block-text {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.section-title-centered {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-intro {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.services-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    background: var(--white);
    padding: 30px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.service-card.premium {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: var(--white);
}

.service-card.premium h3,
.service-card.premium p {
    color: var(--white);
}

.service-image {
    width: 100%;
    height: 220px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0;
}

.service-select {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.service-card.premium .service-select {
    background: var(--accent-color);
    color: var(--primary-color);
}

.service-card.premium .service-select:hover {
    background: var(--white);
}

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

.form-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    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(--accent-color);
}

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

.btn-submit:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.urgency-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: var(--white);
}

.urgency-text {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.urgency-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-urgent {
    display: inline-block;
    padding: 18px 40px;
    background: var(--white);
    color: #ee5a6f;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-urgent:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.final-cta-section {
    padding: 120px 20px;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 48px;
    margin-bottom: 30px;
    color: var(--white);
}

.final-question {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 300;
    font-style: italic;
}

.final-cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #ccc;
}

.cta-primary.large {
    padding: 22px 50px;
    font-size: 18px;
}

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

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

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

    .nav-menu {
        position: absolute;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 20px 0;
    }

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

    .hero-title-large {
        font-size: 42px;
    }

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

    .hero-image-overlap {
        width: 300px;
        height: 300px;
        right: -50px;
    }

    .hero-content-offset {
        margin-left: 0;
    }

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

    .story-image {
        flex: 1;
    }

    .story-section.offset-left {
        padding-left: 20px;
    }

    .section-title-offset {
        margin-left: 0;
        font-size: 36px;
    }

    .problem-card.card-large,
    .problem-card.card-small,
    .problem-card.card-medium {
        flex: 0 0 100%;
    }

    .cta-secondary.inline {
        margin-left: 0;
    }

    .trust-grid-offset {
        flex-direction: column;
    }

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

    .benefit-large,
    .benefit-small,
    .benefit-medium {
        flex: 0 0 100%;
    }

    .service-card {
        flex: 0 0 100%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }
}

.thanks-page {
    padding: 100px 20px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-service {
    background: var(--secondary-color);
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid var(--accent-color);
}

.thanks-service strong {
    color: var(--accent-color);
    font-size: 22px;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.info-page {
    padding: 80px 20px;
    background: var(--white);
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
}

.info-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.info-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.info-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.info-content ul,
.info-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.info-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.contact-info {
    background: var(--secondary-color);
    padding: 40px;
    margin: 40px 0;
    border-left: 4px solid var(--accent-color);
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-info strong {
    color: var(--primary-color);
}