/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #c89b6d;
    --accent-color: #8b7355;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0d8ce;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.2rem;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 1.6rem;
}

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

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

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

/* Container Layouts */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Navigation */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-visual {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f6f3 0%, #e8e3db 100%);
    margin-top: 70px;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-visual h1 {
    font-size: 3.5rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    font-style: italic;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23f8f6f3" width="1200" height="800"/><path fill="%23e0d8ce" opacity="0.3" d="M0,400 Q300,300 600,400 T1200,400 L1200,800 L0,800 Z"/></svg>') center/cover;
    opacity: 0.3;
}

/* Page Hero */
.page-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(to bottom, var(--bg-light), var(--bg-white));
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

/* Story Intro */
.story-intro {
    padding: 6rem 0;
    background: var(--bg-white);
}

.text-large {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Problem Section */
.problem-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.container-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.container-split.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    min-height: 400px;
    background: var(--border-color);
    border-radius: 8px;
}

.image-decor-1 {
    background: linear-gradient(135deg, #c89b6d 0%, #8b7355 100%);
}

.image-decor-2 {
    background: linear-gradient(135deg, #8b7355 0%, #2c3e50 100%);
}

.image-founder {
    background: linear-gradient(135deg, #2c3e50 0%, #c89b6d 100%);
}

.problem-list {
    list-style: none;
    margin: 2rem 0;
}

.problem-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
}

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

.emphasis-text {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 2rem;
}

/* Insight Section */
.insight-reveal {
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--bg-white);
}

.insight-reveal h2 {
    color: var(--bg-white);
}

.insight-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid var(--secondary-color);
}

/* Approach Section */
.approach-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.approach-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.card-approach {
    flex: 1;
    min-width: 250px;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.card-approach:hover {
    transform: translateY(-5px);
}

.card-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-inline {
    padding: 5rem 0;
    background: var(--bg-light);
}

.testimonial-inline.secondary {
    background: var(--bg-white);
}

blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    padding: 2rem 0;
    border-left: 4px solid var(--secondary-color);
    padding-left: 2rem;
}

cite {
    display: block;
    font-style: normal;
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 1rem;
}

/* Benefits Section */
.benefits-reveal {
    padding: 6rem 0;
    background: var(--bg-white);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-item {
    flex: 1;
    min-width: 280px;
}

.benefit-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Case Study */
.case-study {
    padding: 6rem 0;
    background: var(--bg-light);
}

/* Trust Elements */
.trust-elements {
    padding: 6rem 0;
    background: var(--bg-white);
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    margin-top: 3rem;
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Services Preview */
.services-preview {
    padding: 6rem 0;
    background: var(--bg-light);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card.featured {
    border: 2px solid var(--secondary-color);
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 20px;
    font-weight: 600;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    font-size: 0.95rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 2rem;
}

/* Urgency Section */
.urgency-section {
    padding: 5rem 0;
    background: var(--secondary-color);
    color: var(--bg-white);
    text-align: center;
}

.urgency-section h2 {
    color: var(--bg-white);
}

/* Form Section */
.form-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.main-form {
    margin-top: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(200, 155, 109, 0.3);
}

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

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

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: var(--bg-light);
    text-align: center;
}

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

.btn-sticky {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* Footer */
.main-footer {
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

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

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

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

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

.cookie-content a {
    color: var(--secondary-color);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* About Page Specific */
.about-intro {
    padding: 4rem 0;
}

.founder-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.philosophy-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.philosophy-item {
    flex: 1;
    min-width: 250px;
}

.team-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.team-members {
    margin-top: 3rem;
}

.team-member {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.team-member:last-child {
    border-bottom: none;
}

.role {
    color: var(--secondary-color);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.values-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.values-list {
    margin-top: 2rem;
}

.value-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.value-item:last-child {
    border-bottom: none;
}

.value-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cta-section {
    padding: 6rem 0;
    background: var(--bg-light);
    text-align: center;
}

/* Services Page */
.services-intro {
    padding: 4rem 0;
    background: var(--bg-white);
}

.services-detailed {
    padding: 4rem 0;
    background: var(--bg-light);
}

.service-detail {
    background: var(--bg-white);
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-detail.featured-service {
    border: 3px solid var(--secondary-color);
}

.service-badge {
    background: var(--secondary-color);
    color: white;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-body h3 {
    margin-top: 2rem;
    color: var(--primary-color);
}

.service-includes {
    list-style: none;
    margin: 1.5rem 0;
}

.service-includes li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-faq {
    padding: 6rem 0;
    background: var(--bg-white);
}

.faq-item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

/* Contact Page */
.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-note {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

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

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-cta {
    padding: 4rem 0;
    background: var(--bg-light);
    text-align: center;
}

/* Thanks Page */
.thanks-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: var(--bg-light);
}

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

.thanks-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.thanks-content {
    padding: 4rem 0;
}

.thanks-info {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.thanks-steps {
    margin-top: 2rem;
}

.thanks-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.thanks-service-info {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-white);
    border-left: 4px solid var(--secondary-color);
}

.thanks-tips {
    margin: 3rem 0;
}

.thanks-tips ul {
    margin-top: 1rem;
}

.thanks-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.thanks-explore {
    padding: 4rem 0;
    background: var(--bg-light);
}

.explore-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.explore-link {
    padding: 1rem 2rem;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.explore-link:hover {
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-page h2 {
    margin-top: 3rem;
    color: var(--primary-color);
}

.legal-page h3 {
    margin-top: 2rem;
    color: var(--accent-color);
}

.legal-page ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .hero-visual {
        height: 70vh;
    }

    .hero-visual h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .container-split.reverse {
        flex-direction: column;
    }

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

    .trust-grid {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

    .btn-sticky {
        display: block;
        width: 100%;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

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