/* ============================================================
   Clinical Trial Dashboard — clinicaltrialdashboard.com
   Modern, clinical, professional
   ============================================================ */

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy: #0f172a;
    --navy-mid: #1e293b;
    --navy-light: #334155;
    --accent: #1e293b;
    --accent-dark: #0f172a;
    --accent-soft: #e2e8f0;
    --accent-bg: #f1f5f9;
    --text: #0f172a;
    --text-muted: #475569;
    --text-light: #94a3b8;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --bg-warm: #fafaf9;
    --bg-muted: #f1f5f9;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --red: #dc2626;
    --amber: #d97706;
    --green: #16a34a;
    --max-w: 1120px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Navigation ─────────────────────────────────────────── */

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13.5px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--navy); }

.nav-cta {
    background: var(--accent);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(30,41,59,0.3);
}

.nav-cta:hover {
    background: var(--accent-dark);
    box-shadow: 0 4px 12px rgba(30,41,59,0.3);
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--navy); }

/* ── Hero ───────────────────────────────────────────────── */

.hero {
    max-width: 1344px;
    margin: 0 auto;
    padding: 86px 38px 67px;
    display: grid;
    grid-template-columns: 1fr 1.51fr;
    gap: 48px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    background: var(--accent-bg);
    padding: 4px 12px;
    border-radius: 20px;
}

.hero h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.hero-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-note {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 1px 3px rgba(30,41,59,0.3);
}
.btn-primary:hover {
    background: var(--accent-dark);
    box-shadow: 0 4px 16px rgba(30,41,59,0.3);
    transform: translateY(-1px);
}

.btn-secondary {
    background: #fff;
    color: var(--navy);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
    background: var(--bg-soft);
    border-color: #cbd5e1;
    box-shadow: var(--shadow-md);
}

.btn-lg { padding: 13px 28px; font-size: 15px; }

/* Mock screenshot */
.mock-window {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}

.mock-titlebar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--bg-muted);
    border-bottom: 1px solid var(--border);
}

.mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.mock-dot:first-child { background: #fca5a5; }
.mock-dot:nth-child(2) { background: #fde68a; }
.mock-dot:nth-child(3) { background: #86efac; }

.mock-title {
    font-size: 11px;
    color: var(--text-muted);
    margin-left: 8px;
}

.mock-body {
    display: flex;
    height: 300px;
}

.mock-sidebar {
    width: 44px;
    background: var(--navy);
    flex-shrink: 0;
}

.mock-main {
    flex: 1;
    padding: 10px;
    background: var(--bg-soft);
}

.mock-tabs {
    display: flex;
    gap: 1px;
    margin-bottom: 8px;
}

.mock-tab {
    font-size: 8px;
    padding: 4px 8px;
    color: var(--text-light);
    background: var(--bg);
    border-radius: 4px 4px 0 0;
    border: 1px solid var(--border-light);
    border-bottom: none;
    font-weight: 500;
}

.mock-tab.active {
    color: var(--navy);
    font-weight: 600;
    border-bottom: 2px solid var(--accent);
    background: #fff;
}

.mock-kpis {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.mock-kpi {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 5px 8px;
    text-align: center;
    flex: 1;
}

.mock-kpi strong { display: block; font-size: 13px; color: var(--navy); font-weight: 700; }
.mock-kpi small { font-size: 6px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; }

.mock-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    flex: 1;
}

.mock-chart {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    min-height: 72px;
    position: relative;
    overflow: hidden;
}

/* Fake mini chart bars inside mock */
.mock-chart::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 12%;
    right: 12%;
    height: 40%;
    background: linear-gradient(to right,
        var(--accent-soft) 0%, var(--accent-soft) 18%,
        transparent 18%, transparent 22%,
        var(--accent-soft) 22%, var(--accent-soft) 38%,
        transparent 38%, transparent 42%,
        var(--accent-soft) 42%, var(--accent-soft) 62%,
        transparent 62%, transparent 66%,
        var(--accent-soft) 66%, var(--accent-soft) 78%,
        transparent 78%, transparent 82%,
        var(--accent-soft) 82%, var(--accent-soft) 100%
    );
    border-radius: 2px 2px 0 0;
    opacity: 0.7;
}

/* ── Trusted ────────────────────────────────────────────── */

.trusted {
    text-align: center;
    padding: 36px 32px;
    background: var(--bg-soft);
    border-top: 1px solid var(--border-light);
}

.trusted p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trusted-logos span {
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.02em;
}

/* ── Testimonials ──────────────────────────────────────── */

.testimonials {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 88px 32px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    padding: 28px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--bg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card blockquote {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-bg);
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 13px;
    color: var(--navy);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-light);
}

/* ── Features ───────────────────────────────────────────── */

.features {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 88px 32px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.section-header p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 460px;
    margin: 0 auto;
}

.section-header::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin: 20px auto 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature-card {
    padding: 24px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
    position: relative;
}

.feature-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.feature-card.highlight {
    border-color: var(--accent);
    background: var(--accent-bg);
}

.feature-card.highlight .feature-icon {
    background: var(--accent-soft);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-muted);
    border-radius: var(--radius);
    margin-bottom: 14px;
}

