/* ============================================
   eVisaFast — Modern Minimalist
   ============================================ */

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

:root {
    --ink: #0f1114;
    --ink-light: #4a4f5c;
    --ink-muted: #8a8f9c;
    --surface: #ffffff;
    --surface-dim: #f5f6f8;
    --surface-border: #e8eaed;
    --brand: #2b5dff;
    --brand-hover: #1a4ae0;
    --brand-subtle: #eef2ff;
    --accent: #ff6b35;
    --accent-hover: #e55a28;
    --success: #22c55e;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
    --max-width: 1120px;
    --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--ink);
    line-height: 1.65;
    background: var(--surface);
    letter-spacing: -0.01em;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--brand); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-hover); }

h1, h2, h3, h4 { letter-spacing: -0.025em; line-height: 1.2; font-weight: 600; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

/* --- Utility --- */
.text-muted { color: var(--ink-muted); }
.text-light { color: var(--ink-light); }
.text-sm { font-size: 0.875rem; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* --- Header & Nav --- */
.site-header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--surface-border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.03em;
}
.logo:hover { text-decoration: none; color: var(--ink); }

.nav-toggle { display: none; background: none; border: none; font-size: 1.25rem; cursor: pointer; color: var(--ink); padding: 0.5rem; }

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}
.nav-list a {
    padding: 0.5rem 0.875rem;
    color: var(--ink-light);
    font-weight: 450;
    font-size: 0.9rem;
    transition: color var(--transition);
    text-decoration: none;
}
.nav-list a:hover, .nav-list a.active { color: var(--ink); }
.nav-list .nav-cta {
    background: var(--ink);
    color: #fff !important;
    border-radius: var(--radius-sm);
    padding: 0.5rem 1.25rem;
    margin-left: 0.5rem;
    font-weight: 500;
}
.nav-list .nav-cta:hover { background: #1a1d24; }

/* --- Breadcrumbs --- */
.breadcrumbs { padding: 1rem 0; }
.breadcrumbs ol { display: flex; list-style: none; gap: 0.4rem; font-size: 0.8125rem; flex-wrap: wrap; }
.breadcrumbs li { color: var(--ink-muted); }
.breadcrumbs li::after { content: '\203A'; margin-left: 0.4rem; }
.breadcrumbs li:last-child::after { display: none; }
.breadcrumbs a { color: var(--ink-muted); }
.breadcrumbs a:hover { color: var(--brand); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    text-align: center;
    line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-hover); box-shadow: 0 4px 12px rgba(43,93,255,0.3); color: #fff; }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #2a2d34; box-shadow: 0 4px 16px rgba(15,17,20,0.3); color: #fff; }

.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-hover); box-shadow: 0 4px 12px rgba(255,107,53,0.3); color: #fff; }

.btn-outline { background: transparent; border: 1.5px solid var(--surface-border); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: #fff; }

.btn-ghost { background: transparent; color: var(--brand); padding: 0.5rem 0; }
.btn-ghost:hover { color: var(--brand-hover); transform: none; }
.btn-ghost::after { content: '\2192'; transition: transform var(--transition); }
.btn-ghost:hover::after { transform: translateX(4px); }

.btn-lg { padding: 0.9375rem 2rem; font-size: 1rem; border-radius: var(--radius); }

/* --- Hero --- */
.hero {
    padding: 3rem 0 5rem;
    position: relative;
}
.hero-inner {
    max-width: 640px;
}
.hero .eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--brand);
    background: var(--brand-subtle);
    padding: 0.375rem 0.875rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    letter-spacing: 0;
}
.hero h1 {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-bottom: 1.25rem;
}
.hero p {
    font-size: 1.1875rem;
    line-height: 1.6;
    color: var(--ink-light);
    margin-bottom: 2rem;
    max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

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

/* Stats row */
.stats-row {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--surface-border);
}
.stat { }
.stat-value { font-size: 1.75rem; font-weight: 700; letter-spacing: -0.03em; color: var(--ink); }
.stat-label { font-size: 0.8125rem; color: var(--ink-muted); margin-top: 0.125rem; }

/* --- Sections --- */
.section { padding: 5rem 0; }
.section-alt { background: var(--surface-dim); }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; margin-bottom: 3rem; }
.section-title { font-size: 1.75rem; font-weight: 600; margin-bottom: 0.75rem; }
.section-desc { font-size: 1.0625rem; color: var(--ink-light); line-height: 1.6; }

