:root {
    --navy-950: #03283f;
    --navy-900: #063f64;
    --navy-800: #07527f;
    --navy-700: #0a679b;
    --blue-50: #eef8fc;
    --gold-500: #f4b62f;
    --gold-400: #ffc94a;
    --green-500: #66b83d;
    --green-50: #effbea;
    --ink: #102331;
    --muted: #607180;
    --line: #dce6ec;
    --surface: #ffffff;
    --surface-soft: #f5f9fb;
    --danger: #c93a45;
    --warning: #b86f00;
    --success: #14804a;
    --shadow: 0 18px 50px rgba(3, 40, 63, .12);
    --shadow-sm: 0 8px 24px rgba(3, 40, 63, .09);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; background: #fff; padding: 12px 18px; border-radius: 8px; box-shadow: var(--shadow-sm); }
.skip-link:focus { top: 16px; }

.site-header {
    position: sticky;
    inset-block-start: 0;
    z-index: 1000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(220,230,236,.8);
    transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(3,40,63,.08); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand span { display: grid; line-height: 1.15; }
.brand strong { color: var(--navy-900); letter-spacing: .04em; font-size: .98rem; }
.brand small { color: var(--muted); margin-top: 4px; font-size: .76rem; }
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav > a:not(.btn) { padding: 10px 13px; color: #415463; border-radius: 10px; font-weight: 650; font-size: .92rem; }
.main-nav > a:not(.btn):hover, .main-nav > a.active { color: var(--navy-900); background: var(--blue-50); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 20px; height: 2px; background: var(--navy-900); border-radius: 99px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 0 20px; border: 0; border-radius: 12px; font-weight: 750; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-sm { min-height: 42px; padding-inline: 16px; font-size: .9rem; }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); box-shadow: 0 12px 24px rgba(6,63,100,.2); }
.btn-primary:hover { box-shadow: 0 16px 32px rgba(6,63,100,.27); }
.btn-gold { color: var(--navy-950); background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); box-shadow: 0 10px 22px rgba(244,182,47,.24); }
.btn-outline { color: var(--navy-900); border: 1px solid #bcd0dc; background: rgba(255,255,255,.86); }
.btn-danger { color: #fff; background: var(--danger); }
.btn-block { width: 100%; }
.icon { width: 18px; height: 18px; }

.hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 84px;
    background:
      radial-gradient(circle at 8% 20%, rgba(244,182,47,.24), transparent 24%),
      radial-gradient(circle at 88% 12%, rgba(102,184,61,.16), transparent 28%),
      linear-gradient(135deg, #edf8fc 0%, #fff 48%, #f8fbf4 100%);
}
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(6,63,100,.08); }
.hero::before { width: 460px; height: 460px; right: -140px; top: -180px; }
.hero::after { width: 260px; height: 260px; left: -100px; bottom: -140px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 64px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; color: var(--navy-900); background: rgba(255,255,255,.8); border: 1px solid rgba(6,63,100,.12); border-radius: 999px; font-size: .82rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 5px rgba(102,184,61,.14); }
.hero h1 { margin: 20px 0 18px; max-width: 760px; color: var(--navy-950); font-size: clamp(2.5rem, 5vw, 4.65rem); line-height: 1.04; letter-spacing: -.045em; }
.hero h1 span { color: var(--navy-700); }
.hero-copy { max-width: 650px; color: var(--muted); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 28px; color: #48606f; font-size: .9rem; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.check { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; color: #fff; background: var(--green-500); font-size: .78rem; font-weight: 900; }
.hero-visual { position: relative; min-height: 480px; }
.hero-panel { position: absolute; inset: 20px 0 0 40px; padding: 34px; border-radius: 32px; background: linear-gradient(160deg, var(--navy-900), #032f4a); box-shadow: 0 34px 70px rgba(3,40,63,.28); color: #fff; overflow: hidden; }
.hero-panel::after { content: ""; position: absolute; width: 340px; height: 340px; border: 70px solid rgba(255,255,255,.045); border-radius: 50%; right: -150px; bottom: -180px; }
.hero-logo { width: 106px; height: 106px; padding: 12px; border-radius: 26px; background: rgba(255,255,255,.96); box-shadow: 0 14px 26px rgba(0,0,0,.18); }
.hero-panel h2 { margin: 28px 0 8px; font-size: 2rem; letter-spacing: -.03em; }
.hero-panel p { color: rgba(255,255,255,.72); margin: 0; }
.mini-stats { position: absolute; z-index: 2; left: 0; bottom: 10px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; width: min(370px, 84%); }
.mini-stat { padding: 18px; border: 1px solid rgba(255,255,255,.7); border-radius: 18px; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); }
.mini-stat strong { display: block; color: var(--navy-900); font-size: 1.45rem; }
.mini-stat span { color: var(--muted); font-size: .82rem; }
.floating-card { position: absolute; z-index: 3; right: -14px; top: 86px; width: 220px; padding: 18px; border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.floating-card .pill { margin-bottom: 10px; }

.section { padding: 84px 0; }
.section-soft { background: var(--surface-soft); }
.section-dark { color: #fff; background: linear-gradient(135deg, var(--navy-950), var(--navy-900)); }
.section-heading { max-width: 720px; margin-bottom: 38px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2 { margin: 12px 0; color: var(--navy-950); font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.14; letter-spacing: -.035em; }
.section-dark .section-heading h2 { color: #fff; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.02rem; }
.section-dark .section-heading p { color: rgba(255,255,255,.72); }
.kicker { color: var(--navy-700); font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 850; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { position: relative; display: flex; flex-direction: column; min-height: 260px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: 0 2px 0 rgba(3,40,63,.02); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; overflow: hidden; }
.service-card::after { content: ""; position: absolute; width: 100px; height: 100px; border-radius: 50%; right: -50px; bottom: -50px; background: rgba(244,182,47,.16); }
.service-card:hover { transform: translateY(-6px); border-color: #a9cadb; box-shadow: var(--shadow-sm); }
.service-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 15px; color: var(--navy-900); background: var(--blue-50); font-size: 1.45rem; font-weight: 850; }
.service-card h3 { margin: 20px 0 8px; color: var(--navy-950); font-size: 1.2rem; }
.service-card p { margin: 0 0 22px; color: var(--muted); font-size: .93rem; }
.card-link { margin-top: auto; color: var(--navy-700); font-weight: 800; font-size: .9rem; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 24px; border-radius: var(--radius-lg); background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.12); }
.step::before { counter-increment: step; content: "0" counter(step); display: inline-flex; margin-bottom: 32px; color: var(--gold-400); font-size: 1.2rem; font-weight: 900; letter-spacing: .08em; }
.step:not(:last-child)::after { content: "→"; position: absolute; right: -15px; top: 30px; z-index: 2; color: var(--gold-400); font-size: 1.5rem; }
.step h3 { margin: 0 0 8px; font-size: 1.08rem; }
.step p { margin: 0; color: rgba(255,255,255,.68); font-size: .9rem; }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.info-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-sm); }
.info-card h2, .info-card h3 { color: var(--navy-950); margin-top: 0; }
.info-list { display: grid; gap: 15px; margin-top: 24px; }
.info-item { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; }
.info-item .num { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; color: var(--navy-900); background: var(--blue-50); font-weight: 900; }
.info-item strong { display: block; margin-bottom: 3px; }
.info-item p { margin: 0; color: var(--muted); font-size: .9rem; }

.cta-banner { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; padding: 40px; border-radius: var(--radius-xl); color: #fff; background: linear-gradient(135deg, var(--navy-900), #0b719f); overflow: hidden; }
.cta-banner::after { content: ""; position: absolute; width: 240px; height: 240px; right: -100px; top: -120px; border: 48px solid rgba(255,255,255,.08); border-radius: 50%; }
.cta-banner h2 { margin: 0 0 8px; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.cta-banner p { margin: 0; color: rgba(255,255,255,.74); }
.cta-banner .btn { position: relative; z-index: 2; }

.page-hero { padding: 64px 0 52px; background: linear-gradient(135deg, var(--blue-50), #fff); border-bottom: 1px solid var(--line); }
.page-hero h1 { margin: 10px 0 10px; color: var(--navy-950); font-size: clamp(2.1rem, 4vw, 3.4rem); letter-spacing: -.04em; line-height: 1.08; }
.page-hero p { max-width: 720px; margin: 0; color: var(--muted); }
.breadcrumb { display: flex; gap: 8px; color: var(--muted); font-size: .85rem; }
.breadcrumb a { color: var(--navy-700); font-weight: 700; }

.form-shell { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 28px; align-items: start; }
.form-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-sm); }
.form-card h2 { margin: 0 0 8px; color: var(--navy-950); font-size: 1.45rem; }
.form-card > p { margin: 0 0 26px; color: var(--muted); }
.form-section { padding-top: 28px; margin-top: 28px; border-top: 1px solid var(--line); }
.form-section:first-of-type { padding-top: 0; margin-top: 0; border: 0; }
.form-section-title { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.form-section-title span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: #fff; background: var(--navy-900); font-size: .85rem; font-weight: 850; }
.form-section-title h3 { margin: 0; font-size: 1.08rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-group { min-width: 0; }
.form-group.full { grid-column: 1 / -1; }
.form-label { display: block; margin-bottom: 7px; color: #294151; font-size: .88rem; font-weight: 750; }
.required::after { content: " *"; color: var(--danger); }
.form-control, .form-select, .form-textarea { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid #cbd9e2; border-radius: 11px; outline: none; color: var(--ink); background: #fff; transition: border-color .18s, box-shadow .18s; }
.form-textarea { min-height: 110px; resize: vertical; }
.form-control:focus, .form-select:focus, .form-textarea:focus { border-color: var(--navy-700); box-shadow: 0 0 0 4px rgba(10,103,155,.1); }
.form-help { margin-top: 6px; color: var(--muted); font-size: .78rem; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input { margin-top: 5px; }
.map-box { height: 360px; border: 1px solid #cbd9e2; border-radius: 14px; overflow: hidden; background: var(--surface-soft); }
.file-drop { position: relative; padding: 26px; border: 1.5px dashed #9eb8c8; border-radius: 14px; background: var(--blue-50); text-align: center; }
.file-drop input { width: 100%; margin-top: 12px; }
.sidebar-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.sidebar-card + .sidebar-card { margin-top: 18px; }
.sidebar-card h3 { margin: 0 0 15px; color: var(--navy-950); font-size: 1.05rem; }
.sidebar-card ul { margin: 0; padding-left: 19px; color: var(--muted); font-size: .9rem; }
.sidebar-card li + li { margin-top: 8px; }
.sticky { position: sticky; top: 100px; }

.alert { margin-bottom: 22px; padding: 15px 17px; border-radius: 12px; border: 1px solid transparent; font-size: .92rem; }
.alert-danger { color: #8b202b; background: #fff0f1; border-color: #f4c5c9; }
.alert-success { color: #0c663a; background: #edfbf3; border-color: #b9e7ce; }
.alert-info { color: #0b587c; background: #edf8ff; border-color: #b9ddec; }
.alert ul { margin: 0; padding-left: 20px; }
.pill, .badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 999px; font-size: .75rem; font-weight: 800; }
.badge-info, .pill-info { color: #0b587c; background: #e8f6fc; }
.badge-primary { color: #064f75; background: #dff2fc; }
.badge-success { color: #0c6b3c; background: #e6f8ee; }
.badge-warning { color: #8a5200; background: #fff4d9; }
.badge-danger { color: #982b34; background: #ffe9eb; }
.badge-purple { color: #643f8a; background: #f1e8fa; }
.badge-orange { color: #8b4e00; background: #fff0dd; }
.badge-muted { color: #536472; background: #eef2f5; }

.tracking-card { max-width: 720px; margin: 0 auto; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow); }
.ticket-code { display: inline-block; padding: 10px 14px; color: var(--navy-900); background: var(--blue-50); border: 1px dashed #84afc5; border-radius: 10px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 1.05rem; font-weight: 850; letter-spacing: .06em; }
.timeline { position: relative; display: grid; gap: 0; margin-top: 24px; }
.timeline::before { content: ""; position: absolute; left: 16px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.timeline-item { position: relative; display: grid; grid-template-columns: 34px 1fr; gap: 15px; padding-bottom: 24px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: relative; z-index: 1; width: 34px; height: 34px; border: 7px solid #fff; border-radius: 50%; background: var(--navy-700); box-shadow: 0 0 0 1px var(--line); }
.timeline-content { padding-top: 3px; }
.timeline-content strong { display: block; }
.timeline-content p { margin: 4px 0; color: var(--muted); font-size: .9rem; }
.timeline-content small { color: #81909b; }
.summary-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 22px; }
.summary-item { padding: 15px; border-radius: 12px; background: var(--surface-soft); }
.summary-item span { display: block; color: var(--muted); font-size: .78rem; }
.summary-item strong { display: block; margin-top: 3px; }

.site-footer { padding-top: 56px; color: rgba(255,255,255,.76); background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.45fr .8fr .95fr 1fr; gap: 36px; padding-bottom: 42px; }
.footer-grid h3 { color: #fff; margin: 0 0 14px; font-size: .95rem; }
.footer-grid p { margin: 0 0 11px; font-size: .88rem; }
.footer-grid > div > a { display: block; margin: 8px 0; font-size: .88rem; }
.footer-grid a:hover { color: var(--gold-400); }
.footer-brand { margin-bottom: 16px; }
.footer-brand img { width: 58px; height: 58px; padding: 4px; border-radius: 12px; background: #fff; }
.footer-brand strong { color: #fff; }
.footer-brand small { color: rgba(255,255,255,.65); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .8rem; }
.security-note { color: #a9d49a; }

.empty-state { padding: 46px; border: 1px dashed #b7c8d2; border-radius: var(--radius-lg); background: #fff; text-align: center; }
.empty-state h3 { margin: 0 0 8px; }
.empty-state p { margin: 0; color: var(--muted); }

@media (max-width: 1020px) {
    .main-nav { position: fixed; top: 79px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
    .main-nav.open { display: flex; }
    .nav-toggle { display: flex; }
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-visual { min-height: 430px; max-width: 660px; width: 100%; }
    .hero-panel { inset-inline: 0 20px; }
    .floating-card { right: 0; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .step:nth-child(2)::after { display: none; }
    .form-shell { grid-template-columns: 1fr; }
    .sticky { position: static; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
    .container { width: min(100% - 28px, var(--container)); }
    .brand img { width: 44px; height: 44px; }
    .brand strong { font-size: .84rem; }
    .brand small { font-size: .68rem; }
    .hero { padding: 62px 0 64px; }
    .hero h1 { font-size: clamp(2.35rem, 12vw, 3.45rem); }
    .hero-copy { font-size: 1rem; }
    .hero-actions .btn { width: 100%; }
    .hero-visual { min-height: 390px; }
    .hero-panel { inset: 10px 0 0; padding: 25px; }
    .floating-card { display: none; }
    .mini-stats { left: 14px; width: calc(100% - 28px); }
    .section { padding: 64px 0; }
    .service-grid, .steps, .info-grid, .footer-grid { grid-template-columns: 1fr; }
    .step::after { display: none; }
    .cta-banner { grid-template-columns: 1fr; padding: 30px; }
    .cta-banner .btn { width: 100%; }
    .form-card { padding: 22px; border-radius: 20px; }
    .form-grid, .summary-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
    .page-hero { padding: 46px 0 40px; }
}
