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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --text-gray: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.navigation {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 6rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-right {
    flex: 1;
    height: 85vh;
}

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

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

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

.split-content-left,
.split-content-right {
    flex: 1;
    padding: 2rem 3rem;
}

.split-image-left,
.split-image-right {
    flex: 1;
}

.split-image-left img,
.split-image-right img {
    width: 100%;
    height: auto;
    display: block;
}

.label {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--highlight-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.split-content-left h2,
.split-content-right h2 {
    font-size: 2.5rem;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-content-left p,
.split-content-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.2rem;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 1rem;
}

.cta-primary {
    background: var(--highlight-color);
    color: var(--text-light);
}

.cta-primary:hover {
    background: #d63950;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.cta-primary.large {
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
}

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

.insight-section,
.problem-amplification,
.trust-builder,
.methodology,
.services-reveal,
.case-proof,
.urgency-block {
    padding: 4rem 0;
}

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

.problem-amplification {
    background: var(--primary-color);
    color: var(--text-light);
}

.problem-amplification h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.stats-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.stat-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.benefit-list {
    list-style: none;
    margin: 2rem 0;
}

.benefit-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.testimonial-inline {
    padding: 5rem 0;
    background: var(--bg-light);
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--bg-white);
    border-left: 4px solid var(--highlight-color);
}

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

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.full-width-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.full-width-content h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.method-split {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.method-column {
    flex: 1;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.method-column.highlight {
    background: var(--primary-color);
    color: var(--text-light);
}

.method-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.method-column.highlight h3 {
    color: var(--text-light);
}

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

.comparison-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    line-height: 1.6;
}

.comparison-list.negative li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
}

.comparison-list.positive li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--highlight-color);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border-color: var(--highlight-color);
    background: linear-gradient(135deg, #fff 0%, #fff5f7 100%);
}

.badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--highlight-color);
    color: var(--text-light);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.service-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    flex: 1;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--highlight-color);
    white-space: nowrap;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--highlight-color);
    font-size: 1.5rem;
}

.select-service,
.btn-submit,
.btn-primary,
.btn-secondary {
    padding: 0.9rem 2rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
}

.select-service,
.btn-submit,
.btn-primary {
    background: var(--highlight-color);
    color: var(--text-light);
}

.select-service:hover,
.btn-submit:hover,
.btn-primary:hover {
    background: #d63950;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.urgency-block {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    padding: 5rem 2rem;
}

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

.urgency-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.urgency-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.urgency-highlight {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-light);
    margin: 2rem 0;
}

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

