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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

.container, .value-prop .container {
    max-width: 100%;
    width: 100%;
    /* overflow-x: hidden; */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 9999;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

@supports not (position: sticky) {
    .header {
        position: fixed;
    }
}

@media (max-width: 768px) {
    .header {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 9999;
    }
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    position: relative;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.logo-image {
    width: 100%;
    height: 100%;
    display: block;
}

.logo-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
}

.logo-image:not([src]),
.logo-image[src=""],
.logo-image:not([src*=".svg"]) + .logo-fallback {
    display: flex;
}

/* Show fallback if image fails to load */
.logo-image[alt]:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav a:hover {
    color: #667eea;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
    color: #4a5568;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.mobile-menu-toggle:hover {
    background-color: #f7fafc;
}

.mobile-menu-toggle:active {
    background-color: #edf2f7;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    /* overflow-x: hidden; */
    width: 100%;
    max-width: 100%;
}

.hero-text h1 {
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.email-form {
    margin-top: 2rem;
}

.form-group {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
}

.form-group input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
}

/* Modern App Mockup */
.app-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 320px;
    height: 640px;
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border-radius: 40px;
    padding: 6px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 30px;
    background: #1a202c;
    border-radius: 0 0 20px 20px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Status Bar */
.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px 8px;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #1a202c;
}

.status-right {
    display: flex;
    gap: 4px;
    font-size: 12px;
}

/* App Header */
.app-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    margin: 0 16px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

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

.user-greeting h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.user-greeting p {
    font-size: 13px;
    margin: 0;
    opacity: 0.9;
}

.profile-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

/* Main Content */
.app-content {
    flex: 1;
    padding: 0 16px;
    overflow-y: auto;
}

/* Earnings Card */
.earnings-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.earnings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.earnings-label {
    font-size: 14px;
    color: #4a5568;
    font-weight: 500;
}

.period-toggle {
    background: #edf2f7;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #4a5568;
    font-weight: 600;
}

.earnings-amount {
    font-size: 36px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 8px;
}

.earnings-change {
    display: flex;
    align-items: center;
    gap: 8px;
}

.change-indicator {
    color: #38a169;
    font-weight: 600;
    font-size: 14px;
}

.change-text {
    color: #718096;
    font-size: 14px;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 12px;
}

.action-item {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.action-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: 700;
    font-size: 14px;
}

.action-icon.pending {
    background: #fed7d7;
    color: #e53e3e;
}

.action-icon.approved {
    background: #c6f6d5;
    color: #38a169;
}

.action-icon.history {
    background: #e2e8f0;
    color: #4a5568;
}

.action-item span {
    font-size: 12px;
    color: #4a5568;
    font-weight: 500;
}

/* Claims Section */
.claims-section {
    margin-bottom: 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.claims-count {
    background: #667eea;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.claims-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.claim-card {
    background: white;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #edf2f7;
}

.claim-company {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.company-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
}

.company-logo.facebook {
    background: #1877f2;
}

.company-logo.equifax {
    background: #c41e3a;
}

.company-logo.generic {
    background: #667eea;
}

.claim-details h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 4px 0;
}

.claim-details p {
    font-size: 12px;
    color: #718096;
    margin: 0;
}

.claim-actions {
    text-align: right;
}

.claim-amount {
    font-size: 16px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 8px;
}

.approve-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    transition: all 0.2s ease;
}

.approve-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

/* Bottom Navigation */
.bottom-nav {
    display: flex;
    background: white;
    border-top: 1px solid #edf2f7;
    padding: 12px 0;
    margin-top: auto;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #a0aec0;
    transition: color 0.2s ease;
}

.nav-item.active {
    color: #667eea;
}

.nav-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.nav-item span {
    font-size: 10px;
    font-weight: 600;
}

/* Trust Bar */
.trust-bar {
    background: white;
    padding: 2.5rem 0 2rem 0;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    line-height: 1;
    /* Remove flex centering */
    display: block;
    width: 100%;
    /* overflow-x: hidden; */
    /* overflow-y: hidden; */
    overscroll-behavior: contain;
    height: auto !important;
}

.trust-bar:has(.trust-logos:empty),
.trust-bar:empty {
  display: none !important;
  padding: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
}

.trust-bar .container {
    max-width: 900px;
    margin: 0 auto !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto !important;
    overflow-x: hidden;
    overflow-y: hidden;
}

/* Desktop: 5 columns */
.trust-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    width: 100%;
    align-items: center;
    justify-items: center;
    padding: 1rem 0 0.5rem 0;
}

.logo-item {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
}

.logo-item svg {
    width: 100%;
    height: 100%;
    max-width: 180px;
    max-height: 70px;
    object-fit: contain;
    display: block;
}

@media (max-width: 1024px) {
    .trust-bar .container {
        max-width: 98%;
    }
    .trust-logos {
        gap: 2rem;
    }
    .logo-item svg {
        height: 42px;
        max-height: 42px;
    }
}

@media (max-width: 768px) {
    .trust-bar .container {
        max-width: 100%;
        padding: 0 8px !important;
    }
    .trust-logos {
        gap: 1.2rem;
        flex-wrap: wrap;
    }
    .logo-item {
        min-width: 64px;
        max-width: 90px;
    }
    .logo-item svg {
        height: 32px;
        max-height: 32px;
    }
}

@media (max-width: 480px) {
    .trust-bar .container {
        max-width: 100%;
        padding: 0 4px !important;
    }
    .trust-logos {
        gap: 0.7rem;
    }
    .logo-item {
        min-width: 40px;
        max-width: 64px;
    }
    .logo-item svg {
        height: 22px;
        max-height: 22px;
    }
}

