/* 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: #1a1a1a;
    background: #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: rgba(26, 26, 26, 0.95);
    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;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

/* Navigation */
.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    z-index: 9999;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-brand a {
    color: #1a1a1a;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

.nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    list-style: none;
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 15px;
    border-bottom: 1px solid #e5e7eb;
}

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

.nav-menu a {
    color: #1a1a1a;
    font-weight: 500;
    padding: 10px;
    display: block;
}

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

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

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

.sticky-btn {
    background: #2563eb;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero-minimal {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
}

.hero-content-narrow {
    max-width: 700px;
    text-align: center;
}

.hero-content-narrow h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-subtext {
    font-size: 20px;
    color: #4b5563;
    margin-bottom: 35px;
    line-height: 1.5;
}

.cta-inline {
    display: inline-block;
    color: #2563eb;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    border-bottom-color: #1d4ed8;
    transform: translateX(5px);
}

/* Content Containers */
.content-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

/* Story Intro */
.story-intro {
    background: white;
}

.lead-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #374151;
}

/* Problem Amplification */
.problem-amplification {
    background: #1f2937;
    color: white;
    padding: 80px 20px;
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.split-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.split-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 18px;
}

.problem-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #60a5fa;
    font-weight: bold;
}

.emphasis {
    font-size: 20px;
    font-weight: 600;
    color: #fbbf24;
    margin-top: 30px;
}

.split-image img {
    border-radius: 12px;
    width: 100%;
}

/* Insight Reveal */
.insight-reveal {
    background: #f3f4f6;
}

.insight-reveal h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.insight-reveal p {
    font-size: 18px;
    margin-bottom: 20px;
}

.insight-box {
    background: #2563eb;
    color: white;
    padding: 30px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    margin: 30px 0;
}

/* Method Intro */
.method-intro {
    background: white;
}

.method-intro h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

.cards-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.card-insight {
    background: #f9fafb;
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.card-number {
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.card-insight h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-insight p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
}

/* Social Proof */
.social-proof {
    background: #fffbeb;
    padding: 80px 20px;
}

.social-proof h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

.testimonial {
    background: white;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.quote {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.attribution {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

/* Value Stack */
.value-stack {
    background: white;
}

.value-stack h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 20px;
}

.cta-block {
    margin-top: 40px;
    text-align: center;
}

.cta-primary {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* How It Works */
.how-it-works {
    background: #f9fafb;
}

.how-it-works h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

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

.timeline-item {
    position: relative;
    padding-left: 40px;
}

.timeline-item:before {
    content: "";
    position: absolute;
    left: 10px;
    top: 30px;
    bottom: -40px;
    width: 2px;
    background: #d1d5db;
}

.timeline-item:last-child:before {
    display: none;
}

.timeline-marker {
    background: #2563eb;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.timeline-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.timeline-item p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
}

/* Pricing Reveal */
.pricing-reveal {
    background: white;
    padding: 80px 20px;
}

.pricing-reveal h2 {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-intro {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 50px;
}

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

.service-card {
    background: #f9fafb;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

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

.service-badge {
    display: inline-block;
    background: #6b7280;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.service-badge.popular {
    background: #2563eb;
}

.service-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-desc {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    color: #374151;
}

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

.service-price {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 30px 0 25px;
}

.service-cta {
    width: 100%;
    background: #2563eb;
    color: white;
    padding: 16px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Guarantee */
.guarantee {
    background: #f0fdf4;
    padding: 60px 20px;
}

.guarantee-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #10b981;
}

.guarantee-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #10b981;
}

.guarantee-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.guarantee-note {
    font-weight: 600;
    color: #065f46;
}

/* Urgency Section */
.urgency-section {
    background: #fef3c7;
    padding: 80px 20px;
}

.urgency-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.urgency-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.urgency-highlight {
    background: #fbbf24;
    padding: 25px;
    border-radius: 8px;
    font-size: 19px;
    font-weight: 600;
    margin: 30px 0;
}

.cta-primary-large {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 20px 45px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 19px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

.cta-primary-large:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.4);
}

/* Form Section */
.form-section {
    background: white;
    padding: 80px 20px;
}

.form-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 50px;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-submit {
    width: 100%;
    background: #2563eb;
    color: white;
    padding: 18px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-privacy {
    margin-top: 20px;
    font-size: 14px;
    color: #6b7280;
    text-align: center;
}

/* Final Push */
.final-push {
    background: #1f2937;
    color: white;
    padding: 80px 20px;
}

.final-push h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.final-push p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 18px 40px;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: white;
    color: #1f2937;
}

/* Footer */
.site-footer {
    background: #111827;
    color: #9ca3af;
    padding: 60px 20px 30px;
}

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

.footer-section h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

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

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

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

.footer-section a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    font-size: 14px;
}

/* Page Hero */
.page-hero {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    color: #6b7280;
}

/* Services Detailed */
.services-detailed {
    padding: 60px 20px;
}

.service-detail-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 40px;
    overflow: hidden;
}

.service-detail-card.featured-card {
    border-color: #2563eb;
}

.service-detail-header {
    background: #f9fafb;
    padding: 40px;
    text-align: center;
}

.service-detail-card.featured-card .service-detail-header {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.service-detail-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 15px 0 20px;
}

.service-price-large {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
}

.service-detail-body {
    padding: 40px;
}

.service-intro {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-detail-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 30px 0 15px;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.feature-list li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 12px;
}

.testimonial-inline {
    background: #fffbeb;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #fbbf24;
}

.testimonial-inline p {
    font-style: italic;
    margin-bottom: 10px;
    font-size: 16px;
}

.testimonial-inline span {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

.service-select-btn {
    width: 100%;
    background: #2563eb;
    color: white;
    padding: 16px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
}

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

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

.comparison-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.comparison-table-wrap {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    background: #1f2937;
    color: white;
}

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

.comparison-table th {
    font-weight: 600;
    font-size: 14px;
}

.comparison-table td {
    font-size: 14px;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* CTA Services */
.cta-services {
    background: white;
    padding: 60px 20px;
    text-align: center;
}

.cta-services h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-services p {
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 30px;
}

/* About Page Styles */
.about-story {
    background: white;
}

.story-image {
    border-radius: 12px;
    margin-bottom: 40px;
}

.about-story h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-story p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.split-layout.reverse {
    flex-direction: column-reverse;
}

.highlight-text {
    font-size: 20px;
    font-weight: 600;
    color: #2563eb;
    margin: 25px 0;
}

.values-section {
    background: white;
    padding: 80px 20px;
}

.values-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

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

.value-card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
}

.team-section {
    background: #f9fafb;
    padding: 80px 20px;
}

.team-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 50px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.team-member h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-role {
    font-size: 16px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
}

.numbers-section {
    background: white;
    padding: 80px 20px;
}

.numbers-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

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

.stat-item {
    background: #f9fafb;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #6b7280;
}

.philosophy-section {
    background: #1f2937;
    color: white;
    padding: 80px 20px;
}

.philosophy-section h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.philosophy-section p {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cta-about {
    background: #f9fafb;
    padding: 80px 20px;
    text-align: center;
}

.cta-about h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 30px;
}

/* Contact Page Styles */
.contact-info-section {
    background: white;
    padding: 60px 20px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-box {
    background: #f9fafb;
    padding: 40px;
    border-radius: 12px;
}

.contact-info-box h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
}

.contact-info-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
}

.contact-note {
    margin-top: 20px;
    padding: 15px;
    background: #eff6ff;
    border-radius: 8px;
    font-size: 14px;
    color: #1e40af;
}

.contact-map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    text-align: center;
}

.faq-section {
    background: #f9fafb;
    padding: 80px 20px;
}

.faq-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
}

