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

:root {
    --color-primary: #5d4e37;
    --color-secondary: #8b7355;
    --color-accent: #c9a86c;
    --color-light: #f9f6f1;
    --color-dark: #2d2a26;
    --color-text: #3d3d3d;
    --color-text-light: #6b6b6b;
    --color-white: #ffffff;
    --color-success: #4a7c59;
    --color-warning: #d4a574;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', system-ui, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

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

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

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
}

.nav-menu {
    display: none;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    padding: 20px;
}

.nav-menu.active {
    display: block;
}

.nav-menu li {
    margin-bottom: 15px;
}

.nav-menu a {
    color: var(--color-dark);
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-accent);
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        background: none;
        box-shadow: none;
        padding: 0;
        gap: 30px;
    }

    .nav-menu li {
        margin: 0;
    }
}

.hero-immersive {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1566140967404-b8b3932483f5?w=1920&h=1080&fit=crop') center/cover no-repeat;
    padding: 100px 20px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(93,78,55,0.85) 0%, rgba(45,42,38,0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    color: var(--color-white);
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-content h1 {
    color: var(--color-white);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: var(--color-accent);
    color: var(--color-dark);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: var(--color-warning);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--color-dark);
}

.cta-primary.large {
    padding: 20px 48px;
    font-size: 1.1rem;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--color-primary);
    font-weight: 600;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

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

.hook-section {
    padding: 80px 20px;
    background: var(--color-light);
    text-align: center;
}

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

.hook-section h2 {
    margin-bottom: 20px;
}

.hook-text {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.story-section {
    padding: 100px 20px;
}

.story-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.story-wrapper.reverse {
    flex-direction: column;
}

@media (min-width: 768px) {
    .story-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .story-wrapper.reverse {
        flex-direction: row-reverse;
    }

    .story-image,
    .story-content {
        flex: 1;
    }
}

.story-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.story-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.story-content h3 {
    margin-bottom: 20px;
}

.story-content p {
    margin-bottom: 15px;
    color: var(--color-text-light);
}

.problem-amplify {
    padding: 80px 20px;
    background: var(--color-dark);
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .problem-grid {
        flex-direction: row;
    }
}

.problem-card {
    flex: 1;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    text-align: center;
}

.problem-card.highlight {
    background: rgba(201,168,108,0.15);
    border: 1px solid var(--color-accent);
}

.problem-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.problem-icon svg {
    width: 100%;
    height: 100%;
    stroke: #e57373;
}

.problem-icon.success svg {
    stroke: var(--color-success);
}

.problem-card h4 {
    color: var(--color-white);
    margin-bottom: 10px;
}

.problem-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.insight-section {
    padding: 100px 20px;
}

.insight-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .insight-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .insight-content,
    .insight-visual {
        flex: 1;
    }
}

.insight-tag {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--color-success);
    font-weight: 600;
    margin-bottom: 10px;
}

.insight-content h2 {
    margin-bottom: 20px;
}

.insight-content p {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

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

.insight-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--color-text);
}

.insight-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--color-accent);
    border-radius: 50%;
}

.insight-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.trust-testimonials {
    padding: 80px 20px;
    background: var(--color-light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials-flow {
        flex-direction: row;
    }
}

.testimonial-card {
    flex: 1;
    padding: 30px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

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

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--color-text);
}

.testimonial-card cite {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-style: normal;
}

.cta-break {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    text-align: center;
    color: var(--color-white);
}

.cta-break h3 {
    color: var(--color-white);
    margin-bottom: 15px;
}

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

.benefits-reveal {
    padding: 100px 20px;
}

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

.benefits-tag {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 10px;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    padding: 30px;
    background: var(--color-light);
    border-radius: var(--radius-md);
}

.benefit-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.benefit-item h4 {
    margin-bottom: 10px;
}

.benefit-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.pricing-reveal {
    padding: 100px 20px;
    background: var(--color-light);
}

