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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
}

/* Container Utilities */
.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1a1a1a;
}

/* Hero Sections */
.hero-immersive {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.15;
    z-index: 0;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: transform 0.2s, background 0.2s;
}

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

/* Story and Content Sections */
.story-hook {
    padding: 5rem 0;
    background: #fafafa;
}

.opening-line {
    font-size: 1.5rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: #2a2a2a;
}

.story-hook p {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    color: #444;
}

/* Problem Amplification */
.problem-amplification {
    padding: 6rem 0;
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.25;
    font-weight: 700;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

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

.impact-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    color: #555;
}

.impact-list li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #d63031;
    font-weight: 700;
}

.split-image {
    flex: 1;
}

.image-placeholder {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 8px;
}

.img-problem {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

/* Insight Reveal */
.insight-reveal {
    padding: 6rem 0;
    background: #1a1a1a;
    color: #fff;
}

.section-heading-center {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.insight-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.insight-highlight {
    font-size: 1.35rem;
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #667eea;
    font-weight: 500;
    line-height: 1.7;
}

/* Scenario Storytelling */
.scenario-storytelling {
    padding: 6rem 0;
}

.scenario-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.scenario-card {
    flex: 1;
}

.scenario-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.img-scenario-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.img-scenario-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.img-scenario-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.scenario-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.scenario-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.65;
}

/* Method Breakdown */
.method-breakdown {
    padding: 6rem 0;
    background: #fafafa;
}

.method-breakdown h2 {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.method-steps {
    margin-top: 3rem;
}

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

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e5e5e5;
    line-height: 1;
    flex-shrink: 0;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.step p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

/* Inline CTA Banner */
.inline-cta-banner {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.cta-question {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta-inline-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 700;
    transition: transform 0.2s;
}

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

/* Testimonials */
.testimonial-section {
    padding: 6rem 0;
}

.testimonials-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial {
    flex: 1;
    padding: 2rem;
    background: #fafafa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: #2a2a2a;
}

.testimonial cite {
    font-style: normal;
    color: #777;
    font-size: 0.95rem;
}

/* Trust Building */
.trust-building {
    padding: 6rem 0;
    background: #fafafa;
}

.trust-building h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.trust-elements {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 2rem;
}

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

.trust-item h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.trust-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.65;
}

/* Benefits Reveal */
.benefits-reveal {
    padding: 6rem 0;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-block {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background: #fafafa;
    border-radius: 8px;
    transition: transform 0.2s;
}

.benefit-block:hover {
    transform: translateY(-4px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.benefit-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-block p {
    font-size: 1rem;
    color: #555;
    line-height: 1.65;
}

/* Pricing Reveal */
.pricing-reveal {
    padding: 6rem 0;
    background: #fafafa;
}

.pricing-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #555;
}

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

.service-card {
    padding: 2.5rem;
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    transition: border-color 0.3s, transform 0.2s;
    position: relative;
}

.service-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
}

.service-card.featured {
    border-color: #667eea;
    background: linear-gradient(to bottom, #f8f9ff 0%, #fff 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: #667eea;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00b894;
    font-weight: 700;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 1.5rem 0;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

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

.btn-select-service.featured-btn {
    background: #667eea;
}

.btn-select-service.featured-btn:hover {
    background: #5568d3;
}

/* Urgency Section */
.urgency-section {
    padding: 5rem 0;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

.urgency-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.urgency-highlight {
    font-size: 1.5rem;
    margin-top: 2rem;
    font-weight: 600;
    color: #667eea;
}

/* Final CTA */
.final-cta-section {
    padding: 5rem 0;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-final-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.25rem 3rem;
    background: #667eea;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.15rem;
    font-weight: 700;
    transition: background 0.2s;
}

.cta-final-btn:hover {
    background: #5568d3;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.modal-close:hover {
    color: #333;
}

.selected-price {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #667eea;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2a2a2a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.btn-submit-form {
    width: 100%;
    padding: 1rem;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit-form:hover {
    background: #5568d3;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: 1rem 2rem;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-cta-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.sticky-cta-btn {
    padding: 0.75rem 2rem;
    background: #667eea;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.sticky-cta-btn:hover {
    background: #5568d3;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 3000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-cookie-accept {
    background: #00b894;
    color: #fff;
}

.btn-cookie-reject {
    background: #fff;
    color: #1a1a1a;
}

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    opacity: 0.9;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #777;
    font-size: 0.9rem;
}

/* Page Hero */
.page-hero {
    padding: 5rem 0 3rem;
    text-align: center;
    background: #fafafa;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.lead-text {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.7;
}

/* About Page */
.about-content {
    padding: 4rem 0;
}

.about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.75;
}

.milestone-timeline {
    margin-top: 3rem;
}

.milestone {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.milestone-year {
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
    flex-shrink: 0;
}

.milestone h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.milestone p {
    font-size: 1.05rem;
    color: #555;
}

.philosophy-section {
    padding: 5rem 0;
    background: #fafafa;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #e5e5e5;
}

.philosophy-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.philosophy-card p {
    color: #555;
    line-height: 1.65;
}

.team-intro {
    padding: 5rem 0;
}

.team-intro h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.team-members {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-member {
    flex: 1;
    text-align: center;
}

.team-photo {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.team-member h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 0.95rem;
    color: #667eea;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-member p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.values-section {
    padding: 5rem 0;
    background: #fafafa;
}

.values-section h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

.values-list {
    list-style: none;
}

.values-list li {
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #e5e5e5;
}

.values-list li strong {
    color: #667eea;
}

.cta-section {
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #667eea;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: background 0.2s;
}

.cta-btn:hover {
    background: #5568d3;
}

/* Services Page */
.services-overview {
    padding: 3rem 0;
}

.services-overview h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.services-listing {
    padding: 2rem 0 5rem;
}

.service-details {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 6px;
}

.service-details p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #555;
}

.comparison-section {
    padding: 5rem 0;
    background: #fafafa;
}

.comparison-guide {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.comparison-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.comparison-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #667eea;
}

.comparison-item p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.comparison-result {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.05rem;
}

.guarantee-section {
    padding: 4rem 0;
}

.guarantee-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.guarantee-section p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #444;
    line-height: 1.75;
}

.faq-section {
    padding: 5rem 0;
    background: #fafafa;
}

.faq-section h2 {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

/* Contact Page */
.contact-info-section {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    gap: 4rem;
}

.contact-details,
.contact-form-wrapper {
    flex: 1;
}

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

.contact-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.contact-block p {
    font-size: 1rem;
    color: #555;
    line-height: 1.65;
}

.contact-address {
    line-height: 1.8;
}

.contact-block a {
    color: #667eea;
    text-decoration: none;
}

.contact-block a:hover {
    text-decoration: underline;
}

.note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 0.5rem;
}

.contact-form {
    margin-top: 1.5rem;
}

.map-section {
    padding: 4rem 0;
    background: #fafafa;
}

.map-section h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.map-placeholder p {
    font-size: 1.25rem;
    font-weight: 600;
}

.map-note {
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Thanks Page */
.thanks-hero {
    padding: 5rem 0 3rem;
    text-align: center;
    background: #fafafa;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #00b894;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    margin: 0 auto 2rem;
}

.thanks-content {
    padding: 4rem 0;
}

.thanks-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

.next-steps {
    margin-top: 3rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.step-num {
    width: 60px;
    height: 60px;
    background: #667eea;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.step-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.thanks-info {
    padding: 3rem 0;
    background: #fafafa;
}

.info-box {
    padding: 2rem;
    background: #fff;
    border-left: 4px solid #667eea;
    border-radius: 6px;
}

.info-box h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.info-box ul {
    list-style: none;
}

.info-box ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.info-box ul li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.thanks-next {
    padding: 4rem 0;
}

.thanks-next h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

.suggestion-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.suggestion-card {
    flex: 1;
    padding: 2rem;
    background: #fafafa;
    border-radius: 8px;
    text-align: center;
}

.suggestion-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.suggestion-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.25rem;
}

.suggestion-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.suggestion-link:hover {
    text-decoration: underline;
}

.thanks-quote {
    padding: 4rem 0;
    background: #1a1a1a;
    color: #fff;
}

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

.highlight-quote p {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.highlight-quote cite {
    font-style: normal;
    color: #aaa;
    font-size: 1rem;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
}

.legal-intro {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 2rem;
}

.legal-page h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: #444;
    line-height: 1.75;
}

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

.legal-page ul li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.65;
}

.legal-page a {
    color: #667eea;
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

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

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

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

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

    .trust-elements {
        flex-direction: column;
    }

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

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

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

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

    .sticky-cta-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-floating {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

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

    .section-heading-center {
        font-size: 1.75rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }
}