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

:root {
    --color-primary: #2c1810;
    --color-secondary: #8b6f47;
    --color-accent: #c89b3c;
    --color-bg: #faf8f5;
    --color-text: #2c2c2c;
    --color-light: #f5f1ed;
    --font-main: 'Georgia', serif;
    --font-accent: 'Helvetica Neue', sans-serif;
}

body {
    font-family: var(--font-accent);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    font-size: 16px;
}

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

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

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

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

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

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

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

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

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

.nav-magazine {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: white;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-family: var(--font-main);
    font-size: 24px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: bold;
}

.nav-center {
    display: flex;
    gap: 32px;
}

.nav-center a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.nav-cta {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-text-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.hero-text-overlay h1 {
    font-family: var(--font-main);
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
}

.intro-hook {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-columns {
    display: flex;
    gap: 60px;
}

.intro-text-main {
    flex: 2;
}

.intro-text-main h2 {
    font-family: var(--font-main);
    font-size: 42px;
    line-height: 1.3;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.intro-text-main p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
}

.intro-aside {
    flex: 1;
    background: var(--color-light);
    padding: 40px;
    align-self: flex-start;
}

.intro-aside blockquote {
    font-family: var(--font-main);
    font-size: 19px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
}

.intro-aside cite {
    font-size: 14px;
    color: var(--color-secondary);
}

.problem-reveal {
    background: var(--color-primary);
    color: white;
    padding: 100px 40px;
}

.problem-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-text h3 {
    font-family: var(--font-main);
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--color-accent);
}

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

.problem-visual {
    flex: 1;
}

.problem-visual img {
    width: 100%;
    height: auto;
    border: 4px solid var(--color-accent);
}

.story-section {
    padding: 100px 40px;
    background: white;
}

.story-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image-left {
    flex: 1;
}

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

.story-content {
    flex: 1;
}

.story-content h2 {
    font-family: var(--font-main);
    font-size: 44px;
    margin-bottom: 28px;
    color: var(--color-primary);
}

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

.story-cta {
    margin-top: 32px;
}

.cta-inline {
    color: var(--color-secondary);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 4px;
    transition: all 0.3s;
}

.cta-inline:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.trust-build {
    background: var(--color-light);
    padding: 100px 40px;
}

.trust-header {
    max-width: 1400px;
    margin: 0 auto 60px;
}

.trust-header h2 {
    font-family: var(--font-main);
    font-size: 48px;
    color: var(--color-primary);
    text-align: center;
}

.trust-three-col {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.trust-card {
    flex: 1;
    background: white;
    padding: 48px 36px;
}

.trust-card h4 {
    font-family: var(--font-main);
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--color-secondary);
}

.trust-card p {
    font-size: 16px;
    line-height: 1.7;
}

.testimonial-editorial {
    padding: 120px 40px;
    background: var(--color-secondary);
}

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

.testimonial-quote p {
    font-family: var(--font-main);
    font-size: 28px;
    line-height: 1.6;
    color: white;
    font-style: italic;
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.testimonial-author strong {
    color: var(--color-accent);
    font-size: 18px;
}

.testimonial-author span {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}

.insight-section {
    padding: 100px 40px;
    background: white;
}

.insight-content {
    max-width: 800px;
    margin: 0 auto;
}

.insight-content h2 {
    font-family: var(--font-main);
    font-size: 42px;
    margin-bottom: 32px;
    color: var(--color-primary);
}

.insight-content p {
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 24px;
}

.visual-break {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.benefits-header {
    max-width: 1400px;
    margin: 0 auto 60px;
}

.benefits-header h2 {
    font-family: var(--font-main);
    font-size: 48px;
    color: var(--color-primary);
    text-align: center;
}

.benefits-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.benefit-major {
    flex: 1.5;
}

.benefit-major h3 {
    font-family: var(--font-main);
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--color-secondary);
}

.benefit-major p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.benefit-major img {
    width: 100%;
    height: auto;
}

.benefit-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.benefit-item p {
    font-size: 16px;
    line-height: 1.7;
}

.social-proof {
    background: var(--color-primary);
    padding: 80px 40px;
}

.proof-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.proof-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-number {
    font-family: var(--font-main);
    font-size: 56px;
    color: var(--color-accent);
    font-weight: bold;
}

.stat-label {
    color: white;
    font-size: 16px;
}

.how-it-works {
    padding: 100px 40px;
    background: white;
    max-width: 1400px;
    margin: 0 auto;
}

.how-it-works h2 {
    font-family: var(--font-main);
    font-size: 48px;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 60px;
}

.steps-magazine {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.step-number {
    font-family: var(--font-main);
    font-size: 72px;
    color: var(--color-light);
    font-weight: bold;
    line-height: 1;
}

.step h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--color-secondary);
}

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

.pricing-reveal {
    padding: 120px 40px;
    background: var(--color-light);
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.pricing-intro h2 {
    font-family: var(--font-main);
    font-size: 52px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.pricing-intro p {
    font-size: 20px;
    color: var(--color-secondary);
}

.pricing-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.price-card {
    background: white;
    padding: 48px 36px;
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s;
}

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

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

.badge-popular {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.price-card h3 {
    font-family: var(--font-main);
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.price-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #666;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 32px;
}

.currency {
    font-size: 18px;
    color: var(--color-secondary);
}

.amount {
    font-family: var(--font-main);
    font-size: 52px;
    font-weight: bold;
    color: var(--color-primary);
}

.period {
    font-size: 16px;
    color: #666;
}

.price-features {
    list-style: none;
    margin-bottom: 32px;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
}

.price-features li:before {
    content: "✓ ";
    color: var(--color-accent);
    font-weight: bold;
    margin-right: 8px;
}

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

.btn-select-service:hover {
    background: var(--color-secondary);
}

.urgency-section {
    padding: 80px 40px;
    background: var(--color-accent);
}

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

.urgency-content h3 {
    font-family: var(--font-main);
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.urgency-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.form-section {
    padding: 100px 40px;
    background: white;
}

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

.form-header {
    text-align: center;
    margin-bottom: 48px;
}

.form-header h2 {
    font-family: var(--font-main);
    font-size: 42px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.form-header p {
    font-size: 17px;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    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(--color-secondary);
}

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

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

.final-cta {
    padding: 120px 40px;
    background: var(--color-primary);
    text-align: center;
}

.final-cta-content h2 {
    font-family: var(--font-main);
    font-size: 48px;
    color: white;
    margin-bottom: 24px;
}

.final-cta-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.btn-cta-large {
    padding: 20px 48px;
    background: var(--color-accent);
    color: var(--color-primary);
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    transform: scale(1.05);
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 40px 30px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

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

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

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

.sticky-cta button {
    padding: 16px 32px;
    background: var(--color-accent);
    color: var(--color-primary);
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.sticky-cta button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .nav-magazine {
        flex-direction: column;
        gap: 16px;
        padding: 16px 20px;
    }

    .nav-center {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero-text-overlay h1 {
        font-size: 36px;
    }

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

    .intro-columns {
        flex-direction: column;
        gap: 32px;
    }

    .intro-text-main h2 {
        font-size: 28px;
    }

    .intro-text-main p {
        font-size: 17px;
    }

    .problem-grid {
        flex-direction: column;
        gap: 40px;
    }

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

    .trust-three-col {
        flex-direction: column;
    }

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

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

    .step {
        flex-direction: column;
    }

    .step-number {
        font-size: 48px;
    }

    .pricing-cards {
        flex-direction: column;
    }

    .price-card {
        max-width: 100%;
    }

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

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

    .sticky-cta button {
        width: 100%;
    }
}

.thanks-message {
    text-align: center;
    padding: 100px 40px;
}

.thanks-message h1 {
    font-family: var(--font-main);
    font-size: 48px;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.thanks-message p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.thanks-message .service-selected {
    background: var(--color-light);
    padding: 24px;
    margin: 32px auto;
    max-width: 600px;
    border-left: 4px solid var(--color-accent);
}

.thanks-message .btn-home {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 32px;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-message .btn-home:hover {
    background: var(--color-secondary);
}