/* ===========================
   CareReady - Landing Page
   Professional SaaS Design
   =========================== */

/* --- CSS Variables --- */
:root {
    --primary: #1565C0;
    --primary-dark: #0D47A1;
    --primary-light: #E3F2FD;
    --accent: #2E7D32;
    --accent-light: #E8F5E9;
    --warning: #EF6C00;
    --warning-light: #FFF3E0;
    --danger: #C62828;
    --danger-light: #FFEBEE;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #1A1A2E;
    --white: #FFFFFF;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #1E88E5 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
    min-height: 80px;
    padding: 10px 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gray-900);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-icon svg { width: 20px; height: 20px; }

.logo-accent { color: var(--primary); }

.nav-logo-img {
    max-width: 280px;
    height: auto;
    background: white;
}

.footer-brand .nav-logo-img {
    height: 45px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--primary); }

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border: 1px solid var(--gray-300);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-600) !important;
    transition: all 0.2s;
}

.lang-switch:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
    background: var(--primary-light);
}

.lang-switch svg { width: 14px; height: 14px; }

.nav-toggle {
    display: none;
    padding: 8px;
    color: var(--gray-700);
}

.nav-toggle svg { width: 24px; height: 24px; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(21,101,192,0.4);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(21,101,192,0.5);
}

.btn-outline {
    border: 2px solid var(--gray-300);
    color: var(--gray-800);
    background: white;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.btn-nav {
    background: var(--primary);
    color: white !important;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
}

.btn-nav:hover {
    background: var(--primary-dark);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: var(--radius);
}

.btn-block { width: 100%; }

/* --- Promo Banner --- */
.promo-banner {
    background: linear-gradient(135deg, #EF6C00 0%, #E65100 100%);
    color: white;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    font-size: 0.85rem;
}

.promo-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.promo-banner p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.promo-banner svg { width: 16px; height: 16px; }

.promo-banner a {
    color: white;
    text-decoration: underline;
    font-weight: 700;
}

.banner-close {
    color: rgba(255,255,255,0.7);
    padding: 4px;
    flex-shrink: 0;
}

.banner-close:hover { color: white; }
.banner-close svg { width: 16px; height: 16px; }

body:has(.promo-banner) .navbar { top: 38px; }
body:has(.promo-banner) .hero { padding-top: 178px; }

/* --- Hero Section --- */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    overflow: hidden;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-badge svg { width: 16px; height: 16px; }

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--gray-900);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

/* Dashboard Preview */
.dashboard-preview {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
}

.preview-dots span:first-child { background: #FF5F57; }
.preview-dots span:nth-child(2) { background: #FFBD2E; }
.preview-dots span:last-child { background: #28C840; }

.preview-title {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
}

.preview-body { padding: 20px; }

.preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.stat-card {
    padding: 16px;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.stat-card svg {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 20px;
    height: 20px;
    opacity: 0.3;
}

.stat-green { background: var(--accent-light); color: var(--accent); }
.stat-yellow { background: var(--warning-light); color: var(--warning); }
.stat-red { background: var(--danger-light); color: var(--danger); }

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preview-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.preview-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
}

.row-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--warning-light);
    color: var(--warning);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.row-avatar.red { background: var(--danger-light); color: var(--danger); }
.row-avatar.green { background: var(--accent-light); color: var(--accent); }

.row-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.row-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-900);
}

.row-role {
    font-size: 0.7rem;
    color: var(--gray-500);
}

.row-badge {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-warning { background: var(--warning-light); color: var(--warning); }
.badge-danger { background: var(--danger-light); color: var(--danger); }
.badge-success { background: var(--accent-light); color: var(--accent); }

/* --- Section Styles --- */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Problem Section --- */
.problem-section {
    background: var(--gray-50);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.problem-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: var(--danger-light);
    color: var(--danger);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.problem-icon svg { width: 24px; height: 24px; }

.problem-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.problem-cta {
    text-align: center;
    padding: 24px 32px;
    background: linear-gradient(135deg, var(--danger-light), #FFF8E1);
    border-radius: var(--radius);
    border: 1px solid #FFCCBC;
}

.problem-cta p {
    font-size: 1.05rem;
    color: var(--gray-800);
}

/* --- Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    background: var(--white);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--primary-light) 0%, #E8F5E9 100%);
    border-color: transparent;
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon svg { width: 24px; height: 24px; }

.feature-icon-lg {
    width: 64px;
    height: 64px;
    background: white;
    color: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
}

.feature-icon-lg svg { width: 32px; height: 32px; }

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.feature-demo {
    margin-top: 20px;
}

.demo-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.demo-label {
    padding: 8px 16px;
    background: white;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-800);
    box-shadow: var(--shadow-sm);
}

.demo-arrow { color: var(--primary); }
.demo-arrow svg { width: 20px; height: 20px; }

.demo-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 6px 14px;
    background: white;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.demo-time svg { width: 14px; height: 14px; }

/* --- Credentials Section --- */
.credentials-section {
    background: var(--gray-900);
    color: white;
}

.credentials-section .section-tag {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
}

.credentials-section .section-header h2 {
    color: white;
}

.credentials-section .text-gradient {
    background: linear-gradient(135deg, #64B5F6, #81C784);
    -webkit-background-clip: text;
    background-clip: text;
}

.credentials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.credential-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    transition: all 0.2s ease;
}

.credential-tag:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.25);
}

.credential-tag svg { width: 18px; height: 18px; opacity: 0.6; }

.credential-tag.highlight {
    background: rgba(21,101,192,0.3);
    border-color: rgba(21,101,192,0.5);
    color: #90CAF9;
}

/* --- How It Works Section --- */
.how-section {
    background: var(--gray-50);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}

.step-card {
    flex: 1;
    max-width: 260px;
    text-align: center;
    padding: 24px;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 16px;
    box-shadow: 0 4px 14px rgba(21,101,192,0.4);
}

.step-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 40px;
    color: var(--gray-400);
}

.step-connector svg { width: 24px; height: 24px; }

/* --- Comparison Section --- */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.comparison-col {
    padding: 40px;
    border-radius: var(--radius-lg);
}

.comparison-without {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.comparison-with {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    border: 1px solid rgba(21,101,192,0.2);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.comparison-header svg { width: 28px; height: 28px; }
.comparison-without .comparison-header svg { color: var(--gray-400); }
.comparison-with .comparison-header svg { color: var(--accent); }

.comparison-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.comparison-col ul { display: flex; flex-direction: column; gap: 14px; }

.comparison-col li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.comparison-col li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-without li svg { color: var(--danger); }
.comparison-with li svg { color: var(--accent); }

/* --- Founder's Offer Section --- */
.founder-offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0D1B2A 0%, var(--gray-900) 100%);
}

.founder-offer-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 48px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    position: relative;
}

