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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #0ea5e9;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

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

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

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

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

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

.sticky-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.sticky-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.hero-immersive {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-narrow {
    max-width: 700px;
    text-align: center;
    color: white;
    padding: 2rem;
    z-index: 3;
}

.hero-content-narrow h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-hero:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.5);
}

.intro-story {
    padding: 5rem 0;
    background: var(--bg-white);
}

.intro-story h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.intro-story p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.story-image {
    margin: 3rem 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.problem-amplification {
    padding: 5rem 0;
    background: var(--bg-light);
}

.container-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.split-text {
    flex: 1;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.problem-list {
    list-style: none;
    padding: 0;
}

.problem-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
    font-size: 1.3rem;
}

.problem-list strong {
    color: var(--text-dark);
}

.btn-inline {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-inline:hover {
    transform: translateX(5px);
}

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

.insight-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.insight-box {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2.5rem 0;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.insight-highlight {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.7;
    margin: 0;
}

.trust-building {
    padding: 5rem 0;
    background: var(--bg-light);
}

.trust-building h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
}

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

.trust-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.trust-icon {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.trust-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.trust-card p {
    color: var(--text-light);
    margin: 0;
}

.testimonials-inline {
    padding: 5rem 0;
    background: var(--bg-white);
}

.testimonial-large {
    background: var(--bg-light);
    padding: 2.5rem;
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-large cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
}

.scenario-storytelling {
    padding: 5rem 0;
    background: var(--bg-light);
}

.container-split-reverse {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.scenario-cta {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.btn-secondary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.services-reveal {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

.service-blocks {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-block {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    position: relative;
}

.service-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.service-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    color: var(--text-dark);
}

.service-block p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

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

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

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

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

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

.urgency-box {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 3rem;
    border-radius: 15px;
    border-left: 6px solid var(--warning-color);
}

.urgency-highlight {
    font-weight: 700;
    color: var(--warning-color);
    font-size: 1.2rem;
}

.btn-urgency {
    display: inline-block;
    background: var(--warning-color);
    color: white;
    padding: 1.2rem 3rem;
    font-weight: 700;
    border-radius: 8px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.btn-urgency:hover {
    background: #d97706;
    transform: scale(1.05);
}

.benefits-layered {
    padding: 5rem 0;
    background: var(--bg-light);
}

.benefits-layered h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
}

.benefits-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.benefit-large {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-large img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.benefit-content {
    background: white;
    padding: 2rem;
}

.benefit-content h3 {
    margin-bottom: 1rem;
}

.benefit-small {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.benefit-small h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.order-form-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

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

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.service-selector {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-option {
    display: flex;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-option:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
}

.service-option input[type="radio"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.service-option span {
    font-size: 1.1rem;
    font-weight: 500;
}

.btn-next {
    background: var(--primary-color);
    color: white;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    flex: 1;
    min-width: 250px;
}

.form-group.full-width {
    flex: 1 1 100%;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    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 textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.btn-back {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 1rem 2rem;
    font-weight: 600;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back:hover {
    border-color: var(--text-dark);
}

.btn-submit {
    background: var(--success-color);
    color: white;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #059669;
    transform: scale(1.05);
}

.final-reassurance {
    padding: 5rem 0;
    background: var(--bg-light);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

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

.timeline-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.timeline-item p {
    color: var(--text-light);
    margin: 0;
}

.last-cta {
    padding: 5rem 0;
    background: var(--bg-white);
}

.cta-final-box {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
}

.cta-final-box h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-final-box p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.btn-final-cta {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1.3rem 4rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-final-cta:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    color: #9ca3af;
    font-size: 0.95rem;
}

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

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

.footer-col ul li a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1.5rem 1.5rem 0;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 41, 55, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.cookie-buttons button {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#cookie-accept {
    background: var(--success-color);
    color: white;
}

#cookie-accept:hover {
    background: #059669;
}

#cookie-reject {
    background: var(--bg-white);
    color: var(--text-dark);
}

#cookie-reject:hover {
    background: var(--border-color);
}

.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-light), white);
    text-align: center;
}

.page-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 4rem 0;
}

.about-story h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-values {
    padding: 4rem 0;
}

.about-values h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-team {
    padding: 4rem 0;
    background: var(--bg-white);
}

.team-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    flex: 1;
    min-width: 200px;
    text-align: center;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
}

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

.about-cta {
    padding: 4rem 0;
}

.cta-box {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.cta-box h2 {
    margin-bottom: 1rem;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

.services-detailed {
    padding: 4rem 0;
}

.service-detail-block {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

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

.service-detail-block img {
    flex: 1;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
}

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

.service-pricing-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.price-tag {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

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

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.benefit-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
}

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

.services-cta {
    padding: 4rem 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.contact-info {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

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

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 2rem;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.contact-faq {
    padding: 4rem 0;
}

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

.faq-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-light);
    margin: 0;
}

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

.thanks-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    text-align: center;
}

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

.thanks-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.thanks-hero h1 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.thanks-info {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.thanks-step h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.thanks-step p {
    color: var(--text-light);
    margin: 0;
}

.thanks-service {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.thanks-contact {
    margin-top: 3rem;
    text-align: center;
}

.legal-page {
    padding: 6rem 0 4rem;
}

.legal-intro {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-page h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.legal-page ul, .legal-page ol {
    margin-bottom: 1.5rem;
}

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

.legal-back {
    margin-top: 4rem;
    text-align: center;
}

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

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

.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hero-content-narrow h1 {
        font-size: 2rem;
    }

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

    .container-split,
    .container-split-reverse {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .benefits-asymmetric {
        flex-direction: column;
    }

    .benefit-large {
        flex: 1 1 100%;
    }

    .benefit-small {
        flex: 1 1 100%;
    }

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

    .sticky-btn {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 0.9rem;
    }

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

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-buttons button {
        width: 100%;
    }

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

    .btn-back,
    .btn-submit {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

    .cookies-table {
        font-size: 0.85rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .nav-floating {
        padding: 1rem;
    }

    .hero-immersive {
        height: 70vh;
        min-height: 500px;
    }

    .main-form {
        padding: 1.5rem;
    }

    .service-block {
        padding: 1.5rem;
    }

    .cta-final-box {
        padding: 2.5rem 1.5rem;
    }

    .thanks-info {
        padding: 2rem 1.5rem;
    }
}
