:root {
    --primary: #4F46E5;
    --primary-600: #4338CA;
    --text: #0F172A;
    --muted: #64748B;
    --border: #E2E8F0;
    --bg: #F8FAFC;
    --card: #FFFFFF;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --radius: 12px;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

h2 {
    font-size: clamp(28px, 2.1vw, 32px);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius);
    transition: all 0.2s;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-600);
}

.btn-secondary {
    background-color: white;
    color: var(--text);
    border-color: var(--border);
}

.btn-secondary:hover {
    background-color: #f1f5f9;
}

.btn-link {
    background: none;
    color: var(--primary);
    padding: 0;
}

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

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: #ffffff;
    border-bottom: 1px solid #E2E8F0;
    height: 76px;
}

.header.is-scrolled {
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.logo-sep {
    width: 1px;
    height: 16px;
    background: #E2E8F0;
    display: inline-block;
}

.tagline {
    font-size: 0.82rem;
    color: #64748B;
    font-weight: 500;
}

.nav {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #334155;
    height: 76px;
    display: inline-flex;
    align-items: center;
    position: relative;
    transition: color 0.15s ease;
}

.nav-link:hover {
    color: #0F172A;
}

.nav-link.is-active {
    color: #4F46E5;
}

.nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #4F46E5;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
}

.header-login {
    font-size: 0.9rem;
    font-weight: 500;
    color: #475569;
    transition: color 0.15s ease;
}

.header-login:hover {
    color: #334155;
}

.header-cta {
    height: 42px;
    padding: 0 14px;
    border-radius: 16px;
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.header-menu-btn {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    background: #ffffff;
    color: #334155;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.header-menu-btn:hover {
    background: #F8FAFC;
    color: #0F172A;
}

.dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.dropdown-caret {
    opacity: 0.75;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 6px);
    left: 0;
    min-width: 180px;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    padding: 0.5rem;
    display: none;
    z-index: 60;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #0F172A;
}

.dropdown-item:hover {
    background: #F8FAFC;
    color: #0F172A;
}

.dropdown-item.is-active {
    color: #4F46E5;
}

.dropdown:focus-within .dropdown-menu,
.dropdown:hover .dropdown-menu {
    display: block;
}

@media (max-width: 1024px) {
    .tagline { display: none; }
    .nav { gap: 0.95rem; }
    .header-actions { gap: 0.75rem; }
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
}

.mobile-drawer.is-open {
    display: block;
}

.mobile-drawer__overlay {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(15, 23, 42, 0.32);
    cursor: pointer;
}

.mobile-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(360px, 92vw);
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    display: flex;
    flex-direction: column;
}

.mobile-drawer__top {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-bottom: 1px solid #E2E8F0;
}

.mobile-drawer__brand {
    font-weight: 800;
    color: #4F46E5;
    letter-spacing: -0.02em;
}

.mobile-drawer__close {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    background: #ffffff;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.mobile-drawer__close:hover {
    background: #F8FAFC;
    color: #0F172A;
}

.mobile-drawer__list {
    display: grid;
    padding: 8px 0;
}

.mobile-drawer__link {
    padding: 14px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #334155;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.mobile-drawer__link:hover {
    background: #F8FAFC;
    color: #0F172A;
}

.mobile-drawer__divider {
    height: 1px;
    background: #E2E8F0;
    margin: 6px 16px;
}

.mobile-drawer__footer {
    margin-top: auto;
    padding: 16px;
    border-top: 1px solid #E2E8F0;
}

.mobile-drawer__cta {
    width: 100%;
    height: 44px;
    border-radius: 16px;
    font-weight: 600;
}

body.drawer-open {
    overflow: hidden;
}

