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

:root {
    --primary-color: #0a4d8c;
    --secondary-color: #1a73b8;
    --accent-color: #ff6b35;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --snow: #fafbfc;
    --border-color: #dee2e6;
}

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

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

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-cta {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-cta:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

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

.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: 1rem;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

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

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

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

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

.hero-immersive {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: -1;
}

.hero-text-overlay {
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    opacity: 0.95;
    letter-spacing: 1px;
}

.curiosity-hook {
    padding: 5rem 5% 4rem;
    background: var(--snow);
}

.narrow-content {
    max-width: 750px;
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--text-dark);
}

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

.lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.7;
}

.visual-story-section {
    padding: 6rem 5%;
    background: var(--white);
}

.story-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.story-text h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: var(--text-light);
    line-height: 1.8;
}

.problem-amplification {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

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

.centered-text-block h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
}

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

.problem-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.problem-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.problem-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.problem-card p {
    font-size: 1rem;
    opacity: 0.9;
}

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

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.sticky-btn:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

.insight-reveal {
    padding: 7rem 5%;
    background: var(--light-bg);
}

.offset-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.insight-content .label {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.insight-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-dark);
}

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

.insight-visual img {
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.testimonial-flow {
    padding: 5rem 5%;
    background: var(--dark-bg);
    color: var(--white);
}

.testimonial-inline {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-inline blockquote {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.trust-building {
    padding: 6rem 5%;
    background: var(--white);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    text-align: center;
}

.trust-stat {
    padding: 2rem;
}

.big-number {
    display: block;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.benefits-cascade {
    padding: 7rem 5% 6rem;
    background: var(--light-bg);
}

.section-centered-title {
    text-align: center;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 5rem;
    color: var(--text-dark);
}

.benefits-stagger {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.benefit-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.benefit-image {
    width: 100%;
}

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

.benefit-text h3 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.how-it-works {
    padding: 6rem 5%;
    background: var(--white);
}

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

.step-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
}

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

.step-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

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

.step-connector {
    display: none;
}

.pricing-reveal {
    padding: 7rem 5%;
    background: var(--dark-bg);
    color: var(--white);
}

.pricing-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-intro h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.pricing-subtext {
    font-size: 1.2rem;
    opacity: 0.8;
}

.pricing-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.price-card {
    background: var(--white);
    color: var(--text-dark);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.price-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    transform: scale(1);
}

.package-label {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.package-label.best {
    background: var(--accent-color);
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.price-display {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.price-card.featured .price-display {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
}

.period {
    display: block;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    opacity: 0.7;
}

.package-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.package-features li {
    padding: 0.8rem 0;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.5;
}

.package-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.price-card.featured .package-features li:before {
    color: var(--white);
}

.price-cta {
    width: 100%;
    background: var(--accent-color);
    color: var(--white);
    padding: 1.2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.price-cta:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.urgency-element {
    padding: 4rem 5%;
    background: var(--white);
}

.urgency-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 2rem 2.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.urgency-icon {
    font-size: 3rem;
}

.urgency-text h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

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

.final-testimonials {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.final-testimonials h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
}

.testimonials-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.testimonial-card p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    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.95rem;
    color: var(--text-light);
}

.booking-section {
    padding: 7rem 5%;
    background: var(--white);
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.booking-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.booking-form {
    background: var(--light-bg);
    padding: 3rem 2.5rem;
    border-radius: 12px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    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(--primary-color);
}

.checkbox-group label {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    font-weight: 400;
    font-size: 0.95rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
}

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

.form-submit {
    width: 100%;
    background: var(--accent-color);
    color: var(--white);
    padding: 1.3rem;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 1.5rem;
}

.form-submit:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.guarantee-section {
    padding: 4rem 5%;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.guarantee-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.guarantee-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.site-footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

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

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

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

.footer-col ul li 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.7;
}

.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.page-hero.small {
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.page-hero-content {
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.4);
}

.page-hero-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    opacity: 0.95;
}

.about-story {
    padding: 6rem 5%;
    background: var(--white);
}

.mission-section {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.split-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.split-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.split-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.3rem;
}

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

.values-section {
    padding: 6rem 5%;
    background: var(--white);
}

.values-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
}

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

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

.team-intro {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.cta-about,
.cta-services,
.cta-contact {
    padding: 5rem 5%;
    background: var(--primary-color);
}

.cta-box {
    text-align: center;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-3px);
}

.services-intro {
    padding: 4rem 5% 2rem;
    background: var(--white);
}

.services-pricing {
    padding-top: 2rem;
}

.additional-services {
    padding: 6rem 5%;
    background: var(--white);
}

.extras-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

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

.extra-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

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

.why-choose {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.why-choose h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
}

.features-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.check-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
    flex-shrink: 0;
}

.feature-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-section {
    padding: 6rem 5%;
    background: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.contact-block h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

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

.contact-block a {
    color: var(--primary-color);
    text-decoration: underline;
}

.note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map-placeholder {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.map-overlay p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 1rem;
    line-height: 1.7;
}

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

.faq-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
}

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

.faq-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

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

.thanks-hero {
    padding: 10rem 5% 6rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

.thanks-details {
    padding: 6rem 5%;
    background: var(--white);
}

.timeline-steps {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

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

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

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

.thanks-service-info {
    padding: 4rem 5%;
    background: var(--light-bg);
}

.service-info-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-info-box h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

#service-name-display {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

.thanks-contact {
    padding: 5rem 5%;
    background: var(--white);
}

.thanks-continue {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.continue-browsing h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.continue-links {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.continue-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.continue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.continue-card h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.continue-card p {
    font-size: 1rem;
    color: var(--text-light);
}

.legal-page {
    padding: 8rem 5% 6rem;
    background: var(--white);
}

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

.legal-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

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

.legal-content li {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

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

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

.cookie-table thead {
    background: var(--light-bg);
}

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

.cookie-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

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

    .story-grid {
        flex-direction: row;
        align-items: center;
    }

    .story-image,
    .story-text {
        flex: 1;
    }

    .problem-grid {
        flex-direction: row;
    }

    .offset-layout {
        flex-direction: row;
        align-items: center;
    }

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

    .trust-container {
        flex-direction: row;
        justify-content: space-around;
    }

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

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

    .benefit-image,
    .benefit-text {
        flex: 1;
    }

    .steps-visual {
        flex-direction: row;
        align-items: flex-start;
    }

    .step-connector {
        display: block;
        width: 50px;
        height: 2px;
        background: var(--accent-color);
        margin-top: 5rem;
    }

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

    .price-card {
        flex: 1;
    }

    .price-card.featured {
        transform: scale(1.05);
    }

    .urgency-box {
        flex-direction: row;
        text-align: left;
    }

    .testimonials-grid {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }

    .form-row {
        flex-direction: row;
    }

    .form-group {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .split-layout {
        flex-direction: row;
        align-items: center;
    }

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

    .values-grid {
        flex-direction: row;
    }

    .value-card {
        flex: 1;
    }

    .contact-container {
        flex-direction: row;
    }

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

    .continue-links {
        flex-direction: row;
    }

    .continue-card {
        flex: 1;
    }

    .extras-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .extra-card {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .sticky-cta {
        display: block;
    }
}
