:root {
    --bg: #081120;
    --bg-soft: #0f1b31;
    --card: #ffffff;
    --text: #132238;
    --muted: #5f6f85;
    --line: #dbe4ef;
    --primary: #126bff;
    --primary-dark: #0d4fbe;
    --accent: #eaf2ff;
    --success: #0d7a43;
    --error: #b42318;
    --shadow: 0 16px 40px rgba(8, 17, 32, 0.12);
    --radius: 18px;
    --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #f5f8fc;
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.topbar {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(8, 17, 32, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 12px; color: white; font-weight: 700; letter-spacing: 0.2px; }
.brand-badge {
    width: 40px; height: 40px; display: grid; place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #126bff, #49a3ff);
    box-shadow: 0 10px 24px rgba(18, 107, 255, 0.35);
    font-size: 14px; color: white;
}
.nav-links { display: flex; align-items: center; gap: 18px; color: rgba(255,255,255,0.84); font-size: 14px; }
.nav-links a:hover { color: white; }
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 14px 20px; border-radius: 999px;
    font-weight: 700; border: 0; cursor: pointer; transition: 0.2s ease;
}
.btn-primary { background: var(--primary); color: white; box-shadow: 0 10px 24px rgba(18, 107, 255, 0.25); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-secondary { background: rgba(255,255,255,0.08); color: white; border: 1px solid rgba(255,255,255,0.14); }
.btn-secondary:hover { background: rgba(255,255,255,0.14); }
.hero {
    background:
        radial-gradient(circle at top right, rgba(73,163,255,0.22), transparent 28%),
        linear-gradient(180deg, #081120 0%, #10203b 100%);
    color: white; padding: 72px 0 48px;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 34px; align-items: center; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px;
    border-radius: 999px; background: rgba(255,255,255,0.08); color: #d9e7ff;
    font-size: 13px; font-weight: 700; margin-bottom: 18px;
}
h1 { margin: 0 0 16px; font-size: clamp(36px, 6vw, 58px); line-height: 1.05; letter-spacing: -1.4px; }
.hero p { margin: 0 0 24px; font-size: 18px; color: rgba(255,255,255,0.84); max-width: 700px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.hero-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 26px; }
.point {
    padding: 14px 16px; border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05); border-radius: 14px;
    color: #edf4ff; font-size: 14px;
}
.hero-card, .card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-card { color: var(--text); padding: 24px; }
.stat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 20px; }
.stat { padding: 16px; border-radius: 16px; background: #f5f8fc; border: 1px solid var(--line); }
.stat strong { display: block; font-size: 26px; line-height: 1.1; margin-bottom: 6px; }
section { padding: 68px 0; }
.section-head { max-width: 760px; margin-bottom: 26px; }
h2 { margin: 0 0 12px; font-size: clamp(28px, 4vw, 40px); line-height: 1.1; letter-spacing: -0.9px; }
.section-head p, .muted { color: var(--muted); }
.grid-3, .grid-4, .industries, .steps, .dual-grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.industries { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.dual-grid { grid-template-columns: 1fr 1fr; align-items: start; }
.service-card, .industry-card, .step-card, .value-card, .form-wrap, .placeholder-card {
    padding: 22px; border-radius: 18px; background: white;
    border: 1px solid var(--line); box-shadow: var(--shadow);
}
.service-card h3, .industry-card h3, .step-card h3, .value-card h3, .placeholder-card h3, .form-wrap h3 {
    margin-top: 0; margin-bottom: 10px; font-size: 20px;
}
.icon {
    width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
    background: var(--accent); color: var(--primary); font-weight: 700; margin-bottom: 14px;
}
.dark-band { background: #eef4fb; }
ul.clean { list-style: none; padding: 0; margin: 0; }
ul.clean li { position: relative; padding-left: 22px; margin-bottom: 10px; color: var(--muted); }
ul.clean li::before { content: "•"; position: absolute; left: 0; top: 0; color: var(--primary); font-weight: 700; }
.form-wrap { padding: 28px; }
.notice { padding: 14px 16px; border-radius: 14px; margin-bottom: 18px; font-weight: 700; }
.notice.success { background: #e8f7ef; color: var(--success); border: 1px solid #b7e3ca; }
.notice.error { background: #fff0ef; color: var(--error); border: 1px solid #f0c5c0; }
form { display: grid; gap: 14px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
input, select, textarea {
    width: 100%; border: 1px solid #cdd8e6; border-radius: 12px;
    padding: 13px 14px; font: inherit; background: white; color: var(--text);
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(18, 107, 255, 0.18); border-color: var(--primary); }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.pill {
    padding: 10px 14px; border-radius: 999px; background: #eff5fd;
    color: #28415f; font-size: 14px; font-weight: 700;
}
.footer-cta { background: linear-gradient(135deg, #0d4fbe, #126bff); color: white; }
.footer-cta .card {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
    color: white; padding: 28px; box-shadow: none;
}
footer { background: #081120; color: rgba(255,255,255,0.72); padding: 28px 0 40px; }
.footer-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.page-hero { background: linear-gradient(180deg, #081120 0%, #10203b 100%); color: white; padding: 58px 0; }
.page-hero p { color: rgba(255,255,255,0.84); max-width: 760px; }
.small-container { width: min(900px, calc(100% - 32px)); margin: 0 auto; }
.content-card { padding: 24px; border-radius: 18px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); margin-bottom: 18px; }
.table-like { display: grid; gap: 12px; }
.list-link { display: block; padding: 14px 16px; border-radius: 14px; background: #f7faff; border: 1px solid var(--line); font-weight: 700; }
.list-link:hover { background: #eef5ff; }
@media (max-width: 980px) {
    .hero-grid, .dual-grid, .grid-3, .grid-4, .industries, .steps { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
}
@media (max-width: 720px) {
    .hero { padding-top: 54px; }
    .hero-grid, .dual-grid, .grid-3, .grid-4, .industries, .steps, .form-grid, .hero-points, .stat-grid { grid-template-columns: 1fr; }
    h1 { font-size: 38px; }
    .container, .small-container { width: min(var(--max), calc(100% - 22px)); }
}