/* Hero */
.hero {
    padding: 60px 0 24px;
    text-align: left;
    background:
        radial-gradient(60% 60% at 0% 0%, rgba(79, 70, 229, 0.08) 0%, rgba(79, 70, 229, 0.00) 55%),
        radial-gradient(50% 70% at 100% 40%, rgba(15, 23, 42, 0.06) 0%, rgba(15, 23, 42, 0.00) 60%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    align-items: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: #EEF2FF;
    color: var(--primary);
    border: 0;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.9rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
    max-width: 620px;
}

.hero-lead {
    font-size: 1rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 0 1.1rem;
    line-height: 1.7;
}

.hero-trustline {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1E293B;
    letter-spacing: 0.02em;
    margin-bottom: 1.35rem;
}

.hero__divider {
    height: 1px;
    background: #E2E8F0;
    margin-top: 16px;
}

.hero-btns {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 0;
}

.hero-trust {
    display: grid;
    gap: 1rem;
}

.hero-trust-card {
    background: var(--card);
    border: 1px solid #CBD5E1;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.hero-trust-card:hover {
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.hero-trust-title {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.35rem;
    letter-spacing: -0.015em;
}

.hero-trust-desc {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .hero { padding: 48px 0 20px; }
    .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .hero h1 { font-size: 2.2rem; }
}

@media (max-width: 520px) {
    .hero h1 { font-size: 2.05rem; }
    .hero-btns { flex-wrap: wrap; }
    .hero-btns .btn { width: 100%; }
}

/* Trust */
.trust {
    padding: 32px 0 48px;
    background: #F8FAFC;
}

.trust__header {
    display: grid;
    gap: 1.125rem;
    margin-bottom: 1.125rem;
}

.trust__title {
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.trust__subtitle {
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 680px;
}

.trust__bar {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    margin-bottom: 1rem;
}

.trust__bar-item {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0F172A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.9rem;
    border-right: 1px solid #E2E8F0;
}

.trust__bar-item::before {
    display: none;
}

.trust__bar-item:last-child { border-right: 0; }

.trust__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.trust__card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 1.125rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.trust__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    border-color: var(--primary);
}

.trust__icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(79, 70, 229, 0.08);
    color: #4F46E5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
}

.trust__icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.trust__card-title {
    font-size: 1.04rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 0.35rem;
    letter-spacing: -0.015em;
}

.trust__card-desc {
    font-size: 0.92rem;
    color: #64748B;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .trust__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    .trust__bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .trust__bar-item:nth-child(2n) { border-right: 0; }
    .trust__bar-item:nth-child(n+3) { border-top: 1px solid #E2E8F0; }
}

@media (max-width: 560px) {
    .trust { padding: 32px 0 40px; }
    .trust__grid { grid-template-columns: 1fr; }
    .trust__bar { grid-template-columns: 1fr; }
    .trust__bar-item { border-right: 0; }
    .trust__bar-item + .trust__bar-item { border-top: 1px solid #E2E8F0; }
}

.diff {
    padding: 48px 0 64px;
    background: #F8FAFC;
}

.diff__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.5rem;
    align-items: start;
}

.diff__title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #0F172A;
    letter-spacing: -0.02em;
    margin-bottom: 0.55rem;
}

.diff__subtitle {
    color: #64748B;
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 680px;
    margin: 0 0 1.1rem;
}

.diff-left {
    display: grid;
    gap: 0.95rem;
}

.diff-left__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 0.7rem;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.10);
    color: #4F46E5;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: fit-content;
}

.diff-left__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 6px 12px;
    border-radius: 20px;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: fit-content;
}

.diff-left__title {
    font-size: 2.05rem;
    font-weight: 950;
    color: #0F172A;
    letter-spacing: -0.025em;
    margin-top: 0.55rem;
}

.diff-left__lead {
    color: #334155;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-top: 0.5rem;
    max-width: 680px;
}

.diff-left__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.6rem;
}

.diff-left__stat {
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    background: #ffffff;
    padding: 0.85rem 0.9rem;
}

.diff-left__stat-title {
    font-size: 0.92rem;
    font-weight: 900;
    color: #0F172A;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.diff-left__stat-text {
    font-size: 0.84rem;
    color: #64748B;
    line-height: 1.6;
}

.diff-left__subhead {
    font-size: 1.02rem;
    font-weight: 950;
    color: #0F172A;
    letter-spacing: -0.015em;
    margin-top: 0.2rem;
}

.diff-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 0.75rem;
}

.diff-cards__card {
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    background: #ffffff;
    padding: 0.85rem 0.9rem;
}

.diff-cards__title {
    font-size: 0.92rem;
    font-weight: 900;
    color: #0F172A;
    letter-spacing: -0.01em;
    margin-bottom: 0.35rem;
}

.diff-cards__desc {
    font-size: 0.82rem;
    color: #64748B;
    line-height: 1.6;
}

.diff-left__close {
    color: #0F172A;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 0.15rem;
    max-width: 680px;
}

.diff__list {
    list-style: disc;
    padding-left: 1.1rem;
    margin: 0;
    display: grid;
    gap: 0.55rem;
}

.diff__list li {
    color: #0F172A;
    font-size: 0.875rem;
    line-height: 1.75;
}

.diff__card {
    background: #ffffff;
    border: 1px solid #CBD5E1;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    padding: 1.35rem;
}

.diff__card-title {
    font-size: 1.22rem;
    font-weight: 900;
    color: #0F172A;
    letter-spacing: -0.015em;
    margin-bottom: 0.9rem;
    text-align: center;
}

