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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --error-color: #ef4444;
}

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header-main {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.nav-primary {
    display: flex;
    gap: 32px;
}

.nav-primary a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

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

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

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-left {
    padding: 80px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-right {
    background: var(--bg-light);
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 48px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

.section-intro {
    padding: 100px 20px;
    background: var(--bg-white);
}

.section-intro h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.section-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.section-problem-split,
.section-solution-split {
    padding: 80px 20px;
}

.section-problem-split {
    background: var(--bg-light);
}

.split-container {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.split-image,
.split-content {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.split-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.split-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.problem-list {
    list-style: none;
    margin: 32px 0;
}

.problem-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    color: var(--text-light);
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--error-color);
    font-weight: bold;
}

.emphasis {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 19px;
}

.section-insight {
    padding: 80px 20px;
    background: var(--primary-color);
    color: white;
}

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

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

.insight-icon svg {
    color: white;
}

.insight-box h3 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

.insight-box p {
    font-size: 20px;
    line-height: 1.8;
    opacity: 0.95;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
}

.feature-item {
    flex: 1;
    min-width: 200px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

.section-testimonial {
    padding: 100px 20px;
    background: var(--bg-light);
}

.testimonial-large {
    text-align: center;
}

.testimonial-large p {
    font-size: 28px;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.testimonial-large cite {
    font-size: 18px;
    color: var(--text-light);
    font-style: normal;
}

.section-benefits-alternate {
    padding: 100px 20px;
    background: var(--bg-white);
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 80px;
    color: var(--text-dark);
    font-weight: 700;
}

.benefit-row {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-row.reverse {
    flex-direction: row-reverse;
}

.benefit-content,
.benefit-visual {
    flex: 1;
}

.benefit-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.benefit-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.stat-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 16px;
}

.stat-label {
    display: block;
    font-size: 18px;
    opacity: 0.95;
}

.benefit-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.section-trust {
    padding: 80px 20px;
    background: var(--bg-light);
}

.trust-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.section-services {
    padding: 100px 20px;
    background: var(--bg-white);
}

.section-services h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 32px;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-header h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
}

.service-body p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.btn-select {
    width: 100%;
    padding: 14px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

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

.section-form-main {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    color: var(--text-light);
}

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

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

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

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

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

.form-group input[readonly] {
    background: var(--bg-light);
    color: var(--text-light);
}

.checkbox-group label {
    display: flex;
    align-items: start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.section-final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
}

.final-cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.footer-main {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.4);
    z-index: 90;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

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

.sticky-cta-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sticky-cta-content span {
    font-weight: 600;
}

.btn-sticky {
    background: white;
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    transform: scale(1.05);
}

.page-hero {
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.section-story {
    padding: 80px 20px;
    background: var(--bg-white);
}

.section-story h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--text-dark);
    font-weight: 700;
}

.section-story p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.section-philosophy {
    padding: 80px 20px;
    background: var(--bg-light);
}

.principle-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.principle-item {
    padding: 24px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.principle-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.principle-item p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

.section-approach {
    padding: 100px 20px;
    background: var(--bg-white);
}

.section-approach h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

.approach-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-step {
    flex: 1;
}

.step-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 16px;
}

.approach-step h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.approach-step p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.section-values {
    padding: 80px 20px;
    background: var(--bg-light);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.section-cta-simple {
    padding: 80px 20px;
    background: var(--bg-white);
    text-align: center;
}

.section-cta-simple h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.section-cta-simple p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.services-detailed {
    padding: 80px 20px;
    background: var(--bg-white);
}

.service-detail {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 120px;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-price-large {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price-unit {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-light);
}

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

.service-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-includes {
    list-style: none;
    margin: 20px 0;
}

.service-includes li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

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

.btn-select-service {
    width: 100%;
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 24px;
}

.btn-select-service:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.contact-split {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info,
.contact-map-placeholder {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.contact-additional {
    margin-top: 48px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-additional h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-additional p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.map-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-overlay p {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
}

.section-faq {
    padding: 80px 20px;
    background: var(--bg-light);
}

.section-faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.thanks-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.thanks-lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

.service-confirmation {
    background: white;
    padding: 24px;
    border-radius: 8px;
    display: inline-block;
    text-align: left;
}

.service-confirmation p {
    margin: 8px 0;
    font-size: 16px;
    color: var(--text-light);
}

.thanks-next {
    margin: 60px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.thanks-steps {
    list-style: none;
    counter-reset: step-counter;
}

.thanks-steps li {
    counter-increment: step-counter;
    padding: 16px 0 16px 48px;
    position: relative;
    font-size: 17px;
    color: var(--text-light);
}

.thanks-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.legal-content {
    padding: 60px 20px 80px;
    background: var(--bg-white);
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 24px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

    .hero-left {
        padding: 60px 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

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

    .split-container {
        flex-direction: column;
        gap: 40px;
    }

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

    .benefit-row {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }

    .benefit-row.reverse {
        flex-direction: column;
    }

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

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

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

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

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

    .service-detail {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .contact-split {
        flex-direction: column;
        gap: 40px;
    }

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

    .sticky-cta-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .nav-primary {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-primary.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-lead {
        font-size: 18px;
    }

    .section-title-center {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

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

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

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie,
    .btn-cookie-reject {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .section-intro h2,
    .split-content h3 {
        font-size: 28px;
    }

    .insight-box h3 {
        font-size: 28px;
    }

    .testimonial-large p {
        font-size: 22px;
    }

    .benefit-content h3 {
        font-size: 26px;
    }

    .section-services h2 {
        font-size: 32px;
    }

    .service-price {
        font-size: 28px;
    }

    .stat-number {
        font-size: 48px;
    }
}