.feature-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── How it works ───────────────────────────────────────── */

.how-it-works {
    background: var(--bg-soft);
    padding: 88px 32px;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.how-it-works .section-header,
.how-it-works .steps {
    max-width: var(--max-w);
    margin: 0 auto;
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
}

.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 28px 20px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50%;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(30,41,59,0.25);
}

.step h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-arrow {
    display: flex;
    align-items: center;
    padding-top: 56px;
}

/* ── Compliance ─────────────────────────────────────────── */

.compliance {
    padding: 88px 32px;
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Subtle grid pattern */
.compliance::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.compliance-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 56px;
    align-items: center;
    position: relative;
}

.compliance-text h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.compliance-text > p {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 28px;
}

.compliance-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.compliance-list li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 16px;
    border-left: 2px solid rgba(30,41,59,0.5);
}

.compliance-list strong {
    font-size: 13.5px;
    color: #fff;
    font-weight: 600;
}

.compliance-list span {
    font-size: 12.5px;
    color: #94a3b8;
}

.badge-card {
    text-align: center;
    padding: 36px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.badge-card h3 {
    font-size: 17px;
    margin: 14px 0 8px;
    font-weight: 700;
}

.badge-card p {
    font-size: 13px;
    color: #94a3b8;
}

/* ── Clinical Tables Demo ───────────────────────────────── */

.clinical-tables {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 88px 32px;
}

.table-demo {
    max-width: 780px;
    margin: 0 auto;
}

.table-legend {
    display: flex;
    gap: 28px;
    justify-content: center;
    margin-bottom: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 500;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.legend-dot.red { background: #fecaca; border: 2px solid var(--red); }
.legend-dot.amber { background: #fde68a; border: 2px solid var(--amber); }
.legend-dot.green { background: #bbf7d0; border: 2px solid var(--green); }

.table-mock {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    font-size: 13px;
    box-shadow: var(--shadow-md);
}

.table-header-row, .table-row {
    display: grid;
    grid-template-columns: 80px 1fr 90px 70px 120px 100px;
    padding: 10px 16px;
    gap: 8px;
    align-items: center;
}

.table-header-row {
    background: var(--navy);
    color: #fff;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table-row {
    border-top: 1px solid var(--border-light);
    transition: background 0.15s;
}
.table-row:hover { background: var(--bg-soft) !important; }
.table-row.red { background: #fef2f2; }
.table-row.amber { background: #fffbeb; }
.table-row.green { background: #f0fdf4; }

/* ── Feature Screenshots ───────────────────────────────── */

.feature-screenshots {
    margin-top: 56px;
}

.screenshot-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.screenshot-item .mock-window {
    margin-bottom: 12px;
}

.screenshot-item .mock-body {
    height: 220px;
}

.screenshot-item img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    margin-bottom: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-item img:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 24px 56px rgba(30,41,59,0.2), 0 6px 20px rgba(30,41,59,0.1);
}

.screenshot-caption {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    font-weight: 500;
}

.screenshot-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 20px;
    font-style: italic;
}

/* Real screenshot in hero */
.hero-screenshot {
    max-width: 100%;
}

.hero-screenshot img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top left;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(30,41,59,0.18), 0 4px 16px rgba(30,41,59,0.08);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-screenshot img:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 28px 72px rgba(30,41,59,0.24), 0 8px 24px rgba(30,41,59,0.12);
}

/* Use-case screenshots */
.use-case-screenshot {
    margin-top: 48px;
}

.use-case-screenshot img {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 12px;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-screenshot img:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 24px 56px rgba(30,41,59,0.2), 0 6px 20px rgba(30,41,59,0.1);
}

.use-case-screenshot .screenshot-caption {
    max-width: 800px;
    margin: 0 auto;
}

/* ── Use Cases ─────────────────────────────────────────── */

.use-cases {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 88px 32px;
    border-top: 1px solid var(--border-light);
}

.use-case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.use-case-card {
    padding: 28px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--bg);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.use-case-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.use-case-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-muted);
    border-radius: var(--radius);
    margin-bottom: 14px;
}

.use-case-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.use-case-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── FAQ ───────────────────────────────────────────────── */

.faq-section {
    background: var(--bg-soft);
    padding: 88px 32px;
    border-top: 1px solid var(--border-light);
}

.faq-list {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item[open] {
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    padding: 18px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: "+";
    font-size: 18px;
    font-weight: 400;
    color: var(--text-light);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: "\2212";
}

.faq-item p {
    padding: 0 24px 18px;
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item a {
    color: var(--accent);
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* ── Pricing ────────────────────────────────────────────── */

.pricing {
    background: var(--bg-soft);
    padding: 88px 32px;
    border-top: 1px solid var(--border-light);
}

.pricing .section-header {
    max-width: var(--max-w);
    margin: 0 auto 52px;
}

.pricing-cards {
    max-width: 680px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pricing-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.25s ease;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.pricing-card.enterprise {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(30,41,59,0.12);
    position: relative;
}

.pricing-card.enterprise::before {
    content: "Popular";
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.price {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.price-note {
    font-size: 12.5px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-card li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 5px 0;
    border-bottom: 1px solid var(--bg-muted);
}

.pricing-card li::before {
    content: "\2713";
    color: var(--accent);
    font-weight: 700;
    margin-right: 8px;
}

.pricing-card .btn { width: 100%; }

/* ── CTA ────────────────────────────────────────────────── */

.cta-section {
    text-align: center;
    padding: 88px 32px;
    max-width: 560px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.cta-section > p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.cta-note {
    margin-top: 14px;
    font-size: 13px;
    color: var(--text-light);
}

.cta-note a { color: var(--accent); text-decoration: none; }
.cta-note a:hover { text-decoration: underline; }

/* ── Footer ─────────────────────────────────────────────── */

.footer {
    background: var(--navy);
    color: #94a3b8;
    padding: 48px 32px 20px;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 56px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
    font-size: 13px;
    margin-top: 8px;
    max-width: 240px;
    line-height: 1.5;
}

.footer-brand .nav-logo span { color: #fff; }

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-links h4 {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links a {
    display: block;
    font-size: 13px;
    color: #64748b;
    text-decoration: none;
    padding: 3px 0;
    transition: color 0.2s;
}

.footer-links a:hover { color: #e2e8f0; }

.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding-top: 16px;
    text-align: center;
    font-size: 12px;
    color: #475569;
}

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 48px 24px 40px;
        gap: 36px;
    }
    .hero h1 { font-size: 32px; }
    .hero-image { order: -1; }

    .feature-grid { grid-template-columns: 1fr 1fr; }
    .steps { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); padding: 0; }

    .testimonial-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .screenshot-pair { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .use-case-grid { grid-template-columns: 1fr; }
    .compliance-inner { grid-template-columns: 1fr; }
    .pricing-cards { grid-template-columns: 1fr; max-width: 400px; }

    .footer-inner { flex-direction: column; gap: 28px; }
    .footer-links { gap: 28px; }
}

@media (max-width: 600px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        gap: 16px;
    }
    .nav-toggle { display: block; }

    .hero h1 { font-size: 28px; }
    .feature-grid { grid-template-columns: 1fr; }
    .table-header-row, .table-row { grid-template-columns: 60px 1fr 70px; }
    .table-header-row span:nth-child(n+4),
    .table-row span:nth-child(n+4) { display: none; }
}
