:root {
    --color-primary: #1a5f4a;
    --color-primary-dark: #134539;
    --color-primary-light: #2d8a6e;
    --color-secondary: #f4a261;
    --color-accent: #e76f51;
    --color-dark: #1a1a2e;
    --color-dark-soft: #2d2d44;
    --color-light: #fafafa;
    --color-light-soft: #f0f0f0;
    --color-text: #333340;
    --color-text-soft: #6b6b7b;
    --color-border: #e0e0e5;
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-light);
}

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

a:hover {
    color: var(--color-primary-light);
}

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

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    line-height: 1.3;
    color: var(--color-dark);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 600;
}

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

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

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

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

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

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

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

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

.hero-split {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    max-width: 50%;
}

.hero-tag {
    display: inline-block;
    background: var(--color-primary-light);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--color-text-soft);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-primary {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-secondary {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-dark);
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--color-primary);
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: 2px solid var(--color-primary);
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-full {
    width: 100%;
    text-align: center;
}

.section-stats {
    background: var(--color-dark);
    padding: 3rem 5%;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

.split-section {
    display: flex;
    min-height: 500px;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
}

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

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

.split-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: var(--color-light-soft);
}

.split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-section.dark {
    background: var(--color-dark);
}

.split-section.dark .split-content.light {
    color: white;
}

.split-section.dark .split-content.light h2,
.split-section.dark .split-content.light p {
    color: white;
}

.split-section.dark .split-content.light p {
    opacity: 0.85;
}