.diff__items {
    display: grid;
    gap: 0.75rem;
}

.diff__item {
    background: #ffffff;
    border: 1px solid #CBD5E1;
    border-radius: 16px;
    padding: 1.05rem 1.05rem 1rem;
}

.diff__item-title {
    font-size: 0.9rem;
    font-weight: 900;
    color: #0F172A;
    letter-spacing: -0.01em;
    margin-bottom: 0.65rem;
}

.diff__cols {
    display: flex;
    gap: 0.75rem;
}

.diff__col {
    flex: 1;
    border-radius: 14px;
    border: 1px solid #CBD5E1;
    padding: 0.9rem;
}

.diff__col--agent {
    background: #F1F5F9;
}

.diff__col--control {
    background: #EEF2FF;
}

.diff__col-label {
    font-size: 0.78rem;
    font-weight: 800;
    color: #64748B;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.diff__col-value {
    font-size: 0.92rem;
    color: #0F172A;
    line-height: 1.4;
}

.diff__col--control .diff__col-value {
    font-weight: 900;
    color: #4F46E5;
}

.diff__cta-bar {
    margin-top: 1rem;
    background: #4F46E5;
    border-radius: 24px;
    padding: 1.35rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.diff__cta-bar-text {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.diff__cta-btn {
    background: #ffffff;
    color: #4F46E5;
    border-color: rgba(255, 255, 255, 0.7);
    font-weight: 800;
}

.diff__cta-btn:hover {
    background: rgba(255, 255, 255, 0.92);
    color: #4338CA;
}

@media (max-width: 1024px) {
    .diff__grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .diff-left__title { font-size: 1.75rem; }
}

@media (max-width: 560px) {
    .diff { padding: 40px 0 48px; }
    .diff__title { font-size: 1.35rem; }
    .diff__cols { flex-direction: column; }
    .diff__col--control { order: -1; }
    .diff__cta-bar { flex-direction: column; align-items: stretch; }
    .diff__cta-btn { width: 100%; }
    .diff-left__stats { grid-template-columns: 1fr; }
    .diff-cards { grid-template-columns: 1fr; }
}

/* Logos */
.logos {
    padding: 64px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(248, 250, 252, 0.7);
}

.logos-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.logos-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--muted);
}

.logos-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-end;
}

.logo-item {
    border: 1px solid var(--border);
    background: var(--card);
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bank-logo {
    height: 34px;
    width: auto;
    display: block;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(0.25) contrast(1.05);
    opacity: 0.98;
}

.logo-item:hover .bank-logo {
    filter: grayscale(0) contrast(1.05);
    opacity: 1;
}

@media (max-width: 520px) {
    .bank-logo {
        height: 28px;
        max-width: 120px;
    }
}

/* Banks */
.banks {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(248, 250, 252, 0.7);
}

.banks__header {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 1.125rem;
}

.banks__title {
    font-size: 0.98rem;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.015em;
}

.banks__subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748B;
}

