﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --gradient-1: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-2: linear-gradient(135deg, #ec4899 0%, #f59e0b 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 16px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo-text {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 15px;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hero-content {
    z-index: 2;
    padding-top: 0;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-approval-time {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 60px;
}

.approval-time-number {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    line-height: 1.2;
}

.approval-time-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hero-dashboard {
    width: 100%;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
}

/* Dashboard Metrics */
.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.dashboard-metric {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.dashboard-metric-label {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.dashboard-metric-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    white-space: nowrap;
}

.dashboard-metric-risk .dashboard-metric-value {
    font-size: 18px;
}

.risk-indicator {
    font-size: 12px;
    display: inline-block;
}

.risk-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    display: inline-block;
}

/* Dashboard Chart */
.dashboard-chart-section {
    margin-top: 4px;
}

.dashboard-chart-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.dashboard-chart-container {
    position: relative;
    height: 180px;
    width: 100%;
}

/* Dashboard Table */
.dashboard-table-section {
    margin-top: 4px;
}

.dashboard-table-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.dashboard-table-wrapper {
    overflow-x: auto;
    max-height: 200px;
    overflow-y: auto;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
}

.dashboard-table thead {
    background-color: var(--bg-secondary);
    position: sticky;
    top: 0;
    z-index: 10;
}

.dashboard-table th {
    text-align: left;
    padding: 8px 10px;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border-color);
}

.dashboard-table td {
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    white-space: nowrap;
}

.dashboard-table tbody tr:hover {
    background-color: var(--bg-secondary);
}

.dashboard-table tbody tr:last-child td {
    border-bottom: none;
}

/* Risk Badges */
.risk-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
}

.risk-green {
    color: #10b981;
}

.risk-yellow {
    color: #f59e0b;
}

.risk-red {
    color: #ef4444;
}

/* Trust Badges */
.trust-badges {
    padding: 48px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-text {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badges-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.badge-item {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
}

/* Solutions Section */
.solutions {
    background: var(--bg-primary);
    padding-top: 40px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.solution-card {
    padding: 40px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.solution-card-with-image {
    padding: 0;
}

.solution-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/vitaly-gariev-WrlIRaC9t-A-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.solution-card-image-screenshot {
    background-image: url('images/Screenshot 2025-12-30 213218.png');
}

.solution-card-image-highfive {
    background-image: url('images/highfive.jpg');
}

.solution-card-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.solution-card-with-image .solution-card-content h3 {
    color: white;
}

.solution-card-with-image .solution-card-content > p {
    color: rgba(255, 255, 255, 0.9);
}

.solution-card-with-image .solution-card-content .solution-features li {
    color: rgba(255, 255, 255, 0.9);
}

.solution-card-with-image .solution-card-content .solution-features li::before {
    color: white;
}

.solution-card-with-image .solution-card-content .solution-link {
    color: white;
}


.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.solution-icon {
    font-size: 48px;
    margin-bottom: 24px;
    margin-top: 20px;
}

.solution-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.solution-card > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.solution-features {
    list-style: none;
    margin-bottom: 24px;
}

.solution-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 24px;
}

.solution-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.solution-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: gap 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

.solution-link:hover {
    gap: 8px;
}

/* How It Works */
.trust-badges-section {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.credibility-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: nowrap;
}

.credibility-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 32px;
    background: var(--bg-primary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    flex: 1;
    min-width: 0;
}

.credibility-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 64px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
}

.badge-icon-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon-image img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.badge-icon-dual {
    display: flex;
    gap: 12px;
    align-items: center;
    font-weight: 700;
}

.badge-icon-dual img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background: var(--bg-primary);
    border-radius: 8px;
    padding: 8px;
}

.badge-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.4;
}

/* Founder Section */
.founder-section {
    background: var(--bg-primary);
    padding: 80px 0;
}

.founder-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.founder-image-container {
    margin-bottom: 32px;
}

.founder-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.founder-subheading {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.4;
}

.founder-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.founder-text:last-child {
    margin-bottom: 0;
}

.founder-linkedin {
    margin-top: 32px;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s;
}

.linkedin-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.linkedin-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    transition: color 0.2s;
}

.linkedin-link:hover .linkedin-icon {
    color: var(--primary-dark);
}

/* Benefits Section */
.benefits {
    background: var(--bg-primary);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefits-text h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 48px;
    color: var(--text-primary);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.benefit-item p {
    color: var(--text-secondary);
}

.benefits-visual {
    display: flex;
    justify-content: center;
}

.benefits-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    max-width: 400px;
    width: 100%;
}

.card-header {
    margin-bottom: 24px;
}

