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

:root {
    --primary-color: #2D3E50;
    --secondary-color: #E74C3C;
    --accent-color: #3498DB;
    --dark-bg: #1A1A1A;
    --light-bg: #F8F9FA;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
}

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

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

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

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.875rem);
}

p {
    margin-bottom: 1rem;
}

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

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

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

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

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

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

.btn-accept, .btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--accent-color);
    color: var(--white);
}

.btn-accept:hover {
    background: #2980B9;
}

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

.btn-reject:hover {
    background: var(--white);
    color: var(--dark-bg);
}

.nav-asymmetric {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

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

.nav-links a:hover:after {
    width: 100%;
}

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

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

.hero-offset {
    margin-top: 100px;
    padding: 4rem 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text-block {
    flex: 1;
    min-width: 300px;
    transform: translateX(-30px);
}

.hero-text-block h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.5;
}

.hero-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
    transform: translateY(20px) rotate(-2deg);
}

.hero-visual img {
    border-radius: 12px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
}

.intro-staggered {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: flex-start;
}

.intro-left {
    flex: 1.2;
    min-width: 300px;
}

.intro-right {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.intro-right img {
    border-radius: 8px;
    margin-bottom: 2rem;
}

.insight-box {
    background: var(--accent-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transform: translateX(30px);
}

.insight-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.insight-label {
    font-size: 1rem;
    display: block;
}

.problem-amplify {
    background: var(--light-bg);
    padding: 5rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.problem-content {
    flex: 1.3;
    min-width: 300px;
    max-width: 700px;
}

.problem-scenarios {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.scenario-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--text-light);
}

.scenario-card.highlighted {
    border-left-color: var(--secondary-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.problem-visual {
    flex: 1;
    min-width: 300px;
}

.problem-visual img {
    border-radius: 12px;
    transform: rotate(3deg);
    box-shadow: -15px 15px 40px rgba(0,0,0,0.1);
}

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

.mechanism-reveal h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.mechanism-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.mech-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
    position: relative;
}

.mech-item.offset-top {
    transform: translateY(-30px);
}

.mech-item.offset-bottom {
    transform: translateY(30px);
}

.mech-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.trust-builder {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.trust-content {
    flex: 1.5;
    min-width: 300px;
}

.trust-content h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.testimonials-offset {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial:nth-child(even) {
    transform: translateX(30px);
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-size: 0.95rem;
    opacity: 0.8;
    font-style: normal;
}

.trust-stat {
    flex: 1;
    min-width: 300px;
}

.trust-stat img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.services-intro {
    padding: 5rem 2rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.services-lead {
    font-size: 1.25rem;
    color: var(--text-light);
}

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

.service-block {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    background: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
}

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

.service-visual {
    flex: 1;
    min-width: 300px;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details {
    flex: 1.3;
    padding: 2rem;
    min-width: 300px;
}

.service-details h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.btn-service {
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-break {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    background: var(--white);
    color: var(--secondary-color);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.insights-deep {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.insights-deep h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.insights-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
    border-top: 4px solid var(--accent-color);
}

.insight-card:nth-child(2n) {
    transform: translateY(20px);
}

.process-reveal {
    padding: 5rem 2rem;
    background: var(--light-bg);
    text-align: center;
}

.process-reveal h2 {
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.urgency-block {
    padding: 5rem 2rem;
    background: var(--dark-bg);
    color: var(--white);
}

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

.urgency-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    max-width: 250px;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

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

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

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input {
    margin-top: 0.25rem;
    width: auto;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.95rem;
}

.btn-submit {
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.final-push {
    padding: 5rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.final-push h2 {
    margin-bottom: 1.5rem;
}

.btn-cta {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-cta:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

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

.footer-section p {
    font-size: 0.95rem;
    opacity: 0.8;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.6;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}

.about-hero {
    margin-top: 100px;
    padding: 5rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-content {
    flex: 1;
    min-width: 300px;
}

.about-hero-image {
    flex: 1;
    min-width: 300px;
}

.about-hero-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.about-story {
    padding: 5rem 2rem;
    background: var(--light-bg);
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.story-content {
    flex: 1.3;
    min-width: 300px;
}

.story-visual {
    flex: 1;
    min-width: 300px;
}

.story-visual img {
    border-radius: 12px;
}

.about-philosophy {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-philosophy h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.philosophy-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.phil-block {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.about-team {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.about-team h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-image img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 0 auto;
}

.member-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.about-approach {
    padding: 5rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.approach-content {
    flex: 1;
    min-width: 300px;
}

.approach-list {
    list-style: none;
    margin-top: 1.5rem;
}

.approach-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.125rem;
    font-weight: 500;
}

.approach-image {
    flex: 1;
    min-width: 300px;
}

.approach-image img {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.about-results {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.about-results h2 {
    color: var(--white);
    margin-bottom: 3rem;
}

.results-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.result-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-big {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.about-cta {
    padding: 5rem 2rem;
    text-align: center;
}

.about-cta h2 {
    margin-bottom: 2rem;
}

.services-hero {
    margin-top: 100px;
    padding: 4rem 2rem 2rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

.services-list {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detailed {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.service-detailed.featured {
    border: 3px solid var(--secondary-color);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-header {
    background: var(--light-bg);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-body {
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-description {
    flex: 2;
    min-width: 300px;
}

.service-description ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.service-description li {
    margin-bottom: 0.5rem;
}

.service-suitable {
    font-style: italic;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.service-cta {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.service-cta img {
    border-radius: 8px;
    max-width: 100%;
}

.btn-service-large {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

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

.services-comparison {
    padding: 5rem 2rem;
    background: var(--light-bg);
    max-width: 1400px;
    margin: 0 auto;
}

.services-comparison h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

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

.comparison-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.services-cta {
    padding: 5rem 2rem;
    text-align: center;
}

.services-cta h2 {
    margin-bottom: 1.5rem;
}

.contact-hero {
    margin-top: 100px;
    padding: 4rem 2rem 2rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 6px;
    font-size: 0.95rem;
}

.social-link:hover {
    background: var(--primary-color);
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-map img {
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.map-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
}

.contact-faq {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

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

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

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

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

.contact-final {
    padding: 5rem 2rem;
    text-align: center;
}

.legal-page {
    margin-top: 100px;
    padding: 3rem 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

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

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

.legal-content li {
    margin-bottom: 0.5rem;
}

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

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

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

.gdpr-table,
.cookies-table {
    margin: 2rem 0;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    margin-top: 80px;
}

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

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

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

.service-confirmation {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

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

.btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--accent-color);
    padding: 1rem 2rem;
    border: 2px solid var(--accent-color);
    border-radius: 6px;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-text-block {
        transform: none;
    }

    .hero-visual {
        transform: none;
    }

    .insight-box {
        transform: none;
    }

    .problem-visual img {
        transform: none;
    }

    .mech-item.offset-top,
    .mech-item.offset-bottom {
        transform: none;
    }

    .testimonial:nth-child(even) {
        transform: none;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        flex-direction: column;
    }

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

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

    .form-container {
        padding: 2rem 1.5rem;
    }
}