.banks__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.banks__item {
    height: 56px;
    border: 1px solid #CBD5E1;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.9rem;
    transition: box-shadow 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.banks__item:hover {
    border-color: #CBD5E1;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}

.banks__logo {
    height: 24px;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
    filter: none;
}

@media (max-width: 1024px) {
    .banks__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
    .banks__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
    .banks__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Feature grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transform: translateY(-2px);
    border-color: #CBD5E1;
}

.feature-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.8125rem;
    color: var(--muted);
    line-height: 1.65;
}

.section-muted {
    background-color: #f1f5f9;
}

.ops-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.ops-panel {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 24px;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.ops-panel:hover {
    border-color: #CBD5E1;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.ops-title {
    font-size: 16px;
    font-weight: 600;
    color: #0F172A;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.ops-lines {
    display: grid;
    gap: 10px;
}

.ops-line {
    font-size: 13px;
    color: #334155;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .ops-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .ops-grid { grid-template-columns: 1fr; }
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.step-card {
    background: #ffffff;
    border: 1px solid #CBD5E1;
    border-radius: 16px;
    padding: 22px;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.step-kicker {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    margin-bottom: 0.35rem;
}

.step-title {
    font-size: 0.98rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 0.4rem;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

.step-card:hover {
    border-color: #94A3B8;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

/* FAQ */
#faq.section {
    padding: 64px 0;
}

.faq-layout {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}

.faq-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
}

.faq-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
}

.faq-chip {
    background: #F5F3FF;
    color: #4F46E5;
    border-radius: 999px;
    padding: 0.3rem 0.55rem;
    font-size: 0.74rem;
    font-weight: 700;
    border: 1px solid rgba(79, 70, 229, 0.22);
}

.faq-desc {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0.6rem;
}

.faq-techline {
    color: #64748B;
    font-size: 0.85rem;
    line-height: 1.55;
    font-weight: 600;
}

.faq-acc {
    display: grid;
    gap: 0.75rem;
}

.faq-acc__item {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    transition: background-color 0.18s ease;
}

.faq-acc__item:hover {
    background: #F8FAFC;
}

.faq-acc__item.is-open {
    background: #ffffff;
    box-shadow: inset 3px 0 0 #4F46E5;
}

.faq-acc__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 24px 26px;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    color: #0F172A;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.faq-acc__item.is-open .faq-acc__btn {
    color: #0B1220;
}

.faq-acc__icon {
    color: #64748B;
    flex-shrink: 0;
    transition: transform 0.22s ease, color 0.18s ease;
}

.faq-acc__item.is-open .faq-acc__icon {
    transform: rotate(180deg);
    color: #4F46E5;
}

.faq-acc__panel {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.26s ease, opacity 0.22s ease;
}

.faq-acc__panel-inner {
    padding: 0 26px 24px;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.75;
}

.faq-acc__item.is-open .faq-acc__panel {
    opacity: 1;
}

@media (min-width: 1024px) {
    .faq-layout {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        column-gap: 2rem;
    }

    .faq-left { grid-column: span 5; }
    .faq-right { grid-column: span 7; }
}

/* Pages */
.page-hero {
    padding: 64px 0;
    background: linear-gradient(180deg, rgba(224, 231, 255, 0.55) 0%, rgba(248, 250, 252, 0) 100%);
}

.page-kicker {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.page-title {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.page-subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 680px;
}

.prose {
    max-width: 860px;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
}

.prose h2 {
    margin: 1.25rem 0 0.5rem;
}

.prose h2:first-child {
    margin-top: 0;
}

.prose p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.prose a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(79, 70, 229, 0.35);
    text-underline-offset: 3px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.contact-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-title {
    font-weight: 800;
    font-size: 1.05rem;
}

.contact-desc {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Footer */
.site-footer {
    background: #ffffff;
    border-top: 1px solid #E2E8F0;
    padding: 44px 0 0;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1.15fr;
    gap: 1.5rem;
    align-items: start;
}

.footer-brand {
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.site-footer a {
    transition: none;
}

.footer-title {
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-desc {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0.85rem;
}

.footer-address {
    color: #64748B;
    font-size: 0.85rem;
    line-height: 1.55;
}

.footer-cta-text {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0.9rem;
}

.footer-note {
    color: #64748B;
    font-size: 0.85rem;
    margin-top: 0.75rem;
}

.footer-list {
    display: grid;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: #475569;
}

.footer-list a {
    color: #475569;
}

.footer-list a:hover {
    color: #334155;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(71, 85, 105, 0.45);
}

.footer-cta-btn {
    border-radius: 16px;
    font-weight: 700;
    width: fit-content;
}

.footer-bottom {
    border-top: 1px solid #E2E8F0;
    margin-top: 32px;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copy {
    color: var(--muted);
    font-size: 0.9rem;
}

.footer-bottom-link {
    color: #475569;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-bottom-link:hover {
    color: #334155;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(71, 85, 105, 0.45);
}

/* Packages */
.section {
    padding: 64px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 18px;
}

.section-title h2 {
    margin-bottom: 18px;
}

.section-title p {
    color: var(--muted);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.proof {
    background: #F8FAFC;
    padding: 48px 0;
}

.proof__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.proof__card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.proof__status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.proof__status-left {
    font-size: 12px;
    font-weight: 600;
    color: #4F46E5;
}

.proof__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #4F46E5;
    display: block;
    animation: proofDotPulse 1.2s ease-in-out infinite;
}

.proof__status-sub {
    font-size: 12px;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.proof__value {
    font-size: 40px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-top: 0.2rem;
}

.proof__number-affix {
    font-size: 0.75em;
    font-weight: 800;
    letter-spacing: -0.02em;
    vertical-align: top;
}

.proof__label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.proof__sub {
    font-size: 12px;
    color: #64748B;
    margin-bottom: 0.4rem;
}

.proof__spark {
    height: 34px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-top: 0.25rem;
}

.proof__bar {
    width: 6px;
    border-radius: 6px;
    height: var(--h, 60%);
    background: #E2E8F0;
    opacity: 0.95;
}

.proof__bar--fill {
    background: #4F46E5;
    opacity: 0.9;
}

.proof__bar--live {
    animation: proofBarPulse 1.6s ease-in-out infinite;
    opacity: 1;
}

@keyframes proofDotPulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(1.4); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes proofBarPulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .proof__dot,
    .proof__bar--live {
        animation: none;
    }
}

@media (max-width: 1024px) {
    .proof__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .proof { padding: 32px 0; }
    .proof__grid { grid-template-columns: 1fr; }
    .proof__card { padding: 26px; }
}

.package-card {
    background: #ffffff;
    border: 1px solid #CBD5E1;
    border-radius: 18px;
    padding: 28px;
    position: relative;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.package-card:hover {
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    border-color: #94A3B8;
}

.package-card--popular {
    background: #F5F3FF;
    border-color: var(--primary);
    box-shadow: 0 14px 34px rgba(79, 70, 229, 0.12);
}

.package-card--popular:hover {
    border-color: var(--primary);
    box-shadow: 0 18px 44px rgba(79, 70, 229, 0.14);
}

.popular-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background-color: var(--primary);
    color: white;
    padding: 0.35rem 0.6rem;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pkg-header {
    text-align: center;
}

.pkg-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}

.pkg-summary {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    letter-spacing: -0.01em;
    margin-bottom: 0.8rem;
}

.pkg-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.4rem;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text);
}

.pkg-amount { line-height: 1; }

.pkg-currency {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.15;
    color: #0F172A;
}

.pkg-period {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 500;
}

.pkg-features {
    flex: 1;
    display: grid;
    gap: 0.65rem;
}

.pkg-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text);
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.pkg-actions {
    display: grid;
    gap: 0.75rem;
    margin-top: auto;
}

.pkg-cta {
    width: 100%;
}

.pkg-note {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--muted);
    text-align: center;
}

/* Form */
.form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--card);
    padding: 2.25rem;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

#setup .section-title h2 {
    font-weight: 800;
}

.setup-grid {
    display: grid;
    gap: 1rem;
}

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

.setup-row .form-group {
    margin-bottom: 0;
}

.setup-submit__btn {
    width: 100%;
}

.form-wrapper .form-control {
    border-radius: 16px;
    border-color: #E2E8F0;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    background-color: #fcfcfc;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    background-color: white;
}

textarea.form-control {
    min-height: 110px;
    max-height: 140px;
    resize: vertical;
}

.form-control--notes {
    max-height: 140px;
}

.form-hint {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.4rem;
}

@media (min-width: 1024px) {
    .setup-grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        column-gap: 1.5rem;
        row-gap: 1rem;
        align-items: start;
    }

    .setup-col--left { grid-column: span 7; }
    .setup-col--right { grid-column: span 5; }

    .setup-row {
        grid-template-columns: 1fr 1fr;
    }

    .setup-submit {
        grid-column: 1 / -1;
        margin-top: 0.25rem;
    }
}

