@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
:root {
  --blue: #126BFF;
  --blue-dark: #0754D4;
  --blue-deep: #061B3A;
  --cyan: #17B7FF;
  --mint: #17C995;
  --orange: #FF7A45;
  --ink: #14233A;
  --muted: #66758A;
  --line: #E4EBF4;
  --surface: #F5F8FC;
  --surface-blue: #EDF5FF;
  --white: #FFFFFF;
  --danger: #D92D20;
  --shadow-sm: 0 8px 24px rgba(6, 27, 58, .08);
  --shadow: 0 20px 54px rgba(6, 27, 58, .13);
  --shadow-blue: 0 24px 60px rgba(18, 107, 255, .24);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.social-fill, .social-fill * { fill: currentColor; stroke: none; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-sm { padding: 64px 0; }
.bg-soft { background: var(--surface); }
.bg-blue-soft { background: linear-gradient(180deg, #F6FAFF 0%, #ECF5FF 100%); }
.section-head { max-width: 720px; margin: 0 auto 42px; text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-head h2 { margin-bottom: 14px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .13em;
  margin-bottom: 12px;
}
.eyebrow::before { content: ""; width: 24px; height: 3px; border-radius: 999px; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
h1, h2, h3, h4 { color: var(--blue-deep); line-height: 1.12; margin: 0 0 14px; }
h1 { font-size: clamp(2.65rem, 6.5vw, 5.6rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.55rem); letter-spacing: -.04em; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 18px; }
.muted { color: var(--muted); }

.btn {
  border: 0;
  border-radius: 999px;
  min-height: 50px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 850;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: linear-gradient(135deg, var(--blue), #328DFF); box-shadow: 0 12px 28px rgba(18, 107, 255, .25); }
.btn-primary:hover { box-shadow: 0 16px 34px rgba(18, 107, 255, .34); }
.btn-dark { color: white; background: var(--blue-deep); box-shadow: 0 12px 28px rgba(6, 27, 58, .2); }
.btn-light { color: var(--blue-deep); background: white; box-shadow: var(--shadow-sm); }
.btn-soft { color: var(--blue); background: var(--surface-blue); }
.btn-outline { color: white; border: 1px solid rgba(255,255,255,.55); background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(228,235,244,.85);
}
.navbar { min-height: 78px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
/*.brand-mark { width: 43px; height: 43px; border-radius: 14px; display: grid; place-items: center; color: white; background: linear-gradient(145deg, var(--blue), var(--cyan)); box-shadow: 0 9px 24px rgba(18, 107, 255, .24); transform: rotate(-4deg); }*/
.brand-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 5px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e4ebf4;

  overflow: hidden;
  transform: none;
  box-shadow: 0 8px 22px rgba(6, 27, 58, 0.08);
}
.brand-logo-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-full-logo { display: block; height: 46px; width: auto; max-width: 220px; object-fit: contain; }
.brand-light .brand-full-logo { height: 40px; }
@media (max-width: 640px) {
  .brand-full-logo { height: 36px; max-width: 170px; }
}
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { color: var(--blue-deep); font-size: 1.13rem; letter-spacing: -.02em; }
.brand-copy small { color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: .64rem; margin-top: 5px; font-weight: 800; }
.nav-menu { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav-menu a { position: relative; padding: 11px 14px; color: #435268; font-weight: 750; border-radius: 10px; }
.nav-menu a:hover { color: var(--blue); background: var(--surface-blue); }
.nav-menu a.active { color: var(--blue); }
.nav-menu a.active::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; border-radius: 999px; background: var(--blue); }
.nav-cta { min-height: 45px; padding: 11px 18px; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 13px; background: white; color: var(--blue-deep); align-items: center; justify-content: center; }
.menu-toggle svg { width: 22px; height: 22px; }

.hero-home {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(23,183,255,.18), transparent 25%),
    radial-gradient(circle at 82% 17%, rgba(23,201,149,.15), transparent 26%),
    linear-gradient(135deg, #F4F9FF 0%, #FFFFFF 48%, #EFF7FF 100%);
}
.hero-home::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; right: -250px; top: -220px; border: 1px solid rgba(18,107,255,.12); box-shadow: 0 0 0 70px rgba(18,107,255,.035), 0 0 0 140px rgba(18,107,255,.025); z-index: -1; }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.02fr) minmax(440px,.98fr); gap: 70px; align-items: center; padding: 76px 0 88px; }
.hero-copy { max-width: 680px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 9px; padding: 8px 13px; background: white; border: 1px solid #DCEAFF; border-radius: 999px; color: var(--blue); font-weight: 850; font-size: .83rem; box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.hero-kicker span { width: 8px; height: 8px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 0 5px rgba(23,201,149,.14); }
.hero-copy h1 span { color: var(--blue); position: relative; white-space: nowrap; }
.hero-copy h1 span::after { content: ""; position: absolute; left: 0; right: 0; bottom: 3px; height: 11px; border-radius: 999px; background: rgba(23,183,255,.22); z-index: -1; transform: rotate(-1deg); }
.hero-copy > p { max-width: 610px; color: #53647A; font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 25px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; color: #4B5B70; font-size: .85rem; font-weight: 750; }
.hero-trust span::before { content: "✓"; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--mint); font-size: .72rem; }
.hero-visual { position: relative; min-height: 570px; }
.hero-photo {
  position: absolute;
  inset: 0 38px 0 60px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(6,27,58,.2);
  transform: rotate(2deg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(5,24,52,.56)); }
.hero-photo-label { position: absolute; left: 26px; bottom: 24px; color: white; z-index: 1; }
.hero-photo-label small { display: block; color: #DCEAFF; }
.hero-photo-label strong { font-size: 1.25rem; }
.visa-finder {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 24px;
  width: min(390px, 85%);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 26px 60px rgba(6,27,58,.22);
}
.finder-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.finder-head h3 { margin: 0; font-size: 1.18rem; }
.finder-head span { color: var(--mint); font-size: .78rem; font-weight: 850; padding: 5px 9px; border-radius: 999px; background: rgba(23,201,149,.1); }
.finder-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: grid; gap: 7px; }
.field label { color: #53647A; font-size: .76rem; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #CFDBEA;
  border-radius: 12px;
  padding: 12px 13px;
  color: var(--ink);
  background: white;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(18,107,255,.1); }
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: var(--danger); }
.field-error { min-height: 18px; color: var(--danger); font-size: .76rem; }
.finder-button { width: 100%; margin-top: 12px; }
.finder-result { display: none; margin-top: 15px; padding: 15px; background: var(--surface-blue); border-radius: 14px; }
.finder-result.show { display: grid; gap: 7px; animation: resultIn .3s ease; }
.finder-result > div { display: flex; justify-content: space-between; gap: 14px; }
.finder-result span { color: var(--muted); font-size: .8rem; }
.finder-result strong { color: var(--blue); font-size: 1.12rem; }
.finder-result b { color: var(--blue-deep); font-size: .83rem; }
.finder-result a { color: var(--blue); font-size: .82rem; font-weight: 850; }
@keyframes resultIn { from { opacity: 0; transform: translateY(6px); } }
.hero-float-card { position: absolute; right: 0; top: 48px; z-index: 3; background: white; padding: 13px 16px; border-radius: 16px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 11px; animation: float 4s ease-in-out infinite; }
.hero-float-card i { width: 40px; height: 40px; display: grid; place-items: center; font-style: normal; border-radius: 12px; background: #EAFBF5; color: var(--mint); font-weight: 900; }
.hero-float-card strong { display: block; font-size: .92rem; }
.hero-float-card small { color: var(--muted); }
@keyframes float { 50% { transform: translateY(-8px); } }

.trust-strip { position: relative; z-index: 5; margin-top: -34px; }
.trust-strip-inner { background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); padding: 20px 24px; display: grid; grid-template-columns: 1.15fr repeat(4,1fr); gap: 18px; align-items: center; }
.trust-strip-inner > strong { color: var(--blue-deep); }
.trust-item { display: flex; align-items: center; gap: 9px; color: #53647A; font-size: .86rem; font-weight: 750; }
.trust-item span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; color: var(--blue); background: var(--surface-blue); }

.route-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.route-card { position: relative; min-height: 330px; border-radius: 25px; overflow: hidden; box-shadow: var(--shadow-sm); isolation: isolate; transition: transform .28s ease, box-shadow .28s ease; }
.route-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.route-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; z-index: -2; }
.route-card:hover img { transform: scale(1.07); }
.route-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,20,46,.05) 15%, rgba(4,20,46,.86) 100%); z-index: -1; }
.route-top { display: flex; justify-content: space-between; padding: 18px; }
.route-badge { color: white; background: rgba(6,27,58,.46); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.18); padding: 6px 10px; border-radius: 999px; font-size: .72rem; font-weight: 850; }
.route-price { color: var(--blue-deep); background: white; padding: 7px 10px; border-radius: 999px; font-size: .78rem; font-weight: 900; }
.route-content { position: absolute; left: 22px; right: 22px; bottom: 20px; color: white; }
.route-content h3 { color: white; font-size: 1.55rem; margin-bottom: 5px; }
.route-content p { color: #DCEAFF; font-size: .86rem; margin-bottom: 12px; }
.route-content a { display: inline-flex; align-items: center; gap: 7px; font-weight: 850; font-size: .86rem; }
.route-content a::after { content: "→"; transition: transform .2s ease; }
.route-content a:hover::after { transform: translateX(4px); }

.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: white; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); border-color: #CADFFF; }
.icon-box { width: 56px; height: 56px; border-radius: 17px; display: grid; place-items: center; background: linear-gradient(145deg, #EAF4FF, #F5FAFF); color: var(--blue); margin-bottom: 19px; transition: transform .25s ease; }
.icon-box svg { width: 26px; height: 26px; }
.service-card:hover .icon-box { transform: rotate(-4deg) scale(1.06); }

.process-shell { display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; align-items: stretch; }
.process-tabs { display: grid; gap: 12px; }
.process-tab { width: 100%; border: 1px solid var(--line); border-radius: 17px; background: white; padding: 18px; text-align: left; display: flex; align-items: center; gap: 14px; color: #53647A; transition: all .22s ease; }
.process-tab span { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: var(--surface); color: var(--blue); font-weight: 900; }
.process-tab b { color: var(--blue-deep); }
.process-tab.active { border-color: #A9CEFF; background: var(--surface-blue); box-shadow: var(--shadow-sm); transform: translateX(8px); }
.process-preview { position: relative; overflow: hidden; min-height: 410px; border-radius: 28px; color: white; padding: 42px; background: linear-gradient(135deg, #0754D4, #17B7FF); box-shadow: var(--shadow-blue); }
.process-preview::after { content: ""; position: absolute; width: 330px; height: 330px; border-radius: 50%; right: -130px; bottom: -150px; border: 50px solid rgba(255,255,255,.08); }
.process-number { position: relative; z-index: 1; width: 76px; height: 76px; display: grid; place-items: center; border-radius: 24px; color: var(--blue); background: white; font-size: 1.55rem; font-weight: 950; margin-bottom: 60px; box-shadow: var(--shadow-sm); }
.process-preview h3 { position: relative; z-index: 1; color: white; font-size: 2rem; }
.process-preview p { position: relative; z-index: 1; max-width: 570px; color: #E4F2FF; font-size: 1.02rem; }

.stats-band { background: var(--blue-deep); color: white; overflow: hidden; position: relative; }
.stats-band::after { content: ""; position: absolute; width: 440px; height: 440px; border-radius: 50%; right: -180px; top: -250px; border: 1px solid rgba(255,255,255,.1); box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.02); }
.stats-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stat-number { color: white; font-size: clamp(2.2rem,5vw,3.7rem); font-weight: 950; line-height: 1; letter-spacing: -.04em; }
.stat-label { color: #AFC8E7; margin-top: 10px; font-size: .9rem; }

.gallery-toolbar { display: flex; justify-content: center; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.gallery-filter { border: 1px solid var(--line); background: white; color: #53647A; border-radius: 999px; padding: 9px 15px; font-weight: 800; }
.gallery-filter.active, .gallery-filter:hover { color: white; border-color: var(--blue); background: var(--blue); }
.gallery-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-template-rows: 245px 245px; gap: 17px; }
.gallery-card { position: relative; border: 0; padding: 0; overflow: hidden; border-radius: 22px; background: #DCEAFF; text-align: left; }
.gallery-card:first-child { grid-row: 1 / 3; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(4,20,46,.78)); }
.gallery-card:hover img { transform: scale(1.07); }
.gallery-card-content { position: absolute; z-index: 1; left: 18px; right: 18px; bottom: 16px; color: white; }
.gallery-card-content strong { display: block; font-size: 1.08rem; }
.gallery-card-content span { color: #DCEAFF; font-size: .8rem; }
.gallery-modal { position: fixed; inset: 0; z-index: 2000; background: rgba(2,13,31,.86); backdrop-filter: blur(12px); display: none; place-items: center; padding: 28px; }
.gallery-modal.open { display: grid; }
.gallery-modal-dialog { width: min(100%, 980px); background: white; border-radius: 24px; overflow: hidden; box-shadow: 0 34px 90px rgba(0,0,0,.4); position: relative; }
.gallery-modal-dialog img { width: 100%; max-height: 70vh; object-fit: cover; }
.gallery-modal-caption { padding: 18px 22px; color: var(--blue-deep); font-weight: 850; }
.gallery-modal-close { position: absolute; top: 14px; right: 14px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(6,27,58,.8); color: white; font-size: 1.25rem; }

.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.review-card { padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 8px 26px rgba(6,27,58,.05); }
.review-stars { color: #FFB400; letter-spacing: 3px; }
.review-card p { color: #53647A; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-author img { width: 48px; height: 48px; object-fit: cover; border-radius: 50%; }
.review-author b { display: block; }
.review-author small { color: var(--muted); }

.cta-banner { position: relative; overflow: hidden; padding: 46px; border-radius: 30px; color: white; background: linear-gradient(135deg, #0754D4, #18AFFF); display: flex; align-items: center; justify-content: space-between; gap: 28px; box-shadow: var(--shadow-blue); }
.cta-banner::after { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; right: -90px; bottom: -160px; border: 34px solid rgba(255,255,255,.1); }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: white; margin-bottom: 9px; }
.cta-banner p { color: #DCEAFF; margin: 0; }

.page-hero { position: relative; overflow: hidden; padding: 82px 0; background: radial-gradient(circle at 85% 15%, rgba(23,183,255,.16), transparent 28%), linear-gradient(135deg,#F2F8FF,#FFFFFF); }
.page-hero::after { content: ""; position: absolute; width: 380px; height: 380px; right: -180px; top: -230px; border-radius: 50%; border: 1px solid rgba(18,107,255,.13); box-shadow: 0 0 0 65px rgba(18,107,255,.035); }
.breadcrumbs { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .84rem; margin-bottom: 15px; }
.breadcrumbs a:hover { color: var(--blue); }
.page-hero p { max-width: 720px; color: #53647A; }

.fee-filter-shell { margin-top: -34px; position: relative; z-index: 4; }
.fee-filter { background: white; border: 1px solid var(--line); border-radius: 20px; padding: 20px; box-shadow: var(--shadow); display: grid; grid-template-columns: 1.1fr 1fr 1fr auto; gap: 13px; align-items: end; }
.result-count { color: var(--muted); font-size: .86rem; font-weight: 750; white-space: nowrap; padding-bottom: 14px; }
.fee-grid > .fee-table-wrap { grid-column: 1 / -1; }
.fee-table-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); background: white; }
.fee-table { width: 100%; border-collapse: collapse; }
.fee-table thead tr { background: var(--blue-deep); }
.fee-table th { text-align: left; padding: 16px 20px; font-size: .84rem; font-weight: 800; color: white; letter-spacing: .01em; }
.fee-table th:nth-child(3), .fee-table th:nth-child(4) { color: var(--mint); }
.fee-table th span { display: block; font-size: .68rem; font-weight: 700; color: #B9C8DE; text-transform: none; letter-spacing: 0; margin-top: 2px; }
.fee-table th:nth-child(3) span, .fee-table th:nth-child(4) span { color: #8fe0c2; }
.fee-table tbody tr { border-top: 1px solid var(--line); transition: background .2s ease; }
.fee-table tbody tr:hover { background: var(--surface-blue); }
.fee-table td { padding: 16px 20px; font-size: .95rem; color: var(--blue-deep); font-weight: 700; vertical-align: middle; }
.fee-table-country { display: block; color: var(--muted); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.fee-table-embassy { color: var(--mint); font-weight: 800; }
.fee-table-total { color: var(--mint); font-weight: 900; font-size: 1.05rem; }
.fee-table-action-col { width: 1%; }
.fee-table-actions { display: flex; gap: 8px; white-space: nowrap; }
.fee-table-actions a { font-size: .82rem; font-weight: 800; padding: 8px 12px; border-radius: 9px; }
.fee-detail-trigger { color: var(--blue); background: var(--surface-blue); }
.fee-table-apply { color: white; background: var(--blue); }
@media (max-width: 760px) {
  .fee-table thead { display: none; }
  .fee-table, .fee-table tbody, .fee-table tr, .fee-table td { display: block; width: 100%; }
  .fee-table tbody tr { padding: 14px 18px; }
  .fee-table td { padding: 6px 0; border: none; }
  .fee-table td[data-label]::before { content: attr(data-label); display: block; color: var(--muted); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
  .fee-table-actions { margin-top: 8px; }
}
.fee-card { overflow: hidden; border: 1px solid var(--line); border-radius: 23px; background: white; box-shadow: 0 10px 32px rgba(6,27,58,.065); transition: transform .25s ease, box-shadow .25s ease; }
.fee-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.fee-card-image { height: 190px; position: relative; overflow: hidden; }
.fee-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.fee-card:hover img { transform: scale(1.06); }
.fee-card-image span { position: absolute; left: 14px; top: 14px; color: white; background: rgba(6,27,58,.54); backdrop-filter: blur(10px); padding: 6px 10px; border-radius: 999px; font-size: .72rem; font-weight: 850; }
.fee-card-body { padding: 22px; }
.fee-card-title { display: flex; align-items: start; justify-content: space-between; gap: 16px; }
.fee-card-title small { color: var(--blue); font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.fee-card-title h3 { font-size: 1.4rem; }
.fee-card-title > strong { color: var(--blue); white-space: nowrap; font-size: 1.08rem; }
.fee-card-details { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 18px 0; }
.fee-card-details span { padding: 11px; border-radius: 11px; background: var(--surface); color: var(--muted); font-size: .76rem; }
.fee-card-details span:first-child { grid-column: 1 / -1; }
.fee-card-details b { display: block; color: var(--blue-deep); margin-bottom: 3px; }
.fee-card .btn { width: 100%; }
.empty-state { grid-column: 1 / -1; text-align: center; padding: 60px 20px; border: 1px dashed #BFD4EC; border-radius: 20px; background: #FAFCFF; }

.calculator-shell { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: center; }
.calculator-form { padding: 28px; border-radius: 23px; border: 1px solid var(--line); background: white; box-shadow: var(--shadow-sm); display: grid; gap: 14px; }
.calculator-result { min-height: 300px; border-radius: 28px; padding: 40px; color: white; background: linear-gradient(135deg,#061B3A,#0754D4); display: flex; flex-direction: column; justify-content: center; box-shadow: var(--shadow); }
.calculator-result span { color: #BBD7F8; }
.calculator-result strong { display: block; font-size: clamp(2.2rem,5vw,4rem); line-height: 1.1; margin: 12px 0; letter-spacing: -.05em; }
.calculator-result small { color: #DCEAFF; }

.faq-list { display: grid; gap: 12px; max-width: 900px; margin: auto; }
.faq-item { background: white; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.faq-question { width: 100%; border: 0; background: white; color: var(--blue-deep); padding: 19px 20px; display: flex; align-items: center; justify-content: space-between; gap: 18px; text-align: left; font-weight: 850; }
.faq-symbol { width: 30px; height: 30px; flex: 0 0 30px; display: grid; place-items: center; border-radius: 50%; color: var(--blue); background: var(--surface-blue); font-size: 1.1rem; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { margin: 0; padding: 0 20px 20px; color: var(--muted); }
.faq-item.open { border-color: #BED8FA; box-shadow: var(--shadow-sm); }
.faq-item.open .faq-answer { max-height: 260px; }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.story-image { position: relative; min-height: 520px; }
.story-image-main { position: absolute; inset: 0 50px 0 0; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); }
.story-image-main img { width: 100%; height: 100%; object-fit: cover; }
.story-floating { position: absolute; right: 0; bottom: 36px; width: 220px; padding: 22px; border-radius: 20px; background: white; box-shadow: var(--shadow); }
.story-floating strong { display: block; color: var(--blue); font-size: 2rem; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.value-card { padding: 28px; border-radius: var(--radius); background: white; border: 1px solid var(--line); }
.timeline { position: relative; max-width: 900px; margin: auto; }
.timeline::before { content: ""; position: absolute; left: 29px; top: 0; bottom: 0; width: 2px; background: #D8E6F6; }
.timeline-item { position: relative; padding: 0 0 38px 78px; }
.timeline-dot { position: absolute; left: 15px; top: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--blue); border: 7px solid #EAF3FF; }
.timeline-item small { color: var(--blue); font-weight: 900; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.team-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: white; }
.team-card img { width: 100%; height: 300px; object-fit: cover; }
.team-card-content { padding: 20px; }
.team-card-content p { color: var(--blue); font-weight: 800; font-size: .84rem; margin: 0; }

.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 30px; align-items: start; }
.contact-panel, .contact-form-panel { padding: 32px; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: var(--shadow-sm); }
.contact-list { display: grid; gap: 14px; margin-top: 24px; }
.contact-row { display: grid; grid-template-columns: 50px minmax(0,1fr); gap: 14px; align-items: start; padding: 15px; border-radius: 15px; background: var(--surface); }
.contact-row .icon-box { width: 50px; height: 50px; margin: 0; border-radius: 14px; }
.contact-row h3 { margin: 1px 0 4px; font-size: 1rem; }
.contact-row p, .contact-row a { color: var(--muted); margin: 0; overflow-wrap: anywhere; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field.full { grid-column: 1 / -1; }
.form-success { margin-top: 16px; padding: 15px 17px; border-radius: 13px; color: #087453; background: #E9FBF5; border: 1px solid #B9EFDE; }
.map-wrap { overflow: hidden; border-radius: 25px; box-shadow: var(--shadow-sm); }
.map-frame { width: 100%; height: 420px; border: 0; display: block; }

.site-footer { background: #04152F; color: #AFC4DF; padding: 70px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr .9fr 1.05fr; gap: 36px; }
.brand-light .brand-copy strong { color: white; }
.brand-light .brand-copy small { color: #AFC4DF; }
.footer-brand p { max-width: 360px; margin-top: 18px; }
.footer-socials { display: flex; gap: 9px; }
.footer-socials a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.07); color: #CFE1F7; }
.footer-socials a:hover { color: white; background: rgba(18,107,255,.35); }
.footer-socials svg { width: 18px; height: 18px; }
.site-footer h3 { color: white; font-size: 1rem; }
.footer-links, .footer-contact { display: grid; gap: 9px; }
.footer-links a:hover, .footer-contact a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 46px; padding-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-size: .82rem; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 590px; max-width: 720px; width: 100%; margin: auto; }
  .trust-strip-inner { grid-template-columns: repeat(2,1fr); }
  .trust-strip-inner > strong { grid-column: 1 / -1; }
  .route-grid, .fee-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid, .review-grid, .values-grid, .team-grid { grid-template-columns: repeat(2,1fr); }
  .process-shell, .calculator-shell, .story-grid, .contact-layout { grid-template-columns: 1fr; }
  .story-image { min-height: 470px; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .fee-filter { grid-template-columns: repeat(2,1fr); }
  .result-count { padding-bottom: 0; }
}

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .nav-cta { display: none; }
  .nav-menu {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 86px;
    display: grid;
    gap: 4px;
    padding: 16px;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-170%);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s ease, opacity .3s ease;
  }
  .nav-menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: 13px 12px; }
  .nav-menu a.active::after { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 230px 230px; }
  .gallery-card:first-child { grid-column: 1 / 3; grid-row: auto; }
  .stats-grid { grid-template-columns: repeat(2,1fr); row-gap: 42px; }
}

@media (max-width: 680px) {
  .nav-menu { top: 78px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .navbar { min-height: 70px; }
  .brand-mark { width: 39px; height: 39px; }
  .brand-copy strong { font-size: 1rem; }
  .section { padding: 68px 0; }
  .section-sm { padding: 52px 0; }
  .hero-home { min-height: auto; }
  .hero-grid { padding: 58px 0 70px; }
  .hero-copy > p { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 560px; }
  .hero-photo { inset: 0 0 0 24px; border-radius: 28px; }
  .hero-float-card { right: 0; top: 18px; }
  .visa-finder { left: 0; bottom: 18px; width: calc(100% - 20px); padding: 20px; }
  .finder-fields { grid-template-columns: 1fr; }
  .trust-strip { margin-top: -22px; }
  .trust-strip-inner { grid-template-columns: 1fr; padding: 18px; }
  .trust-strip-inner > strong { grid-column: auto; }
  .route-grid, .services-grid, .review-grid, .fee-grid, .values-grid, .team-grid, .stats-grid, .footer-grid, .form-grid, .fee-filter { grid-template-columns: 1fr; }
  .route-card { min-height: 300px; }
  .process-preview { min-height: 350px; padding: 30px; }
  .process-number { margin-bottom: 42px; }
  .process-tab.active { transform: none; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(5,240px); }
  .gallery-card:first-child { grid-column: auto; }
  .cta-banner { padding: 30px; flex-direction: column; align-items: flex-start; }
  .cta-banner .btn { width: 100%; }
  .page-hero { padding: 64px 0; }
  .fee-filter-shell { margin-top: -22px; }
  .fee-card-details { grid-template-columns: 1fr; }
  .fee-card-details span:first-child { grid-column: auto; }
  .story-image { min-height: 410px; }
  .story-image-main { inset: 0 20px 0 0; }
  .story-floating { width: 190px; right: 0; bottom: 18px; }
  .contact-panel, .contact-form-panel { padding: 22px; }
  .contact-row { grid-template-columns: 44px minmax(0,1fr); gap: 12px; padding: 13px; }
  .contact-row .icon-box { width: 44px; height: 44px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

#China { scroll-margin-top: 96px; }
.nav-menu .china-nav-link {
  color: var(--blue);
  background: var(--surface-blue);
  font-weight: 850;
}
.nav-menu .china-nav-link:hover,
.nav-menu .china-nav-link.active {
  color: white;
  background: linear-gradient(135deg, var(--blue), #328DFF);
  box-shadow: 0 8px 22px rgba(18,107,255,.2);
}
.nav-menu .china-nav-link.active::after { display: none; }


.fee-card-body { padding: 24px 24px 22px; }
.fee-card-title { gap: 18px; margin-bottom: 16px; }
.fee-card-title h3 { margin-bottom: 6px; font-size: 1.8rem; }
.fee-card-title p { margin: 8px 0 0; color: #596A7F; font-size: .92rem; line-height: 1.6; }
.fee-card-title small { display: inline-block; margin-bottom: 4px; font-size: .86rem; }
.fee-card-price { text-align: right; min-width: 132px; }
.fee-card-price strong { display: block; color: var(--blue); white-space: nowrap; font-size: 1.95rem; line-height: 1.05; letter-spacing: -.03em; }
.fee-card-price em { display: block; margin-top: 4px; color: var(--muted); font-style: normal; font-size: .78rem; font-weight: 700; }
.fee-card-meta { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 16px 0 14px; }
.fee-card-meta span, .fee-card-details span { display: flex; align-items: center; gap: 12px; padding: 14px 15px; border-radius: 15px; background: var(--surface); }
.fee-card-meta i, .fee-card-details i, .detail-metrics span, .detail-info-stack span, .detail-list span { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; border-radius: 14px; background: #ECF3FF; color: var(--blue); }
.fee-card-meta i svg, .fee-card-details i svg, .detail-metrics span svg, .detail-info-stack span svg, .detail-list span svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.fee-card-meta b { display: block; color: var(--blue-deep); font-size: .94rem; line-height: 1.3; }
.fee-card-meta small, .fee-card-details small { display: block; margin-top: 2px; color: var(--muted); font-size: .78rem; font-weight: 700; }
.fee-card-details { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 0 0 16px; }
.fee-card-details b { display: block; color: var(--blue-deep); margin: 0 0 3px; font-size: .9rem; }
.fee-card-includes { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 10px; }
.fee-card-includes li { display: flex; align-items: flex-start; gap: 10px; color: #596A7F; }
.fee-card-includes li span { width: 22px; height: 22px; flex: 0 0 22px; color: #18A25D; }
.fee-card-includes li span svg { width: 22px; height: 22px; stroke-width: 1.8; }
.fee-card-includes p { margin: 0; font-size: .86rem; line-height: 1.55; }
.fee-card-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 8px; }
.fee-card .btn { width: auto; min-width: 210px; }
.text-link { font-weight: 800; color: var(--blue); }
.text-link:hover { color: var(--blue-deep); }
.fee-detail-shell { padding-top: 10px; }
.detail-panel { display: grid; gap: 22px; }
.detail-hero-card { padding: 30px; border-radius: 26px; background: linear-gradient(135deg,#061B3A,#0D68FD); color: white; box-shadow: var(--shadow-blue); }
.detail-price { font-size: clamp(2rem,4vw,3.2rem); font-weight: 900; line-height: 1; letter-spacing: -.04em; }
.detail-label { display: inline-block; margin-top: 7px; color: #CDE2FF; font-size: .9rem; font-weight: 700; }
.detail-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 22px; }
.detail-metrics > div, .detail-info-stack > div { display: flex; align-items: center; gap: 12px; }
.detail-metrics b, .detail-info-stack b { display: block; color: white; font-size: .92rem; }
.detail-metrics small, .detail-info-stack small { color: #CDE2FF; font-size: .82rem; }
.detail-content-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 22px; }
.detail-card { padding: 24px; border-radius: 22px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.detail-card h3 { margin-bottom: 16px; font-size: 1.22rem; }
.detail-info-stack { display: grid; gap: 12px; }
.detail-info-stack > div { background: var(--surface); padding: 12px; border-radius: 16px; }
.detail-info-stack > div b { color: var(--blue-deep); }
.detail-info-stack > div small { color: var(--muted); }
.detail-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.detail-list li { display: flex; align-items: flex-start; gap: 12px; }
.detail-list li p { margin: 0; color: #596A7F; line-height: 1.6; }
.detail-list span { width: 26px; height: 26px; flex: 0 0 26px; color: #18A25D; background: transparent; }
.detail-list span svg { width: 22px; height: 22px; }
.detail-card-note p { color: #596A7F; margin-bottom: 20px; }
@media (max-width: 1100px) {
  .fee-card-meta { grid-template-columns: 1fr; }
  .detail-content-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .fee-card-title { flex-direction: column; }
  .fee-card-price { text-align: left; min-width: 0; }
  .fee-card-price strong { font-size: 1.65rem; }
  .fee-card-details { grid-template-columns: 1fr; }
  .fee-card-actions { flex-direction: column; align-items: stretch; }
  .fee-card .btn { width: 100%; min-width: 0; }
  .detail-hero-card, .detail-card { padding: 22px; }
  .detail-metrics { grid-template-columns: 1fr; }
}


body { font-family: 'Manrope', Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }
.btn-ghost { color: var(--blue-deep); background: #F7FAFE; border: 1px solid #DDE8F5; box-shadow: none; }
.btn-ghost:hover { background: #EDF5FF; }
.fee-grid { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 28px; align-items: stretch; }
.fee-card { display: flex; flex-direction: column; border-radius: 28px; overflow: hidden; }
.fee-card-image { height: 215px; }
.fee-card-image span { left: 18px; top: 18px; padding: 8px 12px; font-size: .78rem; background: rgba(7,22,45,.58); }
.fee-card-body { display: flex; flex-direction: column; gap: 16px; padding: 26px; }
.fee-card-topline { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.fee-card-tag { display: inline-flex; align-items: center; min-height: 34px; padding: 7px 12px; border-radius: 999px; background: #EDF5FF; color: var(--blue); font-size: .76rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.fee-card-heading h3 { font-size: 2.05rem; margin-bottom: 6px; letter-spacing: -.04em; }
.fee-card-heading p { margin: 0; color: #5E7086; font-size: .97rem; line-height: 1.7; max-width: 92%; }
.fee-card-price { text-align: right; padding-top: 2px; }
.fee-card-price strong { display: block; font-size: 2.2rem; line-height: 1; letter-spacing: -.05em; color: var(--blue); }
.fee-card-price em { display: block; margin-top: 6px; font-style: normal; font-size: .8rem; color: var(--muted); font-weight: 800; }
.fee-card-meta { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin: 0; }
.fee-meta-item, .fee-breakdown-item { display: flex; align-items: center; gap: 12px; padding: 16px; border-radius: 18px; background: #F7FAFE; border: 1px solid #ECF2F8; }
.fee-meta-item i, .fee-breakdown-item i, .fee-card-focus span { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; border-radius: 14px; background: white; color: var(--blue); box-shadow: inset 0 0 0 1px #E5EDF8; }
.fee-meta-item i svg, .fee-breakdown-item i svg, .fee-card-focus span svg { width: 20px; height: 20px; }
.fee-meta-item small, .fee-breakdown-item small { display: block; margin-bottom: 4px; color: var(--muted); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.fee-meta-item b, .fee-breakdown-item b { display: block; color: var(--blue-deep); font-size: 1rem; line-height: 1.35; }
.fee-card-breakdown { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.fee-card-focus { display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px; border-radius: 18px; background: linear-gradient(180deg, #FBFDFF 0%, #F5FAFF 100%); border: 1px solid #E8EFF7; }
.fee-card-focus p { margin: 0; color: #5E7086; font-size: .92rem; line-height: 1.6; }
.fee-card-focus b { color: var(--blue-deep); }
.fee-card-includes { gap: 12px; margin: 0; padding-top: 4px; }
.fee-card-includes li { gap: 10px; align-items: flex-start; }
.fee-card-includes li span { width: 22px; height: 22px; flex: 0 0 22px; display: grid; place-items: center; color: #17A25F; }
.fee-card-includes li p { margin: 0; color: #5E7086; font-size: .9rem; line-height: 1.58; }
.fee-card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: auto; }
.fee-card .btn { width: 100%; min-width: 0; min-height: 52px; }
.text-link { font-weight: 800; color: var(--blue); }
@media (max-width: 860px) {
  .fee-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .fee-card-body { padding: 20px; gap: 14px; }
  .fee-card-image { height: 190px; }
  .fee-card-topline { flex-direction: column; align-items: flex-start; }
  .fee-card-price { text-align: left; }
  .fee-card-price strong { font-size: 1.95rem; }
  .fee-card-heading h3 { font-size: 1.7rem; }
  .fee-card-heading p { max-width: 100%; font-size: .92rem; }
  .fee-card-meta, .fee-card-breakdown, .fee-card-actions { grid-template-columns: 1fr; }
}
