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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

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: rgba(30, 30, 30, 0.98);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

.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: 20px;
}

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    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: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Navigation */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu li a {
    color: #475569;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

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

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('https://images.unsplash.com/photo-1563013544-824ae1b704d3?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85) 0%, rgba(79, 70, 229, 0.75) 100%);
    z-index: 2;
}

.hero-content-center {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title-large {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.4;
}

.cta-hero {
    display: inline-block;
    padding: 18px 48px;
    background: #ffffff;
    color: #2563eb;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    color: #2563eb;
}

/* Container Styles */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

/* Story Sections */
.story-intro {
    padding: 100px 20px;
    background: #f8fafc;
}

.section-heading-alt {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1e293b;
    line-height: 1.2;
}

.text-story {
    font-size: 19px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 24px;
}

.highlight-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 32px;
    border-radius: 12px;
    margin-top: 40px;
    border-left: 4px solid #f59e0b;
}

.highlight-text {
    font-size: 20px;
    font-weight: 600;
    color: #92400e;
    line-height: 1.6;
    margin: 0;
}

/* Problem Section */
.problem-amplify {
    padding: 100px 20px;
    background: #ffffff;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.split-content-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.split-text {
    flex: 1 1 450px;
}

.split-image {
    flex: 1 1 400px;
}

.split-image img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.heading-problem {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1e293b;
    line-height: 1.2;
}

.problem-list {
    list-style: none;
    margin-bottom: 28px;
}

.problem-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    color: #475569;
    line-height: 1.6;
}

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

.text-emphasis {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.6;
}

/* Insight Section */
.insight-reveal {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #eff6ff 0%, #dbeafe 100%);
}

.section-heading-center {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: #1e293b;
    line-height: 1.2;
}

.text-insight {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 24px;
    text-align: center;
}

.stat-row {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    flex: 1 1 200px;
    text-align: center;
    max-width: 280px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 15px;
    color: #64748b;
    line-height: 1.5;
}

/* CTA Sections */
.cta-intermediate {
    padding: 80px 20px;
    background: #1e293b;
    color: #ffffff;
}

.cta-box-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.6;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #1e293b;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    color: #1e293b;
}

/* Trust Section */
.trust-building {
    padding: 100px 20px;
    background: #ffffff;
}

.section-heading-left {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 48px;
    color: #1e293b;
    line-height: 1.2;
}

.trust-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1 1 260px;
    padding: 32px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.trust-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.trust-card p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

/* Testimonials */
.testimonial-flow {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2563eb;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #64748b;
}

.testimonial-author strong {
    color: #1e293b;
    font-weight: 600;
}

/* Services Section */
.benefit-reveal {
    padding: 100px 20px;
    background: #ffffff;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #64748b;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 60px;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #2563eb;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    transform: translateY(-4px);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e293b;
    line-height: 1.3;
}

.service-description {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
}

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.price-amount {
    font-size: 38px;
    font-weight: 800;
    color: #2563eb;
}

.price-note {
    font-size: 14px;
    color: #94a3b8;
}

.btn-select-service {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

/* Urgency Section */
.urgency-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
}

.urgency-box {
    text-align: center;
    color: #ffffff;
}

.urgency-heading {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.urgency-text {
    font-size: 19px;
    margin-bottom: 36px;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.btn-urgency {
    padding: 18px 48px;
    background: #ffffff;
    color: #dc2626;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-urgency:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
    color: #dc2626;
}

.urgency-note {
    font-size: 14px;
    opacity: 0.9;
}

/* Form Section */
.form-section {
    padding: 100px 20px;
    background: #f8fafc;
}

.form-heading {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #1e293b;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #64748b;
    margin-bottom: 48px;
}

.service-form {
    background: #ffffff;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1 1 calc(50% - 10px);
    min-width: 200px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    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: #f1f5f9;
    cursor: not-allowed;
}

.form-checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.form-checkbox input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.4);
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 16px;
}

/* Final Reassurance */
.final-reassurance {
    padding: 100px 20px;
    background: #ffffff;
}

.reassurance-grid {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.reassurance-item {
    flex: 1 1 300px;
    padding: 32px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.reassurance-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #065f46;
}

.reassurance-item p {
    font-size: 16px;
    color: #047857;
    line-height: 1.6;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    z-index: 9998;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: none;
}

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

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

.sticky-cta-text {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
}

.btn-sticky {
    padding: 12px 32px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    color: #ffffff;
}

/* Footer */
.footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 60px 20px 30px;
}

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

.footer-section {
    flex: 1 1 250px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #cbd5e1;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(203, 213, 225, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #94a3b8;
}

/* Thanks Page */
.thanks-hero {
    padding: 140px 20px 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    text-align: center;
    color: #ffffff;
}

.thanks-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.thanks-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.thanks-subtitle {
    font-size: 22px;
    opacity: 0.95;
}

.thanks-content {
    padding: 80px 20px;
}

.thanks-box {
    background: #f8fafc;
    padding: 48px;
    border-radius: 16px;
    margin-bottom: 40px;
}

.thanks-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1e293b;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.timeline-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.timeline-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}

.timeline-content p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