/* --- Grid --- */
.grid { display: grid; gap: 1.5rem; align-items: stretch; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2-1 { grid-template-columns: 2fr 1fr; }
.grid-1-2 { grid-template-columns: 1fr 2fr; }

/* --- Cards --- */
.card {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.card > .btn-ghost { margin-top: auto; }
.card-actions { margin-top: auto; padding-top: 1.25rem; display: flex; gap: 1.5rem; }
/* --- Section eyebrow --- */
.section-eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

/* --- Service cards --- */
.service-card {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.service-card:hover {
    box-shadow: var(--shadow);
    border-color: transparent;
}
.service-card--featured { border: 2px solid var(--ink); }
.service-card--featured:hover { border-color: var(--ink); }

.service-card__head {
    padding: 2rem 2rem 0;
}
.service-card__timeline {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ink-muted);
    background: var(--surface-dim);
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}
.service-card__title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}
.service-card__desc {
    color: var(--ink-light);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.service-card__body {
    padding: 1.5rem 2rem;
    flex: 1;
}
.service-card__label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.75rem;
}
.service-card__list {
    list-style: none;
}
.service-card__list li {
    padding: 0.375rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.875rem;
    color: var(--ink-light);
}
.service-card__list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 0.8125rem;
}

.service-card__foot {
    padding: 1.25rem 2rem;
    border-top: 1px solid var(--surface-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.service-card__price {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.service-card__price-note {
    display: block;
    font-size: 0.75rem;
    color: var(--ink-muted);
    margin-top: 0.125rem;
}

.grid-services { gap: 1.5rem; }

.card:hover {
    box-shadow: var(--shadow);
    border-color: transparent;
    text-decoration: none;
    color: inherit;
    transform: translateY(-2px);
}
.card-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-muted);
    margin-bottom: 0.75rem;
}
.card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.card p { color: var(--ink-light); font-size: 0.9375rem; line-height: 1.6; }

.card-highlight {
    border-color: var(--brand);
    box-shadow: 0 0 0 1px var(--brand);
}

.card-flat {
    border: none;
    background: transparent;
    padding: 0;
}
.card-flat:hover { box-shadow: none; transform: none; }

/* --- Steps --- */
.steps-minimal { counter-reset: step; }
.step-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--surface-border);
    align-items: start;
}
.step-item:last-child { border-bottom: none; }
.step-num {
    counter-increment: step;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-subtle);
    border-radius: 10px;
}
.step-num::before { content: counter(step); }
.step-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.step-item p { color: var(--ink-light); font-size: 0.9375rem; }

/* --- Tables --- */
.table-wrap { overflow-x: auto; border: 1px solid var(--surface-border); border-radius: var(--radius); }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { padding: 0.875rem 1.25rem; text-align: left; }
.price-table th {
    background: var(--ink);
    font-weight: 500;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    border-bottom: 1px solid var(--surface-border);
}
.price-table td { border-bottom: 1px solid var(--surface-border); font-size: 0.9375rem; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--surface-dim); }

/* --- FAQ Accordion --- */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--surface-border); }
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.25rem 0;
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ink);
    gap: 1rem;
    line-height: 1.4;
}
.faq-question::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--ink-muted);
    transition: transform var(--transition);
    flex-shrink: 0;
}
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 0 1.5rem; color: var(--ink-light); line-height: 1.7; font-size: 0.9375rem; }
.faq-item.open .faq-answer { max-height: 500px; }

/* --- CTA Block --- */
.cta-block {
    background: var(--ink);
    color: #fff;
    padding: 5rem 0;
}
.cta-block .container { max-width: 640px; text-align: center; }
.cta-block h2 { font-size: 2rem; margin-bottom: 0.75rem; color: #fff; }
.cta-block p { font-size: 1.0625rem; opacity: 0.7; margin-bottom: 2rem; }
.cta-trust {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.8125rem;
    opacity: 0.5;
    flex-wrap: wrap;
}

/* --- Info Box --- */
.info-box {
    background: #fff4ee;
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}
.info-box p { color: var(--ink); margin: 0; font-size: 0.9375rem; }

/* --- Tag / Pill --- */
.tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
    background: var(--surface-dim);
    color: var(--ink-muted);
}
.tag-brand { background: var(--brand-subtle); color: var(--brand); }
.tag-success { background: #dcfce7; color: #166534; }

/* --- Feature Row (icon + text) --- */
.feature-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
}
.feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--surface-dim);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.feature-text h4 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.125rem; }
.feature-text p { font-size: 0.875rem; color: var(--ink-light); }