.pricing-intro {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-intro p {
    color: var(--color-text-light);
    margin-top: 10px;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    flex: 1 1 280px;
    max-width: 350px;
    padding: 35px 25px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.price-card.featured {
    border: 2px solid var(--color-accent);
    transform: scale(1.02);
}

.price-badge {
    position: absolute;
    top: -10px;
    left: 25px;
    padding: 5px 15px;
    background: var(--color-secondary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.price-badge.highlight {
    background: var(--color-accent);
    color: var(--color-dark);
}

.price-card h3 {
    margin-bottom: 10px;
    margin-top: 10px;
}

.price-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.price-amount span {
    font-size: 1rem;
    font-weight: 400;
}

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

.price-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--color-light);
}

.price-features li:last-child {
    border-bottom: none;
}

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

.select-service-btn {
    width: 100%;
    padding: 14px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.select-service-btn:hover {
    background: var(--color-secondary);
}

.urgency-section {
    padding: 60px 20px;
}

.urgency-box {
    padding: 40px;
    background: linear-gradient(135deg, #fff5e6 0%, #ffecd2 100%);
    border-radius: var(--radius-lg);
    text-align: center;
    border-left: 5px solid var(--color-warning);
}

.urgency-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

.urgency-box h3 {
    margin-bottom: 10px;
    color: var(--color-primary);
}

.urgency-box p {
    color: var(--color-text-light);
}

.form-section {
    padding: 100px 20px;
    background: var(--color-white);
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.form-wrapper.compact {
    max-width: 600px;
    background: var(--color-white);
    border: 1px solid #e0e0e0;
}

@media (min-width: 768px) {
    .form-wrapper:not(.compact) {
        flex-direction: row;
    }
}

.form-content {
    flex: 1;
    padding: 50px;
}

.form-content h2 {
    margin-bottom: 15px;
}

.form-content > p {
    color: var(--color-text-light);
    margin-bottom: 30px;
}

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

.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 16px;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color var(--transition);
}

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

.cta-submit {
    width: 100%;
    padding: 16px;
    background: var(--color-accent);
    color: var(--color-dark);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.cta-submit:hover {
    background: var(--color-warning);
    transform: translateY(-2px);
}

.form-sidebar {
    flex: 0 0 300px;
    padding: 50px;
    background: var(--color-primary);
    color: var(--color-white);
}

.sidebar-trust h4 {
    color: var(--color-white);
    margin-bottom: 20px;
}

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

.sidebar-trust li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
}

.sidebar-trust li:last-child {
    border-bottom: none;
}

.final-cta {
    padding: 100px 20px;
    background: var(--color-dark);
    text-align: center;
    color: var(--color-white);
}

.final-cta h2 {
    color: var(--color-white);
    margin-bottom: 20px;
}

.final-cta p {
    opacity: 0.85;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.site-footer {
    padding: 60px 20px 30px;
    background: var(--color-light);
}

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

.footer-brand {
    flex: 1 1 250px;
}

.footer-brand h3 {
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.footer-links,
.footer-legal {
    flex: 1 1 150px;
}

.footer-links h4,
.footer-legal h4 {
    font-size: 1rem;
    margin-bottom: 15px;
}

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

.footer-links li,
.footer-legal li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #ddd;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-light);
    font-size: 0.85rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--color-accent);
    text-align: center;
    padding: 15px;
    transform: translateY(100%);
    transition: transform var(--transition);
}

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

.sticky-cta a {
    color: var(--color-dark);
    font-weight: 600;
    font-size: 1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 20px;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.cookie-content p {
    font-size: 0.9rem;
    flex: 1;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

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

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

.cookie-btn:hover {
    opacity: 0.9;
}

.page-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--color-light) 0%, #e8e4dd 100%);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 15px;
}

.page-hero p {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.thanks-hero {
    padding: 150px 20px 80px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-success);
    stroke-width: 1.5;
}

.thanks-message {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.order-summary {
    background: var(--color-light);
    padding: 30px;
    border-radius: var(--radius-md);
    margin-bottom: 40px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.order-summary h3 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.order-detail {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.order-detail:last-child {
    border-bottom: none;
}

.thanks-next {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 40px;
}

.thanks-next h3 {
    margin-bottom: 20px;
    text-align: center;
}

.next-steps {
    list-style: none;
    counter-reset: step;
}

.next-steps li {
    counter-increment: step;
    padding: 15px 0 15px 50px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.next-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 12px;
    width: 30px;
    height: 30px;
    background: var(--color-accent);
    color: var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.thanks-trust {
    margin-bottom: 30px;
}

.thanks-extra {
    padding: 80px 20px;
    background: var(--color-light);
}

.thanks-extra h2 {
    text-align: center;
    margin-bottom: 40px;
}

.related-products {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.related-card {
    flex: 1 1 250px;
    max-width: 300px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-card h4 {
    padding: 15px 20px 5px;
}

.related-card p {
    padding: 0 20px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.related-price {
    display: block;
    padding: 15px 20px;
    font-weight: 700;
    color: var(--color-primary);
}

.values-section {
    padding: 80px 20px;
    background: var(--color-light);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    flex: 1 1 280px;
    max-width: 350px;
    padding: 40px 30px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-card h3 {
    margin-bottom: 15px;
}

.value-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.team-section {
    padding: 80px 20px;
}

.team-intro {
    text-align: center;
    margin-bottom: 50px;
}

.team-intro p {
    color: var(--color-text-light);
    margin-top: 10px;
}

.team-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.stat-item {
    flex: 1 1 200px;
    max-width: 250px;
    padding: 40px 30px;
    background: var(--color-light);
    border-radius: var(--radius-md);
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.process-section {
    padding: 80px 20px;
    background: var(--color-dark);
    color: var(--color-white);
}

.process-section .section-title {
    color: var(--color-white);
}

.process-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    color: var(--color-white);
    margin-bottom: 10px;
}

.process-step p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.about-cta {
    padding: 80px 20px;
    background: var(--color-accent);
    text-align: center;
}

.about-cta h2 {
    margin-bottom: 15px;
}

.about-cta p {
    margin-bottom: 25px;
    color: var(--color-dark);
}

.about-cta .cta-primary {
    background: var(--color-dark);
    color: var(--color-white);
}

.about-cta .cta-primary:hover {
    background: var(--color-primary);
}

.services-filter {
    padding: 30px 20px;
    background: var(--color-white);
    border-bottom: 1px solid #eee;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.filter-bar span {
    font-weight: 500;
    margin-right: 10px;
}

.filter-btn {
    padding: 8px 20px;
    background: var(--color-light);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all var(--transition);
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
}

.services-grid-section {
    padding: 60px 20px;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card-large {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
    .service-card-large {
        flex-direction: row;
    }

    .service-card-large:nth-child(even) {
        flex-direction: row-reverse;
    }

    .service-image,
    .service-details {
        flex: 1;
    }
}

.service-image {
    position: relative;
}

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

.service-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 16px;
    background: var(--color-secondary);
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.service-badge.highlight {
    background: var(--color-accent);
    color: var(--color-dark);
}

.service-details {
    padding: 40px;
}

.age-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-light);
    color: var(--color-text-light);
    font-size: 0.8rem;
    border-radius: 15px;
    margin-bottom: 10px;
}

.service-details h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-details > p {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.9rem;
}

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

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

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

.services-cta {
    padding: 60px 20px;
    background: var(--color-light);
    text-align: center;
}

.services-cta h2 {
    margin-bottom: 15px;
}

.services-cta p {
    margin-bottom: 25px;
    color: var(--color-text-light);
}

.order-form-section {
    padding: 80px 20px;
}

.contact-content {
    padding: 60px 20px;
}

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

.contact-info {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    padding: 30px;
    background: var(--color-light);
    border-radius: var(--radius-md);
}

.info-card.highlight {
    background: var(--color-accent);
}

.info-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.info-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-primary);
}

.info-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.info-note {
    font-size: 0.85rem;
    margin-top: 5px;
    opacity: 0.8;
}

.contact-map {
    flex: 1 1 400px;
}

.map-placeholder {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    min-height: 300px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 10px 20px;
    background: var(--color-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.faq-section {
    padding: 80px 20px;
    background: var(--color-light);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 10px);
    min-width: 280px;
    padding: 30px;
    background: var(--color-white);
    border-radius: var(--radius-md);
}

.faq-item h4 {
    margin-bottom: 10px;
    color: var(--color-primary);
}

.faq-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.contact-cta {
    padding: 60px 20px;
    text-align: center;
}

.contact-cta h2 {
    margin-bottom: 15px;
}

.contact-cta p {
    margin-bottom: 25px;
    color: var(--color-text-light);
}

.legal-hero {
    padding: 150px 20px 60px;
    background: var(--color-light);
    text-align: center;
}

.legal-updated {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-top: 10px;
}

.legal-content {
    padding: 60px 20px;
}

.legal-article h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--color-primary);
}

.legal-article h2:first-child {
    margin-top: 0;
}

.legal-article h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.legal-article p {
    margin-bottom: 15px;
    color: var(--color-text);
}

.legal-article ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-article li {
    margin-bottom: 8px;
    color: var(--color-text);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

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

.cookie-table td {
    color: var(--color-text-light);
}
