:root {
    --color-primary: #2d5a4a;
    --color-primary-dark: #1e3d32;
    --color-primary-light: #3d7a64;
    --color-secondary: #c9a96e;
    --color-secondary-light: #e5d4a8;
    --color-dark: #1a1a1a;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #ffffff;
    --color-bg-alt: #f7f5f2;
    --color-bg-dark: #2d2d2d;
    --color-border: #e0dcd5;
    --font-primary: 'Segoe UI', -apple-system, BlinkMacSystemFont, 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);
    --transition: 0.3s ease;
    --radius: 8px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

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

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

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

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

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

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

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

.btn-light:hover {
    background: var(--color-bg-alt);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.nav-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5%;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.nav-links {
    display: flex;
    gap: 40px;
}

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

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

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

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 5% 60px 8%;
}

.hero-badge {
    display: inline-block;
    background: var(--color-secondary-light);
    color: var(--color-primary-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    width: fit-content;
}

.hero-content h1 {
    font-size: 3.25rem;
    margin-bottom: 24px;
    max-width: 540px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

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

.section-label {
    display: block;
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-label.light {
    color: var(--color-secondary);
}

.features-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 80px 5%;
    background: var(--color-bg-alt);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--color-primary);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    margin-bottom: 12px;
}

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

.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: 60px 6%;
}

.split-content h2 {
    margin-bottom: 24px;
}

.split-content p {
    color: var(--color-text-light);
    margin-bottom: 20px;
    max-width: 520px;
}

.split-content .btn {
    margin-top: 16px;
    width: fit-content;
}

.split-content.dark {
    background: var(--color-bg-dark);
    color: white;
}

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

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

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.split-image.tall {
    min-height: 600px;
}

.stats-list {
    list-style: none;
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stats-list li {
    font-size: 0.95rem;
}

.stats-list strong {
    display: block;
    font-size: 2.5rem;
    color: var(--color-secondary);
    font-weight: 700;
}

.services-preview {
    padding: 100px 5%;
    background: white;
}

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

.services-header h2 {
    max-width: 500px;
    margin: 0 auto;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 28px;
}

.service-info h3 {
    margin-bottom: 12px;
}

.service-info p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

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

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.testimonials-section {
    padding: 100px 5%;
    background: var(--color-bg-alt);
}

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

.testimonials-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background: white;
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial-card.featured {
    background: var(--color-primary);
    color: white;
}

.testimonial-card.featured .testimonial-author strong {
    color: white;
}

.testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--color-dark);
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.7;
}

.process-section {
    padding: 100px 5%;
    background: white;
}

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

.process-steps {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
    padding: 30px;
}

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

.process-step h3 {
    margin-bottom: 12px;
}

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

.quote-section {
    display: flex;
    flex-wrap: wrap;
    background: var(--color-bg-alt);
}

.quote-content {
    flex: 1;
    min-width: 300px;
    padding: 80px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.quote-content p {
    color: var(--color-text-light);
    max-width: 480px;
}

.quote-form-container {
    flex: 1;
    min-width: 320px;
    padding: 60px 5%;
    background: white;
}

.quote-form {
    max-width: 480px;
}

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

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

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

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

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

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

.cta-banner.alt {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #b8944a 100%);
}

.cta-content h2 {
    color: white;
    margin-bottom: 16px;
}

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

.footer {
    background: var(--color-bg-dark);
    color: white;
    padding: 80px 5% 30px;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-brand h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-brand p {
    opacity: 0.75;
    max-width: 300px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

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

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}

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

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

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

.footer-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

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

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition);
}

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

.sticky-cta .btn {
    box-shadow: var(--shadow-lg);
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 120px 5% 80px;
    text-align: center;
}

.page-hero.compact {
    padding: 100px 5% 60px;
}

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

.page-hero h1 {
    color: white;
    margin-bottom: 20px;
}

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

.page-hero .hero-badge {
    background: rgba(255,255,255,0.2);
    color: white;
}

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

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 40px 30px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

.value-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 16px;
}

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

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

.team-stats {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.team-stats li {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.bg-light {
    background: var(--color-bg-alt);
}

.milestones-section {
    padding: 100px 5%;
    background: var(--color-bg-alt);
}

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

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

.milestone {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-border);
}

.milestone:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.milestone-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    min-width: 80px;
}

.milestone-content h3 {
    margin-bottom: 8px;
}

.milestone-content p {
    color: var(--color-text-light);
}

.partners-section {
    padding: 80px 5%;
    background: white;
}

.partners-header {
    text-align: center;
    margin-bottom: 50px;
}

.partners-header p {
    color: var(--color-text-light);
    max-width: 500px;
    margin: 16px auto 0;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    width: 120px;
    height: 40px;
    color: var(--color-border);
    opacity: 0.6;
    transition: opacity var(--transition);
}

.partner-logo:hover {
    opacity: 1;
}

.services-full {
    padding: 80px 5%;
}

.service-full-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-full-card.reverse {
    flex-direction: row-reverse;
}

.service-full-card:last-child {
    margin-bottom: 0;
}

.service-full-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.service-full-content {
    flex: 1;
    min-width: 300px;
}