.thanks-service-info {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid #2563eb;
}

.thanks-service-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.service-display {
    font-size: 18px;
    color: #2563eb;
    font-weight: 600;
}

.thanks-contact {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    margin-bottom: 40px;
}

.thanks-contact h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e293b;
}

.thanks-contact p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 12px;
}

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

.contact-note {
    font-size: 14px;
    color: #94a3b8;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: #ffffff;
    color: #2563eb;
    border: 2px solid #2563eb;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Page Header Styles */
.page-header {
    padding: 140px 20px 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.page-header-alt {
    padding: 140px 20px 60px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    text-align: center;
    color: #ffffff;
}

.page-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1e293b;
    line-height: 1.1;
}

.page-header-alt .page-title {
    color: #ffffff;
}

.page-intro {
    font-size: 20px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.page-header-alt .page-intro {
    color: #cbd5e1;
}

/* Services Detail Page */
.services-detail {
    padding: 80px 20px;
}

.service-card-detailed {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 48px;
    margin-bottom: 48px;
    position: relative;
    transition: all 0.3s ease;
}

.service-card-detailed:hover {
    border-color: #2563eb;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.12);
}

.service-price-large {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 24px 0;
}

.service-subheading {
    font-size: 22px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: #1e293b;
}

.service-features-detailed {
    list-style: none;
    margin-bottom: 32px;
}

.service-features-detailed li {
    padding: 14px 0 14px 32px;
    position: relative;
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}

.service-features-detailed li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 20px;
}

.service-features-detailed strong {
    color: #1e293b;
}

.service-ideal {
    background: #f0f9ff;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    border-left: 3px solid #2563eb;
}

.service-ideal h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}

.service-ideal p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.btn-service-select {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-service-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    color: #ffffff;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 48px;
}

.comparison-item {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 250px;
    background: #ffffff;
    padding: 28px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.comparison-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.comparison-recommend {
    font-size: 16px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
}

.comparison-item p {
    font-size: 14px;
    color: #64748b;
}

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

.cta-heading-large {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text-large {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
    color: #2563eb;
}

/* About Page */
.about-story {
    padding: 80px 20px;
    background: #ffffff;
}

.mission-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.heading-accent {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1e293b;
    line-height: 1.2;
}

.text-large {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-section {
    padding: 100px 20px;
    background: #ffffff;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.value-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 32px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.value-item p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.numbers-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
}

.stats-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
    justify-content: center;
}

.stat-card {
    flex: 1 1 220px;
    text-align: center;
    max-width: 300px;
}

.stat-number-large {
    font-size: 64px;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label-large {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.5;
}

.approach-section {
    padding: 100px 20px;
    background: #ffffff;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 48px;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.step-content p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.7;
}

.partnerships-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.text-centered {
    text-align: center;
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.commitment-section {
    padding: 80px 20px;
    background: #ffffff;
}

.commitment-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 48px;
    border-radius: 16px;
    border-left: 4px solid #f59e0b;
}

.commitment-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #92400e;
}

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

.commitment-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    color: #78350f;
    line-height: 1.7;
}

.commitment-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #92400e;
    font-weight: 700;
    font-size: 20px;
}

/* Contact Page */
.contact-info-section {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.contact-card {
    flex: 1 1 300px;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e293b;
}

.contact-detail {
    font-size: 16px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-note {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
}

.contact-explanation {
    padding: 80px 20px;
    background: #f8fafc;
}

.faq-item {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 24px;
    border-left: 4px solid #2563eb;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.faq-item p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.alternative-contact {
    padding: 80px 20px;
    background: #ffffff;
}

.cta-centered {
    text-align: center;
    margin-top: 32px;
}

.contact-reassurance {
    padding: 80px 20px;
    background: #f8fafc;
}

.reassurance-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.reassurance-box h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

.reassurance-box p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px;
}

.reassurance-box a {
    color: #2563eb;
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 140px 20px 80px;
    background: #ffffff;
}

.legal-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1e293b;
    line-height: 1.2;
}

.legal-update {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 48px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #1e293b;
    line-height: 1.3;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 28px 0 16px;
    color: #334155;
}

.legal-content p {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin: 16px 0 16px 24px;
}

.legal-content li {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content strong {
    color: #1e293b;
    font-weight: 600;
}

.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}

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

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

.cookie-table th {
    background: #f8fafc;
    font-weight: 700;
    color: #1e293b;
    font-size: 15px;
}

.cookie-table td {
    font-size: 14px;
    color: #475569;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title-large {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-heading-alt,
    .section-heading-center,
    .section-heading-left {
        font-size: 32px;
    }

    .page-title {
        font-size: 38px;
    }

    .thanks-title {
        font-size: 36px;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

    .stat-row {
        flex-direction: column;
    }

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

    .form-row .form-group {
        flex: 1 1 100%;
    }

    .service-form {
        padding: 32px 24px;
    }

    .sticky-cta-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title-large {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .cta-hero,
    .btn-urgency,
    .btn-submit {
        width: 100%;
        text-align: center;
    }

    .nav-floating {
        padding: 12px 20px;
    }

    .nav-brand {
        font-size: 20px;
    }
}