/* --- Checklist --- */
.checklist { list-style: none; }
.checklist li {
    padding: 0.625rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.9375rem;
    color: var(--ink-light);
    border-bottom: 1px solid var(--surface-border);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* --- Forms --- */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
    color: var(--ink);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.6875rem 0.875rem;
    border: 1.5px solid var(--surface-border);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--surface);
    color: var(--ink);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(43,93,255,0.1);
}

.form-group input::placeholder { color: var(--ink-muted); }

/* ── Date picker ─────────────────────────────────────────── */
.date-picker { position: relative; }

.date-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.6875rem 0.875rem;
    border: 1.5px solid var(--surface-border);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-family: inherit;
    background: var(--surface);
    color: var(--ink-muted);
    cursor: pointer;
    text-align: left;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.date-trigger.has-value { color: var(--ink); }
.date-trigger:focus,
.date-trigger:focus-visible {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(43,93,255,0.1);
}
.date-trigger svg { flex-shrink: 0; color: var(--ink-muted); }

.date-popover {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 200;
    background: var(--surface);
    border: 1.5px solid var(--surface-border);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    padding: 0.75rem;
    min-width: 280px;
    user-select: none;
}
.date-popover.open { display: block; }

.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.625rem;
}
.cal-nav {
    display: flex;
    gap: 0.25rem;
}
.cal-nav button,
.cal-month-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.875rem;
    color: var(--ink);
    display: flex;
    align-items: center;
    transition: background var(--transition);
}
.cal-nav button:hover,
.cal-month-btn:hover { background: var(--surface-dim); }

.cal-month-btn { font-weight: 600; font-size: 0.9375rem; gap: 0.25rem; }

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
.cal-day-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ink-muted);
    padding: 0.25rem 0;
}
.cal-day {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    cursor: pointer;
    color: var(--ink);
    transition: background var(--transition), color var(--transition);
    border: none;
    background: none;
    font-family: inherit;
    width: 100%;
}
.cal-day:hover:not(:disabled):not(.cal-day-selected) { background: var(--surface-dim); }
.cal-day.cal-day-selected {
    background: var(--brand);
    color: #fff;
    font-weight: 600;
}
.cal-day.cal-day-today:not(.cal-day-selected) {
    border: 1.5px solid var(--brand);
    color: var(--brand);
    font-weight: 600;
}
.cal-day.cal-day-outside { color: var(--ink-muted); opacity: 0.45; }
.cal-day:disabled { opacity: 0.3; cursor: default; }

/* month/year panel */
.cal-month-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}
.cal-month-cell {
    padding: 0.4rem 0;
    text-align: center;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    color: var(--ink);
    transition: background var(--transition);
}
.cal-month-cell:hover { background: var(--surface-dim); }
.cal-month-cell.active { background: var(--brand); color: #fff; font-weight: 600; }

.cal-year-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    max-height: 200px;
    overflow-y: auto;
}
.cal-year-cell {
    padding: 0.4rem 0;
    text-align: center;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    color: var(--ink);
    transition: background var(--transition);
}
.cal-year-cell:hover { background: var(--surface-dim); }
.cal-year-cell.active { background: var(--brand); color: #fff; font-weight: 600; }
/* ── end date picker ─────────────────────────────────────── */

/* ── Custom select ───────────────────────────────────────── */
.custom-select { position: relative; }

.cs-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.6875rem 0.875rem;
    border: 1.5px solid var(--surface-border);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-family: inherit;
    background: var(--surface);
    color: var(--ink-muted);
    cursor: pointer;
    text-align: left;
    transition: border-color var(--transition), box-shadow var(--transition);
    gap: 0.5rem;
}
.cs-trigger.has-value { color: var(--ink); }
.cs-trigger:focus,
.cs-trigger:focus-visible {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(43,93,255,0.1);
}
.cs-trigger svg { flex-shrink: 0; color: var(--ink-muted); transition: transform var(--transition); }
.cs-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.cs-value { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.cs-list {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--surface);
    border: 1.5px solid var(--surface-border);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    padding: 0.25rem;
    list-style: none;
    margin: 0;
    max-height: 220px;
    overflow-y: auto;
}
.cs-list.open { display: block; }