/* Utilities */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }

/* Alert */
.alert {
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.alert-success {
    background-color: #E0E7FF;
    color: #3730A3;
    border-color: #C7D2FE;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border-color: #fecaca;
}

/* Mobile */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.16rem; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-proof { margin-top: 1.25rem; }
    .nav { display: none; }
    .header-actions { gap: 0.6rem; }
    .header-login { display: none; }
    .header-menu-btn { display: inline-flex; }
    .header-cta { padding: 0 12px; font-size: 0.9rem; }
    .logos-inner { align-items: flex-start; }
    .logos-list { justify-content: flex-start; }
    .features-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .site-footer { padding: 32px 0 0; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
    .footer-col--cta { grid-column: 1 / -1; }
    .footer-cta-btn { width: 100%; }
    .form-wrapper { padding: 1.5rem; }
}

@media (max-width: 520px) {
    .hero h1 { font-size: 2.05rem; }
    .header-cta { padding: 0 10px; font-size: 0.88rem; }
}
    .hero-btns { flex-wrap: wrap; }
    .hero-btns .btn { width: 100%; }
    .bank-logo { height: 28px; max-width: 120px; }
}

/* Package Cards */
.package-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.2s;
    position: relative;
}

.package-card:hover {
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.package-card.featured {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.package-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.package-price-suffix {
    font-size: 1rem;
    font-weight: 500;
    color: var(--muted);
}

.package-features {
    list-style: none;
    margin: 1.5rem 0;
    flex: 1;
}

.package-features li {
    padding: 0.5rem 0;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.package-features li:before {
    content: "✓";
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

.package-cta {
    width: 100%;
    margin-top: 1rem;
}

/* Form Elements */
.form-wrapper {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) - 4px);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-hint {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.5rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    cursor: pointer;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
