/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

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

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

.cookie-accept, .cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.cookie-accept {
    background: #10b981;
    color: #fff;
}

.cookie-accept:hover {
    background: #059669;
}

.cookie-reject {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cookie-reject:hover {
    background: #374151;
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-weight: 700;
    font-size: 1.2rem;
    color: #4f46e5;
}

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

.nav-links a {
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4f46e5;
}

.nav-cta {
    background: #4f46e5;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: #4338ca;
}

/* Hero Visual Section */
.hero-visual {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.hero-overlay {
    max-width: 900px;
    text-align: center;
    z-index: 2;
    margin-bottom: 3rem;
}

.hero-visual h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #111827;
}

.hero-subtext {
    font-size: 1.5rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-image-container {
    width: 100%;
    max-width: 1200px;
    margin-top: 2rem;
}

/* Story Intro */
.story-intro {
    padding: 5rem 2rem;
    background: #fff;
}

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

.story-lead {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #111827;
}

.story-intro p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #374151;
}

/* Problem Reveal */
.problem-reveal {
    padding: 6rem 2rem;
    background: #fef3c7;
}

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

.split-text p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #374151;
}

.emphasis-text {
    font-weight: 700;
    color: #dc2626;
    font-size: 1.3rem;
}

.split-visual {
    flex: 1;
}

/* Insight Block */
.insight-block {
    padding: 5rem 2rem;
    background: #111827;
    color: #fff;
}

.insight-block h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.insight-block p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.insight-list {
    list-style: none;
    margin-top: 2rem;
}

.insight-list li {
    font-size: 1.3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid #10b981;
}

.insight-list strong {
    color: #10b981;
}

/* Trust Signal */
.trust-signal {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: space-around;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #4f46e5;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #6b7280;
}

/* Testimonial Section */
.testimonial-section {
    padding: 5rem 2rem;
    background: #fff;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: #f9fafb;
    border-radius: 1rem;
    border-left: 5px solid #4f46e5;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    color: #1f2937;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #6b7280;
    text-align: right;
}

/* Method Reveal */
.method-reveal {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: #fff;
}

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

.method-container h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
}

.method-intro {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.95;
}

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

.step-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.4;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

/* CTA Intermediate */
.cta-intermediate {
    padding: 4rem 2rem;
    background: #fef3c7;
    text-align: center;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.cta-box p {
    font-size: 1.2rem;
    color: #374151;
    margin-bottom: 2rem;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 2rem;
    background: #fff;
}

.benefits-section h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: #111827;
}

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

.benefit-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #f9fafb;
    border-radius: 1rem;
    border-top: 4px solid #4f46e5;
}

.benefit-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.benefit-card p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Service Selector */
.service-selector {
    padding: 6rem 2rem;
    background: #f3f4f6;
}

.service-selector h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #111827;
}

.service-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.service-box {
    flex: 1;
    min-width: 320px;
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
}

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

.service-box.featured {
    border: 3px solid #4f46e5;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #10b981;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
}

.service-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4f46e5;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.select-service {
    width: 100%;
    padding: 1rem;
    background: #4f46e5;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #4338ca;
}

/* Form Section */
.form-section {
    padding: 5rem 2rem;
    background: #fff;
}

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

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.selected-service-display {
    background: #f0fdf4;
    border: 2px solid #10b981;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #065f46;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1f2937;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4f46e5;
}

.form-submit {
    width: 100%;
    padding: 1.25rem;
    background: #10b981;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit:hover {
    background: #059669;
}

/* Urgency Section */
.urgency-section {
    padding: 3rem 2rem;
    background: #fef3c7;
    text-align: center;
}

.urgency-box {
    max-width: 700px;
    margin: 0 auto;
}

.urgency-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.urgency-subtext {
    font-size: 1.1rem;
    color: #78350f;
}

/* Final CTA */
.final-cta {
    padding: 6rem 2rem;
    background: #111827;
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.final-emphasis {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 2rem;
}

/* Buttons */
.cta-primary, .cta-secondary {
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-primary {
    background: #10b981;
    color: #fff;
}

.cta-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.cta-secondary {
    background: #4f46e5;
    color: #fff;
}

.cta-secondary:hover {
    background: #4338ca;
}

/* Footer */
.site-footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 4rem 2rem 2rem;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

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

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

.sticky-cta-button {
    padding: 1rem 2rem;
    background: #10b981;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transition: all 0.3s;
}

.sticky-cta-button:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

/* Page Hero */
.page-hero {
    padding: 10rem 2rem 5rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.5rem;
    color: #6b7280;
}

/* About Story */
.about-story {
    padding: 5rem 2rem;
    background: #fff;
}

.about-story h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #111827;
    text-align: center;
}

.about-story p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #374151;
    line-height: 1.7;
}

/* Values Section */
.values-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.values-section h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: #111827;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #4f46e5;
}

.value-card p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 5rem 2rem;
    background: #fff;
}

.team-container h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: #111827;
}

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

.team-member {
    text-align: center;
    max-width: 300px;
}

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

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.member-role {
    font-size: 1rem;
    color: #4f46e5;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Results Showcase */
.results-showcase {
    padding: 5rem 2rem;
    background: #4f46e5;
    color: #fff;
}

.results-showcase h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
}

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

.result-item {
    text-align: center;
    flex: 1;
}

.result-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.result-item p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Approach Section */
.approach-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.approach-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #111827;
    text-align: center;
}

.approach-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #374151;
}

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