.form-container-split {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.form-benefits {
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--highlight-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.benefit-item p {
    margin: 0;
    font-size: 1rem;
}

.form-right {
    flex: 1;
}

.contact-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

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

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

.form-group textarea {
    resize: vertical;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1.2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: 999;
}

.sticky-cta.visible {
    transform: translateY(0);
}

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

.sticky-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.sticky-btn {
    padding: 0.8rem 2rem;
    background: var(--highlight-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.sticky-btn:hover {
    background: #d63950;
}

.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

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

.footer-column ul li a:hover {
    color: var(--text-light);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--highlight-color);
    color: var(--text-light);
}

.btn-accept:hover {
    background: #d63950;
}

.btn-reject {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

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

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

.page-hero-small {
    padding: 4rem 2rem;
}

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

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

.hero-content-centered p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.stats-row {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 200px;
}

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

.stat-item p {
    font-size: 1rem;
    color: var(--text-gray);
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--highlight-color);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

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

.feature-list li {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list strong {
    color: var(--primary-color);
}

.clients-testimony {
    background: var(--bg-light);
    padding: 6rem 0;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.testimonial-box {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid var(--highlight-color);
}

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

.testimonial-box strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.testimonial-box span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
}

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

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

.cta-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cta-content-centered p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.service-detail-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 3rem;
    margin-bottom: 2rem;
    position: relative;
}

.featured-service {
    border-color: var(--highlight-color);
    background: linear-gradient(135deg, #fff 0%, #fff5f7 100%);
}

.badge-large {
    position: absolute;
    top: -15px;
    left: 3rem;
    background: var(--highlight-color);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-detail-split {
    display: flex;
    gap: 4rem;
}

.service-detail-left,
.service-detail-right {
    flex: 1;
}

.service-category {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--highlight-color);
    font-weight: 700;
    margin-bottom: 1rem;
    background: rgba(233, 69, 96, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

.service-description-large {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 1.5rem 0;
}

.price-block {
    margin: 2rem 0;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--highlight-color);
}

.detailed-features {
    list-style: none;
    margin: 2rem 0;
}

.detailed-features li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.detailed-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: bold;
    font-size: 1.2rem;
}

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

.comparison-table {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.comparison-column {
    flex: 1;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
}

.comparison-column.highlight-column {
    background: var(--primary-color);
    color: var(--text-light);
}

.comparison-column h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.comparison-column.highlight-column h3 {
    color: var(--text-light);
}

.comparison-list-simple {
    list-style: none;
}

.comparison-list-simple li {
    padding: 0.9rem 0 0.9rem 2rem;
    position: relative;
    line-height: 1.6;
}

.comparison-column:not(.highlight-column) .comparison-list-simple li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
}

.comparison-column.highlight-column .comparison-list-simple li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.comparison-column.highlight-column .comparison-list-simple li {
    color: rgba(255, 255, 255, 0.95);
}

.process-section {
    padding: 6rem 0;
}

.process-steps {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
}

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.process-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.contact-page-content {
    padding: 4rem 0;
}

.contact-layout-split {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 5rem;
}

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

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

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
    font-weight: 600;
}

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

.info-item a {
    color: var(--highlight-color);
    text-decoration: none;
}

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

.info-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 0.5rem;
}

.expectations {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.expectations h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

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

.expectations-list li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    line-height: 1.6;
}

.expectations-list li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--highlight-color);
    font-size: 1.5rem;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.form-wrapper {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-intro {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.checkbox-group {
    margin-top: 1.5rem;
}

.checkbox-label {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.checkbox-label a {
    color: var(--highlight-color);
    text-decoration: none;
}

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

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--highlight-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

.service-selected {
    font-size: 1rem;
    color: var(--text-dark);
}

.next-steps {
    text-align: left;
    margin: 3rem auto;
    max-width: 500px;
}

.next-steps h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.steps-list {
    padding-left: 1.5rem;
}

.steps-list li {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.thanks-note {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.thanks-note p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.thanks-note a {
    color: var(--highlight-color);
    text-decoration: none;
}

.thanks-note a:hover {
    text-decoration: underline;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--bg-white);
    border-radius: 8px;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.updated {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

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

.legal-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--text-gray);
}

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

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

.legal-content strong {
    color: var(--text-dark);
}

.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;
    color: var(--primary-color);
}

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

.case-steps {
    list-style: none;
    counter-reset: case-counter;
    margin: 1.5rem 0;
}

.case-steps li {
    counter-increment: case-counter;
    padding-left: 3rem;
    position: relative;
    margin-bottom: 1rem;
}

.case-steps li:before {
    content: counter(case-counter);
    position: absolute;
    left: 0;
    background: var(--highlight-color);
    color: var(--text-light);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

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

    .hero-left {
        padding: 3rem 2rem;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .hero-right {
        height: 60vh;
    }

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

    .method-split,
    .comparison-table,
    .form-container-split,
    .contact-layout-split {
        flex-direction: column;
        gap: 2rem;
    }

    .service-detail-split {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .split-content-left h2,
    .split-content-right h2,
    .full-width-content h2 {
        font-size: 2rem;
    }

    .stats-grid,
    .stats-row,
    .process-steps,
    .values-grid,
    .testimonials-grid {
        flex-direction: column;
    }

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

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

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .hero-left h1 {
        font-size: 1.8rem;
    }

    .cta-primary,
    .cta-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-card,
    .contact-form,
    .form-wrapper {
        padding: 1.5rem;
    }
}