/* Reset and Base Styles */
:root {
    --primary-blue: #0052CC;
    --accent-green: #00A97F;
    --cta-orange: #FF6B35;
    --text-gray: #4A5568;
    --light-gray: #F7FAFC;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance Optimizations */
img {
    content-visibility: auto;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Base Styles */
body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
    background-color: var(--white);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Inter', sans-serif;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2rem);
    margin-top: 2rem;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
}

/* Header */
.site-header {
    background-color: var(--white);
    padding: 0.9rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.9);
    min-height: 57.6px;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.badge svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-blue);
}

/* Header Flex Layout */
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 57.6px;
}

.logo img {
    height: 36px;
    width: auto;
    display: block;
}

.cta-badges {
    display: flex;
    gap: 1.5rem;
}

.cta-badge, .cta-main-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
    background: #f4f8fd;
    border: 1.5px solid #b3cdfd;
    border-radius: 7px;
    padding: 0.45rem 1.15rem;
    box-shadow: 0 2px 8px rgba(0,82,204,0.07);
    transition: background 0.18s, color 0.18s, border 0.18s;
}
.cta-badge svg, .cta-main-btn svg {
    stroke: var(--primary-blue);
    color: var(--primary-blue);
}
.cta-badge:hover, .cta-main-btn:hover {
    background: #eaf1fb;
    color: var(--primary-blue);
    border-color: #0052cc;
    text-decoration: none;
}

/* Hero Card Blog Style */
.hero-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1.5px 4px rgba(0,0,0,0.04);
    max-width: 900px;
    margin: 0.5rem auto 0.5rem auto;
    padding: 0.8rem 0.5rem 0.8rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-title {
    font-size: 2.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 0;
}
.hero-meta.centered {
    justify-content: center;
    text-align: center;
    margin-bottom: 0;
}
.hero-image-full {
    width: 100%;
    margin-bottom: 0;
}
.hero-image-full img {
    width: 100%;
    max-height: 550px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: block;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: #444;
    text-align: center;
    margin-top: 0.2rem;
    margin-bottom: 0;
    line-height: 1.25;
}

/* Remove old hero flex styles for this layout */
.hero-flex, .hero-content, .hero-text, .hero-image {
    all: unset;
}