.approach-point {
    padding: 2rem;
    background: #fff;
    border-radius: 0.5rem;
    border-left: 4px solid #4f46e5;
}

.approach-point h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.approach-point p {
    font-size: 1.1rem;
    color: #6b7280;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background: #111827;
    text-align: center;
}

.cta-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

/* Services Pages */
.services-intro {
    padding: 3rem 2rem;
    background: #fff;
}

.intro-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #111827;
}

.all-services {
    padding: 5rem 2rem;
    background: #f9fafb;
}

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

.service-detail-card {
    background: #fff;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.service-detail-card.featured-service {
    border: 3px solid #4f46e5;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

.service-badge {
    display: inline-block;
    background: #e5e7eb;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-badge.popular {
    background: #10b981;
    color: #fff;
}

.service-detail-card h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.price-display {
    font-size: 3rem;
    font-weight: 800;
    color: #4f46e5;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-includes h3,
.service-ideal h3,
.service-results h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.service-includes ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-includes li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.service-ideal,
.service-results {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.service-select-btn {
    width: 100%;
    padding: 1.25rem;
    background: #4f46e5;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 2rem;
}

.service-select-btn:hover {
    background: #4338ca;
}

/* Service Guarantee */
.service-guarantee {
    padding: 4rem 2rem;
    background: #fef3c7;
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: #fff;
    border-radius: 1rem;
    border: 3px solid #f59e0b;
}

.guarantee-box h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

.guarantee-box p {
    font-size: 1.2rem;
    color: #374151;
    line-height: 1.7;
}

.guarantee-note {
    font-size: 0.95rem;
    color: #78350f;
    margin-top: 1rem;
}

/* Comparison Section */
.comparison-section {
    padding: 5rem 2rem;
    background: #fff;
}

.comparison-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

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

.comparison-item {
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    border-left: 4px solid #4f46e5;
}

.comparison-item h3 {
    font-size: 1.2rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.comparison-item p {
    font-size: 1.1rem;
    color: #1f2937;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

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

.faq-item {
    background: #fff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.faq-item p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Final Service CTA */
.final-service-cta {
    padding: 5rem 2rem;
    background: #111827;
    text-align: center;
}

.final-service-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.final-service-cta p {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-content {
    padding: 5rem 2rem;
    background: #fff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #111827;
}

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

.contact-method h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #4f46e5;
}

.contact-method p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.6;
}

.contact-method a {
    color: #4f46e5;
    text-decoration: none;
}

.contact-note {
    font-size: 0.95rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.contact-note-box {
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.contact-visual {
    flex: 1;
}

/* Location Section */
.location-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.location-content {
    max-width: 1000px;
    margin: 0 auto;
}

.location-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #111827;
}

.location-content p {
    font-size: 1.2rem;
    color: #374151;
    text-align: center;
    margin-bottom: 3rem;
}

.location-details {
    display: flex;
    gap: 2rem;
    justify-content: space-around;
}

.location-item {
    text-align: center;
    flex: 1;
}

.location-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #4f46e5;
}

.location-item p {
    font-size: 1.1rem;
    color: #6b7280;
}

/* Contact CTA */
.contact-cta {
    padding: 5rem 2rem;
    background: #fff;
    text-align: center;
}

/* Thanks Page */
.thanks-hero {
    padding: 10rem 2rem 5rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.5rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.thanks-service-info {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thanks-next-steps {
    margin: 4rem 0;
}

.thanks-next-steps h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #111827;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

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

.step-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.step-content p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
}

.thanks-preparation {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1rem;
    margin: 3rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thanks-preparation h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
    text-align: left;
}

.thanks-preparation ul {
    list-style: none;
    text-align: left;
}

.thanks-preparation li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.thanks-preparation li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.thanks-testimonial {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 1rem;
    margin: 3rem 0;
    border-left: 5px solid #10b981;
}

.testimonial-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #6b7280;
    text-align: right;
}

.thanks-actions {
    margin: 4rem 0;
}

.thanks-actions h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.thanks-actions p {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.action-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: #4f46e5;
    color: #fff;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #4338ca;
}

.thanks-promise {
    padding: 4rem 2rem;
    background: #fff;
}

.promise-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: #f9fafb;
    border-radius: 1rem;
}

.promise-box h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

.promise-box p {
    font-size: 1.2rem;
    color: #374151;
    line-height: 1.7;
}

/* Legal Page */
.legal-page {
    padding: 8rem 2rem 5rem;
    background: #fff;
}

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

.legal-container h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #111827;
}

.legal-intro {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.legal-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #374151;
}

.legal-container p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.legal-container ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-container li {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-container a {
    color: #4f46e5;
    text-decoration: none;
}

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

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-table th {
    background: #f9fafb;
    font-weight: 700;
    color: #111827;
}

.cookie-table td {
    color: #4b5563;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-nav {
        top: 10px;
        padding: 0.75rem 1rem;
        gap: 1rem;
        flex-wrap: wrap;
        border-radius: 15px;
    }

    .nav-links {
        display: none;
    }

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

    .hero-subtext {
        font-size: 1.2rem;
    }

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

    .method-steps {
        flex-direction: column;
    }

    .stats-grid {
        flex-direction: column;
    }

    .benefits-grid {
        flex-direction: column;
    }

    .services-container {
        flex-direction: column;
    }

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

    .results-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .team-grid {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }

    .location-details {
        flex-direction: column;
    }

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

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

    .page-subtitle {
        font-size: 1.2rem;
    }
}