:root {
    --primary: #2d5a3d;
    --primary-light: #4a8c5f;
    --secondary: #8b6914;
    --accent: #c9a227;
    --dark: #1a1a1a;
    --text: #333333;
    --text-light: #666666;
    --bg: #fafaf8;
    --bg-alt: #f0ede5;
    --white: #ffffff;
    --border: #e0ddd5;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-strong: rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.ad-disclosure {
    background: var(--bg-alt);
    padding: 8px 24px;
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1140px;
    margin: 0 auto;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

.main-nav a {
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

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

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

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

/* Hero Section */
.hero-funnel {
    background-color: #2d4a3d;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-funnel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.92) 0%, rgba(26, 26, 26, 0.88) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 680px;
    padding: 80px 24px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 36px;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: #d4ad2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
    color: var(--dark);
}

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

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

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

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

/* Editorial Content */
.editorial-section {
    padding: 100px 24px;
}

.editorial-section.alt {
    background: var(--bg-alt);
}

.editorial-intro {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 32px;
}

.editorial-text {
    font-size: 18px;
    line-height: 1.85;
    margin-bottom: 28px;
}

.editorial-highlight {
    background: linear-gradient(180deg, transparent 65%, rgba(201, 162, 39, 0.25) 65%);
    padding: 0 4px;
}

.section-tag {
    display: inline-block;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.25;
}

.section-subtitle {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 48px;
    max-width: 600px;
}

/* Problem Section */
.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 48px;
}

.problem-card {
    flex: 1 1 280px;
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #d9534f;
    box-shadow: 0 4px 20px var(--shadow);
}

.problem-card h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 12px;
}

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

/* Insight Section */
.insight-block {
    background: var(--primary);
    color: var(--white);
    padding: 60px;
    border-radius: 16px;
    margin: 60px 0;
}

.insight-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.insight-block p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

.citation {
    color: var(--accent);
    font-weight: 600;
    cursor: pointer;
}

.citation:hover {
    text-decoration: underline;
}

/* Benefits */
.benefits-section {
    padding: 100px 24px;
    background: var(--white);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 48px;
}

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

.benefit-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--bg-alt);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.benefit-content h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 8px;
}

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

/* Services / Pricing */
.services-section {
    padding: 100px 24px;
    background: var(--bg-alt);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 48px;
}

.service-card {
    flex: 1 1 320px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px var(--shadow-strong);
}

.service-image {
    width: 100%;
    height: 200px;
    background-color: var(--bg-alt);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-body {
    padding: 28px;
}

.service-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

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

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 24px;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    flex: 1 1 340px;
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 28px;
    font-size: 64px;
    color: var(--bg-alt);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
}

.testimonial-info h4 {
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 13px;
    color: var(--text-light);
}

/* Form Section */
.form-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #1e3d2a 100%);
}

.form-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.form-info {
    flex: 1;
    color: var(--white);
}

.form-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.form-info p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 32px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
}

.form-benefits li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 12px;
}

.form-box {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.form-title {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 28px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}

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

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 24px;
    box-shadow: 0 -4px 20px var(--shadow-strong);
    z-index: 90;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

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

.sticky-cta-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 24px 40px;
}

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

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

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-copy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover {
    color: var(--white);
}

/* References */
.references-section {
    background: var(--bg-alt);
    padding: 60px 24px;
}

.references-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}

.references-list {
    list-style: none;
}

.references-list li {
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.references-list a {
    color: var(--primary);
    word-break: break-all;
}

/* Disclaimer */
.disclaimer {
    background: var(--bg);
    padding: 40px 24px;
    border-top: 1px solid var(--border);
}

.disclaimer-text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px 24px;
    z-index: 200;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

.cookie-accept:hover {
    background: #d4ad2e;
}

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

.cookie-reject:hover {
    border-color: var(--white);
}

/* Thanks Page */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    text-align: center;
}

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.thanks-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.thanks-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-service {
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 32px;
}

/* About Page */
.page-hero {
    background: var(--primary);
    color: var(--white);
    padding: 100px 24px 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 24px;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-grid.reverse {
    flex-direction: row-reverse;
}

.about-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--bg-alt);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 17px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-details h3 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Legal Pages */
.legal-content {
    padding: 80px 24px;
}

.legal-content h1 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 24px;
    color: var(--dark);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 20px;
    color: var(--dark);
    margin-top: 32px;
    margin-bottom: 12px;
}

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

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

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

/* Responsive */
@media (max-width: 900px) {
    .hero-title {
        font-size: 38px;
    }

    .form-container {
        flex-direction: column;
    }

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

    .about-grid.reverse {
        flex-direction: column;
    }

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

    .footer-grid {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 8px 24px var(--shadow);
    }

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

    .main-nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 32px;
    }

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

    .section-title {
        font-size: 28px;
    }

    .editorial-section {
        padding: 60px 24px;
    }

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

@media (max-width: 480px) {
    .hero-content {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .form-box {
        padding: 28px;
    }

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

    .testimonial-card {
        flex: 1 1 100%;
    }
}