@media (max-width: 1000px) {
    .container, .hero-card {
        max-width: 98vw;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* Sections */
section {
    padding: 0rem 0;
    will-change: transform, opacity;
}

section:nth-child(even) {
    background-color: var(--light-gray);
}

/* Widgets */
.widget {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.cta-button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    background-color: var(--primary-blue);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    background-color: #004AAD;
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button.primary {
    background-color: var(--cta-orange);
}

.cta-button.primary:hover {
    background-color: #F26522;
}

.cta-button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

/* Success Stories */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.story-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.quote {
    font-style: italic;
    margin-bottom: 1rem;
}

.author {
    font-weight: 600;
    color: var(--primary-blue);
}

/* Success Story Image */
.story-img {
    width: 100%;
    max-width: 120px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
    box-shadow: var(--shadow);
    display: block;
}

/* FAQ Section */
.faq-accordion {
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}
.faq-item {
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #e5eaf2;
    margin: 0;
    padding: 0;
    transition: none;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    font-size: 1.08rem;
    font-weight: 600;
    color: #1763c6;
    padding: 1.1rem 1.5rem 1.1rem 2.2rem;
    cursor: pointer;
    font-family: 'Inter', 'Lato', Arial, sans-serif;
    position: relative;
    box-shadow: none;
    appearance: none;
    border-radius: 0;
    transition: background 0.13s;
}
.faq-question::before {
    content: '\25B6'; /* right-pointing triangle */
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 1.1em;
    color: #bdbdbd;
    transition: transform 0.2s, color 0.2s;
}
.faq-item.open .faq-question::before {
    content: '\25BC'; /* down-pointing triangle */
    color: #1763c6;
}
.faq-question:focus {
    background: #f4f8fd;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #f7fafd;
    color: #333;
    font-size: 1.05rem;
    padding: 0 2.2rem;
    transition: max-height 0.22s cubic-bezier(0.4,0,0.2,1), padding 0.18s;
}
.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0.7rem 2.2rem 1.1rem 2.2rem;
}

/* Final CTA Section */
.final-cta {
    text-align: center;
    background-color: var(--primary-blue);
    color: var(--white);
}

.final-cta h2, .final-cta h3 {
    color: var(--white);
}

/* Footer */
.site-footer {
    background-color: var(--text-gray);
    color: var(--white);
    padding: 1rem 0;
}

.footer-content {
    text-align: center;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 1rem;
    transition: var(--transition);
}

.footer-links a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .cta-button,
    .widget,
    .site-header {
        display: none;
    }

    body {
        color: #000;
    }

    a {
        text-decoration: none;
        color: #000;
    }
}

/* CTA Section Image */
.cta-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 2rem auto 0 auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.cta-image-section {
    text-align: center;
    background: var(--light-gray);
    padding: 2rem 0 0 0;
}

/* Advertisement Bar */
.ad-bar {
    width: 100%;
    background: #f5f5f5;
    color: #888;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1rem;
}

/* Hero Meta */
.hero-meta {
    margin-top: 0;
    color: #6b7280;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 500;
}
.hero-meta .dot {
    font-size: 1.2em;
    color: #bdbdbd;
}

/* Quick Facts Section */
.quick-facts-section {
    background: var(--light-gray);
    padding: 1.5rem 0;
}
.quick-facts-row {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    flex-wrap: wrap;
}
.quick-fact {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,82,204,0.07);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 2rem;
    min-width: 220px;
    flex: 1 1 220px;
    border: none;
    transition: box-shadow 0.2s, transform 0.2s;
    height: 120px;
    text-align: left;
}
.quick-fact:hover {
    box-shadow: 0 8px 32px rgba(0,82,204,0.13);
    transform: translateY(-2px) scale(1.03);
}
.fact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #eaf1fb;
    color: #0052CC;
    flex-shrink: 0;
}
.fact-icon-blue { background: #eaf1fb; color: #0052CC; }
.fact-icon-green { background: #e6fbf4; color: #00A97F; }
.fact-icon-teal { background: #e6fbf8; color: #00B383; }
.fact-icon-orange { background: #fff3ed; color: #FF6B35; }

.fact-label {
    color: #4A5568;
    font-size: 1.08rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
    display: block;
}
.fact-value {
    color: #0052CC;
    font-size: 1.35rem;
    font-weight: 700;
    display: block;
}

.quick-fact .fact-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .quick-facts-row, .stats-row, .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    .quick-fact, .stat-box, .process-step {
        min-width: 0;
        width: 80%;
        max-width: 300px;
    }
}

/* Step-by-Step Process Section */
.process-section {
    background: #fff;
    padding: 2.5rem 0 1.5rem 0;
}
.process-steps {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.process-step {
    background: var(--light-gray);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 1.5rem 1rem;
    flex: 1 1 220px;
    min-width: 180px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.step-number {
    background: var(--primary-blue);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

/* Stats Section */
.stats-section {
    background: var(--light-gray);
    padding: 1.5rem 0;
}
.stats-row {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    flex-wrap: wrap;
}
.stat-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 1.2rem 2rem;
    text-align: center;
    flex: 1 1 180px;
    min-width: 160px;
}
.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
}
.stat-label {
    font-size: 1.1rem;
    color: #4A5568;
    margin-top: 0.3rem;
}

/* Callout Offer Section */
.callout-offer-section {
    background: #fffbe6;
    padding: 1.5rem 0;
}
.callout-offer-box {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 8px;
    color: #856404;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: center;
    padding: 1.2rem 1.5rem;
    box-shadow: var(--shadow);
}
.callout-offer-box .highlight {
    color: var(--cta-orange);
    font-weight: 700;
}

.quick-facts-simple-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    background: none;
    margin: 2.5rem 0 2.5rem 0;
}
.quick-fact-simple {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 1.2rem 2.2rem;
    font-size: 1.13rem;
    color: #222;
    background: #fff;
    border-radius: 12px 12px 12px 12px;
    border: 1px solid #f0f4f8;
    min-width: 180px;
    font-weight: 500;
    box-shadow: 0 2px 12px rgba(0,82,204,0.04);
    margin-right: 1.5rem;
}
.quick-fact-simple:last-child {
    margin-right: 0;
}
.quick-fact-simple + .quick-fact-simple {
    border-left: none;
}
.fact-label {
    color: #4A5568;
    font-size: 1.08rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
    display: block;
}
.fact-value {
    color: #0052CC;
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
}
@media (max-width: 900px) {
    .quick-facts-simple-row {
        flex-direction: column;
        align-items: stretch;
    }
    .quick-fact-simple {
        margin-right: 0;
        margin-bottom: 1rem;
        min-width: 0;
        width: 100%;
    }
    .quick-fact-simple:last-child {
        margin-bottom: 0;
    }
}

.blog-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,82,204,0.07);
    margin: 1.5rem auto;
    max-width: 900px;
    padding: 2.2rem 2.5rem;
}
.blog-section h2 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1.1rem;
    font-family: 'Inter', sans-serif;
}
.blog-section p {
    font-size: 1.13rem;
    color: #333;
    margin-bottom: 1.1rem;
}
.blog-steps {
    list-style: decimal inside;
    padding-left: 1.2rem;
    margin-bottom: 0;
}
.blog-steps li {
    margin-bottom: 0.7rem;
    font-size: 1.13rem;
    color: #222;
}
.blog-link {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 500;
}
.truths-row {
    display: flex;
    gap: 2.5rem;
    gap: 3.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    justify-content: center;
}
.truths-col {
    flex: 1 1 340px;
    background: #f7fafc;
    border-radius: 14px;
    padding: 1.7rem 2rem 1.5rem 2rem;
    min-width: 280px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,82,204,0.04);
}
.truths-title.can {
    color: #00A97F;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg, #e6fbf4 60%, transparent 100%);
    padding: 0.3rem 0.7rem 0.3rem 0;
    border-radius: 8px 0 0 8px;
    display: inline-block;
}
.truths-title.cannot {
    color: #FF6B35;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg, #fff3ed 60%, transparent 100%);
    padding: 0.3rem 0.7rem 0.3rem 0;
    border-radius: 8px 0 0 8px;
    display: inline-block;
}
.truths-list {
    margin: 0.7rem 0 0 0;
    padding: 0;
    list-style: none;
    font-size: 1.13rem;
}
.truths-list.can li { color: #00A97F; margin-bottom: 0.7rem; }
.truths-list.cannot li { color: #FF6B35; margin-bottom: 0.7rem; }

.blog-checklist {
    list-style: disc inside;
    padding-left: 1.2rem;
    margin-bottom: 1.1rem;
    color: #0052CC;
    font-size: 1.13rem;
}
.blog-checklist li {
    margin-bottom: 0.5rem;
}

.blog-cta-section {
    text-align: center;
    background: #f7fafc;
    box-shadow: none;
    border-radius: 12px;
    margin-top: 2.5rem;
}
.cta-main-btn {
    display: inline-block;
    background: var(--cta-orange);
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 0.9rem 2.2rem;
    border-radius: 6px;
    margin-top: 1.2rem;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(255,107,53,0.08);
}
.cta-main-btn:hover {
    background: #F26522;
    box-shadow: 0 4px 16px rgba(255,107,53,0.13);
}

@media (max-width: 900px) {
    .blog-section {
        padding: 1.2rem 0.7rem;
        max-width: 98vw;
    }
    .truths-row {
        flex-direction: column;
        gap: 1.2rem;
    }
    .truths-col {
        min-width: 0;
        width: 100%;
        padding: 1.2rem 1rem;
    }
}

.key-takeaway {
    background: #f7fafc;
    border-left: 4px solid #e53935;
    padding: 1.1rem 1.5rem 1.1rem 1.3rem;
    margin: 2rem auto 2rem auto;
    max-width: 900px;
    border-radius: 6px;
    font-size: 1.13rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.kt-title {
    color: #e53935;
    font-weight: 700;
    font-size: 1.13rem;
    margin-bottom: 0.2rem;
    display: inline-block;
}
.kt-body {
    color: #222;
    font-size: 1.13rem;
    font-weight: 400;
    margin-top: 0.2rem;
    display: inline;
}

/* --- Important Truths Section Modern Card Style --- */
.truths-section-clean {
    background: #f7faff;
    border-radius: 18px;
    padding: 2.5rem 0 2.5rem 0;
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.truths-section-clean > .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.truths-section-clean h2 {
    text-align: center !important;
    width: 100%;
}
.truths-row-clean {
    justify-content: center;
    width: 100%;
}
.truths-row-clean {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.truths-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(37,99,235,0.06);
    border: 1.5px solid #e3eaf7;
    flex: 1 1 340px;
    min-width: 290px;
    max-width: 420px;
    padding: 2.1rem 2.2rem 2.1rem 2.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.truths-title-clean {
    font-size: 1.22rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
    border-radius: 8px 8px 8px 8px;
    display: inline-block;
    padding: 0.35rem 1.1rem 0.35rem 0.7rem;
    background: linear-gradient(90deg, rgba(0,169,127,0.10) 60%, transparent 100%);
}
.truths-card.cannot .truths-title-clean {
    background: linear-gradient(90deg, rgba(255,107,53,0.13) 60%, transparent 100%);
    color: #FF6B35;
}
.truths-card.can .truths-title-clean {
    color: #00A97F;
}
.truths-list-clean {
    margin: 0.7rem 0 0 0;
    padding: 0;
    list-style: none;
    font-size: 1.11rem;
}
.truths-list-clean li {
    margin-bottom: 1.1rem;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}
.truths-list-clean .check {
    color: #00A97F;
    font-weight: 700;
    font-size: 1.15em;
}
.truths-list-clean .x {
    color: #FF6B35;
    font-weight: 700;
    font-size: 1.15em;
}
.truths-card.cannot {
    border-color: #ffe3d6;
}
.truths-card.can {
    border-color: #c6f4e5;
}
@media (max-width: 900px) {
    .truths-row-clean {
        flex-direction: column;
        gap: 1.2rem;
    }
    .truths-card {
        min-width: 0;
        width: 100%;
        padding: 1.3rem 1rem 1.3rem 1rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    /* --- Stats section reverted --- */
} 