/* 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-color: #ffffff;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

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

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

.btn-cookie-accept {
    background: #2563eb;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #1d4ed8;
}

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

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

/* Navigation */
.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu a {
    color: #4b5563;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2563eb;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.btn-sticky {
    display: inline-block;
    padding: 1rem 2rem;
    background: #dc2626;
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #b91c1c;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(220, 38, 38, 0.5);
}

/* Hero Section - Long-form funnel style */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85) 0%, rgba(29, 78, 216, 0.92) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-subtext {
    font-size: 1.4rem;
    color: #e0e7ff;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.btn-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #ffffff;
    color: #2563eb;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Container Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Narrative Sections - Long-form funnel storytelling */
.narrative-intro {
    padding: 6rem 2rem;
    background: #f9fafb;
}

.intro-lead {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.narrative-intro p {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.9;
}

/* Problem Amplification Section */
.problem-amplify {
    padding: 7rem 2rem;
    background: #ffffff;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.split-text p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Insight Reveal */
.insight-reveal {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
    color: #ffffff;
}

.section-title-center {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.insight-reveal .section-title-center {
    color: #ffffff;
}

.insight-text {
    font-size: 1.35rem;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 4rem;
    color: #e0e7ff;
}

.insight-stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin-top: 4rem;
}

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

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #c7d2fe;
    line-height: 1.5;
}

/* Story Deepening */
.story-deepening {
    padding: 8rem 2rem;
    background: #f3f4f6;
}

.story-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.story-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.story-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 100%);
    color: #ffffff;
}

.story-overlay-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.story-overlay-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #e5e7eb;
}

/* Methodology Section */
.methodology-section {
    padding: 7rem 2rem;
    background: #ffffff;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 3rem;
    text-align: center;
}

.method-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.method-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 5px solid #2563eb;
}

.method-icon {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 1rem;
}

.method-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.method-card p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
}

/* Testimonial Flow */
.testimonial-flow {
    padding: 6rem 2rem;
    background: #fef3c7;
}

.testimonial-main {
    border-left: 6px solid #f59e0b;
    padding-left: 2.5rem;
    font-size: 1.4rem;
    font-style: italic;
    color: #78350f;
    line-height: 1.8;
}

.testimonial-main cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 600;
    color: #92400e;
}

/* Trust Indicators */
.trust-indicators {
    padding: 7rem 2rem;
    background: #ffffff;
}

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

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

.trust-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.trust-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.trust-item p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Transformation Promise */
.transformation-promise {
    padding: 7rem 2rem;
    background: #f3f4f6;
}

.promise-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.promise-text {
    flex: 1.2;
}

.promise-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

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

.benefit-list li {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    padding-left: 2rem;
    position: relative;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 900;
    font-size: 1.3rem;
}

.promise-visual {
    flex: 1;
}

.promise-visual img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Detailed Testimonials */
.detailed-testimonials {
    padding: 6rem 2rem;
    background: #ffffff;
}

.testimonial-card {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-size: 1.15rem;
    color: #374151;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    display: block;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #2563eb;
}

/* Services Reveal */
.services-reveal {
    padding: 8rem 2rem;
    background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 100%);
}

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

.services-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 320px;
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
}

.service-card.featured {
    border-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2563eb;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.service-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    flex: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: #2563eb;
    white-space: nowrap;
}

.service-description {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 900;
}

.btn-service-select {
    width: 100%;
    padding: 1rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service-select:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Urgency Section */
.urgency-section {
    padding: 5rem 2rem;
    background: #1f2937;
    color: #ffffff;
}

.urgency-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.urgency-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 1.2rem;
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #6b7280;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input[readonly] {
    background: #f3f4f6;
    cursor: not-allowed;
}

.btn-submit {
    padding: 1.2rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    text-align: center;
}

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

.final-cta-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #fecaca;
}

.btn-final-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #ffffff;
    color: #dc2626;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.btn-final-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Footer */
