:root {
    --color-primary: #1a365d;
    --color-primary-dark: #0f2440;
    --color-primary-light: #2c5282;
    --color-accent: #3182ce;
    --color-accent-light: #63b3ed;
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-text-muted: #a0aec0;
    --color-bg: #ffffff;
    --color-bg-alt: #f7fafc;
    --color-bg-dark: #edf2f7;
    --color-border: #e2e8f0;
    --color-success: #38a169;
    --color-error: #e53e3e;
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-bg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

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

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

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

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

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

main {
    padding-top: 72px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

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

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

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

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

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

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

.btn-ghost {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

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

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

.hero-editorial {
    display: flex;
    flex-wrap: wrap;
    min-height: 80vh;
    align-items: center;
    gap: 4rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1 1 500px;
}

.hero-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

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

.hero-lead {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-image {
    flex: 1 1 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.story-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-narrow {
    max-width: 680px;
    margin: 0 auto 3rem;
}

.story-narrow h2 {
    margin-bottom: 1.5rem;
}

.story-narrow p {
    margin-bottom: 1.25rem;
    color: var(--color-text-light);
    font-size: 1.125rem;
}

.story-image-wide {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image-wide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.story-reversed {
    background: var(--color-bg-alt);
    padding: 6rem 2rem;
    max-width: none;
}

.story-reversed .story-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--color-accent);
}

.link-arrow:hover {
    color: var(--color-primary);
}

.features-asymmetric {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-block {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

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

.feature-left .feature-content {
    order: 1;
}

.feature-left .feature-visual {
    order: 2;
}

.feature-right .feature-content {
    order: 2;
}

.feature-right .feature-visual {
    order: 1;
}

.feature-content {
    flex: 1 1 400px;
}

.feature-visual {
    flex: 1 1 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.feature-visual img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.feature-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-bg-dark);
    line-height: 1;
    margin-bottom: 1rem;
}

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

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

.cta-inline {
    background: var(--color-primary);
    padding: 4rem 2rem;
    text-align: center;
}

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

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

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

.pricing-preview {
    padding: 6rem 2rem;
    background: var(--color-bg-alt);
}

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

.pricing-intro h2 {
    margin-bottom: 1rem;
}

.pricing-intro p {
    color: var(--color-text-light);
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.price-card {
    flex: 1 1 300px;
    max-width: 340px;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

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

.price-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price-card-header h3 {
    margin-bottom: 0.25rem;
}

.price-card-header p {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.price-card-price {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 1.5rem;
}

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

.price-card-price .period {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.price-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

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

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 600;
}

.price-card .btn {
    width: 100%;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.testimonials-editorial {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.testimonial-featured {
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin-bottom: 2rem;
}

.testimonial-featured blockquote p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-featured cite {
    display: block;
}

.testimonial-featured cite strong {
    display: block;
    color: var(--color-primary);
    font-style: normal;
}

.testimonial-featured cite span {
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-style: normal;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.testimonial-card {
    flex: 1 1 300px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

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

.testimonial-card cite {
    font-size: 0.875rem;
    color: var(--color-text);
    font-style: normal;
    font-weight: 500;
}

.final-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 6rem 2rem;
    text-align: center;
}

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

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

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

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

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

.final-cta .btn-primary:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary);
}

.final-cta .btn-ghost {
    color: white;
    border-color: rgba(255,255,255,0.5);
}

.final-cta .btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
}

.site-footer {
    background: var(--color-primary-dark);
    color: rgba(255,255,255,0.8);
    padding-top: 4rem;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-logo {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.875rem;
    max-width: 280px;
}

.footer-links {
    flex: 2 1 500px;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-col {
    flex: 1 1 150px;
}

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

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

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

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

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

.footer-col address {
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.8;
}

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

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

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary-dark);
    padding: 1.5rem 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--transition);
}

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

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

.cookie-content p {
    flex: 1 1 400px;
    color: rgba(255,255,255,0.9);
    font-size: 0.875rem;
}

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

.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: 900;
    transition: all var(--transition);
    text-decoration: none;
}

.sticky-cta:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
    color: white;
}

.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
}

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

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

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

.about-story {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-values {
    background: var(--color-bg-alt);
    padding: 6rem 2rem;
}

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

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

.value-item {
    flex: 1 1 220px;
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: var(--color-accent);
}

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

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

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

.about-team {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

.team-member {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
}

.member-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

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

.team-member h3 {
    margin-bottom: 0.25rem;
}

.member-role {
    display: block;
    color: var(--color-accent);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.about-numbers {
    background: var(--color-primary);
    padding: 4rem 2rem;
}

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

.number-item {
    flex: 1 1 180px;
    text-align: center;
}

.number-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

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

.about-certifications {
    padding: 6rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.certifications-content > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.certifications-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.certifications-list li {
    background: var(--color-bg-alt);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--color-text);
}

.services-detailed {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
    padding: 4rem 0;
    border-bottom: 1px solid var(--color-border);
}

.service-detail:last-of-type {
    border-bottom: none;
}

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

.service-detail-image {
    flex: 1 1 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.service-detail-reversed .service-detail-content {
    order: 2;
}

.service-detail-reversed .service-detail-image {
    order: 1;
}

.service-tag {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

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

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

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

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

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 600;
}

.service-pricing-inline {
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.pricing-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.pricing-tier:last-child {
    border-bottom: none;
}

.tier-name {
    color: var(--color-text);
}

.tier-price {
    font-weight: 700;
    color: var(--color-primary);
}

.pricing-footnote {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-style: italic;
}

.services-comparison {
    background: var(--color-bg-alt);
    padding: 4rem 2rem;
    text-align: center;
}

.comparison-header h2 {
    margin-bottom: 1rem;
}

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

.form-section {
    padding: 6rem 2rem;
    background: var(--color-bg);
}

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

.form-info {
    flex: 1 1 300px;
}

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

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

.form-benefits {
    list-style: none;
}

.form-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--color-text);
}

.form-benefits svg {
    width: 20px;
    height: 20px;
    color: var(--color-success);
    flex-shrink: 0;
}

.contact-form {
    flex: 1 1 400px;
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

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

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

.form-checkbox input {
    width: auto;
    margin-top: 0.25rem;
}

.form-checkbox label {
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.form-checkbox label a {
    color: var(--color-accent);
}

.contact-form .btn {
    width: 100%;
}

.faq-section {
    background: var(--color-bg-alt);
    padding: 6rem 2rem;
}

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

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

.faq-item {
    background: var(--color-bg);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    text-align: left;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--color-text-light);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
}

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

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

.contact-main {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-info-card {
    flex: 1 1 280px;
    max-width: 340px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    color: var(--color-accent);
}

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

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

.contact-info-card address {
    font-style: normal;
    color: var(--color-text);
    line-height: 1.8;
}

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

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list span:first-child {
    color: var(--color-text);
}

.hours-list span:last-child {
    font-weight: 500;
    color: var(--color-primary);
}

.contact-map {
    padding: 0 2rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.map-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    max-width: 300px;
}

.map-overlay h3 {
    margin-bottom: 0.5rem;
}

.map-overlay p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.contact-directions {
    background: var(--color-bg-alt);
    padding: 6rem 2rem;
}

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

.directions-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.direction-item {
    flex: 1 1 200px;
}

.direction-item h4 {
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.direction-item p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.contact-cta {
    padding: 6rem 2rem;
    text-align: center;
}

.contact-faq {
    background: var(--color-bg-alt);
    padding: 6rem 2rem;
}

.faq-compact {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.faq-compact-item {
    flex: 1 1 400px;
}

.faq-compact-item h4 {
    margin-bottom: 0.5rem;
}

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

.thanks-section {
    padding: 6rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--color-success);
}

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

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

.thanks-lead {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.thanks-service {
    background: var(--color-bg-alt);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 3rem;
    display: inline-block;
}

.thanks-service p {
    color: var(--color-text);
}

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

.thanks-next h2 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.thanks-steps {
    list-style: none;
}

.thanks-steps li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 36px;
    height: 36px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

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

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

.thanks-contact {
    color: var(--color-text-light);
}

.thanks-contact a {
    color: var(--color-accent);
}

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

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

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

.legal-updated {
    color: var(--color-text-light);
    font-size: 0.875rem;
    margin-bottom: 3rem;
}

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

.legal-section h2 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.legal-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

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

.legal-section ul,
.legal-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

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

.legal-section address {
    font-style: normal;
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    line-height: 1.8;
}

.rights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.right-item {
    flex: 1 1 350px;
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.right-item h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.right-item p {
    margin-bottom: 0;
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

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

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

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

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

@media (max-width: 768px) {
    .header-inner {
        padding: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-bg);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition);
    }

    .nav-list.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .hero-editorial {
        padding: 2rem 1rem;
    }

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

    .hero-lead {
        margin: 0 auto 2rem;
    }

    .feature-left .feature-content,
    .feature-left .feature-visual,
    .feature-right .feature-content,
    .feature-right .feature-visual,
    .service-detail-reversed .service-detail-content,
    .service-detail-reversed .service-detail-image {
        order: unset;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        text-align: center;
    }

    .map-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        max-width: none;
        margin: 1rem;
        transform: translateY(-50%);
    }

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