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

:root {
    --primary: #1a1a1a;
    --secondary: #2c2c2c;
    --accent: #8b7355;
    --light: #f5f5f5;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #755f47;
}

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

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

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    background: var(--accent);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.4);
    display: inline-block;
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #755f47;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 115, 85, 0.5);
}

.hero-asymmetric {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    background: var(--light);
}

.hero-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-text-block {
    flex: 1;
    min-width: 300px;
    padding-left: 3rem;
}

.hero-headline {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -1.5px;
}

.hero-subtext {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: var(--accent);
    transform: translateX(5px);
}

.hero-image-wrap {
    flex: 1;
    min-width: 300px;
    transform: translateY(-3rem);
}

.hero-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 20px 20px 0 var(--accent);
}

.intro-curiosity {
    padding: var(--spacing-xl) 2rem;
    background: var(--white);
}

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

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.problem-amplification {
    padding: var(--spacing-xl) 2rem;
    background: var(--light);
}

.split-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
    flex-wrap: wrap;
}

.content-left {
    flex: 1.2;
    min-width: 300px;
}

.content-left h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-left p {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    color: var(--text-light);
    line-height: 1.7;
}

.inline-cta {
    margin-top: 2rem;
}

.cta-text {
    color: var(--accent);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-text:hover {
    color: var(--primary);
    transform: translateX(5px);
    display: inline-block;
}

.image-right {
    flex: 1;
    min-width: 300px;
    transform: translateX(2rem);
}

.image-right img {
    width: 100%;
    height: auto;
    display: block;
}

.insight-section {
    padding: var(--spacing-xl) 2rem;
    background: var(--primary);
    color: var(--white);
}

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

.insight-block-offset {
    max-width: 700px;
    margin-bottom: 4rem;
    padding-left: 4rem;
}

.insight-block-offset h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.insight-block-offset p {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
}

.insight-stats {
    display: flex;
    gap: 3rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.stat-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.storytelling-scenario {
    padding: var(--spacing-xl) 2rem;
    background: var(--white);
}

.story-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-content {
    flex: 1;
    min-width: 300px;
}

.story-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-content p {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    color: var(--text-light);
    line-height: 1.7;
}

.story-quote {
    font-style: italic;
    font-size: 1.25rem;
    color: var(--accent);
    padding-left: 2rem;
    border-left: 3px solid var(--accent);
    margin-top: 2rem;
}

.trust-building {
    padding: var(--spacing-xl) 2rem;
    background: var(--light);
}

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

.trust-container h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.trust-cards {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 2.5rem;
}

.trust-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

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

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

.testimonials-inline {
    padding: var(--spacing-xl) 2rem;
    background: var(--secondary);
    color: var(--white);
}

.testimonial-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
}

.testimonial p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.author {
    font-size: 0.95rem;
    opacity: 0.7;
}

.benefits-reveal {
    padding: var(--spacing-xl) 2rem;
    background: var(--white);
}

.benefits-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
}

.benefits-header {
    max-width: 600px;
    margin-bottom: 4rem;
}

.benefits-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefits-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.benefits-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.benefit-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.benefit-item h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.collections-pricing {
    padding: var(--spacing-xl) 2rem;
    background: var(--light);
}

.pricing-container {
    max-width: 1300px;
    margin: 0 auto;
}

.pricing-container h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.pricing-intro {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.pricing-cards {
    display: flex;
    gap: 2rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.price-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 3rem;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.price-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.price-card.featured {
    border-color: var(--accent);
    background: var(--primary);
    color: var(--white);
}

.badge {
    position: absolute;
    top: -15px;
    right: 2rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.8;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.cta-price {
    display: block;
    text-align: center;
    background: var(--accent);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-price:hover {
    background: #755f47;
}

.price-card.featured .service-description,
.price-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.additional-services {
    margin-top: 4rem;
}

.additional-services h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    background: var(--white);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-info p {
    color: var(--text-light);
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}

.urgency-section {
    padding: var(--spacing-xl) 2rem;
    background: var(--accent);
    color: var(--white);
    text-align: center;
}

.urgency-container {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.urgency-container p {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.urgency-cta {
    margin-top: 2rem;
}

.cta-urgent {
    display: inline-block;
    background: var(--white);
    color: var(--accent);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

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

.final-trust {
    padding: var(--spacing-xl) 2rem;
    background: var(--white);
}

.trust-final-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.trust-final-image img {
    width: 100%;
    height: auto;
    display: block;
}

.trust-final-content {
    flex: 1;
    min-width: 300px;
}

.trust-final-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.trust-final-content p {
    font-size: 1.2rem;
    margin-bottom: 1.3rem;
    color: var(--text-light);
    line-height: 1.7;
}

.order-section {
    padding: var(--spacing-xl) 2rem;
    background: var(--light);
}

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

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

.form-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.order-form {
    background: var(--white);
    padding: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    font-size: 1rem;
    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);
}

.btn-submit {
    width: 100%;
    padding: 1.3rem;
    background: var(--accent);
    color: var(--white);
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--primary);
}

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    margin-bottom: 0.7rem;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.6;
}

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

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

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

    .nav-menu a {
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .hero-headline {
        font-size: 2.2rem;
    }

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

    .hero-text-block {
        padding-left: 0;
    }

    .hero-image-wrap {
        transform: none;
    }

    .hero-image-wrap img {
        box-shadow: 10px 10px 0 var(--accent);
    }

    .intro-narrow h2 {
        font-size: 1.8rem;
    }

    .intro-narrow p {
        font-size: 1.05rem;
    }

    .content-left h2 {
        font-size: 2rem;
    }

    .image-right {
        transform: none;
    }

    .insight-block-offset {
        padding-left: 0;
    }

    .insight-block-offset h2 {
        font-size: 2rem;
    }

    .insight-stats {
        justify-content: flex-start;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

    .benefits-header h2 {
        font-size: 2rem;
    }

    .pricing-container h2 {
        font-size: 2rem;
    }

    .order-form {
        padding: 2rem 1.5rem;
    }
}