.main-footer {
    background: #111827;
    color: #d1d5db;
    padding: 4rem 2rem 2rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #9ca3af;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Page Hero (for subpages) */
.page-hero {
    padding: 5rem 2rem 4rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
    color: #ffffff;
    text-align: center;
}

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

.hero-lead {
    font-size: 1.3rem;
    color: #c7d2fe;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Detailed Page */
.services-detailed {
    padding: 5rem 2rem;
}

.service-detail-card {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1.3;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.price-tag {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #2563eb;
    background: #eff6ff;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.service-overview {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2rem 0 1rem;
}

.achievement-list,
.includes-list {
    list-style: none;
    margin-bottom: 2rem;
}

.achievement-list li,
.includes-list li {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}

.achievement-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 900;
}

.includes-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 900;
}

.btn-enroll {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 700;
    border-radius: 8px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.btn-enroll:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

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

.universal-features {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-box {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.feature-box p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

.btn-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #ffffff;
    color: #2563eb;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

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

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.philosophy-section {
    padding: 6rem 2rem;
    background: #f9fafb;
}

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

.principle-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.principle-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.principle-card p {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
}

.approach-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.approach-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.approach-text {
    flex: 1.2;
}

.approach-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.approach-text p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.results-section {
    padding: 6rem 2rem;
    background: #1e3a8a;
    color: #ffffff;
}

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

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

.result-stat .stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.result-stat .stat-description {
    font-size: 1rem;
    color: #c7d2fe;
}

.team-philosophy {
    padding: 5rem 2rem;
    background: #ffffff;
}

.team-philosophy h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.team-philosophy p {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.commitment-section {
    padding: 6rem 2rem;
    background: #f9fafb;
}

.commitment-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

.commitment-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.commitment-list li {
    font-size: 1.15rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    padding-left: 2rem;
    position: relative;
}

.commitment-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 900;
    font-size: 1.3rem;
}

/* Contact Page */
.contact-section {
    padding: 5rem 2rem;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.contact-detail h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.contact-detail p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-detail a {
    color: #2563eb;
    font-weight: 600;
}

.contact-note {
    background: #eff6ff;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.contact-note h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.contact-note p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.quick-links-box {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
}

.quick-links-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.quick-links-box ul {
    list-style: none;
}

.quick-links-box ul li {
    margin-bottom: 0.8rem;
}

.quick-links-box ul li a {
    color: #2563eb;
    font-weight: 600;
    transition: color 0.3s ease;
}

.quick-links-box ul li a:hover {
    color: #1d4ed8;
}

.faq-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

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

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

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

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: #d1fae5;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.thanks-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.next-steps {
    background: #ffffff;
    color: #1a1a1a;
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
}

.step-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.timeline-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

.thanks-resources {
    background: #ffffff;
    color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.thanks-resources h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.thanks-resources p {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ffffff;
    color: #059669;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #059669;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.updated-date {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2.5rem 0 1rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #374151;
    margin: 1.5rem 0 0.8rem;
}

.legal-page p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-page ul li {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #2563eb;
    font-weight: 600;
}

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

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

.cookies-table th {
    background: #f9fafb;
    font-weight: 700;
    color: #1a1a1a;
}

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

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-menu li {
        padding: 0.8rem 2rem;
    }

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

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

    .split-content,
    .promise-layout,
    .approach-layout,
    .service-detail-card,
    .contact-grid {
        flex-direction: column;
    }

    .service-detail-card.reverse {
        flex-direction: column;
    }

    .insight-stats,
    .trust-grid,
    .results-grid,
    .universal-features {
        flex-direction: column;
    }

    .method-card,
    .service-card,
    .principle-card,
    .faq-item {
        flex: 1 1 100%;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .btn-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    html {
        font-size: 14px;
    }

    .container,
    .container-narrow {
        padding: 0 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

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