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

:root {
    --primary: #2c1810;
    --secondary: #8b5a2b;
    --accent: #d4a574;
    --light: #faf7f2;
    --dark: #1a0f0a;
    --text: #3d2b1f;
    --white: #ffffff;
    --shadow: rgba(44, 24, 16, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
}

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

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow);
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Editorial */
.hero-editorial {
    padding: 160px 20px 80px;
    background: linear-gradient(135deg, var(--light) 0%, #f5ede3 100%);
}

.hero-editorial .container {
    text-align: center;
}

.hero-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-editorial h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-editorial .lead {
    font-size: 1.25rem;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.hero-image {
    margin: 50px auto 0;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px var(--shadow);
}

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

/* Article Sections */
.article-section {
    padding: 70px 20px;
}

.article-section.alt {
    background: var(--white);
}

.article-section h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 700;
}

.article-section h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin: 40px 0 20px;
    font-weight: 600;
}

.article-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.article-section p.highlight {
    background: linear-gradient(120deg, var(--accent) 0%, var(--accent) 100%);
    background-repeat: no-repeat;
    background-size: 100% 30%;
    background-position: 0 90%;
    display: inline;
}

/* Inline Image */
.inline-image {
    margin: 45px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow);
}

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

.inline-image figcaption {
    padding: 15px 20px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.9rem;
    font-style: italic;
}

/* Quote Block */
.quote-block {
    background: var(--primary);
    color: var(--white);
    padding: 50px;
    margin: 50px -50px;
    border-radius: 0;
    position: relative;
}

.quote-block::before {
    content: '"';
    font-size: 8rem;
    position: absolute;
    top: -20px;
    left: 30px;
    opacity: 0.15;
    font-family: Georgia, serif;
}

.quote-block p {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.quote-block cite {
    font-size: 1rem;
    opacity: 0.8;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 60px 20px;
    background: var(--dark);
    color: var(--white);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

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

.stat-label {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-top: 5px;
}

/* Problem Section */
.problem-section {
    background: linear-gradient(180deg, #f5ede3 0%, var(--white) 100%);
    padding: 80px 20px;
}

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

.problem-list li {
    padding: 20px 25px 20px 60px;
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow);
    position: relative;
    font-size: 1.05rem;
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #c0392b;
    font-size: 1.3rem;
    font-weight: bold;
}

/* Solution List */
.solution-list {
    list-style: none;
    margin: 30px 0;
}

.solution-list li {
    padding: 20px 25px 20px 60px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    position: relative;
    font-size: 1.05rem;
}

.solution-list li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #27ae60;
    font-size: 1.3rem;
    font-weight: bold;
}

/* CTA Inline */
.cta-inline {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    margin: 50px 0;
    color: var(--white);
}

.cta-inline h3 {
    color: var(--white);
    margin: 0 0 15px;
    font-size: 1.6rem;
}

.cta-inline p {
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

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

.btn-light:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 20px;
    background: var(--light);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 35px var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent);
    position: absolute;
    top: 10px;
    left: 25px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark);
    font-size: 1.2rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 3px;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--text);
    opacity: 0.7;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: var(--white);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: var(--light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px var(--shadow);
}

.service-image {
    height: 200px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image svg {
    width: 80px;
    height: 80px;
    fill: var(--white);
    opacity: 0.9;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.85;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.price-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
}

.price-unit {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.7;
}

/* Form Section */
.form-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
}

.form-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 15px;
}

.form-section .lead {
    text-align: center;
    opacity: 0.85;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--white);
    padding: 45px;
    border-radius: 16px;
    max-width: 550px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e8e2db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.form-submit:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 15px 20px;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.2);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 15px;
}

.sticky-cta-text {
    color: var(--white);
    font-size: 1rem;
}

.sticky-cta-text strong {
    display: block;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 20px 30px;
}

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

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

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

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

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

.footer-col ul a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 12px 25px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

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

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

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--light) 0%, #f5ede3 100%);
    text-align: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--dark);
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.85;
}

/* Page Header */
.page-header {
    padding: 140px 20px 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    opacity: 0.85;
    font-size: 1.15rem;
}

/* Content Pages */
.content-page {
    padding: 60px 20px;
    background: var(--white);
}

.content-page h2 {
    font-size: 1.6rem;
    color: var(--primary);
    margin: 40px 0 20px;
}

.content-page h2:first-child {
    margin-top: 0;
}

.content-page p {
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.content-page ul {
    margin: 20px 0;
    padding-left: 25px;
}

.content-page ul li {
    margin-bottom: 10px;
}

/* About Page */
.about-hero {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 80px 20px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 280px;
}

.about-image-placeholder {
    height: 350px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder svg {
    width: 120px;
    height: 120px;
    fill: var(--white);
    opacity: 0.8;
}

.about-text {
    flex: 1;
    min-width: 280px;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Values Grid */
.values-section {
    padding: 80px 20px;
    background: var(--light);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 30px var(--shadow);
    text-align: center;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--dark);
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 12px;
}

/* Contact Page */
.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--dark);
}

.contact-details h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 1rem;
    opacity: 0.85;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        display: none;
        box-shadow: 0 10px 30px var(--shadow);
    }

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

    .nav-links li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .hero-editorial {
        padding: 120px 20px 60px;
    }

    .hero-editorial h1 {
        font-size: 2rem;
    }

    .quote-block {
        margin: 40px -20px;
        padding: 35px 25px;
    }

    .quote-block p {
        font-size: 1.15rem;
    }

    .stats-row {
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

    .sticky-cta-inner {
        justify-content: center;
        text-align: center;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .about-hero {
        padding: 60px 20px;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-col {
        min-width: 45%;
    }
}

@media (max-width: 480px) {
    .footer-col {
        min-width: 100%;
    }

    .stats-row {
        flex-direction: column;
        gap: 25px;
    }

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

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