:root {
    --primary: #2d4a3e;
    --primary-dark: #1e332b;
    --secondary: #c9a962;
    --accent: #8b6914;
    --bg-light: #faf9f7;
    --bg-cream: #f5f3ef;
    --bg-dark: #1a1a1a;
    --text-dark: #2c2c2c;
    --text-light: #f9f9f9;
    --text-muted: #6b6b6b;
    --border: #e0dcd4;
    --shadow: rgba(0,0,0,0.08);
    --radius: 6px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

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

/* Header & Navigation */
.site-header {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--primary);
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-light);
}

.ad-disclosure {
    text-align: center;
    opacity: 0.9;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

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

.logo span {
    color: var(--secondary);
}

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

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

.main-nav a:hover {
    color: var(--primary);
}

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

.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(--text-dark);
    margin: 5px 0;
    transition: var(--transition);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-cream);
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 60px 0;
}

.hero-tagline {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.15;
    color: var(--primary-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.8;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

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

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

.btn-accent:hover {
    background: var(--accent);
    color: var(--text-light);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

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

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

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

.section-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--primary-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

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

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

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

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

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

.problem-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Story Section */
.story-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.story-block:nth-child(even) {
    flex-direction: row-reverse;
}

.story-image {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-cream);
    border-radius: var(--radius);
    overflow: hidden;
}

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

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

.story-content h3 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

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

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 24px var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.service-image {
    height: 220px;
    background-color: var(--bg-cream);
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-body {
    padding: 28px;
}

.service-body h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.service-body p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.price-label {
    font-size: 13px;
    color: var(--text-muted);
}

.price-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.price-note {
    font-size: 12px;
    color: var(--text-muted);
}

/* Trust Section */
.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

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

.trust-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--text-light);
}

.trust-item h4 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Testimonials */
.testimonials-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

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

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

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

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

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 18px;
}

.author-info h5 {
    font-size: 15px;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--text-light);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Styles */
.form-section {
    background: var(--bg-cream);
    padding: 80px 0;
}

.form-wrapper {
    max-width: 640px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: 0 8px 40px var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-light);
    transition: var(--transition);
    font-family: inherit;
}

.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, 74, 62, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    margin-top: 16px;
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
}

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

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

.benefit-text h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--text-light);
}

.benefit-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* About Page */
.about-hero {
    padding: 100px 0 60px;
    background: var(--bg-cream);
}

.about-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-main {
    flex: 2;
    min-width: 300px;
}

.about-sidebar {
    flex: 1;
    min-width: 280px;
    background: var(--bg-cream);
    padding: 32px;
    border-radius: var(--radius);
}

.about-main h2 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    margin-top: 40px;
}

.about-main h2:first-child {
    margin-top: 0;
}

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

.about-sidebar h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

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

.sidebar-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-list li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
}

/* Contact Page */
.contact-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

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

.contact-form-wrap {
    flex: 1;
    min-width: 340px;
}

.contact-block {
    margin-bottom: 32px;
}

.contact-block h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.contact-block p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.working-hours {
    background: var(--bg-cream);
    padding: 24px;
    border-radius: var(--radius);
    margin-top: 24px;
}

.working-hours h4 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.hours-list li:last-child {
    border-bottom: none;
}

/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 64px 0 24px;
}

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

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

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

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

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

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

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

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

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

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

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

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

.thanks-icon svg {
    width: 48px;
    height: 48px;
    fill: var(--text-light);
}

.thanks-content h1 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.thanks-content p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
}

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

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

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

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-page ul li {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 280px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}

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

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

.cookie-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

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

.cookie-accept:hover {
    background: var(--accent);
    color: var(--text-light);
}

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

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

/* Disclaimer */
.disclaimer-section {
    background: var(--bg-cream);
    padding: 32px 0;
    border-top: 1px solid var(--border);
}

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

/* References */
.references-section {
    padding: 48px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
}

.references-section h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

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

.references-list li {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.references-list li::before {
    content: attr(data-ref);
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 600;
}

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta .btn {
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .story-block,
    .story-block:nth-child(even) {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-light);
        flex-direction: column;
        padding: 80px 32px;
        gap: 0;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        transition: var(--transition);
    }

    .main-nav.active {
        right: 0;
    }

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

    .nav-toggle {
        display: block;
    }

    .form-wrapper {
        padding: 32px 24px;
    }

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

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

    .sticky-cta {
        right: 16px;
        bottom: 100px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 56px 0;
    }

    .hero {
        min-height: 75vh;
    }

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