.service-tag {
    display: inline-block;
    background: var(--color-secondary-light);
    color: var(--color-primary-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-full-content h2 {
    margin-bottom: 16px;
}

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

.service-includes {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-bottom: 24px;
}

.service-includes li {
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    color: var(--color-text);
}

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

.service-pricing {
    margin-bottom: 24px;
}

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

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

.price-note {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: 4px;
}

.pricing-note-section {
    padding: 80px 5%;
    background: var(--color-bg-alt);
}

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

.pricing-note-content h2 {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-factors {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.pricing-factor {
    flex: 1;
    min-width: 220px;
    padding: 30px;
    background: white;
    border-radius: var(--radius);
}

.pricing-factor h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

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

.guarantee-section {
    padding: 60px 5%;
    background: var(--color-primary);
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    color: white;
}

.guarantee-icon svg {
    width: 100%;
    height: 100%;
}

.guarantee-text h2 {
    color: white;
    margin-bottom: 8px;
}

.guarantee-text p {
    color: rgba(255,255,255,0.9);
    max-width: 500px;
}

.services-cta-section {
    padding: 100px 5%;
    background: white;
    text-align: center;
}

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

.services-cta-content p {
    color: var(--color-text-light);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-info {
    flex: 1;
    padding: 80px 5%;
    background: white;
}

.contact-block {
    margin-bottom: 50px;
}

.contact-block:last-child {
    margin-bottom: 0;
}

.contact-block h2 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-details h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

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

.contact-details a {
    color: var(--color-primary);
}

.contact-note {
    font-size: 0.85rem;
    opacity: 0.7;
}

.regional-offices {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.regional-office h4 {
    margin-bottom: 8px;
    color: var(--color-primary);
}

.regional-office p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-map-area {
    flex: 1;
    min-width: 300px;
    background: var(--color-bg-alt);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-border) 100%);
}

.map-overlay {
    text-align: center;
    color: var(--color-text-light);
}

.map-overlay svg {
    width: 60px;
    height: 60px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.faq-section {
    padding: 80px 5%;
    background: var(--color-bg-alt);
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--color-bg-alt);
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 500;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 300;
}

.faq-answer {
    padding: 0 24px 20px;
    display: none;
}

.faq-answer p {
    color: var(--color-text-light);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.contact-cta {
    padding: 80px 5%;
    background: white;
    text-align: center;
}

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

.contact-cta-content p {
    color: var(--color-text-light);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-section {
    padding: 120px 5% 80px;
    text-align: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    color: var(--color-primary);
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

.thanks-content h1 {
    margin-bottom: 20px;
}

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

.thanks-service {
    background: var(--color-bg-alt);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 40px;
}

.thanks-service p {
    margin: 0;
}

.thanks-next {
    text-align: left;
    background: var(--color-bg-alt);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.thanks-next h2 {
    font-size: 1.25rem;
    margin-bottom: 30px;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.next-step {
    display: flex;
    align-items: center;
    gap: 20px;
}

.next-step .step-icon {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.next-step .step-icon svg {
    width: 100%;
    height: 100%;
}

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

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-trust {
    padding: 80px 5%;
    background: var(--color-bg-alt);
}

.trust-content {
    text-align: center;
}

.trust-content h2 {
    margin-bottom: 40px;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-stat {
    text-align: center;
}

.trust-stat .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
}

.trust-stat .stat-label {
    color: var(--color-text-light);
}

.legal-page {
    padding: 100px 5% 80px;
}

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

.legal-content h1 {
    margin-bottom: 10px;
}

.legal-updated {
    color: var(--color-text-light);
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-border);
}

.legal-section h3 {
    font-size: 1.1rem;
    margin: 24px 0 12px;
}

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

.legal-section ul,
.legal-section ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

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

.gdpr-table,
.cookie-table {
    margin: 20px 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.gdpr-row,
.cookie-row {
    display: flex;
    border-bottom: 1px solid var(--color-border);
}

.gdpr-row:last-child,
.cookie-row:last-child {
    border-bottom: none;
}

.gdpr-row.header,
.cookie-row.header {
    background: var(--color-bg-alt);
    font-weight: 600;
}

.gdpr-cell,
.cookie-cell {
    flex: 1;
    padding: 14px 16px;
    font-size: 0.95rem;
}

.gdpr-cell:not(:last-child),
.cookie-cell:not(:last-child) {
    border-right: 1px solid var(--color-border);
}

@media (max-width: 992px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 60px 5%;
    }

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

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

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

    .split-image {
        min-height: 350px;
    }

    .split-image.tall {
        min-height: 400px;
    }

    .features-row {
        flex-direction: column;
        align-items: center;
    }

    .service-full-card,
    .service-full-card.reverse {
        flex-direction: column;
    }

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

    .gdpr-row,
    .cookie-row {
        flex-direction: column;
    }

    .gdpr-cell,
    .cookie-cell {
        border-right: none !important;
        border-bottom: 1px solid var(--color-border);
    }

    .gdpr-cell:last-child,
    .cookie-cell:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: var(--shadow-md);
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

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

    .stats-list {
        flex-direction: column;
        gap: 20px;
    }

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

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

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

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

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .milestone {
        flex-direction: column;
        gap: 10px;
    }

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

    .trust-stats {
        flex-direction: column;
        gap: 30px;
    }

    .thanks-next {
        padding: 30px 20px;
    }
}