:root {
    --color-primary: #2a5d4f;
    --color-secondary: #8b4f6c;
    --color-accent: #d4a574;
    --color-dark: #1a1a2e;
    --color-light: #f8f6f3;
    --color-muted: #6b7280;
    --color-bg-alt: #e8e4df;
    --color-card-bg: #ffffff;
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-light);
}

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

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

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

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

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

.header {
    background: var(--color-card-bg);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.ad-disclosure {
    background: var(--color-accent);
    color: var(--color-dark);
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    margin-left: 12px;
}

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

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

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

.nav-main 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(--color-dark);
    margin: 5px 0;
    transition: 0.3s;
}

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--color-dark);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 60px 40px;
    color: var(--color-light);
}

.hero-tag {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-dark);
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 36px;
    line-height: 1.8;
}

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

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

.btn-primary:hover {
    background: #c49463;
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

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

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

.btn-outline-light:hover {
    background: var(--color-light);
    color: var(--color-dark);
}

.section {
    padding: 100px 0;
}

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

.section-dark {
    background: var(--color-dark);
    color: var(--color-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.section-dark .section-title {
    color: var(--color-light);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

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

.problem-image {
    flex: 1;
    min-width: 300px;
    background-color: var(--color-muted);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

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

.problem-list li {
    padding: 16px 0;
    padding-left: 36px;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.problem-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-size: 1.4rem;
    font-weight: 700;
}

.insight-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e4a3d 100%);
    color: var(--color-light);
    padding: 80px 0;
}

.insight-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.insight-text {
    flex: 1.5;
    min-width: 300px;
}

.insight-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.insight-text p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 16px;
    line-height: 1.8;
}

.insight-stats {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-item {
    background: rgba(255,255,255,0.1);
    padding: 24px;
    border-radius: var(--radius-md);
}

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

.stat-label {
    font-size: 0.95rem;
    opacity: 0.85;
}

.benefits-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    background: var(--color-card-bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.8rem;
}

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

.benefit-card p {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.testimonial-section {
    background: var(--color-light);
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--color-card-bg);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--color-accent);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--color-dark);
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--color-muted);
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: var(--color-card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-image {
    height: 200px;
    background-color: var(--color-muted);
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
}

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

.service-content p {
    color: var(--color-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

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

.price-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-period {
    color: var(--color-muted);
    font-size: 0.9rem;
}

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

.features-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.cta-section {
    background: linear-gradient(to right, var(--color-secondary), #6b3a50);
    color: var(--color-light);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-section {
    background: var(--color-light);
}

.form-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
    min-width: 300px;
}

.form-info h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.form-info p {
    color: var(--color-muted);
    margin-bottom: 30px;
}

.form-container {
    flex: 1;
    min-width: 350px;
    background: var(--color-card-bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e5e5;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--color-light);
}

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

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

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    fill: var(--color-primary);
}

.footer {
    background: var(--color-dark);
    color: var(--color-light);
    padding: 80px 0 30px;
}

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

.footer-brand {
    flex: 1.5;
    min-width: 280px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 16px;
}

.footer-brand p {
    opacity: 0.7;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-links {
    flex: 1;
    min-width: 180px;
}

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

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.85rem;
    opacity: 0.7;
}

.disclaimer {
    background: var(--color-bg-alt);
    padding: 40px 0;
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.8;
}

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

.references-section {
    background: var(--color-light);
    padding: 60px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.references-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--color-dark);
}

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

.references-list li {
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--color-muted);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: var(--color-light);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

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

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

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

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

.page-header {
    background: var(--color-primary);
    color: var(--color-light);
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 16px;
}

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

.page-content {
    padding: 80px 0;
}

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

.page-content h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.page-content p {
    margin-bottom: 16px;
    color: var(--color-muted);
}

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

.page-content li {
    margin-bottom: 8px;
    color: var(--color-muted);
}

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

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

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.contact-item p {
    color: var(--color-muted);
}

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

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: var(--color-light);
}

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

.thanks-content p {
    font-size: 1.1rem;
    color: var(--color-muted);
    margin-bottom: 30px;
}

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 998;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.sticky-cta .btn {
    box-shadow: var(--shadow-medium);
}

@media (max-width: 900px) {
    .nav-main {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-card-bg);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-medium);
    }

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

    .nav-main a {
        padding: 16px 0;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        width: 100%;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-content {
        padding: 40px 24px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

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

@media (max-width: 600px) {
    .hero-title {
        font-size: 1.9rem;
    }

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

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

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