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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 6px 30px rgba(0, 0, 0, 0.12);
}

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

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

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 40px;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
}

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

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

.mobile-menu a {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
}

.hero-visual {
    margin-top: 70px;
    height: 90vh;
    min-height: 600px;
    position: relative;
}

.hero-image-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--bg-white);
    max-width: 900px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

.hero-overlay h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-overlay p {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.95;
}

.intro-curiosity {
    padding: 120px 20px;
    background: var(--bg-light);
    text-align: center;
}

.intro-curiosity h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    line-height: 1.3;
}

.intro-curiosity p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.visual-section-alt {
    padding: 0;
}

.split-visual {
    display: flex;
    min-height: 700px;
}

.visual-left,
.visual-right {
    flex: 1;
}

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

.visual-right {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: var(--bg-white);
}

.content-box h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    line-height: 1.4;
    color: var(--primary-color);
}

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

.problem-amplification {
    padding: 100px 20px;
    background: var(--primary-color);
    color: var(--bg-white);
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 60px;
}

.problem-item {
    flex: 1;
    min-width: 280px;
}

.problem-item h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.problem-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
}

.insight-reveal {
    padding: 120px 20px;
    background: var(--bg-light);
}

.insight-reveal h2 {
    font-size: 2.6rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.insight-reveal p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.8;
}

.cta-inline {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 40px;
    background: var(--secondary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.visual-story {
    padding: 0;
}

.image-overlay-block {
    position: relative;
    height: 600px;
}

.image-overlay-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-text {
    position: absolute;
    bottom: 80px;
    left: 60px;
    right: 60px;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    max-width: 700px;
}

.overlay-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.overlay-text p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.trust-building {
    padding: 120px 20px;
    background: var(--bg-white);
}

.trust-building h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 70px;
    color: var(--primary-color);
}

.trust-features {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.trust-item {
    flex: 1;
    min-width: 280px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    margin-bottom: 25px;
}

.trust-item h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

.testimonial {
    padding: 40px 0;
    border-left: 4px solid var(--accent-color);
    padding-left: 40px;
    margin-bottom: 50px;
}

.testimonial p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.7;
}

.testimonial cite {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
}

.visual-break {
    height: 400px;
}

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

.benefits-reveal {
    padding: 120px 20px;
    background: var(--bg-white);
}

.benefits-reveal h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 80px;
    color: var(--primary-color);
}

.benefits-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 60px;
}

.timeline-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 25px;
}

.timeline-step h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.timeline-step p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-center {
    text-align: center;
    margin-top: 60px;
}

.btn-primary-large {
    display: inline-block;
    padding: 22px 55px;
    background: var(--accent-color);
    color: var(--bg-white);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.social-proof {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.social-proof h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.social-proof p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.pricing-reveal {
    padding: 120px 20px;
    background: var(--bg-white);
}

.pricing-reveal h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 70px;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.price-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

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

.price-card.featured {
    background: var(--primary-color);
    color: var(--bg-white);
}

.price-card.featured h4,
.price-card.featured .price {
    color: var(--bg-white);
}

.price-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price-card h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.price-card p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.6;
    min-height: 80px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.btn-select-service {
    width: 100%;
    padding: 15px;
    background: var(--secondary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.price-card.featured .btn-select-service {
    background: var(--accent-color);
}

.price-card.featured .btn-select-service:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

.urgency-element {
    padding: 80px 20px;
    background: var(--accent-color);
}

.urgency-box {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.urgency-box h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.urgency-box p {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.form-section h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-section > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    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(--secondary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent-color);
    color: var(--bg-white);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.final-cta {
    padding: 100px 20px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

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

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

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-col h4,
.footer-col h5 {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col p {
    margin-bottom: 10px;
    opacity: 0.8;
    line-height: 1.6;
}

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
}

.sticky-cta-btn {
    padding: 18px 35px;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 25px;
    z-index: 1100;
    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;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie {
    padding: 12px 30px;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-cookie.btn-secondary {
    background: transparent;
    border: 2px solid var(--bg-white);
}

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

.page-hero {
    padding: 150px 20px 80px;
    background: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.page-hero p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-story,
.about-process {
    padding: 100px 20px;
    background: var(--bg-white);
}

.about-story h2,
.about-process h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.about-story p,
.about-process p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-visual {
    height: 500px;
}

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

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

.about-values h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 70px;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.about-team {
    padding: 100px 20px;
    background: var(--bg-white);
    text-align: center;
}

.about-team h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-team p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta {
    padding: 100px 20px;
    background: var(--bg-light);
    text-align: center;
}

.about-cta h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.services-intro {
    padding: 60px 20px;
    text-align: center;
}

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

.services-detailed {
    padding: 40px 20px 100px;
}

.service-block {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

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

.service-image {
    flex: 1;
}

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

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 30px 0 15px;
}

.service-includes {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.services-extras h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.extras-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.extra-item {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
}

.extra-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.extra-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.services-cta {
    padding: 100px 20px;
    background: var(--bg-white);
    text-align: center;
}

.services-cta h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.contact-content {
    padding: 60px 20px 100px;
}

.contact-grid {
    display: flex;
    gap: 80px;
}

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

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.info-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.info-block a {
    color: var(--secondary-color);
}

.info-block a:hover {
    color: var(--accent-color);
}

.map-placeholder {
    background: var(--bg-light);
    height: 500px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

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

.contact-how h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-how p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.contact-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-cta p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.contact-cta a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #4CAF50;
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.selected-service-info {
    margin-top: 30px;
    padding: 25px;
    background: var(--bg-white);
    border-radius: 8px;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.thanks-next-steps {
    padding: 100px 20px;
    background: var(--bg-white);
}

.thanks-next-steps h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.step-num {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-explore {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.thanks-explore h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-explore p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.thanks-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.thanks-link {
    padding: 15px 35px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-link:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.legal-page {
    padding: 150px 20px 100px;
    background: var(--bg-white);
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-page h2 {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.legal-page ul {
    margin-bottom: 25px;
    padding-left: 30px;
}

.legal-page ul li {
    list-style: disc;
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-page a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--accent-color);
}

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

    .hamburger {
        display: flex;
    }

    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .intro-curiosity h2,
    .insight-reveal h2,
    .trust-building h2,
    .benefits-reveal h2,
    .pricing-reveal h2 {
        font-size: 2rem;
    }

    .split-visual {
        flex-direction: column;
    }

    .visual-right {
        padding: 40px 25px;
    }

    .overlay-text {
        left: 20px;
        right: 20px;
        bottom: 40px;
        padding: 30px;
    }

    .problem-grid,
    .trust-features,
    .benefits-timeline {
        flex-direction: column;
    }

    .pricing-cards {
        flex-direction: column;
    }

    .service-block,
    .service-block.reverse {
        flex-direction: column;
    }

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

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

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

    .btn-cookie {
        width: 100%;
    }

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

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

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