.section-tag {
    display: inline-block;
    color: var(--color-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 1rem;
}

.link-arrow::after {
    content: '→';
    transition: var(--transition);
}

.link-arrow:hover::after {
    transform: translateX(5px);
}

.check-list {
    margin: 1.5rem 0;
}

.check-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: rgba(255,255,255,0.9);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

.services-preview {
    padding: 5rem 5%;
    background: var(--color-light-soft);
}

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.services-header p {
    color: var(--color-text-soft);
    margin-top: 1rem;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

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

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

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

.service-card p {
    color: var(--color-text-soft);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-price {
    display: inline-block;
    background: var(--color-light-soft);
    color: var(--color-primary);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.testimonials {
    padding: 5rem 5%;
    background: white;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-container {
    display: flex;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1;
    min-width: 300px;
    background: var(--color-light-soft);
    padding: 2rem;
    border-radius: var(--radius-md);
    position: relative;
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--color-primary-light);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-item footer {
    border-top: 1px solid var(--color-border);
    padding-top: 1rem;
}

.testimonial-item footer strong {
    display: block;
    color: var(--color-dark);
}

.testimonial-item footer span {
    font-size: 0.85rem;
    color: var(--color-text-soft);
}

.cta-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 5rem 5%;
    text-align: center;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.cta-banner .btn-outline {
    border-color: white;
    color: white;
}

.cta-banner .btn-outline:hover {
    background: white;
    color: var(--color-primary);
}

.split-visual.accent {
    background: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-box {
    text-align: center;
    color: var(--color-dark);
}

.info-highlight {
    display: block;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
}

.info-label {
    font-size: 1.2rem;
    font-weight: 500;
}

.footer {
    background: var(--color-dark);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    color: white;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: white;
    padding: 1.5rem 5%;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: rgba(255,255,255,0.9);
}

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

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

.btn-cookie-accept {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cookie-accept:hover {
    background: var(--color-primary-light);
}

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.btn-cookie-reject:hover {
    border-color: white;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--color-accent);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    transition: var(--transition);
}

.sticky-cta:hover {
    background: #d45a3d;
    color: white;
    transform: scale(1.05);
}

.page-hero {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-soft) 100%);
    padding: 10rem 5% 5rem;
    text-align: center;
}

.page-hero.compact {
    padding: 8rem 5% 4rem;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
}

.values-section {
    padding: 5rem 5%;
    background: white;
}

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

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary-light);
    opacity: 0.3;
    margin-bottom: 1rem;
}

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

.value-item p {
    color: var(--color-text-soft);
}

.team-section {
    padding: 5rem 5%;
    background: var(--color-light-soft);
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-header p {
    color: var(--color-text-soft);
    margin-top: 0.5rem;
}

.team-grid {
    display: flex;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.team-photo {
    height: 280px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    padding: 1.5rem 1.5rem 0.3rem;
}

.team-role {
    display: block;
    padding: 0 1.5rem;
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.team-member p {
    padding: 1rem 1.5rem 1.5rem;
    color: var(--color-text-soft);
    font-size: 0.9rem;
}

.timeline-section {
    padding: 5rem 5%;
    background: white;
}

.timeline-header {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-year {
    width: 80px;
    font-weight: 700;
    color: var(--color-primary);
    text-align: right;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    padding-left: 2rem;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content p {
    color: var(--color-text-soft);
    font-size: 0.95rem;
}

.services-intro {
    padding: 4rem 5% 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--color-text-soft);
}

.service-detail {
    padding: 4rem 5%;
    border-bottom: 1px solid var(--color-border);
}

.service-detail:nth-child(even) {
    background: var(--color-light-soft);
}

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

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

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

.service-tag {
    display: inline-block;
    background: var(--color-primary-light);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

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

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

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

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

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

.service-pricing {
    background: var(--color-light-soft);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-soft);
    margin-bottom: 0.3rem;
}

.price-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-note {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-soft);
    margin-top: 0.5rem;
}

.service-detail-visual {
    flex: 0 0 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.service-detail-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.pricing-overview {
    padding: 5rem 5%;
    background: var(--color-dark);
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    color: white;
}

.pricing-header p {
    color: rgba(255,255,255,0.7);
    margin-top: 0.5rem;
}

.pricing-table-container {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.pricing-table th {
    background: var(--color-primary);
    color: white;
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
}

.pricing-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover td {
    background: var(--color-light-soft);
}

.contact-split {
    display: flex;
    padding: 4rem 5%;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

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

.contact-block p {
    color: var(--color-text-soft);
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--color-text-soft);
    margin: 0;
    font-size: 0.95rem;
}

.contact-locations h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.location-list {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.location-item strong {
    display: block;
    margin-bottom: 0.3rem;
}

.location-item p {
    color: var(--color-text-soft);
    font-size: 0.9rem;
    margin: 0;
}

.contact-form-container {
    flex: 1;
    max-width: 550px;
}

.contact-form {
    background: var(--color-light-soft);
    padding: 2.5rem;
    border-radius: var(--radius-md);
}

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

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

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 95, 74, 0.1);
}

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

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 3px;
}

.form-group.checkbox label {
    margin: 0;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--color-text-soft);
}

.map-section {
    position: relative;
    height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.map-overlay p {
    margin: 0;
    font-weight: 600;
    color: var(--color-dark);
}

.faq-section {
    padding: 5rem 5%;
    background: white;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-item summary {
    padding: 1.5rem 0;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-dark);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: var(--transition);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    padding: 0 0 1.5rem;
    color: var(--color-text-soft);
}

.legal-page {
    padding: 8rem 5% 5rem;
}

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

.legal-container h1 {
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: var(--color-text-soft);
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.legal-section h3 {
    margin: 1.5rem 0 0.8rem;
    font-size: 1.1rem;
}

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

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
    color: var(--color-text-soft);
    list-style: disc;
}

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

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

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

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 5rem;
    background: var(--color-light-soft);
}

.thanks-container {
    text-align: center;
    max-width: 600px;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.thanks-container h1 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

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

.thanks-details {
    margin-bottom: 2rem;
}

.submission-summary {
    background: var(--color-light-soft);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: left;
}

.submission-summary p {
    margin-bottom: 0.5rem;
}

.thanks-next {
    text-align: left;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--color-light-soft);
    border-radius: var(--radius-md);
}

.thanks-next h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.next-steps {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.5rem;
    color: var(--color-text-soft);
    list-style: decimal;
}

.thanks-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-content {
        max-width: 100%;
        padding: 6rem 5% 3rem;
    }

    .hero-visual {
        height: 50vh;
    }

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

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

    .split-content,
    .split-visual {
        flex: none;
    }

    .split-visual {
        height: 50vh;
        min-height: 300px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 5%;
        gap: 0;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid var(--color-border);
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

    .service-detail-visual {
        flex: none;
        width: 100%;
    }

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

    .contact-form-container {
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-links {
        gap: 2rem;
    }

    .stats-container {
        gap: 1.5rem;
    }

    .stat-item {
        flex: 0 0 45%;
    }

    .timeline::before {
        left: 60px;
    }

    .timeline-year {
        width: 60px;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .stats-container {
        flex-direction: column;
        text-align: center;
    }

    .stat-item {
        flex: none;
    }

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

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

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

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

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

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

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

    .pricing-table th,
    .pricing-table td {
        padding: 0.8rem 1rem;
    }

    .location-list {
        flex-direction: column;
    }

    .contact-form {
        padding: 1.5rem;
    }
}
