:root {
    --color-primary: #6366f1;
    --color-primary-dark: #4f46e5;
    --color-primary-light: #818cf8;
    --color-secondary: #8b5cf6;
    --color-accent: #a78bfa;
    --color-bg: #ffffff;
    --color-bg-alt: #f5f3ff;
    --color-bg-dark: #1e1b4b;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-text-inverse: #ffffff;
    --color-border: #e5e7eb;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --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, svg {
    max-width: 100%;
    height: auto;
}

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.2;
    font-weight: 700;
    color: var(--color-text);
}

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

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: var(--color-bg);
    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: 2rem;
}

.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-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

    .nav-toggle {
        display: flex;
    }
}

.btn-primary {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-text-inverse);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    color: var(--color-text-inverse);
    transform: translateY(-2px);
}

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

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

.btn-outline-light {
    display: inline-block;
    background: transparent;
    color: var(--color-text-inverse);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    border: 2px solid var(--color-text-inverse);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-outline-light:hover {
    background: var(--color-text-inverse);
    color: var(--color-primary);
}

.btn-light {
    display: inline-block;
    background: var(--color-text-inverse);
    color: var(--color-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

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

.btn-full {
    width: 100%;
}

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

.link-arrow::after {
    content: '\2192';
    transition: transform var(--transition);
}

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

.hero-split {
    display: flex;
    min-height: 85vh;
    padding: 4rem 5%;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero-tag {
    display: inline-block;
    background: var(--color-bg-alt);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

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

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

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-svg {
    max-width: 400px;
    width: 100%;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 3rem 5%;
    }

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

    .hero-content p {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-svg {
        max-width: 280px;
    }
}

.section-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

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

.split-content {
    flex: 1;
}

.split-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.section-svg {
    max-width: 300px;
    width: 100%;
}

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

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

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

.split-content .btn-primary {
    margin-top: 1rem;
}

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

.check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}

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

@media (max-width: 968px) {
    .section-split {
        flex-direction: column;
        padding: 3rem 5%;
        gap: 2rem;
    }

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

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

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

.bg-dark .split-content.light h2,
.bg-dark .split-content.light p,
.bg-dark .split-content.light span {
    color: var(--color-text-inverse);
}

.section-features {
    padding: 5rem 5%;
    text-align: center;
}

.features-header {
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

.features-header p {
    color: var(--color-text-light);
}

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

.feature-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.feature-icon {
    margin-bottom: 1.5rem;
}

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

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

.section-services-preview {
    padding: 5rem 5%;
    background: var(--color-bg-alt);
}

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

.services-preview-header h2 {
    margin-bottom: 0.75rem;
}

.services-preview-header p {
    color: var(--color-text-light);
}

.services-preview-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-preview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.service-preview-item:hover {
    box-shadow: var(--shadow-md);
}

.service-preview-info h3 {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.service-preview-info p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.service-preview-price {
    text-align: right;
}

.price-from {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-light);
}

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

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

@media (max-width: 768px) {
    .service-preview-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .service-preview-price {
        text-align: center;
    }
}

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

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

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary-light);
}

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

.section-testimonial {
    padding: 5rem 5%;
    background: var(--color-bg-alt);
}

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

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

.testimonial-author {
    display: flex;
    justify-content: center;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--color-text);
}

.author-role {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.section-cta-full {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    text-align: center;
}

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

.cta-full-content h2 {
    color: var(--color-text-inverse);
    margin-bottom: 1rem;
}

.cta-full-content p {
    color: var(--color-text-inverse);
    opacity: 0.9;
    margin-bottom: 2rem;
}

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

.cta-full-actions .btn-primary {
    background: var(--color-text-inverse);
    color: var(--color-primary);
}

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

.section-form {
    padding: 5rem 5%;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-info {
    text-align: center;
    margin-bottom: 2rem;
}

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

.form-info p {
    color: var(--color-text-light);
}

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

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

.form-group label {
    font-weight: 600;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    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;
}

.footer-split {
    background: var(--color-bg-dark);
    color: var(--color-text-inverse);
    padding: 3rem 5% 1.5rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-inverse);
}

.footer-brand p {
    margin-top: 0.75rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

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

.footer-col h4 {
    color: var(--color-text-inverse);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-col a {
    display: block;
    color: var(--color-text-inverse);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    transition: opacity var(--transition);
}

.footer-col a:hover {
    opacity: 1;
    color: var(--color-text-inverse);
}

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

@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links {
        justify-content: center;
        gap: 2rem;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg);
    padding: 1rem 5%;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    z-index: 1001;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: var(--color-primary);
    color: var(--color-text-inverse);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all var(--transition);
}

.sticky-cta:hover {
    background: var(--color-primary-dark);
    color: var(--color-text-inverse);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .sticky-cta {
        bottom: 80px;
        right: 15px;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

.page-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 5rem 5%;
    text-align: center;
}

.page-header-compact {
    padding: 3rem 5%;
}

.page-header-content h1 {
    color: var(--color-text-inverse);
    margin-bottom: 0.75rem;
}

.page-header-content p {
    color: var(--color-text-inverse);
    opacity: 0.9;
    font-size: 1.25rem;
}

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

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

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

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

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

.timeline-year {
    flex-shrink: 0;
    width: 60px;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    transform: translateX(50%);
}

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

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

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

@media (max-width: 768px) {
    .timeline::before {
        left: 10px;
    }

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

    .timeline-year::after {
        display: none;
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
        padding-left: 2rem;
    }

    .timeline-content {
        padding-left: 0;
    }
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.value-item h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

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

.section-team {
    padding: 5rem 5%;
    text-align: center;
}

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

.team-header h2 {
    margin-bottom: 0.75rem;
}

.team-header p {
    color: var(--color-text-light);
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

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

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

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.tech-tag {
    background: var(--color-bg-alt);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.section-intro {
    padding: 3rem 5%;
    background: var(--color-bg-alt);
}

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

.intro-text {
    font-size: 1.25rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.section-services-full {
    padding: 3rem 5%;
}

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

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

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

.service-full-visual {
    flex: 0 0 200px;
}

.service-svg {
    width: 200px;
    height: 200px;
}

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

.service-full-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1rem;
}

.service-full-header h2 {
    margin: 0;
}

.service-price-tag {
    text-align: right;
    flex-shrink: 0;
}

.price-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

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

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

.service-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
    margin-bottom: 1.5rem;
}

.service-features li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

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

@media (max-width: 968px) {
    .service-full-item {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

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

    .service-full-header {
        flex-direction: column;
        align-items: center;
    }

    .service-price-tag {
        text-align: center;
    }

    .service-features {
        justify-content: center;
    }
}

.section-process {
    padding: 5rem 5%;
    background: var(--color-bg-alt);
}

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

.process-header h2 {
    margin-bottom: 0.75rem;
}

.process-header p {
    color: var(--color-text-light);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 2rem;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.process-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-text-inverse);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
}

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

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

.section-contact-split {
    display: flex;
    padding: 3rem 5%;
    gap: 4rem;
}

.contact-info-side {
    flex: 1;
}

.contact-form-side {
    flex: 1;
}

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

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

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-text h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin: 0;
}

.contact-map {
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

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

.contact-form-side > p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

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

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

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

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

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

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

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

.section-thanks {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
}

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

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

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

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

.thanks-service {
    background: var(--color-bg-alt);
    padding: 1rem;
    border-radius: var(--radius-md);
    color: var(--color-text-light);
}

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

.section-next-steps {
    padding: 5rem 5%;
    background: var(--color-bg-alt);
}

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

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

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: var(--color-text-inverse);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.step-text h3 {
    margin-bottom: 0.25rem;
}

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

.section-legal {
    padding: 3rem 5%;
}

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

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

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.legal-content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

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

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

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

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

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

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

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

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

@media (max-width: 768px) {
    .cookies-table {
        font-size: 0.875rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 0.5rem;
    }
}
