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

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

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3.75rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    h3 {
        font-size: 1.875rem;
    }
}

.text-blue {
    color: #2563eb;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    gap: 0.5rem;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #f3f4f6;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

@media (min-width: 1024px) {
    .header-content {
        height: 5rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

@media (min-width: 1024px) {
    .logo-text {
        font-size: 1.5rem;
    }
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.desktop-nav {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.desktop-cta {
    display: none;
}

@media (min-width: 768px) {
    .desktop-cta {
        display: block;
    }
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger {
    width: 1.5rem;
    height: 2px;
    background-color: #374151;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    padding: 0.5rem;
    background-color: white;
    border-top: 1px solid #f3f4f6;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem;
    color: #374151;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover {
    color: #2563eb;
    background-color: #f9fafb;
}

.mobile-cta-btn {
    margin: 0.75rem;
    width: calc(100% - 1.5rem);
    text-align: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #dbeafe 0%, #ffffff 50%, #dbeafe 100%);
    padding: 2rem 0 4rem;
}

@media (min-width: 1024px) {
    .hero {
        padding: 3rem 0 5rem;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-text {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

.hero-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .hero-benefits {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 1024px) {
    .benefit-item {
        justify-content: flex-start;
    }
}

.benefit-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #16a34a;
}

.benefit-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-cta {
        justify-content: flex-start;
    }
}

.trust-indicator {
    font-size: 0.875rem;
    color: #6b7280;
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .hero-img {
        height: 31.25rem;
    }
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.2), transparent);
}

.floating-card {
    position: absolute;
    background-color: white;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: none;
}

@media (min-width: 1024px) {
    .floating-card {
        display: block;
    }
}

.floating-card-left {
    bottom: -1.5rem;
    left: -1rem;
}

.floating-card-right {
    top: -1rem;
    right: -1rem;
}

.card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-icon {
    background-color: #dcfce7;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #16a34a;
}

.floating-card-right .card-icon {
    background-color: #dbeafe;
}

.floating-card-right .card-icon svg {
    color: #2563eb;
}

.card-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.card-value {
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

/* Trust Bar */
.trust-bar {
    background-color: #f9fafb;
    padding: 2rem 0;
}

@media (min-width: 1024px) {
    .trust-bar {
        padding: 3rem 0;
    }
}

.trust-elements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .trust-elements {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

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

.trust-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.trust-icon > div {
    background-color: white;
    padding: 0.75rem;
    border-radius: 50%;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.trust-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
}

.trust-title {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

@media (min-width: 1024px) {
    .trust-title {
        font-size: 1rem;
    }
}

.trust-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Problem Section */
.problem-section {
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .problem-section {
        padding: 6rem 0;
    }
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .problem-solution-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.problem-card, .solution-card {
    border-radius: 1rem;
    padding: 2rem;
}

@media (min-width: 1024px) {
    .problem-card, .solution-card {
        padding: 2.5rem;
    }
}

.problem-card {
    background-color: #fef2f2;
}

.solution-card {
    background-color: #f0fdf4;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    padding: 0.75rem;
    border-radius: 50%;
    margin-right: 1rem;
}

.problem-icon {
    background-color: #fecaca;
}

.problem-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #dc2626;
}

.solution-icon {
    background-color: #bbf7d0;
}

.solution-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #16a34a;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

@media (min-width: 1024px) {
    .card-title {
        font-size: 1.875rem;
    }
}

.problem-list, .solution-list {
    list-style: none;
    margin-bottom: 2rem;
}

.problem-item, .solution-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.list-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.problem-list-icon {
    color: #ef4444;
}

.solution-list-icon {
    color: #22c55e;
}

.problem-item span, .solution-item span {
    color: #374151;
    font-weight: 500;
}

.result-box {
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
}

.problem-result {
    background-color: #fecaca;
}

.problem-result p {
    color: #991b1b;
    font-weight: 500;
    margin: 0;
}

.solution-result {
    background-color: #bbf7d0;
}

.solution-result p {
    color: #166534;
    font-weight: 500;
    margin: 0;
}

.bridge-section {
    text-align: center;
}

.bridge-card {
    background-color: #dbeafe;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .bridge-card {
        padding: 3rem;
    }
}

.bridge-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .bridge-title {
        font-size: 1.875rem;
    }
}

.bridge-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Features Section */
.features-section {
    background-color: #f9fafb;
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .features-section {
        padding: 6rem 0;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feature-icon {
    background-color: #dbeafe;
    padding: 0.75rem;
    border-radius: 0.75rem;
    margin-right: 1rem;
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.feature-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 0.875rem;
    color: #374151;
}

.program-stats {
    background-color: #2563eb;
    border-radius: 1rem;
    padding: 2rem;
    color: white;
}

@media (min-width: 1024px) {
    .program-stats {
        padding: 3rem;
    }
}

.stats-header {
    text-align: center;
    margin-bottom: 2rem;
}

.stats-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .stats-title {
        font-size: 1.875rem;
    }
}

.stats-description {
    color: #bfdbfe;
    font-size: 1.125rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .stat-value {
        font-size: 2.25rem;
    }
}

.stat-label {
    color: #bfdbfe;
}

/* How It Works Section */
.how-it-works-section {
    background-color: white;
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .how-it-works-section {
        padding: 6rem 0;
    }
}

.steps-container {
    margin-bottom: 5rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .step-item {
        flex-direction: row;
        gap: 4rem;
    }
}

.step-reverse {
    flex-direction: column;
}

@media (min-width: 1024px) {
    .step-reverse {
        flex-direction: row-reverse;
    }
}

.step-content {
    flex: 1;
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.step-number {
    background-color: #dbeafe;
    color: #2563eb;
    font-size: 1.5rem;
    font-weight: 700;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.step-info {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .step-title {
        font-size: 1.875rem;
    }
}

.step-timeframe {
    color: #2563eb;
    font-weight: 600;
}

.step-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.detail-dot {
    background-color: #bbf7d0;
    padding: 0.125rem;
    border-radius: 50%;
    margin-top: 0.125rem;
}

.detail-dot::after {
    content: '';
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    background-color: #16a34a;
    border-radius: 50%;
}

.detail-item span {
    color: #374151;
}

.step-visual {
    flex: 1;
}

.visual-container {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .visual-container {
        padding: 3rem;
    }
}

.visual-icon {
    background-color: white;
    border-radius: 50%;
    padding: 1.5rem;
    display: inline-flex;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.visual-icon svg {
    width: 3rem;
    height: 3rem;
    color: #2563eb;
}

.visual-number {
    font-size: 3.75rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.visual-title {
    color: #6b7280;
    font-weight: 500;
}

.success-timeline {
    background-color: #f9fafb;
    border-radius: 1rem;
    padding: 2rem;
}

@media (min-width: 1024px) {
    .success-timeline {
        padding: 3rem;
    }
}

.timeline-header {
    text-align: center;
    margin-bottom: 2rem;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .timeline-title {
        font-size: 1.875rem;
    }
}

.timeline-description {
    color: #6b7280;
}

.timeline-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .timeline-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.timeline-item {
    text-align: center;
}

.timeline-icon {
    background-color: #dbeafe;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.timeline-icon span {
    color: #2563eb;
    font-weight: 700;
    font-size: 1.125rem;
}

.timeline-icon-green {
    background-color: #dcfce7;
}

.timeline-icon-green span {
    color: #16a34a;
}

.timeline-icon-orange {
    background-color: #fed7aa;
}

.timeline-icon-orange span {
    color: #ea580c;
}

.timeline-icon-purple {
    background-color: #e9d5ff;
}

.timeline-icon-purple span {
    color: #9333ea;
}

.timeline-milestone {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.timeline-result {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f9fafb;
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .testimonials-section {
        padding: 6rem 0;
    }
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .testimonial-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.testimonial-stat {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-stat .stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.testimonial-stat .stat-value:nth-child(1) {
    color: #2563eb;
}

.testimonial-stat:nth-child(2) .stat-value {
    color: #16a34a;
}

.testimonial-stat:nth-child(3) .stat-value {
    color: #ea580c;
}

.testimonial-stat:nth-child(4) .stat-value {
    color: #9333ea;
}

.testimonial-stat .stat-label {
    color: #6b7280;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonial-title {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.125rem;
}

.testimonial-location {
    color: #9ca3af;
    font-size: 0.875rem;
}

.testimonial-revenue {
    text-align: right;
}

.revenue-amount {
    color: #16a34a;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.125rem;
}

.star {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-quote {
    position: relative;
    margin-bottom: 1.5rem;
}

.quote-icon {
    width: 2rem;
    height: 2rem;
    color: #bfdbfe;
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
}

.testimonial-quote p {
    color: #374151;
    line-height: 1.6;
    font-style: italic;
    padding-left: 1.5rem;
    margin: 0;
}

.testimonial-result {
    background-color: #f0fdf4;
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.result-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #16a34a;
    flex-shrink: 0;
}

.testimonial-result span {
    color: #166534;
    font-weight: 500;
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    background-color: white;
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .faq-section {
        padding: 6rem 0;
    }
}

.faq-container {
    max-width: 64rem;
    margin: 0 auto;
}

.faq-item {
    background-color: #f9fafb;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #f3f4f6;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    padding-right: 1rem;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #2563eb;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-open .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    color: white;
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .final-cta-section {
        padding: 6rem 0;
    }
}

.final-cta-section .section-description {
    color: #bfdbfe;
}

.cta-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    color: #1f2937;
    margin-bottom: 3rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .cta-card {
        padding: 3rem;
    }
}

.cta-header {
    text-align: center;
    margin-bottom: 2rem;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .cta-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cta-benefits {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.cta-benefit-icon {
    background-color: #dbeafe;
    padding: 0.75rem;
    border-radius: 0.75rem;
    display: inline-flex;
    margin-bottom: 0.75rem;
}

.cta-benefit-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
}

.cta-benefit-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.cta-benefit-description {
    font-size: 0.875rem;
    color: #6b7280;
}

.cta-button-container {
    text-align: center;
}

.cta-security {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1rem;
}

.final-trust-indicators {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .final-trust-indicators {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-indicator-item {
    text-align: center;
}

.trust-value {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trust-label {
    color: #bfdbfe;
}

.final-urgency {
    text-align: center;
}

.urgency-badge {
    background-color: #fbbf24;
    color: #1f2937;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.urgency-text {
    color: #bfdbfe;
    font-size: 1.125rem;
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    width: 2rem;
    height: 2rem;
    color: #60a5fa;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 28rem;
}

.footer-cta {
    background-color: #1e40af;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-cta-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #bfdbfe;
}

.footer-links-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav-link:hover {
    color: white;
}

.footer-nav-cta {
    color: #60a5fa;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-nav-cta:hover {
    color: #93c5fd;
}

.nav-icon {
    width: 1rem;
    height: 1rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 3rem;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-badge {
    white-space: nowrap;
}

.footer-disclaimer {
    text-align: center;
}

.footer-disclaimer p {
    color: #9ca3af;
    font-size: 0.875rem;
    max-width: 64rem;
    margin: 0 auto;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 640px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .problem-solution-grid {
        gap: 2rem;
    }
    
    .features-grid {
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        gap: 1.5rem;
    }
    
    .step-item {
        gap: 2rem;
        margin-bottom: 3rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States */
.btn:focus,
.faq-question:focus,
.mobile-menu-btn:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Loading States */
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .mobile-menu-btn,
    .floating-card {
        display: none;
    }
    
    .hero,
    .section {
        page-break-inside: avoid;
    }
}