.founder-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(239,108,0,0.15);
    border: 1px solid rgba(239,108,0,0.3);
    color: #FFB74D;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.founder-offer-badge svg { width: 14px; height: 14px; }

.founder-offer-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.founder-offer-card .text-gradient {
    background: linear-gradient(135deg, #FFB74D, #FF8A65);
    -webkit-background-clip: text;
    background-clip: text;
}

.founder-offer-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.founder-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: left;
    margin-bottom: 40px;
}

.founder-perk {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
}

.perk-icon {
    width: 44px;
    height: 44px;
    background: rgba(21,101,192,0.2);
    color: #64B5F6;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.perk-icon svg { width: 22px; height: 22px; }

.founder-perk h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.founder-perk p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.founder-spots {
    margin-bottom: 32px;
}

.spots-bar {
    width: 100%;
    max-width: 300px;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 100px;
    margin: 0 auto 12px;
    overflow: hidden;
}

.spots-fill {
    height: 100%;
    background: linear-gradient(90deg, #EF6C00, #FF8A65);
    border-radius: 100px;
    transition: width 1s ease;
}

.founder-spots p {
    font-size: 0.85rem;
    color: #FFB74D;
    font-weight: 600;
}

.founder-offer-card > .btn {
    font-size: 1.1rem;
    padding: 16px 36px;
}

/* --- Pricing Section --- */
.pricing-section {
    background: var(--gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.pricing-popular {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.pricing-popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 500;
}

.pricing-desc {
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.price-old {
    font-size: 1.4rem;
    color: var(--gray-400);
    text-decoration: line-through;
    font-weight: 500;
    margin-right: 4px;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 640px;
    margin: 40px auto 0;
    padding: 20px 28px;
    background: var(--accent-light);
    border: 1px solid rgba(46,125,50,0.2);
    border-radius: var(--radius);
    text-align: left;
}

.pricing-guarantee > svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
    flex-shrink: 0;
}

.pricing-guarantee strong {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.pricing-guarantee span {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* --- FAQ Section --- */
.faq-grid {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover { color: var(--primary); }

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--gray-400);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--primary);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, var(--gray-900) 0%, #0D1B2A 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
}

.cta-section .text-gradient {
    background: linear-gradient(135deg, #64B5F6, #81C784);
    -webkit-background-clip: text;
    background-clip: text;
}

.cta-form-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: left;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font);
    color: var(--gray-900);
    transition: border-color 0.2s, box-shadow 0.2s;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(21,101,192,0.15);
}

.form-group input::placeholder {
    color: var(--gray-400);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    color: var(--accent);
    margin-bottom: 16px;
}

.success-icon svg { width: 56px; height: 56px; margin: 0 auto; }

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 1rem;
    color: var(--gray-600);
}

/* --- Footer --- */
.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .nav-logo {
    margin-bottom: 12px;
    color: white;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.8rem;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.5rem; }
    .section-header h2 { font-size: 2rem; }
    .pricing-popular { transform: scale(1); }
    .pricing-popular:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
    /* Promo banner */
    .promo-banner p { font-size: 0.75rem; text-align: center; flex-wrap: wrap; justify-content: center; }
    body:has(.promo-banner) .hero { padding-top: 150px; }

    /* Founder offer */
    .founder-offer-card { padding: 32px 20px; }
    .founder-offer-card h2 { font-size: 1.8rem; }
    .founder-perks { grid-template-columns: 1fr; gap: 16px; }
    .founder-perk { padding: 16px; }

    /* Pricing guarantee */
    .pricing-guarantee { flex-direction: column; text-align: center; }

    /* Nav */
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
    }
    .nav-links.active { display: flex; }
    .nav-toggle { display: block; }

    /* Hero */
    .hero { padding: 100px 0 60px; }
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-trust { flex-direction: column; gap: 8px; }
    .dashboard-preview { transform: none; }

    /* Grids */
    .problem-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .comparison-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .form-row { grid-template-columns: 1fr; }

    /* Steps */
    .steps-grid { flex-direction: column; align-items: center; }
    .step-connector { transform: rotate(90deg); padding: 0; }
    .step-card { max-width: 100%; }

    /* Sections */
    section { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }

    /* Footer */
    .footer-content { flex-direction: column; gap: 32px; }
    .footer-links { gap: 40px; }

    /* CTA */
    .cta-content h2 { font-size: 1.7rem; }
    .cta-form-wrapper { padding: 24px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .section-header h2 { font-size: 1.6rem; }
    .price { font-size: 2.5rem; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .demo-step { flex-direction: column; gap: 8px; }
    .demo-arrow { transform: rotate(90deg); }
}