.card-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-amount {
    font-size: 56px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 32px;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item span:first-child {
    color: var(--text-secondary);
    font-weight: 500;
}

.detail-item span:last-child {
    color: var(--text-primary);
    font-weight: 700;
}

/* Testimonials */
.form-section {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.form-container iframe {
    border-radius: 8px;
    min-height: 600px;
    overflow: hidden;
    border: none;
    display: block;
}

.testimonials {
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.author-name {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: var(--text-secondary);
}

.testimonial-stats {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.testimonial-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-1);
    padding: 100px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-privacy {
    text-align: center;
    margin: 32px 0 32px 0;
}

.footer-privacy-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-privacy-link:hover {
    color: white;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Privacy Policy Page */
.privacy-section {
    padding: 120px 0 80px;
    background: var(--bg-primary);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-align: center;
}

.privacy-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 48px;
}

.privacy-body {
    line-height: 1.8;
    color: var(--text-primary);
}

.privacy-body h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 48px;
    margin-bottom: 20px;
}

.privacy-body h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 16px;
}

.privacy-body p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.privacy-body ul,
.privacy-body ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.privacy-body li {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.7;
}

.privacy-body a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.privacy-body a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.privacy-toc {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
}

.privacy-toc li {
    margin-bottom: 12px;
}

.privacy-toc a {
    color: var(--primary-color);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu,
    .nav-actions {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        border-top: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active,
    .nav-actions.active {
        display: flex;
    }

    .nav-menu {
        align-items: flex-start;
        gap: 16px;
    }

    .nav-actions {
        gap: 16px;
        border-top: 1px solid var(--border-color);
        padding-top: 16px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-visual {
        display: flex;
    }
    
    .hero-dashboard {
        padding: 20px;
    }
    
    .dashboard-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .dashboard-metric {
        padding: 12px 8px;
    }
    
    .dashboard-metric-label {
        font-size: 10px;
    }
    
    .dashboard-metric-value {
        font-size: 16px;
    }
    
    .dashboard-chart-container {
        height: 150px;
    }
    
    .dashboard-table-wrapper {
        max-height: 150px;
    }

    .benefits-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .credibility-badges {
        gap: 24px;
    }
    
    .credibility-badge {
        min-width: 160px;
        padding: 20px 24px;
    }
}

@media (max-width: 640px) {
    /* Hero Section - Simplified for Mobile */
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero .container {
        gap: 32px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 16px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
        line-height: 1.5;
    }

    .hero-cta {
        flex-direction: row;
        gap: 16px;
        margin-bottom: 32px;
        align-items: center;
        justify-content: flex-start;
    }
    
    .hero-cta .btn {
        width: auto;
        flex: 0 0 auto;
    }

    .hero-approval-time {
        flex-shrink: 0;
    }

    .approval-time-number {
        font-size: 24px;
    }
    
    .approval-time-label {
        font-size: 12px;
    }
    
    /* Dashboard - Hidden on Mobile for Cleaner Look */
    .hero-visual {
        display: none;
    }
    
    /* Solutions/How It Works - Better Card Layout */
    .solutions {
        padding: 40px 0 60px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .solution-card {
        padding: 32px 24px;
    }
    
    .solution-card-with-image .solution-card-content {
        padding: 32px 24px;
    }
    
    .solution-icon {
        font-size: 40px;
        margin-bottom: 16px;
    }
    
    .solution-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .solution-card > p {
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    /* Trust Badges - Simplified Stack */
    .trust-badges-section {
        padding: 40px 0;
    }
    
    .credibility-badges {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .credibility-badge {
        width: 100%;
        max-width: none;
        padding: 24px 20px;
        min-width: 0;
    }
    
    .badge-icon {
        font-size: 40px;
        min-height: 40px;
    }
    
    .badge-icon-image img {
        width: 40px;
        height: 40px;
    }
    
    .badge-icon-dual img {
        width: 40px;
        height: 40px;
    }
    
    .badge-text {
        font-size: 16px;
    }
    
    /* Founder Section */
    .founder-section {
        padding: 40px 0;
    }
    
    .founder-image {
        width: 150px;
        height: 150px;
    }
    
    .founder-image-container {
        margin-bottom: 24px;
    }
    
    .founder-subheading {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .founder-text {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .founder-linkedin {
        margin-top: 24px;
    }
    
    .linkedin-link {
        font-size: 14px;
    }
    
    .linkedin-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Benefits Section */
    .benefits {
        padding: 40px 0;
    }
    
    .benefits-content {
        gap: 32px;
    }
    
    /* Form Section */
    .form-section {
        padding: 40px 0;
    }
    
    .form-container {
        padding: 24px 16px;
        border-radius: 12px;
    }
    
    .form-container iframe {
        min-height: 500px;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 40px 0;
    }
    
    .testimonials-grid {
        gap: 24px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .cta-content p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 32px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-privacy {
        margin: 32px 0 24px 0;
    }
    
    /* Privacy Page Mobile */
    .privacy-section {
        padding: 80px 0 40px;
    }
    
    .privacy-title {
        font-size: 32px;
    }
    
    .privacy-body h2 {
        font-size: 24px;
        margin-top: 32px;
    }
    
    .privacy-body h3 {
        font-size: 20px;
        margin-top: 24px;
    }
    
    .privacy-body p,
    .privacy-body li {
        font-size: 15px;
    }
    
    .privacy-toc {
        padding: 24px 20px;
    }
}
