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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #27ae60;
    --light-bg: #f8f9fa;
    --dark-bg: #1a252f;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --border-color: #dfe6e9;
    --spacing-unit: 1rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    font-size: 16px;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background: #229954;
}

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

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

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.nav-links a {
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: 0.3rem 0;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero-immersive {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"%3E%3Crect fill="%23000" opacity="0.3" width="1200" height="800"/%3E%3C/svg%3E');
    background-size: cover;
}

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

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtext {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    color: var(--primary-color);
}

/* Story Sections */
.story-intro,
.insight-reveal,
.urgency-soft {
    padding: 6rem 0;
    background: white;
}

.story-intro h2,
.insight-reveal h2,
.urgency-soft h3 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 2rem;
    line-height: 1.3;
    color: var(--primary-color);
}

.story-intro p,
.insight-reveal p,
.urgency-soft p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

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

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

.content-left,
.content-right {
    flex: 1;
}

.content-left h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.content-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.image-placeholder img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* Insight Box */
.insight-box {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 3rem;
    border-radius: 16px;
    color: white;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.insight-box h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.insight-box p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.steps-flow {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    flex: 1;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.step h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-centered {
    text-align: center;
}

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

.testimonial-inline.secondary {
    background: white;
}

.testimonial-large {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-primary);
    position: relative;
    padding: 2rem 3rem;
    border-left: 5px solid var(--secondary-color);
}

.testimonial-large footer {
    font-style: normal;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Visual Showcase */
.visual-showcase {
    padding: 6rem 0;
    background: white;
}

.showcase-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.showcase-item {
    flex: 1;
    max-width: 400px;
}

.showcase-item .image-placeholder {
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.showcase-item p {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Trust Building */
.trust-building {
    padding: 6rem 0;
    background: var(--dark-bg);
    color: white;
}

.trust-building h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: white;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

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

.trust-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.trust-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Urgency Box */
.urgency-box {
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 2.5rem;
    border-radius: 8px;
}

.urgency-box h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.urgency-box p {
    color: #856404;
    font-size: 1.1rem;
}

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

.services-pricing h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.badge-popular {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-primary);
}

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

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.form-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.order-form {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    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);
}

.form-privacy {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 2px;
}

.checkbox-label span {
    flex: 1;
    color: var(--text-secondary);
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover,
.btn-primary-large:hover {
    background: #c0392b;
    transform: translateY(-2px);
    color: white;
}

.btn-primary-large {
    font-size: 1.3rem;
    padding: 1.3rem 3.5rem;
}

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

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

/* Footer */
.site-footer {
    background: var(--dark-bg);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

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

.footer-col ul li a:hover {
    color: white;
}

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

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

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.5);
    color: white;
}

/* Page Hero */
.page-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    margin-top: 70px;
}

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

.hero-lead {
    font-size: 1.4rem;
    opacity: 0.95;
}

/* About Page */
.about-content {
    padding: 5rem 0;
}

.content-block {
    margin-bottom: 4rem;
}

.content-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.content-block p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.value-item p {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

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

.cta-about h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

/* Services Page */
.services-detailed {
    padding: 5rem 0;
}

.service-detail {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

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

.service-detail h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-detail h3 {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.feature-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.service-pricing-detail {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0;
}

.price-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

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

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

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

/* Contact Page */
.contact-section {
    padding: 5rem 0;
}

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

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
}

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

.contact-note {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.contact-note p {
    margin: 0;
    color: #2e7d32;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

/* Thanks Page */
.thanks-section {
    padding: 8rem 0;
    min-height: 70vh;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.thanks-info {
    background: #e8f5e9;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.thanks-info p {
    margin: 0;
    font-size: 1.1rem;
    color: #2e7d32;
}

.thanks-next-steps {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

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

.steps-list li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0.8rem;
    background: var(--accent-color);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
}

.thanks-footer-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.thanks-footer-note p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.thanks-footer-note a {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 5rem 0;
    min-height: 60vh;
}

.legal-date {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin: 1.5rem 0 2rem 2rem;
}

.legal-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cookie-table thead {
    background: var(--primary-color);
    color: white;
}

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

.cookie-table th {
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .steps-flow,
    .showcase-grid {
        flex-wrap: wrap;
    }

    .split-content,
    .service-detail {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-immersive {
        margin-top: 120px;
    }

    .page-hero {
        padding: 8rem 0 4rem;
        margin-top: 120px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

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

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

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .cookie-table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    .container,
    .container-narrow,
    .container-wide {
        padding: 0 1rem;
    }

    .order-form {
        padding: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}