.cs-option {
    padding: 0.5rem 0.75rem;
    border-radius: calc(var(--radius-sm) - 2px);
    font-size: 0.9375rem;
    cursor: pointer;
    color: var(--ink);
    transition: background var(--transition);
}
.cs-option:hover { background: var(--surface-dim); }
.cs-option.selected { background: var(--brand); color: #fff; font-weight: 600; }
/* ── end custom select ───────────────────────────────────── */

/* ── File upload ─────────────────────────────────────────── */
.file-upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    width: 100%;
    padding: 2rem 1.5rem;
    border: 1.5px dashed var(--surface-border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
    text-align: center;
}
.file-upload-area:hover {
    border-color: var(--brand);
    background: rgba(43,93,255,0.03);
}
.file-upload-area.has-file {
    border-style: solid;
    border-color: var(--brand);
    background: rgba(43,93,255,0.04);
}
.file-upload-icon { color: var(--ink-muted); margin-bottom: 0.25rem; }
.file-upload-text { font-size: 0.9375rem; font-weight: 500; color: var(--ink); }
.file-upload-hint { font-size: 0.8125rem; color: var(--ink-muted); }
.file-upload-name { font-size: 0.875rem; font-weight: 600; color: var(--brand); margin-top: 0.25rem; }
.file-progress {
    margin-top: 0.625rem;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--surface-border);
    border-radius: var(--radius-sm);
    background: var(--surface);
}
.file-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    gap: 1rem;
}
.file-progress-filename {
    font-size: 0.875rem;
    color: var(--ink);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.file-progress-pct {
    font-size: 0.8125rem;
    color: var(--ink-muted);
    flex-shrink: 0;
}
.file-progress-track {
    height: 5px;
    background: var(--surface-dim);
    border-radius: 99px;
    overflow: hidden;
}
.file-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--brand);
    border-radius: 99px;
    transition: width 0.1s linear;
}
.file-progress-bar.complete { background: #16a34a; }
/* ── end file upload ─────────────────────────────────────── */

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-section-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-muted);
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
    margin-top: 2rem;
    border-bottom: 1px solid var(--surface-border);
}

/* --- Sidebar Card (sticky) --- */
.sidebar-card {
    background: var(--ink);
    border: none;
    border-radius: var(--radius);
    padding: 1.75rem;
    position: sticky;
    top: 88px;
    color: #fff;
}
.sidebar-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; color: #fff; }
.card .price-table th, .card .price-table td { padding-left: 0; padding-right: 0; }
.sidebar-card .price-table td { border-bottom-color: rgba(255,255,255,0.1); color: #fff; padding-left: 0; padding-right: 0; }
.sidebar-card .price-table tr:hover td { background: rgba(255,255,255,0.05); }
.sidebar-card .text-muted { color: rgba(255,255,255,0.45) !important; }
.sidebar-card .divider { background: rgba(255,255,255,0.12); }
.sidebar-card .card-label { color: rgba(255,255,255,0.5); }
.sidebar-card .checklist li { color: rgba(255,255,255,0.8); border-bottom-color: rgba(255,255,255,0.1); }
.sidebar-card .checklist li::before { color: #6ee7b7; }

/* --- Footer --- */
.site-footer { background: var(--ink); color: #fff; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-bottom: 3rem; }
.footer-col h3 { font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.875rem; transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; font-size: 0.8125rem; color: rgba(255,255,255,0.3); }

/* --- Divider --- */
.divider { height: 1px; background: var(--surface-border); border: none; margin: 3rem 0; }

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--surface-border);
        padding: 1rem 2rem;
        box-shadow: var(--shadow-lg);
    }
    .nav-list.open { display: flex; }
    .nav-list a { padding: 0.625rem 0; }
    .nav-list .nav-cta { margin-left: 0; margin-top: 0.5rem; text-align: center; }

    .hero { padding: 3rem 0; }
    .hero h1 { font-size: 2.25rem; }
    .hero p { font-size: 1.0625rem; }
    .hero-split { grid-template-columns: 1fr; gap: 2rem; }

    .section { padding: 3rem 0; }
    .section-title { font-size: 1.5rem; }

    .stats-row { flex-direction: column; gap: 1.5rem; }

    .grid-2, .grid-3, .grid-4, .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
    .card-fixed { height: auto; }
    .service-card__head, .service-card__body, .service-card__foot { padding-left: 1.5rem; padding-right: 1.5rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .cta-trust { flex-direction: column; gap: 0.5rem; }
}