.next-steps-section {
    background: white;
    padding: 80px 20px;
}

.next-steps-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

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

.step-item {
    display: flex;
    gap: 20px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.step-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
}

.cta-contact {
    background: #f9fafb;
    padding: 80px 20px;
    text-align: center;
}

.cta-contact h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-contact p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 30px;
}

/* Thanks Page Styles */
.thanks-hero {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-hero h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
}

.thanks-info {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    border: 2px solid #10b981;
}

.thanks-info p {
    font-size: 16px;
    margin: 0;
}

.thanks-info strong {
    color: #065f46;
}

.next-steps-thanks {
    background: white;
    padding: 80px 20px;
}

.next-steps-thanks h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.step-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
}

.while-you-wait {
    background: #fffbeb;
    padding: 80px 20px;
}

.while-you-wait h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.while-you-wait > p {
    text-align: center;
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 30px;
}

.prep-checklist {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.prep-checklist li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.prep-checklist li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
    font-size: 20px;
}

.social-proof-thanks {
    background: white;
    padding: 80px 20px;
}

.social-proof-thanks h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.explore-more {
    background: #f9fafb;
    padding: 80px 20px;
}

.explore-more h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.explore-more > p {
    text-align: center;
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 40px;
}

.link-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.link-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.link-card:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
}

.link-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.link-card p {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

/* Legal Pages */
.legal-page {
    background: white;
    padding: 120px 20px 80px;
}

.legal-page h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.legal-intro {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #374151;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table thead {
    background: #1f2937;
    color: white;
}

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

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .nav-menu {
        position: static;
        flex-direction: row;
        padding: 0;
        background: transparent;
        display: flex;
        border-bottom: none;
    }

    .hamburger {
        display: none;
    }

    .hero-content-narrow h1 {
        font-size: 52px;
    }

    .split-layout {
        flex-direction: row;
        align-items: center;
    }

    .split-layout.reverse {
        flex-direction: row-reverse;
    }

    .split-content,
    .split-image {
        flex: 1;
    }

    .cards-row {
        flex-direction: row;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: 280px;
    }

    .service-card.featured {
        transform: scale(1.05);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1;
        min-width: 280px;
    }

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1;
        min-width: 200px;
    }

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

    .contact-info-box,
    .contact-map-placeholder {
        flex: 1;
    }

    .link-cards {
        flex-direction: row;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .hero-content-narrow h1 {
        font-size: 56px;
    }
}
a.cta-primary-large, a.sticky-btn, a.cta-primary {
    color: white;
}