@media (max-width: 600px) {
  .trust-logos {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 1rem !important;
    padding: 1rem 0 0.5rem 0;
  }
  .logo-item {
    flex: 0 0 auto !important;
    min-width: 140px !important;
    max-width: 180px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .logo-item svg {
    width: 100% !important;
    height: 100% !important;
    max-width: 180px !important;
    max-height: 48px !important;
  }
}

/* Value Proposition Mobile */
.value-prop {
    padding: 4rem 0;
}

.value-prop .container {
    padding: 0 15px;
}

.value-prop-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .value-prop-content {
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .value-prop-content {
        grid-template-columns: 1fr !important;
        gap: 1.2rem;
        padding: 0;
    }
    .value-prop-text {
        padding: 0 0.5rem;
        text-align: center;
        width: 100%;
        margin-bottom: 1.5rem;
    }
    .value-prop-visual {
        padding: 0 0.5rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

.value-prop-text {
    text-align: center;
    width: 100%;
}

.value-prop h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.value-prop-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.stats-container {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    min-width: 100px;
    padding: 1rem 0.8rem;
    flex: 1;
    max-width: 110px;
}

.stat-number {
    font-size: 1.8rem;
}

.stat-label {
    font-size: 0.8rem;
}

.value-prop-visual {
    width: 100%;
    display: flex;
    justify-content: center;
}

.chart-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 1.5rem;
}

.chart-title {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.chart {
    height: 200px;
    padding: 0 0.5rem;
}

.chart-bar {
    width: 60px;
}

.bar-label {
    font-size: 0.7rem;
}

.bar-amount {
    font-size: 1rem;
}

.chart-legend {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.legend-item {
    font-size: 0.8rem;
}

.difference-highlight {
    padding: 0.75rem 1rem;
}

.difference-label {
    font-size: 0.9rem;
}

.difference-amount {
    font-size: 1.2rem;
}

/* Value Proposition */
.value-prop {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6rem 0;
    color: white;
    position: relative;
    /* overflow: hidden; */
}

.value-prop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.value-prop .container {
    position: relative;
    z-index: 2;
}

.value-prop-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.value-prop-text {
    text-align: left;
}

.value-prop h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.value-prop-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.stats-container {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    min-width: 120px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.value-prop-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chart-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.chart-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 2rem;
}

.chart {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 250px;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.chart-bar {
    position: relative;
    width: 80px;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.bar-fill {
    width: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 8px 8px 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.25rem;
    transition: all 0.8s ease;
    animation: growUp 1.5s ease-out;
    min-height: 60px;
}

.bar-fill.traditional {
    background: linear-gradient(135deg, #cbd5e0, #a0aec0);
}

.bar-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    text-align: center;
    line-height: 1.1;
    flex-shrink: 0;
}

.bar-amount {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #4a5568;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.legend-color.ai {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.legend-color.traditional {
    background: linear-gradient(135deg, #cbd5e0, #a0aec0);
}

.chart-difference {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.difference-highlight {
    background: linear-gradient(135deg, #48bb78, #38a169);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.2);
}

.difference-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.difference-amount {
    display: block;
    font-size: 1.8rem;
    color: white;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes growUp {
    from {
        height: 0;
    }
    to {
        height: var(--final-height, 85%);
    }
}

/* How It Works */
.how-it-works {
    background: #f7fafc;
    padding: 6rem 0;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.step-card:hover {
    transform: translateY(-4px);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.step-card h3 {
    margin-bottom: 1rem;
    color: #1a202c;
}

.step-card p {
    color: #4a5568;
    margin: 0;
}

/* Testimonials */
.testimonials {
    background: white;
    padding: 6rem 0;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
    transition: transform 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: #1a202c;
}

.author-info p {
    font-size: 0.875rem;
    color: #718096;
    margin: 0;
}

/* Pricing Section */
.pricing {
    background: #f7fafc;
    padding: 6rem 0;
    text-align: center;
}

.pricing-header {
    margin-bottom: 3rem;
}

.pricing-header h2 {
    margin-bottom: 1rem;
    color: #1a202c;
}

.pricing-header p {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0 16px 0 16px;
    font-weight: 600;
    font-size: 1.125rem;
    z-index: 10;
}

.pricing-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-content h3,
.pricing-content p {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 768px) {
    .pricing-content h3,
    .pricing-content p {
        padding-right: 0;
    }
    .pricing-badge {
        top: 0;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pricing-content h3,
    .pricing-content p {
        padding-right: 0;
    }
    .pricing-badge {
        top: 0;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
}

@media (max-width: 768px) {
    .pricing-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .pricing-features {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
    text-align: left;
    justify-content: flex-start;
}

.feature-item i {
    color: #38a169;
    font-size: 1.125rem;
}

.feature-item span {
    font-weight: 500;
    color: #2d3748;
}

.pricing-faq {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-faq h3 {
    margin-bottom: 2rem;
    color: #1a202c;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
}

.faq-grid .faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-grid .faq-item h4 {
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.faq-grid .faq-item p {
    color: #4a5568;
    margin: 0;
}

/* Customer Stories Section */
.customer-stories {
    background: white;
    padding: 6rem 0;
}

.customer-stories h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.customer-stories .subtitle {
    text-align: center;
    margin-bottom: 3rem;
}

.stories-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.carousel-container {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
    background: white;
    min-height: 400px;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 600%; /* 6 slides * 100% */
}

.story-card {
    width: 16.67%; /* 100% / 6 slides */
    min-width: 16.67%;
    flex-shrink: 0;
    background: white;
    padding: 2rem 1.5rem;
    box-sizing: border-box;
    border-right: 1px solid #e2e8f0;
    display: block;
    min-height: 450px;
}

.story-card:last-child {
    border-right: none;
}

.story-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.story-header h3 {
    color: #1a202c;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.story-persona {
    color: #4a5568;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
    font-style: italic;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.stat {
    text-align: center;
    padding: 1rem 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    border: 2px solid #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
}

.stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.story-quote {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 1.25rem;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 3px 12px rgba(102, 126, 234, 0.15);
    margin-top: 1rem;
}

.story-quote::before {
    content: '"';
    position: absolute;
    top: 0.25rem;
    left: 0.75rem;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    font-family: serif;
}

.story-quote p {
    font-style: italic;
    color: white;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    padding-left: 1.5rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.carousel-btn:disabled {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot.active {
    background: #667eea;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.carousel-dot:hover {
    background: #a0aec0;
    transform: scale(1.2);
}

/* FAQ Section */
.faq {
    background: #f7fafc;
    padding: 6rem 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.faq .subtitle {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.faq-category {
    background: white;
    border: 2px solid #e2e8f0;
    color: #4a5568;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.faq-category:hover {
    border-color: #667eea;
    color: #667eea;
}

.faq-category.active {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

.faq-search {
    position: relative;
    margin-bottom: 2rem;
}

.faq-search input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
}

.faq-search input:focus {
    outline: none;
    border-color: #667eea;
}

.faq-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #4a5568;
}

.faq-content {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-section {
    display: none;
}

.faq-section.active {
    display: block;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
    border-bottom: none;
}

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

.faq-question:hover {
    background: #f7fafc;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
    color: #1a202c;
}

.faq-question i {
    color: #4a5568;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

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

/* About Section */
.about {
    background: white;
    padding: 6rem 0;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.about-story h3,
.about-mission h3 {
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.about-story p,
.about-mission p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.about-team {
    text-align: center;
}

.about-team h3 {
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.about-team p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 12px;
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.value-item h4 {
    color: #1a202c;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.value-item p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}



/* Learn Section */
.learn {
    background: white;
    padding: 6rem 0;
}

.learn-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.learn-articles h3,
.learn-recent h3 {
    color: #1a202c;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

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

@media (max-width: 700px) {
  .article-list {
    grid-template-columns: 1fr;
  }
}

.article-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.article-item:hover {
    transform: translateY(-2px);
}

.article-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.article-content h4 {
    color: #1a202c;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.article-content p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.article-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.article-link:hover {
    text-decoration: underline;
}

.settlement-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.settlement-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
}

.settlement-info h4 {
    color: #1a202c;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.settlement-amount {
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.settlement-deadline {
    color: #4a5568;
    font-size: 0.8rem;
}

.settlement-status {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.settlement-status.active {
    background: #c6f6d5;
    color: #22543d;
}

.settlement-status.closed {
    background: #fed7d7;
    color: #742a2a;
}

.learn-cta {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.learn-cta h4 {
    color: #1a202c;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.learn-cta p {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 24px 0 8px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    padding-bottom: 0;
    /* Remove max-width and margin auto to keep left alignment */
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 0;
    /* Remove justify-content or text-align center if present */
}

.link-group h4 {
    margin-bottom: 1rem;
    color: white;
}

.link-group a {
    display: block;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.link-group a:hover {
    color: white;
}

.footer-company-info {
    text-align: center;
    margin: 12px auto 0 auto;
    color: #888;
    font-size: 1rem;
    max-width: 600px;
    display: block;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
    padding: 1rem;
    box-sizing: border-box;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: white;
    border-radius: 20px;
    max-width: 95vw;
    width: 600px;
    max-height: calc(95vh - 2rem);
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 0;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px 20px 0 0;
    width: 100%;
    margin: 0;
}

.modal-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.modal-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

.modal-title .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-title .logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.progress-bar {
    display: flex;
    gap: 0.5rem;
}

.progress-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #4a5568;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.progress-step.active {
    background: #667eea;
    color: white;
}

.modal-content {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
    max-height: calc(95vh - 80px); /* Account for header height */
}

.modal-step {
    display: none;
}

.modal-step.active {
    display: flex;
    gap: 3rem;
    padding: 2.5rem;
}

.step-content {
    flex: 2;
    max-width: 500px;
}

.step-sidebar {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 16px;
    height: fit-content;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.testimonial-mini {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-mini p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-mini span {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.step-header {
    margin-bottom: 2rem;
}

.step-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.step-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.benefits-list {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: #f7fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-text strong {
    font-size: 1rem;
    color: #222;
    min-height: 2.2em;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.benefit-text span {
    font-size: 0.93rem;
    color: #888;
    margin-top: 0.1em;
    line-height: 1.35;
}

.step-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-form .form-group {
    margin-bottom: 0;
    flex-direction: column;
    align-items: stretch;
}

.step-form label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #2d3748;
    font-size: 0.95rem;
}

.form-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.privacy-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.privacy-note i {
    color: #667eea;
}

/* Sidebar Content */
.sidebar-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.stats-mini {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.trust-indicators {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.trust-item i {
    color: #48bb78;
    font-size: 1rem;
}

/* Waitlist Step 4 Styles */
.waitlist-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.waitlist-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.waitlist-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    max-width: 400px;
    margin: 0 auto;
}

.launch-timeline {
    margin: 2rem 0;
}

.launch-timeline h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.timeline-icon {
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.timeline-content strong {
    font-weight: 600;
    color: #1a202c;
}

.timeline-content span {
    color: #4a5568;
    font-size: 0.9rem;
}

.security-assurance {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.assurance-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #e6fffa 0%, #f0fff4 100%);
    border-radius: 12px;
    border: 1px solid #38a169;
}

.assurance-card i {
    color: #38a169;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.assurance-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.assurance-text strong {
    font-weight: 600;
    color: #1a202c;
}

.assurance-text span {
    color: #2d3748;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Waitlist Sidebar */
.launch-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.benefit-item-mini {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.benefit-item-mini i {
    color: #48bb78;
    font-size: 1rem;
}

.waitlist-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* Thank You Modal Updates */
.waitlist-confirmation {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.confirmation-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.confirmation-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
}

.confirmation-item i {
    color: #38a169;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.confirmation-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.confirmation-text strong {
    font-weight: 600;
    color: #1a202c;
    font-size: 0.95rem;
}

.confirmation-text span {
    color: #4a5568;
    font-size: 0.875rem;
}

.social-share {
    margin: 2rem 0;
    text-align: center;
}

.social-share p {
    color: #4a5568;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 6px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.share-btn:hover {
    background: #f7fafc;
    border-color: #667eea;
}

.step-form input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.explanation {
    background: #f7fafc;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 0.875rem;
    color: #4a5568;
}

.connection-options {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.connection-card {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    transition: border-color 0.2s ease;
}

.connection-card:hover {
    border-color: #667eea;
}

.connection-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.connection-header i {
    font-size: 1.5rem;
    color: #667eea;
}

.connection-header h3 {
    margin: 0;
    font-size: 1.125rem;
}

.connection-card p {
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f7fafc;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    color: #4a5568;
}

.social-proof {
    background: #e6fffa;
    color: #22543d;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-weight: 500;
}

.payout-options {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.payout-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    transition: border-color 0.2s ease;
    cursor: pointer;
}

.payout-card:hover {
    border-color: #667eea;
}

.payout-icon {
    width: 50px;
    height: 50px;
    background: #f7fafc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #667eea;
}

.payout-info {
    flex: 1;
}

.payout-info h3 {
    margin-bottom: 0.25rem;
}

.payout-info p {
    margin: 0;
    font-size: 0.875rem;
    color: #4a5568;
}

.reassurance-banner {
    background: #e6fffa;
    color: #22543d;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: center;
}

.reassurance-banner h3 {
    margin: 0;
    color: #22543d;
}

.business-model {
    background: #f7fafc;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 0.875rem;
}

.benefit-summary {
    background: #f0fff4;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.benefit-summary h4 {
    margin-bottom: 1rem;
    color: #22543d;
}

.benefit-summary ul {
    list-style: none;
    padding: 0;
}

.benefit-summary li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #22543d;
}

.benefit-summary i {
    color: #38a169;
}

/* Thank You Modal */
.thank-you-modal {
    text-align: center;
    max-width: 500px;
}

.success-icon {
    font-size: 4rem;
    color: #38a169;
    margin-bottom: 1.5rem;
}

.next-steps {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.next-steps h3 {
    margin-bottom: 1rem;
    color: #2d3748;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 0.5rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: bold;
}

/* Tablet Design (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .phone-frame {
        width: 300px;
        height: 600px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        gap: 3rem;
    }
    
    .team-values {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .value-prop-content {
        gap: 3rem;
    }
    
    .value-prop h2 {
        font-size: 2.8rem;
    }
    
    .value-prop-description {
        font-size: 1.2rem;
    }
    
    .stats-container {
        gap: 2rem;
    }
    
    .chart-container {
        max-width: 350px;
    }
}

/* Mobile Design (768px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-image {
        height: 32px;
        width: 32px;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 1rem 0;
        display: none;
        z-index: 1000;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav a {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #f7fafc;
        transition: all 0.2s ease;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .nav a:hover {
        background-color: #f7fafc;
        color: #667eea;
    }
    
    .nav a:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
        order: 3;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .header-cta {
        order: 2;
    }
    
    .hero {
        padding: 4rem 0;
        min-height: 70vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .form-group input {
        width: 100%;
        box-sizing: border-box;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 1rem;
        min-height: 48px;
        width: 100%;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 1.1rem;
        min-height: 52px;
        width: 100%;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .phone-frame {
        width: 280px;
        height: 560px;
    }
    
    .modal {
        max-width: 98vw;
        width: 95%;
        max-height: calc(98vh - 2rem);
        margin: 0;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-step.active {
        flex-direction: column;
        padding: 1.5rem;
        gap: 2rem;
    }
    
    .step-content {
        max-width: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-sidebar {
        width: 100%;
        margin-top: 1rem;
    }
    
    .benefits-list {
        margin: 1.5rem 0;
    }
    
    .step-header h2 {
        font-size: 1.5rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .payout-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .payout-card input {
        margin-top: 1rem;
    }
    
    /* Pricing responsive */
    .pricing-card {
        padding: 2rem 1.5rem;
        margin: 0 auto 2rem;
    }
    
    .pricing-content h3 {
        padding-right: 0;
        font-size: 1.5rem;
    }
    
    .pricing-content p {
        padding-right: 0;
    }
    
    .pricing-badge {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .pricing-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Customer stories responsive */
    .stories-carousel {
        max-width: 95%;
    }
    
    .story-card {
        padding: 1.5rem 1rem;
    }
    
    .story-header h3 {
        font-size: 1.1rem;
        font-weight: 700;
        line-height: 1.3;
    }
    
    .story-persona {
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin: 1rem 0;
    }
    
    .stat {
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
        font-weight: 800;
    }
    
    .stat-label {
        font-size: 0.65rem;
        font-weight: 600;
    }
    
    .carousel-controls {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .carousel-btn {
        width: 42px;
        height: 42px;
        font-size: 0.9rem;
    }

    /* About responsive */
    .about {
        padding: 4rem 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .team-values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }

    /* Learn responsive */
    .learn {
        padding: 4rem 0;
    }
    
    .learn-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-item {
        padding: 1.5rem;
    }
    
    /* FAQ responsive */
    .faq {
        padding: 4rem 0;
    }
    
    .faq-categories {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .faq-category {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

/* Small Mobile Design (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        gap: 0.5rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-image {
        height: 28px;
        width: 28px;
    }
    
    .hero {
        padding: 2.5rem 0;
        min-height: 60vh;
    }
    
    h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    p {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        min-height: 44px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .phone-frame {
        width: 260px;
        height: 520px;
    }
    
    .app-header {
        margin: 0 10px 14px;
        padding: 14px;
    }
    
    .user-greeting h2 {
        font-size: 15px;
    }
    
    .earnings-card {
        padding: 14px;
        margin-bottom: 14px;
    }
    
    .earnings-amount {
        font-size: 24px;
    }
    
    .action-item {
        padding: 10px 6px;
    }
    
    .claim-card {
        padding: 10px;
    }
    
    .company-logo {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .modal {
        width: 95%;
        margin: 0;
        max-height: calc(90vh - 2rem);
    }
    
    .modal-content {
        padding: 1rem;
        max-height: calc(98vh - 70px);
    }
    
    .modal-header {
        padding: 0;
        width: 100%;
        margin: 0;
    }
    
    .modal-header-content {
        padding: 1rem;
    }
    
    .modal-title .logo-text {
        font-size: 1.2rem;
    }
    
    .progress-step {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .modal-step h2 {
        font-size: 1.6rem;
    }
    
    .modal-step p, .modal-desc {
        font-size: 0.88rem;
    }
    
    /* Form improvements */
    .form-group input {
        padding: 12px 14px;
        font-size: 1rem;
    }
    
    .form-row {
        gap: 0.75rem;
    }
    
    /* Section spacing */
    .how-it-works,
    .testimonials,
    .pricing,
    .customer-stories,
    .faq,
    .about,
    .learn {
        padding: 3rem 0;
    }
    
    .value-prop {
        padding: 3rem 0;
    }
    
    /* Pricing optimizations */
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .pricing-content h3 {
        padding-right: 0;
        font-size: 1.3rem;
    }
    
    .pricing-content p {
        padding-right: 0;
    }
    
    .pricing-badge {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .feature-item {
        padding: 0.5rem;
        font-size: 0.9rem;
        text-align: left;
        justify-content: flex-start;
    }
    
    /* Story carousel optimizations */
    .story-card {
        padding: 1rem 0.75rem;
        min-height: 380px;
    }
    
    .story-header h3 {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .story-persona {
        font-size: 0.8rem;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin: 0.75rem 0;
    }
    
    .stat {
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
    
    /* FAQ optimizations */
    .faq-question {
        padding: 0.75rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .faq-answer {
        padding: 0 0.75rem 0.75rem;
    }
    
    .faq-category {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        max-width: 240px;
    }
    
    /* Step card optimizations */
    .step-card {
        padding: 1.5rem 1rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Footer optimizations */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-cta h2 {
        font-size: 1.5rem;
    }
    
    /* About section optimizations */
    .value-item {
        padding: 1rem;
    }
    
    .value-icon {
        font-size: 1.5rem;
    }
    
    /* Learn section optimizations */
    .article-item {
        padding: 1rem;
    }
    
    .article-icon {
        font-size: 1.5rem;
    }
}

/*
===========================================
RESPONSIVE DESIGN SUMMARY
===========================================

Breakpoints:
- Desktop: 1025px and above (default styles)
- Tablet: 769px - 1024px (optimized for touch and medium screens)
- Mobile: 480px - 768px (mobile-first approach)  
- Small Mobile: 479px and below (ultra-compact design)

Key responsive features:
✓ Mobile-first navigation with hamburger menu
✓ Touch-friendly button sizes (min 44px)
✓ Optimized typography scaling
✓ Responsive grid layouts
✓ Tablet-specific optimizations
✓ Accessible mobile menu with keyboard support
✓ Smooth scrolling with offset calculations
✓ Responsive modals and forms
✓ Touch feedback for interactive elements

Testing Checklist:
□ Navigation works on all devices
□ Forms are usable on mobile
□ Text is readable at all sizes
□ Buttons are touch-friendly
□ Images scale properly
□ Modals fit screen sizes
□ Performance is good on mobile
□ Accessibility features work
===========================================
*/

/* Hero Trust Message */
.hero-trust {
    background: #f7fafc;
    padding: 2rem 0 1rem 0;
    text-align: center;
}
.trust-message {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}
.trust-message .highlight {
    color: #667eea;
    font-weight: bold;
}

/* Footer Badges */
.footer-badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0;
}
.footer-badges img {
    height: 20px;
    margin: 0;
}
.footer-company-info {
    text-align: center;
    margin: 12px auto 0 auto;
    color: #888;
    font-size: 1rem;
    max-width: 600px;
    display: block;
}
.footer-company-info a {
    color: #a0aec0;
    text-decoration: underline;
    font-size: 0.75rem;
}
.footer-company-info a:hover {
    color: #fff;
}

.footer-company-info {
  text-align: center;
  margin: 12px auto 0 auto;
  color: #888;
  font-size: 1rem;
  max-width: 600px;
  display: block;
}
.footer-company-info p {
  margin: 4px 0;
}
.footer-content {
  padding-bottom: 0;
}
.footer {
  padding: 24px 0 8px 0;
}
@media (max-width: 700px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Hero Trust Bar styles */
.hero-trust-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin: 1.25rem 0 0.5rem 0;
  padding: 0.75rem 1rem;
  background: none;
}
.hero-trust-bar .trust-item {
  display: flex;
  align-items: center;
  color: #888;
  font-size: 0.95rem;
  font-weight: 500;
  gap: 0.5rem;
  letter-spacing: 0.01em;
}
.hero-trust-bar .trust-item i {
  font-size: 1rem;
  color: #888;
  margin-right: 0.4em;
}
@media (max-width: 700px) {
  .hero-trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0.5rem;
  }
  .hero-trust-bar .trust-item {
    font-size: 0.92rem;
  }
}

@media (max-width: 480px) {
  .hero-trust-bar {
    gap: 0.4rem;
    padding: 0.4rem 0.4rem;
  }
  .hero-trust-bar .trust-item {
    font-size: 0.85rem;
    gap: 0.3rem;
  }
  .hero-trust-bar .trust-item i {
    font-size: 0.9rem;
  }
}

/* Easy Steps Grid styles for How It Works replacement */
.easy-steps-grid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.easy-step {
  flex: 1 1 0;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem 1.25rem 1rem;
}
.easy-step-icon {
  font-size: 2.5rem;
  color: #667;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.easy-step h3 {
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #222;
}
.easy-step p {
  font-size: 1rem;
  color: #555;
  margin: 0;
}
@media (max-width: 900px) {
  .easy-steps-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .easy-step {
    padding: 1.25rem 0.5rem 1rem 0.5rem;
  }
  .easy-step-icon {
    font-size: 2rem;
  }
}

/* Testimonial avatar image styles */
.testimonial-author .avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: block;
  margin: 0 auto;
  background: #f8f8f8;
}
.testimonial-author .avatar {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}
@media (max-width: 700px) {
  .testimonial-author .avatar,
  .testimonial-author .avatar img {
    width: 44px;
    height: 44px;
  }
}

/* Center and spread out mission-stats and team-values */
.mission-stats, .team-values {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2.5rem;
  margin: 2rem 0 1.5rem 0;
  width: 100%;
}
.mission-stats .stat-item, .team-values .value-item {
  flex: 1 1 0;
  max-width: 320px;
  min-width: 180px;
  background: #fafbfc;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  padding: 1.5rem 1rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
}
@media (max-width: 900px) {
  .mission-stats, .team-values {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  .mission-stats .stat-item, .team-values .value-item {
    max-width: 100%;
    width: 100%;
  }
}

/* Reduce bottom padding of about section */
.about {
  padding-bottom: 0 !important;
}

/* Center text in Our Story block */
.about-story {
  text-align: center;
}

/* User Funnel Modal Styles */
#userFunnelModal .modal-content {
  padding: 2rem 1rem 1.5rem 1rem;
}
#userFunnelModal .modal-step {
  display: none;
}
#userFunnelModal .modal-step.active {
  display: block;
}
.blurred-claims-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0 2.5rem 0;
}
.claim-card.blurred {
  filter: blur(4px);
  background: #f5f6fa;
  border-radius: 12px;
  padding: 1.25rem 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
}
.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}
@media (max-width: 600px) {
  .blurred-claims-list {
    gap: 0.75rem;
  }
  .claim-card.blurred {
    padding: 1rem 0.5rem;
    font-size: 0.98rem;
  }
}

/* Modal description and trust/benefit styles */
.modal-desc {
  font-size: 1.08rem;
  color: #4a5568;
  margin-bottom: 1.2rem;
  text-align: center;
}
.benefits-list {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}
.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 140px;
}
.benefit-icon {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}
.benefit-text strong {
  font-size: 1rem;
  color: #222;
}
.benefit-text span {
  font-size: 0.95rem;
  color: #666;
}
.privacy-note {
  font-size: 0.98rem;
  color: #4a5568;
  margin: 1.2rem 0 0.5rem 0;
  text-align: center;
}
.privacy-note i {
  color: #667eea;
  margin-right: 0.4em;
}
.mini-testimonial {
  background: #f7fafc;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin: 1.2rem auto 0 auto;
  max-width: 340px;
  font-size: 0.98rem;
  color: #444;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.mini-testimonial span {
  display: block;
  margin-top: 0.5rem;
  color: #888;
  font-size: 0.93rem;
}
.trust-badge {
  margin-top: 1.5rem;
  color: #38a169;
  font-weight: 600;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.trust-badge i {
  color: #38a169;
  font-size: 1.2rem;
}
.reassurance {
  color: #4a5568;
  font-size: 1.01rem;
  margin: 1.2rem 0 0.5rem 0;
  text-align: center;
}
@media (max-width: 700px) {
  .benefits-list {
    flex-direction: column;
    gap: 0.7rem;
    align-items: center;
  }
  .mini-testimonial {
    max-width: 98vw;
    font-size: 0.97rem;
  }
}

/* Fix modal formatting and centering */
#userFunnelModal .modal {
  max-width: 420px;
  margin: 2.5rem auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#userFunnelModal .modal-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem 1.5rem 1rem;
  box-sizing: border-box;
}
.benefits-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.2rem;
  width: 100%;
}
.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
  max-width: 140px;
}
.benefit-icon {
  font-size: 2rem;
  margin-bottom: 0.3rem;
}
form#nameCaptureForm {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.5rem;
}
#nameCaptureForm .form-group {
  width: 100%;
  max-width: 95%;
  margin-bottom: 1.2rem;
  margin-top: 0;
}
#nameCaptureForm label {
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 0.4rem;
  align-self: flex-start;
}
#nameCaptureForm input[type="text"] {
  width: 100%;
  max-width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  box-sizing: border-box;
}
#nameCaptureForm button {
  width: 100%;
  max-width: 100%;
  margin-top: 0.5rem;
}
@media (max-width: 600px) {
  #userFunnelModal .modal {
    max-width: 98vw;
    margin: 1rem auto;
    padding: 0 0 1rem 0;
  }
  #userFunnelModal .modal-content {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
  .benefits-list {
    flex-direction: column;
    gap: 0.7rem;
    align-items: center;
  }
  .benefit-item {
    min-width: 0;
    max-width: 98vw;
  }
  #nameCaptureForm input[type="text"], #nameCaptureForm button, #nameCaptureForm .form-group {
    max-width: 98vw;
  }
}

/* Stripe benefits list and modal step improvements */
.stripe-benefits {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-start;
}
.stripe-benefits li {
  font-size: 1.01rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.stripe-benefits i {
  color: #667eea;
  font-size: 1.1rem;
}
#userFunnelModal .modal-step h2 {
  margin-bottom: 0.7rem;
}
#userFunnelModal .modal-step {
  padding-bottom: 0.5rem;
}
.success-icon {
  font-size: 2.5rem;
  color: #38a169;
  margin-bottom: 1rem;
}
@media (max-width: 600px) {
  .stripe-benefits {
    font-size: 0.97rem;
    margin: 0.8rem 0 1.2rem 0;
  }
}

/* Pricing info box for Stripe step */
.pricing-info-box {
  background: #f5f6fa;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin: 1.2rem auto 1.2rem auto;
  max-width: 340px;
  font-size: 1.08rem;
  color: #222;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.pricing-info-box strong {
  color: #4f46e5;
  font-size: 1.12rem;
}
.pricing-info-box span {
  display: block;
  color: #4a5568;
  font-size: 0.98rem;
  margin-top: 0.3rem;
}

#userFunnelModal .modal-content, #userFunnelModal .modal-step {
  align-items: center;
  text-align: center;
}
.pricing-info-box {
  margin-left: auto;
  margin-right: auto;
}
.stripe-benefits {
  align-items: center;
}
.stripe-benefits li {
  justify-content: center;
}
.mini-testimonial {
  margin-left: auto;
  margin-right: auto;
}
#userFunnelModal .btn {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
#userFunnelModal .modal-step h2 {
  width: 100%;
  text-align: center;
}
#userFunnelModal .modal-step {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-list {
  margin-bottom: 0.7rem;
}
#nameCaptureForm {
  margin-top: 0;
  padding-top: 0;
  border-top: none !important;
}
#nameCaptureForm .form-group {
  margin-bottom: 1.2rem;
  margin-top: 0;
}

.testimonial-avatar-mini {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* Enhanced Modal Styles for "Why Choose ClaimScouter" Step */

/* Modal Statistics */
.modal-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.stat-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.stat-card .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-card .stat-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

/* Why Choose Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.why-icon {
    font-size: 1.25rem;
    min-width: 1.5rem;
    text-align: center;
    margin-top: 0.125rem;
}

.why-content h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.why-content p {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.trust-indicators .trust-badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 0.625rem;
    color: #64748b;
    font-weight: 500;
}

.trust-indicators .trust-badge i {
    color: #667eea;
    font-size: 0.875rem;
}

/* Setup Section */
.setup-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.setup-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.setup-section .form-group {
    margin-bottom: 1rem;
}

.setup-section label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    text-align: left;
    font-size: 0.875rem;
}

.setup-section input {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.setup-section input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.setup-section .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    gap: 0.5rem;
}

.setup-section .btn i {
    font-size: 0.875rem;
}

/* Social Proof */
.social-proof {
    margin-top: 1.5rem;
}

.social-proof .mini-testimonial {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    text-align: left;
}

.social-proof .mini-testimonial p {
    font-size: 0.75rem;
    color: #374151;
    margin-bottom: 0.5rem;
    font-style: italic;
    line-height: 1.4;
}

.social-proof .mini-testimonial span {
    font-size: 0.625rem;
    color: #667eea;
    font-weight: 600;
}

/* Responsive Design for Modal */
@media (max-width: 768px) {
    .modal-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin: 1rem 0;
    }
    
    .stat-card {
        padding: 0.75rem;
    }
    
    .stat-card .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-card .stat-label {
        font-size: 0.625rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin: 1rem 0;
    }
    
    .why-item {
        padding: 0.75rem;
    }
    
    .why-icon {
        font-size: 1rem;
        min-width: 1.25rem;
    }
    
    .why-content h4 {
        font-size: 0.75rem;
    }
    
    .why-content p {
        font-size: 0.625rem;
    }
    
    .trust-indicators {
        gap: 0.5rem;
        margin: 0.75rem 0;
    }
    
    .trust-indicators .trust-badge {
        padding: 0.25rem 0.375rem;
        font-size: 0.5rem;
    }
    
    .setup-section {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .setup-section h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .setup-section .form-group {
        margin-bottom: 0.75rem;
    }
    
    .setup-section input {
        padding: 0.75rem;
        font-size: 0.75rem;
    }
    
    .setup-section .btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .social-proof {
        margin-top: 1rem;
    }
    
    .social-proof .mini-testimonial {
        padding: 0.75rem;
    }
    
    .social-proof .mini-testimonial p {
        font-size: 0.625rem;
    }
    
    .social-proof .mini-testimonial span {
        font-size: 0.5rem;
    }
}

@media (max-width: 480px) {
    .modal-stats {
        margin: 1.5rem 0;
    }
    
    .why-choose-grid {
        margin: 1.5rem 0;
    }
    
    .trust-indicators {
        margin: 1.5rem 0;
    }
    
    .setup-section {
        margin: 1.5rem 0;
        padding: 1rem;
    }
    
    .social-proof {
        margin-top: 1.5rem;
    }
    
    .why-content h4 {
        font-size: 0.875rem;
    }
    
    .why-content p {
        font-size: 0.75rem;
    }
}

/* Enhanced Modal Step Styling */
#userFunnelModal .modal-step h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

#userFunnelModal .modal-desc {
    font-size: 0.88rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Animation for modal elements */
.modal-stats .stat-card,
.why-choose-grid .why-item,
.setup-section,
.social-proof .mini-testimonial {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for why items */
.why-choose-grid .why-item:nth-child(1) { animation-delay: 0.1s; }
.why-choose-grid .why-item:nth-child(2) { animation-delay: 0.2s; }
.why-choose-grid .why-item:nth-child(3) { animation-delay: 0.3s; }
.why-choose-grid .why-item:nth-child(4) { animation-delay: 0.4s; }
.why-choose-grid .why-item:nth-child(5) { animation-delay: 0.5s; }
.why-choose-grid .why-item:nth-child(6) { animation-delay: 0.6s; }

/* Waitlist Confirmation Step Styles */

/* Waitlist Header */
.waitlist-header {
    text-align: center;
    margin-bottom: 2rem;
}

.waitlist-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.waitlist-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.waitlist-subtitle {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.5;
    max-width: 400px;
    margin: 0 auto;
}

/* Waitlist Status */
.waitlist-status {
    margin-bottom: 2rem;
}

.status-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #667eea);
}

.status-icon {
    font-size: 2rem;
    color: #0ea5e9;
    margin-bottom: 1rem;
}

.status-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.status-card p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

/* Removed #waitlistNumber styles - no longer displaying position */



/* Early Access Benefits */
.early-access-benefits {
    margin-bottom: 2rem;
}

.early-access-benefits h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

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

.benefits-grid .benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefits-grid .benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.benefits-grid .benefit-item i {
    font-size: 1.25rem;
    color: #667eea;
}

.benefits-grid .benefit-item span {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.3;
}

/* Responsive Design for Waitlist */
@media (max-width: 768px) {
    .waitlist-icon {
        font-size: 2.5rem;
    }
    
    .waitlist-header h2 {
        font-size: 1.5rem;
    }
    
    .waitlist-subtitle {
        font-size: 0.875rem;
    }
    
    .status-card {
        padding: 1.25rem;
    }
    
    .status-icon {
        font-size: 1.75rem;
    }
    
    .status-card h3 {
        font-size: 1.125rem;
    }
    

    
    .early-access-benefits h3 {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .benefits-grid .benefit-item {
        padding: 0.75rem;
        flex-direction: row;
        text-align: left;
        gap: 0.75rem;
    }
    
    .benefits-grid .benefit-item i {
        font-size: 1rem;
    }
    
    .benefits-grid .benefit-item span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .waitlist-header {
        margin-bottom: 1.5rem;
    }
    
    .waitlist-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .waitlist-header h2 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .waitlist-subtitle {
        font-size: 0.75rem;
    }
    
    .waitlist-status {
        margin-bottom: 1.5rem;
    }
    
    .status-card {
        padding: 1rem;
    }
    
    .status-icon {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .status-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .status-card p {
        font-size: 0.75rem;
    }
    

    
    .early-access-benefits {
        margin-bottom: 1.5rem;
    }
    
    .early-access-benefits h3 {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    .benefits-grid .benefit-item {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .benefits-grid .benefit-item i {
        font-size: 0.875rem;
    }
    
    .benefits-grid .benefit-item span {
        font-size: 0.625rem;
    }
}

.pricing-content h3 {
    padding-top: 1.5rem;
    text-align: center;
}

@media (max-width: 768px) {
    .pricing-content h3 {
        padding-top: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pricing-content h3 {
        padding-top: 0.75rem;
        text-align: center;
    }
}

/* --- Animated Loading Sequence Styles --- */
#loadingAnimationContainer {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 2rem 0 1.5rem 0;
}
.search-bar-anim {
  background: #f5f6fa;
  border-radius: 24px;
  padding: 1.1rem 2.2rem;
  box-shadow: 0 2px 12px rgba(102,126,234,0.08);
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  min-width: 320px;
  max-width: 90vw;
  margin: 0 auto;
  gap: 1rem;
}
.search-bar-label {
  color: #667eea;
  font-weight: 500;
  margin-right: 0.5rem;
}
.search-bar-input {
  font-family: 'Inter', monospace;
  font-size: 1.25rem;
  color: #222;
  min-width: 120px;
  letter-spacing: 0.01em;
}
.blinking-cursor {
  display: inline-block;
  width: 1ch;
  animation: blink-cursor 0.8s steps(1) infinite;
  color: #667eea;
  font-weight: 700;
}
@keyframes blink-cursor {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
.db-scan-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  width: 100%;
}
.scan-lines {
  width: 320px;
  max-width: 90vw;
  height: 60px;
  background: #222;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.2rem;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  font-family: 'Fira Mono', 'Menlo', monospace;
  color: #b3e5fc;
  font-size: 1rem;
  padding: 0.7rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.network-graph {
  width: 120px;
  height: 60px;
  position: relative;
  margin: 0 auto;
}
.network-node {
  position: absolute;
  width: 16px;
  height: 16px;
  background: #667eea;
  border-radius: 50%;
  box-shadow: 0 0 8px #667eea44;
  animation: pulse-node 1.2s infinite alternate;
}
@keyframes pulse-node {
  0% { box-shadow: 0 0 8px #667eea44; }
  100% { box-shadow: 0 0 18px #667eea99; }
}
.network-link {
  position: absolute;
  height: 2px;
  background: #b3b3e6;
  border-radius: 2px;
}
.flying-cards-container {
  position: relative;
  width: 340px;
  height: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flying-card {
  position: absolute;
  width: 140px;
  height: 60px;
  background: #f5f6fa;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.08rem;
  color: #222;
  opacity: 0;
  filter: none;
  transition: transform 0.7s cubic-bezier(.7,.2,.2,1), opacity 0.5s, filter 0.5s;
  z-index: 2;
}
.flying-card.blurred {
  filter: blur(4px);
}
@media (max-width: 500px) {
  .search-bar-anim, .scan-lines, .flying-cards-container { min-width: 0; width: 98vw; max-width: 98vw; }
  .flying-card { width: 38vw; min-width: 80px; font-size: 0.98rem; }
}
/* --- End Animated Loading Sequence Styles --- */

/* --- Settlement Spotlight Grid Styles --- */
.settlement-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin: 2rem 0 1.5rem 0;
}
.spotlight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(102,126,234,0.08), 0 1.5px 4px rgba(0,0,0,0.03);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  text-align: center;
  text-decoration: none;
  color: #222;
  transition: transform 0.22s cubic-bezier(.7,.2,.2,1), box-shadow 0.22s;
  cursor: pointer;
  min-height: 320px;
  max-width: 320px;
  margin: 0 auto;
  border: 1.5px solid #f0f1f7;
}
.spotlight-card:hover, .spotlight-card:focus {
  transform: translateY(-8px) scale(1.035);
  box-shadow: 0 12px 36px rgba(102,126,234,0.16), 0 2px 8px rgba(0,0,0,0.07);
  outline: none;
  border-color: #b3b3e6;
}
.spotlight-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 1.3rem;
  border-radius: 14px;
  background: #f5f6fa;
  box-shadow: 0 1px 8px rgba(102,126,234,0.07);
  padding: 0.7rem;
  border: 1.5px solid #e5e7ef;
}
.spotlight-card h3 {
  font-size: 1.22rem;
  font-weight: 700;
  margin: 0.5rem 0 0.7rem 0;
  color: #3b3663;
}
.spotlight-card p {
  font-size: 1.07rem;
  color: #4a5568;
  margin: 0;
}
@media (max-width: 1100px) {
  .settlement-spotlight-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 700px) {
  .settlement-spotlight-section {
    padding: 40px 0 32px 0;
  }
  .settlement-spotlight-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  .spotlight-card {
    min-height: 220px;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    max-width: 98vw;
  }
  .spotlight-logo {
    width: 56px;
    height: 56px;
    padding: 0.4rem;
  }
}
/* --- End Settlement Spotlight Grid Styles --- */

/* --- Enhanced Settlement Spotlight Section Styles --- */
.settlement-spotlight-section {
  background: linear-gradient(135deg, #f8fafd 60%, #f5f6fa 100%);
  padding: 64px 0 56px 0;
  margin-top: 0;
}
.spotlight-title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #3b3663;
  margin-bottom: 0.5rem;
}
.spotlight-subtitle {
  text-align: center;
  font-size: 1.18rem;
  color: #6b7280;
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.settlement-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.spotlight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(102,126,234,0.10), 0 1.5px 4px rgba(0,0,0,0.03);
  padding: 2.2rem 1.2rem 1.7rem 1.2rem;
  text-align: center;
  text-decoration: none;
  color: #222;
  transition: transform 0.22s cubic-bezier(.7,.2,.2,1), box-shadow 0.22s;
  cursor: pointer;
  min-height: 180px;
  max-width: 320px;
  margin: 0 auto;
  border: 1.5px solid #f0f1f7;
  justify-content: center;
}
.spotlight-card:hover, .spotlight-card:focus {
  transform: translateY(-8px) scale(1.035);
  box-shadow: 0 12px 36px rgba(102,126,234,0.16), 0 2px 8px rgba(0,0,0,0.07);
  outline: none;
  border-color: #b3b3e6;
}
.spotlight-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 1.3rem;
  border-radius: 14px;
  background: #f5f6fa;
  box-shadow: 0 1px 8px rgba(102,126,234,0.07);
  padding: 0.7rem;
  border: 1.5px solid #e5e7ef;
}
.spotlight-card h3 {
  font-size: 1.22rem;
  font-weight: 700;
  margin: 0 0 0.7rem 0;
  color: #3b3663;
}
.spotlight-card p {
  font-size: 1.07rem;
  color: #4a5568;
  margin: 0;
}
@media (max-width: 1100px) {
  .settlement-spotlight-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 700px) {
  .settlement-spotlight-section {
    padding: 40px 0 32px 0;
  }
  .settlement-spotlight-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  .spotlight-card {
    min-height: 220px;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    max-width: 98vw;
  }
  .spotlight-logo {
    width: 56px;
    height: 56px;
    padding: 0.4rem;
  }
}
/* --- End Enhanced Settlement Spotlight Section Styles --- */

/* --- Settlement Spotlight Icon Styles --- */
.spotlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  min-height: 2.5rem;
}
#settlementModalIcon {
  margin-top: 0.5rem;
}
.modal-overlay {
  z-index: 10000;
}
/* --- End Settlement Spotlight Icon Styles --- */

/* --- Center Educational Resources Section --- */
.learn-articles {
  max-width: 700px;
  margin: 0 auto 0 auto;
  text-align: center;
}
.learn-articles h3 {
  text-align: center;
}
.article-list {
  justify-items: center;
}
/* --- End Center Educational Resources Section --- */

/* --- Wide 4-Column Educational Resources Grid --- */
.learn-articles {
  margin: 0 auto 0 auto;
  text-align: center;
  max-width: none;
}
.learn-articles h3 {
  text-align: center;
}
.article-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  justify-items: stretch;
}
@media (max-width: 1100px) {
  .article-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .article-list {
    grid-template-columns: 1fr;
  }
}
/* --- End Wide 4-Column Educational Resources Grid --- */

/* --- Centered 4-Column Educational Resources Grid --- */
.article-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  justify-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}
/* --- End Centered 4-Column Educational Resources Grid --- */

/* --- Ensure Educational Resources Grid is Fully Centered and Wide --- */
.learn-content {
  width: 100%;
  max-width: none;
  padding: 0;
}
.learn-articles {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  text-align: center;
}
.article-list {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  justify-items: stretch;
}
/* --- End Ensure Educational Resources Grid is Fully Centered and Wide --- */

/* --- Fix Centering of Educational Resources Grid --- */
.learn > .container {
  width: auto;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  transform: none;
}
.article-list {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  justify-items: stretch;
  transform: none;
}
/* --- End Fix Centering of Educational Resources Grid --- */

/* --- Perfectly Center Learn Section Heading and Grid --- */
.learn-header {
  max-width: 1200px;
  margin: 0 auto 2.5rem auto;
  width: 100%;
  text-align: center;
}
.article-list {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  justify-items: stretch;
}
@media (max-width: 1100px) {
  .article-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .article-list {
    grid-template-columns: 1fr;
  }
}
/* --- End Perfectly Center Learn Section Heading and Grid --- */

.value-prop {
    padding: 3.2rem 0; /* reduced by 20% */
}
.value-prop-content {
    gap: 3.2rem; /* reduced by 20% */
}
.value-prop h2 {
    font-size: 1.76rem; /* reduced by 20% */
    margin-bottom: 0.8rem;
}
.value-prop-description {
    font-size: 0.88rem; /* reduced by 20% */
    margin-bottom: 1.6rem;
}
.stats-container {
    margin-top: 1.2rem;
    margin-bottom: 1.6rem;
    gap: 0.8rem;
}
.stat-number {
    font-size: 1.44rem; /* reduced by 20% */
}
.chart-container {
    padding: 1.2rem; /* reduced by 20% */
    max-width: 320px; /* reduced by 20% */
}
.chart-title {
    font-size: 0.96rem; /* reduced by 20% */
    margin-bottom: 1.2rem;
}
.chart {
    height: 200px; /* reduced by 20% */
    margin-bottom: 1.2rem;
    padding: 0 0.8rem;
}
.chart-bar {
    width: 64px; /* reduced by 20% */
}
.bar-fill {
    min-height: 48px; /* reduced by 20% */
    padding: 0.4rem 0.2rem;
}
.bar-label {
    font-size: 0.64rem; /* reduced by 20% */
}
.bar-amount {
    font-size: 0.96rem; /* reduced by 20% */
}
.modal-step h2 {
    font-size: 1.36rem;
}
.modal-step p, .modal-desc {
    font-size: 0.75rem;
}

.hero-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px 48px 24px;
  text-align: center;
}

.hero-section h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: -1px;
}

.hero-section .hero-subtitle {
  font-size: 1.25rem;
  color: #e0e0e0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 32px;
  min-width: 160px;
  color: #fff;
  text-align: center;
}

.hero-stat .stat-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-stat .stat-label {
  font-size: 1rem;
  color: #b0b0b0;
  letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 700px) {
  .hero-section {
    padding: 40px 8px 32px 8px;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
  .hero-stats {
    gap: 16px;
  }
  .hero-stat {
    padding: 16px 8px;
    min-width: 120px;
  }
  .hero-section .hero-subtitle {
    font-size: 1rem;
  }
}

.stats-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 32px;
  background: linear-gradient(120deg, #6a5af9 0%, #7b6cf6 100%);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(80, 60, 180, 0.10);
}

.stats-section .stats-left {
  flex: 1 1 0;
  min-width: 320px;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
}

.stats-section .stats-left h1,
.stats-section .stats-left .hero-subtitle,
.stats-section .stats-left .hero-stats,
.stats-section .stats-left .stat-value,
.stats-section .stats-left .stat-label {
  color: #fff;
}

.stats-section .stats-right {
  flex: 1 1 0;
  min-width: 320px;
  display: flex;
  justify-content: center;
}

.stats-section .chart-container {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(80, 60, 180, 0.10);
  padding: 32px 32px 24px 32px;
  color: #222;
  min-width: 320px;
  max-width: 370px;
}

.stats-section .chart-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #222;
}

/* Ensure stats are readable */
.stats-section .hero-stat .stat-value {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.stats-section .hero-stat .stat-label {
  color: #e0e0e0;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .stats-section {
    flex-direction: column;
    gap: 32px;
    padding: 32px 8px;
  }
  .stats-section .stats-left {
    padding-left: 0;
    align-items: center;
  }
  .stats-section .stats-left h1,
  .stats-section .stats-left .hero-subtitle {
    text-align: center;
  }
  .stats-section .hero-stats {
    justify-content: center;
  }
}

.validation-message {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Removed validation border styles to prevent red borders on empty fields */

.btn:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    pointer-events: none;
}