:root {
    --color-primary: #9f1239;
    --color-secondary: #be123c;
    --color-accent: #f43f5e;
    --color-background: #fff1f2;
    --color-surface: #ffffff;
    --color-text: #881337;
    --color-muted: #fda4af;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
}

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

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

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

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

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-surface);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-surface);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(159, 18, 57, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

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

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-link:hover {
    color: var(--color-secondary);
    transform: translateX(4px);
}

.boxed-nav {
    position: absolute;
    top: 2rem;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    background-color: var(--color-surface);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--color-text);
    font-weight: 600;
    font-family: var(--font-heading);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hero-split {
    background-color: var(--color-surface);
    padding-top: 8rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    padding: 2rem 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text);
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 16px;
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.floating-testimonial {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background-color: var(--color-surface);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 300px;
    z-index: 10;
}

.floating-testimonial p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--color-text);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--color-primary);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--color-text);
    opacity: 0.7;
}

.features-section {
    padding: 6rem 0;
    background-color: var(--color-background);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text);
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background-color: var(--color-surface);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-background);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.feature-item h3 {
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--color-text);
    opacity: 0.9;
    margin-bottom: 0;
}

.white-spacious {
    padding: 8rem 0;
    background-color: var(--color-surface);
}

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

.lead {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.domain-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.domain-item h4 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.domain-item p {
    color: var(--color-text);
    opacity: 0.9;
}

.cta-split {
    padding: 6rem 0;
    background-color: var(--color-background);
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-content h2 {
    margin-bottom: 1.5rem;
}

.cta-benefits {
    margin: 2rem 0;
}

.benefit-check {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefit-check svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.cta-image img {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.services-preview {
    padding: 6rem 0;
    background-color: var(--color-surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--color-surface);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

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

.service-card-content {
    padding: 2rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-text);
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.testimonials-section {
    padding: 6rem 0;
    background-color: var(--color-background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--color-surface);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-content p {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.stats-footer {
    background-color: var(--color-surface);
}

.footer-stats {
    background-color: var(--color-primary);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-stat-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-surface);
    font-family: var(--font-heading);
}

.footer-stat-label {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.footer-main {
    padding: 4rem 0 2rem;
    background-color: var(--color-text);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-column h4 {
    color: var(--color-surface);
    margin-bottom: 1.5rem;
}

.footer-column p {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.footer-contact p {
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-muted);
    transition: var(--transition);
}

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

.footer-siret {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--color-muted);
}

.footer-bottom {
    padding: 1.5rem 0;
    background-color: var(--color-primary);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-surface);
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-surface);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.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 {
    margin: 0;
    color: var(--color-text);
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-link {
    color: var(--color-primary);
    text-decoration: underline;
    font-size: 0.95rem;
}

.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-surface);
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 5rem;
}

.page-header h1 {
    color: var(--color-surface);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--color-muted);
    margin: 0;
}

.content-section {
    padding: 6rem 0;
    background-color: var(--color-surface);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text h2 {
    margin-bottom: 1.5rem;
}

.content-text p {
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.content-image img {
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: var(--color-surface);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-primary);
}

.story-section {
    padding: 6rem 0;
    background-color: var(--color-surface);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.timeline {
    margin-top: 4rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 60px;
    top: 80px;
    width: 2px;
    height: calc(100% + 1rem);
    background-color: var(--color-muted);
}

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

.timeline-content h4 {
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--color-text);
    opacity: 0.9;
    margin: 0;
}

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

.team-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.expertise-areas {
    margin-top: 4rem;
}

.expertise-areas h3 {
    text-align: center;
    margin-bottom: 3rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.expertise-item {
    background-color: var(--color-surface);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.expertise-item h4 {
    margin-bottom: 0.75rem;
}

.expertise-item p {
    color: var(--color-text);
    opacity: 0.9;
    margin: 0;
}

.approach-section {
    padding: 6rem 0;
    background-color: var(--color-surface);
}

.approach-content {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-steps {
    margin-top: 4rem;
    display: grid;
    gap: 2rem;
}

.approach-step {
    background-color: var(--color-background);
    padding: 3rem;
    border-radius: 12px;
    position: relative;
    padding-left: 6rem;
}

.step-number {
    position: absolute;
    left: 3rem;
    top: 3rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.approach-step h3 {
    margin-bottom: 1rem;
}

.approach-step p {
    color: var(--color-text);
    opacity: 0.9;
    margin: 0;
}

.cta-section {
    padding: 6rem 0;
    background-color: var(--color-background);
}

.cta-box {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 4rem;
    border-radius: 16px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-box h2 {
    color: var(--color-surface);
    margin-bottom: 1.5rem;
}

.cta-box p {
    color: var(--color-muted);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-box .btn-primary {
    background-color: var(--color-surface);
    color: var(--color-primary);
    border-color: var(--color-surface);
}

.cta-box .btn-primary:hover {
    background-color: var(--color-background);
    border-color: var(--color-background);
}

.services-intro {
    padding: 4rem 0;
    background-color: var(--color-surface);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail {
    padding: 6rem 0;
    background-color: var(--color-surface);
}

.service-detail.alternate {
    background-color: var(--color-background);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.service-lead {
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-features {
    margin: 2rem 0;
}

.service-features h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

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

.service-specs {
    background-color: var(--color-background);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-muted);
}

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

.spec-item strong {
    color: var(--color-primary);
}

.spec-item span {
    color: var(--color-text);
}

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

.additional-services {
    padding: 6rem 0;
    background-color: var(--color-background);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.additional-card {
    background-color: var(--color-surface);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.additional-card h3 {
    margin-bottom: 1rem;
}

.additional-card p {
    color: var(--color-text);
    opacity: 0.9;
    margin: 0;
}

.process-section {
    padding: 6rem 0;
    background-color: var(--color-surface);
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: calc(100% - 50px);
    background-color: var(--color-muted);
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.process-content h3 {
    margin-bottom: 0.75rem;
}

.process-content p {
    color: var(--color-text);
    opacity: 0.9;
    margin: 0;
}

.financing-section {
    padding: 6rem 0;
    background-color: var(--color-background);
}

.financing-content {
    max-width: 900px;
    margin: 0 auto;
}

.financing-options {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.financing-option {
    background-color: var(--color-surface);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.financing-option h4 {
    margin-bottom: 0.75rem;
}

.financing-option p {
    color: var(--color-text);
    opacity: 0.9;
    margin: 0;
}

.financing-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--color-surface);
    border-left: 4px solid var(--color-primary);
    border-radius: 8px;
    font-style: italic;
}

.contact-section {
    padding: 6rem 0;
    background-color: var(--color-surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper h2 {
    margin-bottom: 1rem;
}

.contact-form-wrapper > p {
    color: var(--color-text);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem;
    border: 2px solid var(--color-muted);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    transition: var(--transition);
    background-color: var(--color-surface);
}

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

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    cursor: pointer;
}

.form-note {
    font-size: 0.875rem;
    color: var(--color-text);
    opacity: 0.7;
    margin: 0;
}

.iti {
    width: 100%;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background-color: var(--color-background);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-info-card h3 {
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-surface);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.info-content strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.info-content p {
    margin: 0;
    color: var(--color-text);
}

.info-content a {
    color: var(--color-primary);
}

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

.benefits-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.map-section {
    padding: 4rem 0;
    background-color: var(--color-background);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.map-section > .container > p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--color-text);
}

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

.faq-section {
    padding: 6rem 0;
    background-color: var(--color-surface);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: var(--color-background);
    padding: 2rem;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

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

.thanks-section {
    padding: 8rem 0 6rem;
    background-color: var(--color-surface);
    text-align: center;
    margin-top: 5rem;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-icon svg {
    color: var(--color-surface);
}

.thanks-content h1 {
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 2rem;
}

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

.thanks-info {
    background-color: var(--color-background);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.thanks-info h3 {
    margin-bottom: 1rem;
}

.thanks-info p {
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

.next-steps {
    padding: 6rem 0;
    background-color: var(--color-background);
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step-card {
    background-color: var(--color-surface);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.step-card .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin: 0 auto 1.5rem;
    position: static;
}

.step-card h3 {
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--color-text);
    opacity: 0.9;
    margin: 0;
}

.legal-content {
    padding: 4rem 0 6rem;
    background-color: var(--color-surface);
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.legal-text p {
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.legal-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-text li {
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.legal-text strong {
    color: var(--color-primary);
}

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

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--color-surface);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        gap: 0;
        align-items: flex-start;
    }

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

    .nav-links li {
        width: 100%;
        margin: 0;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-container,
    .content-grid,
    .cta-container,
    .service-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image img {
        height: 400px;
    }

    .floating-testimonial {
        position: static;
        margin-top: 2rem;
        max-width: 100%;
    }

    .hero-stats {
        gap: 2rem;
    }

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

    .hero-cta .btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step,
    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }

    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .timeline-year {
        font-size: 1.25rem;
    }

    .approach-step {
        padding: 2rem;
        padding-left: 2rem;
    }

    .step-number {
        position: static;
        margin: 0 auto 1.5rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .features-grid,
    .services-grid,
    .testimonials-grid,
    .values-grid,
    .expertise-grid,
    .additional-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-split {
        padding-top: 7rem;
    }

    .page-header {
        padding: 6rem 0 3rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}