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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --border-color: #e5e7eb;
}

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

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

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

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

.floating-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

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

.hero-offset {
    display: flex;
    min-height: 100vh;
    padding: 150px 5% 80px;
    align-items: center;
    gap: 60px;
}

.hero-content-left {
    flex: 1.2;
    padding-right: 40px;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-image-right {
    flex: 1;
    position: relative;
}

.hero-image-right img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
}

.curiosity-hook {
    padding: 80px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
}

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

.hook-text {
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-weight: 600;
    line-height: 1.5;
}

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

.stat-number {
    font-size: 4.5rem;
    font-weight: 900;
    display: block;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

.story-section {
    padding: 100px 5%;
    background: var(--bg-light);
}

.story-content-offset {
    max-width: 800px;
    margin-left: 10%;
}

.story-content-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.3;
}

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

.story-image {
    margin: 50px 0;
    transform: translateX(-60px);
}

.story-image img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.problem-amplification {
    padding: 100px 5%;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.problem-card:nth-child(2) {
    transform: translateY(30px);
}

.problem-card.highlighted {
    background: var(--primary-color);
    color: white;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.problem-card p {
    line-height: 1.7;
}

.cta-inline {
    padding: 60px 5%;
    text-align: center;
}

.cta-inline.secondary {
    background: var(--bg-light);
}

.cta-inline.urgency {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.cta-button-primary, .cta-button-secondary {
    display: inline-block;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-button-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

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

.cta-button-primary.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.urgency-text {
    margin-top: 15px;
    font-size: 0.95rem;
    opacity: 0.9;
}

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

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

.insight-image-left {
    flex: 0.8;
}

.insight-image-left img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.insight-content-right {
    flex: 1.2;
}

.insight-content-right h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

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

.benefit-list {
    list-style: none;
    margin-top: 30px;
}

.benefit-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 1.05rem;
}

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

.trust-building {
    padding: 100px 5%;
    background: white;
}

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

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-box {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
}

.stat-big {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
}

.stat-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 10px;
}

.testimonials-scattered {
    padding: 100px 5%;
    background: var(--bg-light);
    position: relative;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    margin: 30px 0;
}

.testimonial-card.left-offset {
    margin-left: 5%;
}

.testimonial-card.right-offset {
    margin-left: auto;
    margin-right: 10%;
}

.testimonial-card.center-offset {
    margin-left: 20%;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
}

.benefits-reveal {
    padding: 100px 5%;
    background: white;
}

.section-title-centered {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

.benefit-large {
    flex: 1.5;
    min-width: 350px;
}

.benefit-large img {
    border-radius: 15px;
    margin-bottom: 25px;
}

.benefit-large h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.benefit-small {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    background: var(--bg-light);
    border-radius: 15px;
}

.benefit-small.top {
    align-self: flex-start;
}

.benefit-small.bottom {
    align-self: flex-end;
    margin-top: 40px;
}

.benefit-small h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.urgency-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
}

.urgency-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.urgency-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.urgency-content p {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.urgency-calc {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calc-item {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.calc-item.highlight {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid white;
    font-weight: 700;
}

.calc-label, .calc-value {
    font-size: 1.2rem;
}

.services-pricing {
    padding: 100px 5%;
    background: var(--bg-light);
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
}

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

.pricing-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
    border: 3px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-desc {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.6;
}

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

.price-tag {
    text-align: center;
    margin: 30px 0;
}

.price-old {
    display: block;
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
}

.service-cta {
    display: block;
    text-align: center;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.additional-services {
    padding: 80px 5%;
    background: white;
}

.additional-services h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.addon-list {
    max-width: 800px;
    margin: 0 auto;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.addon-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.addon-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.guarantee-section {
    padding: 80px 5%;
    background: var(--bg-light);
}

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

.guarantee-content h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
}

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

.guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    padding: 12px 30px;
    background: white;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-section {
    padding: 100px 5%;
    background: white;
}

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

.form-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

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

.submit-button {
    padding: 18px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-reassurance {
    padding: 80px 5%;
    background: var(--bg-light);
}

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

.reassurance-content h3 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: var(--primary-color);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.sticky-button {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
}

.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 5% 30px;
}

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

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

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

.footer-section li {
    margin-bottom: 10px;
}

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

.footer-section a:hover {
    color: white;
}

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

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-btn.reject {
    background: var(--text-light);
    color: white;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.about-hero, .services-hero, .contact-hero, .thanks-hero, .legal-hero {
    padding: 180px 5% 80px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.about-hero h1, .services-hero h1, .contact-hero h1, .thanks-hero h1, .legal-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-lead, .contact-lead, .thanks-lead, .services-lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

.legal-date {
    opacity: 0.9;
    font-size: 1.1rem;
}

.story-origin, .mission-section, .team-section, .values-section, .certifications, .cta-about {
    padding: 80px 5%;
}

.origin-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.origin-text {
    flex: 1.2;
}

.origin-text h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
}

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

.origin-image {
    flex: 1;
}

.origin-image img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

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

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

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

.mission-pillars {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

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

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

.team-section {
    background: white;
}

.team-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.team-member img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

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

.values-asymmetric {
    display: flex;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.value-large {
    flex: 1.5;
}

.value-large h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.value-large p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.value-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 5px;
}

.certifications {
    background: white;
}

.certifications h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 40px;
}

.cert-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.cert-item {
    padding: 15px 30px;
    background: var(--bg-light);
    border-radius: 25px;
    font-weight: 600;
}

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

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

.services-intro {
    padding: 60px 5%;
    background: white;
}

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

.intro-content h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

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

.main-services {
    padding: 80px 5%;
    background: var(--bg-light);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-content {
    padding: 40px;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

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

.service-includes {
    list-style: none;
    margin-bottom: 30px;
}

.service-includes li {
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.6;
}

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

.service-price {
    text-align: center;
    margin: 30px 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 8px;
    display: block;
}

.service-cta-btn {
    display: block;
    text-align: center;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.additional-services-section {
    padding: 80px 5%;
    background: white;
}

.additional-services-section h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 50px;
}

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

.addon-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.addon-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.addon-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.addon-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.service-benefits {
    padding: 80px 5%;
    background: var(--bg-light);
}

.service-benefits h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 50px;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-item {
    flex: 1;
    min-width: 300px;
}

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

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

.comparison-section {
    padding: 80px 5%;
    background: white;
}

.comparison-section h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 50px;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row.header {
    font-weight: 700;
    background: var(--bg-light);
}

.comp-cell {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.comp-cell.highlight {
    background: rgba(37, 99, 235, 0.1);
    font-weight: 700;
    color: var(--primary-color);
}

.faq-services {
    padding: 80px 5%;
    background: var(--bg-light);
}

.faq-services h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.cta-services {
    padding: 80px 5%;
    background: white;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

.contact-content {
    padding: 80px 5%;
}

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

.contact-info-block {
    flex: 1.2;
}

.contact-info-block h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.contact-info-block > p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

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

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

.info-detail {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-detail a {
    color: var(--primary-color);
    font-weight: 600;
}

.info-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.address {
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-areas {
    list-style: none;
    margin-top: 15px;
}

.service-areas li {
    padding: 8px 0 8px 25px;
    position: relative;
}

.service-areas li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.contact-map-block {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.contact-alternative {
    padding: 80px 5%;
    background: var(--bg-light);
    text-align: center;
}

.contact-alternative h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.contact-alternative p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-faq {
    padding: 80px 5%;
    background: white;
}

.contact-faq h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
}

.faq-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-reassurance {
    padding: 80px 5%;
    background: var(--bg-light);
}

.reassurance-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

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

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

.success-icon {
    margin-bottom: 30px;
}

.thanks-info {
    padding: 80px 5%;
    background: white;
}

.info-container {
    max-width: 900px;
    margin: 0 auto;
}

.info-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

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

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

.service-reminder {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
}

.service-reminder h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.selected-service-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-note {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-expectations {
    padding: 80px 5%;
    background: white;
}

.thanks-expectations h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 50px;
}

.expectations-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.expectation-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 35px;
    border-radius: 15px;
}

.expectation-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.expectation-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-additional {
    padding: 80px 5%;
    background: var(--bg-light);
}

.thanks-additional h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 50px;
}

.resource-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.resource-link {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.resource-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.resource-link h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.resource-link p {
    color: var(--text-light);
}

.thanks-social-proof {
    padding: 60px 5%;
    background: white;
}

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

.social-proof-content h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.mini-testimonials {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.mini-test {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
}

.mini-test p {
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.6;
}

.mini-test span {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
}

.thanks-cta {
    padding: 80px 5%;
    background: var(--bg-light);
    text-align: center;
}

.thanks-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
}

.legal-content {
    padding: 60px 5% 100px;
    background: white;
}

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

.legal-container h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.legal-container h4 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: var(--text-dark);
}

.legal-container p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-container ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-container li {
    margin-bottom: 10px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

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

.cookie-table th {
    background: var(--bg-light);
    font-weight: 700;
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: 20px;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        display: none;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-offset {
        flex-direction: column;
        padding: 120px 5% 60px;
    }

    .hero-content-left {
        padding-right: 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .problem-grid, .pricing-grid, .trust-stats, .benefits-asymmetric {
        flex-direction: column;
    }

    .problem-card:nth-child(2) {
        transform: translateY(0);
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .insight-container, .origin-layout, .values-asymmetric, .contact-layout {
        flex-direction: column;
    }

    .story-image {
        transform: translateX(0);
    }

    .testimonial-card.left-offset,
    .testimonial-card.right-offset,
    .testimonial-card.center-offset {
        margin-left: 0;
        margin-right: 0;
    }

    .hook-text {
        font-size: 1.4rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .section-title, .section-title-centered {
        font-size: 2rem;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
    }

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

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

@media (max-width: 640px) {
    .floating-nav {
        padding: 12px 20px;
    }

    .nav-brand {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

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

    .hook-text {
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .price {
        font-size: 2rem;
    }

    .sticky-cta {
        padding: 15px;
    }

    .sticky-button {
        font-size: 1rem;
        padding: 12px 25px;
    }

    .section-title, .section-title-centered {
        font-size: 1.6rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}
