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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

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

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

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

.main-nav {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.split-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

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

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

.split-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.split-half {
    flex: 1;
}

.content-side h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.content-side h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.content-side h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.content-side p {
    margin-bottom: 1.25rem;
    color: var(--text-gray);
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary,
.btn-outline,
.btn-primary-large {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

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

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

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

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

.btn-primary-large {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    padding: 1.125rem 3rem;
    font-size: 1.125rem;
}

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

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

.visual-side .hero-image img,
.visual-side .service-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.stat-visual {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.95;
}

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

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.services-grid {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.service-card {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-content {
    padding: 1.75rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-link {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    padding: 0.5rem 0;
}

.card-link:hover {
    text-decoration: underline;
}

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

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.feature-list li strong {
    color: var(--text-dark);
}

.testimonial-box {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

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

.testimonial-box cite {
    font-style: normal;
    color: var(--text-gray);
    font-weight: 600;
}

.dark-bg {
    background: var(--bg-dark);
    color: var(--white);
    padding: 4rem 0;
}

.dark-bg h2,
.dark-bg h3 {
    color: var(--white);
}

.dark-bg p,
.dark-bg .stat-label {
    color: rgba(255, 255, 255, 0.85);
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.step-row {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.step-visual .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.pricing-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.pricing-table {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-column {
    flex: 1;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
}

.pricing-column.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
}

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-display .currency {
    font-size: 1.25rem;
    color: var(--text-gray);
}

.price-display .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.875rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--bg-light);
}

.pricing-features li.included:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.pricing-features li.excluded {
    color: var(--text-light);
}

.pricing-features li.excluded:before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--text-light);
}

.btn-select {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.additional-services {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.additional-services h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.addon-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.addon-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
}

.addon-name {
    flex: 1;
    font-weight: 600;
    font-size: 1.125rem;
}

.addon-desc {
    flex: 2;
    color: var(--text-gray);
}

.addon-price {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
    white-space: nowrap;
}

.btn-addon {
    padding: 0.625rem 1.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.form-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.checkbox-group label {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray);
}

.indicator svg {
    color: var(--secondary-color);
}

.final-cta,
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

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

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

.cta-content .btn-primary-large:hover {
    background: var(--bg-light);
    border-color: var(--bg-light);
}

.main-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 3rem 0 1.5rem;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 2rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--text-gray);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

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

.btn-cookie-reject {
    background: transparent;
    color: var(--text-gray);
    border-color: var(--border-color);
}

.btn-cookie-reject:hover {
    border-color: var(--text-gray);
    color: var(--text-dark);
}

.cookie-link {
    color: var(--primary-color);
    font-weight: 600;
    white-space: nowrap;
}

.thanks-message {
    padding: 3rem 0;
    background: var(--bg-light);
}

.icon-success {
    display: flex;
    justify-content: center;
    align-items: center;
}

.thanks-page {
    padding: 4rem 0;
}

.success-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.timeline-list {
    list-style: none;
    padding-left: 1.5rem;
}

.timeline-list li {
    position: relative;
    padding: 1rem 0 1rem 2rem;
    border-left: 2px solid var(--primary-color);
}

.timeline-list li:before {
    content: "";
    position: absolute;
    left: -6px;
    top: 1.5rem;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
}

.selected-service {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

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

.thanks-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.thanks-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.related-resources {
    padding: 4rem 0;
    background: var(--bg-light);
}

.resources-grid {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.resource-card {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

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

.legal-page {
    padding: 4rem 0;
    background: var(--white);
}

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

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

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

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

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

.legal-content h4 {
    font-size: 1.125rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

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

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

.page-hero {
    padding: 3rem 0;
    background: var(--bg-light);
}

.services-detailed {
    padding: 2rem 0;
}

.service-block {
    padding: 3rem 0;
}

.service-block.alternate {
    background: var(--bg-light);
}

.price-highlight {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin: 2rem 0;
}

.price-label {
    font-weight: 600;
    color: var(--text-gray);
}

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

.comparison-section {
    padding: 4rem 0;
    background: var(--white);
}

.comparison-table {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.comparison-col {
    flex: 1;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.comparison-col.featured {
    border-color: var(--primary-color);
    position: relative;
}

.comparison-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.comparison-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.comparison-features {
    list-style: none;
    margin-bottom: 2rem;
}

.comparison-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bg-light);
}

.faq-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-section {
    padding: 3rem 0;
}

.contact-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

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

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
}

.contact-details h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-gray);
}

.contact-form-wrapper {
    position: relative;
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 1rem;
    text-align: center;
}

.map-section {
    padding: 4rem 0;
}

.map-placeholder {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 4rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.service-areas {
    padding: 4rem 0;
    background: var(--bg-light);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.area-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

.area-card h3 {
    margin-bottom: 0.75rem;
}

.area-card p {
    color: var(--text-gray);
}

.alternatives-section {
    padding: 4rem 0;
    background: var(--white);
}

.alternatives-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
}

.alternative-item {
    flex: 1;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.values-section {
    padding: 4rem 0;
}

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

.value-card {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.value-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.value-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.team-section {
    padding: 4rem 0;
    background: var(--white);
}

.numbers-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.stats-row {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
}

.stat-big {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.approach-section {
    padding: 4rem 0;
}

.response-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 1024px) {
    .split-container {
        flex-direction: column;
        gap: 2rem;
    }

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

    .services-grid,
    .pricing-table,
    .comparison-table {
        flex-direction: column;
    }

    .pricing-column.featured {
        transform: scale(1);
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .alternatives-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        border-top: 1px solid var(--border-color);
        display: none;
        padding: 1rem 0;
    }

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

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .content-side h2 {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-cta-group a {
        width: 100%;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .addon-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .stats-row,
    .resources-grid {
        flex-direction: column;
    }

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

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}
