:root {
    --primary: #6B5CA5;
    --primary-dark: #5A4D8C;
    --primary-light: #8B7EC4;
    --secondary: #9D8FD1;
    --accent: #C4B8E0;
    --light: #E8E4F4;
    --white: #ffffff;
    --dark: #2D2A3E;
    --gray: #6B6B7B;
    --gray-light: #F5F4F8;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 600;
}

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

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

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

.nav-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

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

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

.nav-links a {
    color: var(--dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

.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: 8px;
}

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

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    padding-right: 40px;
}

.hero-tag {
    display: inline-block;
    background: var(--light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-content h1 {
    margin-bottom: 24px;
    font-size: 3rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-visual {
    flex: 1;
    background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 450px;
}

.hero-illustration {
    width: 100%;
    height: auto;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 92, 165, 0.3);
}

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

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

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

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

.trust-bar {
    background: var(--dark);
    padding: 40px 0;
}

.trust-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

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

.trust-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.trust-label {
    color: var(--accent);
    font-size: 0.875rem;
}

.intro-asymmetric {
    padding: 100px 0;
    background: var(--white);
}

.intro-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.intro-text-block {
    flex: 1.2;
}

.intro-text-block h2 {
    margin-bottom: 24px;
    color: var(--dark);
}

.intro-text-block p {
    color: var(--gray);
    font-size: 1.0625rem;
}

.intro-highlight-box {
    flex: 0.8;
    background: var(--light);
    padding: 40px;
    border-radius: 16px;
    margin-top: 40px;
}

.intro-highlight-box h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.highlight-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-list li {
    padding-left: 24px;
    position: relative;
    color: var(--dark);
}

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

.services-preview {
    padding: 100px 0;
    background: var(--gray-light);
}

.section-header-left h2 {
    margin-bottom: 12px;
}

.section-header-left p {
    color: var(--gray);
    font-size: 1.125rem;
    margin-bottom: 48px;
}

.services-split-layout {
    display: flex;
    gap: 30px;
}

.service-card-large {
    flex: 1;
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

.service-card-large h3 {
    margin-bottom: 16px;
    color: var(--dark);
}

.service-card-large p {
    color: var(--gray);
    margin-bottom: 24px;
}

.service-price {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
}

.service-cards-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card-small {
    background: var(--white);
    padding: 28px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.service-card-small h4 {
    margin-bottom: 8px;
    color: var(--dark);
}

.service-card-small p {
    color: var(--gray);
    font-size: 0.9375rem;
    margin-bottom: 12px;
    flex-grow: 1;
}

.service-card-small .service-price {
    font-size: 1rem;
}

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

.approach-section {
    display: flex;
    min-height: 600px;
}

.approach-visual {
    flex: 0.4;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.approach-illustration {
    width: 100%;
    max-width: 300px;
}

.approach-content {
    flex: 0.6;
    padding: 80px 60px;
}

.approach-content h2 {
    margin-bottom: 48px;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.approach-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.step-content h4 {
    margin-bottom: 8px;
    color: var(--dark);
}

.step-content p {
    color: var(--gray);
    margin-bottom: 0;
}

.testimonial-section {
    padding: 100px 0;
    background: var(--white);
}

.testimonial-wrapper {
    display: flex;
    gap: 40px;
}

.testimonial-large {
    flex: 1.5;
    background: var(--primary);
    padding: 48px;
    border-radius: 16px;
}

.testimonial-large blockquote p {
    font-size: 1.375rem;
    color: var(--white);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-large cite {
    color: var(--accent);
    font-style: normal;
}

.testimonial-large cite strong {
    display: block;
    color: var(--white);
    font-size: 1.125rem;
}

.testimonials-small {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-small {
    background: var(--gray-light);
    padding: 32px;
    border-radius: 12px;
}

.testimonial-small p {
    font-style: italic;
    color: var(--dark);
    margin-bottom: 16px;
}

.testimonial-small cite {
    color: var(--primary);
    font-weight: 600;
    font-style: normal;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%);
}

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

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

.cta-content p {
    color: var(--gray);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-section {
    padding: 100px 0;
    background: var(--white);
}

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: var(--gray-light);
    padding: 32px;
    border-radius: 12px;
}

.faq-item h4 {
    margin-bottom: 12px;
    color: var(--dark);
}

.faq-item p {
    color: var(--gray);
    margin-bottom: 0;
}

.footer-main {
    background: var(--dark);
    padding: 80px 0 40px;
}

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

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--gray);
}

.footer-nav,
.footer-legal,
.footer-contact {
    flex: 1;
    min-width: 150px;
}

.footer-main h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-main ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-main ul a {
    color: var(--gray);
    font-size: 0.9375rem;
}

.footer-main ul a:hover {
    color: var(--white);
}

.footer-contact p {
    color: var(--gray);
    font-size: 0.9375rem;
}

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

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

.footer-bottom p {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 20px;
    z-index: 9999;
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--white);
    margin-bottom: 0;
    flex: 1;
    min-width: 300px;
}

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

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

.btn-cookie-accept {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.btn-cookie-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gray);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 24px;
    background: var(--primary);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(107, 92, 165, 0.4);
    z-index: 900;
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(107, 92, 165, 0.5);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 160px 0 80px;
    margin-bottom: 0;
}

.page-hero-small {
    padding: 140px 0 60px;
}

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

.page-hero-content h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero-content p {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 0;
}

.about-story {
    padding: 100px 0;
}

.story-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-content {
    flex: 1;
}

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

.story-content p {
    color: var(--gray);
}

.story-visual {
    flex: 0.8;
}

.about-illustration {
    width: 100%;
    max-width: 300px;
}

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

.section-header-center p {
    color: var(--gray);
    font-size: 1.125rem;
}

.values-section {
    padding: 100px 0;
    background: var(--gray-light);
}

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

.value-card {
    flex: 1 1 calc(25% - 23px);
    min-width: 240px;
    background: var(--white);
    padding: 36px;
    border-radius: 12px;
    text-align: center;
}

.value-icon {
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.value-card p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.team-section {
    padding: 100px 0;
}

.team-intro {
    max-width: 700px;
    margin-bottom: 60px;
}

.team-intro h2 {
    margin-bottom: 16px;
}

.team-intro p {
    color: var(--gray);
}

.team-highlights {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    padding: 40px;
    background: var(--light);
    border-radius: 16px;
}

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

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

.stat-label {
    color: var(--gray);
}

.team-areas {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.area-item {
    flex: 1 1 calc(25% - 18px);
    min-width: 200px;
    padding: 24px;
    background: var(--gray-light);
    border-radius: 12px;
}

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

.area-item p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.approach-about {
    padding: 100px 0;
    background: var(--gray-light);
}

.approach-split-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-about-content {
    flex: 1;
}

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

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.reason-item p {
    color: var(--gray);
    margin-bottom: 0;
}

.approach-about-visual {
    flex: 0.6;
}

.reasons-illustration {
    width: 100%;
    max-width: 280px;
}

.services-intro {
    padding: 60px 0;
    background: var(--white);
}

.services-intro-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.services-intro-content p {
    color: var(--gray);
    font-size: 1.125rem;
    margin-bottom: 0;
}

.service-detail {
    padding: 80px 0;
}

.service-detail.service-alt {
    background: var(--gray-light);
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

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

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

.service-detail-content > p {
    color: var(--gray);
    margin-bottom: 24px;
}

.service-features {
    margin-bottom: 32px;
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--dark);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 12px;
    height: 12px;
    border: 2px solid var(--primary);
    border-radius: 50%;
}

.service-pricing-box {
    background: var(--light);
    padding: 24px;
    border-radius: 12px;
    display: inline-flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.875rem;
    color: var(--gray);
}

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

.price-note {
    font-size: 0.8125rem;
    color: var(--gray);
}

.service-detail-visual {
    flex: 0.5;
}

.service-illustration {
    width: 100%;
    max-width: 280px;
}

.services-cta-section {
    padding: 80px 0;
    background: var(--primary);
}

.services-cta-content {
    text-align: center;
}

.services-cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.services-cta-content p {
    color: var(--accent);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

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

.services-cta-section .btn-primary:hover {
    background: var(--light);
}

.service-form-section {
    padding: 100px 0;
    background: var(--white);
}

.form-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.form-section-header h2 {
    margin-bottom: 12px;
}

.form-section-header p {
    color: var(--gray);
}

.service-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--gray-light);
    padding: 48px;
    border-radius: 16px;
}

.form-row {
    display: flex;
    gap: 24px;
}

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

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

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

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

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

.form-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9375rem;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.0625rem;
}

.contact-main {
    padding: 80px 0;
}

.contact-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

.contact-info > p {
    color: var(--gray);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 4px;
    color: var(--dark);
}

.contact-text p {
    color: var(--gray);
    margin-bottom: 0;
}

.contact-note {
    background: var(--light);
    padding: 24px;
    border-radius: 12px;
}

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

.contact-note p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.contact-visual {
    flex: 0.6;
}

.contact-illustration {
    width: 100%;
    max-width: 300px;
}

.map-section {
    padding: 0 0 80px;
}

.map-wrapper {
    background: var(--gray-light);
    border-radius: 16px;
    overflow: hidden;
}

.map-placeholder {
    padding: 40px;
    text-align: center;
}

.map-illustration {
    width: 100%;
    max-width: 600px;
    margin-bottom: 16px;
}

.map-address {
    color: var(--gray);
    font-weight: 500;
}

.thanks-section {
    padding: 180px 0 80px;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

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

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-content h1 {
    margin-bottom: 24px;
    font-size: 2.5rem;
}

.thanks-service {
    background: var(--light);
    padding: 16px 24px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 24px;
}

.thanks-content p {
    color: var(--gray);
    font-size: 1.0625rem;
}

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

.thanks-info {
    padding: 60px 0 100px;
}

.info-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: var(--gray-light);
    padding: 36px;
    border-radius: 12px;
}

.info-card h3 {
    margin-bottom: 16px;
    color: var(--primary);
}

.info-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-card li {
    padding-left: 20px;
    position: relative;
    color: var(--gray);
}

.info-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.info-card p {
    color: var(--gray);
    margin-bottom: 0;
}

.legal-content {
    padding: 60px 0 100px;
}

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

.legal-date {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 40px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.legal-content h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.legal-content p {
    color: var(--gray);
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    padding: 4px 0;
    color: var(--gray);
    list-style: disc;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--light);
}

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

.cookie-table td {
    color: var(--gray);
}

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

    .hero-content {
        padding: 100px 40px 60px;
    }

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

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

    .intro-highlight-box {
        margin-top: 0;
    }

    .services-split-layout {
        flex-direction: column;
    }

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

    .approach-visual {
        min-height: 300px;
    }

    .approach-content {
        padding: 60px 40px;
    }

    .testimonial-wrapper {
        flex-direction: column;
    }

    .story-split,
    .approach-split-reverse,
    .service-detail-split,
    .service-detail-split.reverse,
    .contact-split {
        flex-direction: column;
    }

    .story-visual,
    .approach-about-visual,
    .service-detail-visual,
    .contact-visual {
        order: -1;
        text-align: center;
    }

    .team-highlights {
        flex-wrap: wrap;
        gap: 40px;
    }

    .team-stat {
        flex: 1 1 100px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        padding: 100px 24px 40px;
    }

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

    .trust-items {
        flex-direction: column;
        gap: 24px;
    }

    .intro-asymmetric,
    .services-preview,
    .testimonial-section,
    .cta-section,
    .faq-section,
    .values-section,
    .team-section,
    .approach-about,
    .service-form-section,
    .thanks-info {
        padding: 60px 0;
    }

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

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

    .value-card {
        min-width: 100%;
    }

    .team-areas {
        flex-direction: column;
    }

    .area-item {
        min-width: 100%;
    }

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

    .service-form {
        padding: 32px 24px;
    }

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

    .sticky-cta {
        bottom: 90px;
        right: 16px;
        padding: 14px 20px;
        font-size: 0.9375rem;
    }

    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero-small {
        padding: 100px 0 40px;
    }

    .service-detail {
        padding: 60px 0;
    }

    .thanks-section {
        padding: 140px 0 60px;
    }

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

    .info-cards {
        flex-direction: column;
    }

    .contact-main,
    .map-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .service-card-large,
    .intro-highlight-box {
        padding: 32px 24px;
    }

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

    .btn-primary,
    .btn-outline,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

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

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