:root {
  color-scheme: light;
  --ink: #071d2e;
  --ink-2: #12344d;
  --muted: #607383;
  --paper: #ffffff;
  --bg: #f5f7f6;
  --line: #dbe5ed;
  --soft: #eaf3f8;
  --mint: #e8f7ef;
  --blue: #0b79d0;
  --blue-2: #065a9f;
  --gold: #d8a941;
  --gold-soft: #fff5d8;
  --green: #0f8a5f;
  --red: #b33939;
  --sand: #f2dfbd;
  --teal: #0f8f8c;
  --coral: #d96c4f;
  --shadow: 0 20px 60px rgba(7, 29, 46, 0.14);
  --shadow-strong: 0 32px 90px rgba(7, 29, 46, 0.22);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

body[dir="rtl"] {
  font-family: Tahoma, Arial, sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 12px clamp(14px, 4vw, 56px);
  border-bottom: 1px solid rgba(219, 229, 237, 0.88);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo,
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(7, 29, 46, 0.12));
}

.brand-logo {
  display: block;
}

.brand-mark {
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 800;
}

.top-nav a {
  text-decoration: none;
}

.language-switcher {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.language-switcher button {
  border: 0;
  border-radius: 6px;
  padding: 8px 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.language-switcher button.is-active {
  background: var(--ink);
  color: #fff;
}

.hero {
  padding: clamp(28px, 6vw, 82px) clamp(16px, 5vw, 72px);
}

.managed-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: center;
  min-height: 660px;
  background:
    linear-gradient(90deg, rgba(7, 29, 46, 0.94), rgba(7, 29, 46, 0.74)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='760' viewBox='0 0 1200 760'%3E%3Crect width='1200' height='760' fill='%230b79d0'/%3E%3Cpath d='M0 520 C220 410 360 610 570 500 C760 400 900 450 1200 320 L1200 760 L0 760 Z' fill='%23f4f7fa' opacity='.22'/%3E%3Cpath d='M90 130 L1040 60 L1130 610 L170 680 Z' fill='%23ffffff' opacity='.12'/%3E%3Ccircle cx='955' cy='205' r='105' fill='%23d8a941' opacity='.26'/%3E%3C/svg%3E");
  background-size: cover;
  color: #fff;
}

.hero-copy {
  max-width: 850px;
  animation: riseIn 0.7s ease both;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.hero-lede {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.2vw, 23px);
}

.section-heading p,
.helper {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 30px rgba(11, 121, 208, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-color: var(--line);
}

.button.glass {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.button.wide {
  width: 100%;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-line span {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 900;
}

.journey-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.journey-pills span {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
  padding: 8px 11px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.journey-pills .icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(216, 169, 65, 0.2);
  color: #ffe2a0;
}

.journey-pills b {
  font-size: 13px;
}

.checkout-card,
.hero-visual,
.wizard-shell,
.package-card,
.req-card,
.admin-card,
.portal-preview,
.process-grid article,
.faq-section details,
.upload-card,
.doc-example,
.order-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.checkout-card,
.hero-visual {
  display: grid;
  gap: 13px;
  padding: 20px;
  color: var(--ink);
}

.phone-shell {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-strong);
  animation: floatIn 0.8s ease both 0.12s;
}

.icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--soft);
  color: var(--blue-2);
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.icon-passport::before,
.icon-package::before {
  width: 18px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.icon-passport::after {
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-agency::before {
  width: 21px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 3px;
  border-top-width: 6px;
}

.icon-check::before {
  width: 17px;
  height: 9px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg) translate(1px, -1px);
}

.icon-pin::before {
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.icon-route::before {
  width: 20px;
  height: 12px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 8px 0 0;
}

.icon-route::after {
  right: 7px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.icon-lock::before {
  width: 19px;
  height: 14px;
  bottom: 7px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.icon-lock::after {
  width: 13px;
  height: 12px;
  top: 6px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
}

.icon-card::before {
  width: 22px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.icon-card::after {
  width: 14px;
  height: 2px;
  background: currentColor;
}

.icon-upload::before {
  width: 18px;
  height: 18px;
  border-bottom: 2px solid currentColor;
}

.icon-upload::after {
  width: 12px;
  height: 12px;
  border-left: 3px solid currentColor;
  border-top: 3px solid currentColor;
  transform: rotate(45deg) translate(2px, 2px);
}

.icon-shield::before {
  width: 20px;
  height: 23px;
  border: 2px solid currentColor;
  border-radius: 10px 10px 12px 12px;
  clip-path: polygon(50% 0, 100% 18%, 90% 78%, 50% 100%, 10% 78%, 0 18%);
}

.travel-scene {
  position: relative;
  min-height: 150px;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11, 121, 208, 0.14), rgba(216, 169, 65, 0.12)),
    #f7fbfd;
}

.travel-scene::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-top: 2px dashed rgba(11, 121, 208, 0.32);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.scene-passport,
.scene-plane,
.scene-stamp {
  position: absolute;
  display: block;
}

.scene-passport {
  left: 22px;
  bottom: 24px;
  width: 84px;
  height: 104px;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--ink), #0b5794);
  box-shadow: 0 18px 34px rgba(7, 29, 46, 0.22);
}

.scene-passport::before {
  content: "";
  position: absolute;
  inset: 18px 24px;
  border: 2px solid rgba(216, 169, 65, 0.75);
  border-radius: 50%;
}

.scene-plane {
  right: 62px;
  top: 38px;
  width: 58px;
  height: 18px;
  background: var(--blue);
  clip-path: polygon(0 42%, 72% 42%, 100% 0, 84% 52%, 100% 100%, 72% 60%, 0 60%);
  animation: planeDrift 4.8s ease-in-out infinite;
}

.scene-stamp {
  right: 28px;
  bottom: 28px;
  width: 84px;
  height: 64px;
  border: 3px solid var(--gold);
  border-radius: 10px;
  transform: rotate(-7deg);
  opacity: 0.88;
}

.scene-stamp::before,
.scene-stamp::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 6px;
  border-radius: 999px;
  background: rgba(216, 169, 65, 0.58);
}

.scene-stamp::before {
  top: 18px;
}

.scene-stamp::after {
  top: 34px;
}

.phone-top span,
.checkout-head span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 8px;
  border-radius: 8px;
  background: var(--gold-soft);
  color: #6e4b00;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.phone-top strong,
.checkout-head strong {
  display: block;
  font-size: 26px;
  line-height: 1.05;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
  max-width: 760px;
}

.hero-metrics div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  font-size: 18px;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.visual-flow {
  display: grid;
  gap: 10px;
}

.visual-flow div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.visual-flow b {
  color: var(--blue-2);
}

.visual-flow span {
  font-weight: 950;
}

.mini-docs {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 10px;
}

.mini-docs span {
  min-height: 84px;
  border: 1px solid #bfd0dc;
  border-radius: 8px;
  background:
    linear-gradient(#9cb3c4 0 0) 14px 18px / 55% 7px no-repeat,
    linear-gradient(#dbe5ed 0 0) 14px 36px / 75% 7px no-repeat,
    linear-gradient(#dbe5ed 0 0) 14px 52px / 70% 7px no-repeat,
    #fff;
  animation: cardPulse 4s ease-in-out infinite;
}

.mini-docs span:nth-child(2) {
  animation-delay: 0.35s;
}

.mini-docs span:nth-child(3) {
  animation-delay: 0.7s;
}

.phone-shell small,
.checkout-card small,
.order-panel p {
  color: var(--muted);
}

.destination-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 10px;
  padding: 10px clamp(16px, 5vw, 72px);
  background: #fff;
}

.destination-card {
  position: relative;
  min-height: 168px;
  overflow: hidden;
  border-radius: 8px;
  padding: 18px;
  color: #fff;
  box-shadow: 0 16px 40px rgba(7, 29, 46, 0.12);
  isolation: isolate;
}

.destination-card::before,
.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.destination-card::before {
  background:
    linear-gradient(180deg, rgba(7, 29, 46, 0.18), rgba(7, 29, 46, 0.72)),
    radial-gradient(circle at 78% 24%, rgba(216, 169, 65, 0.58), transparent 20%),
    linear-gradient(135deg, var(--teal), var(--blue-2));
}

.destination-card.city::after {
  background:
    linear-gradient(#ffffff66 0 0) 68% 42% / 12% 44% no-repeat,
    linear-gradient(#ffffff52 0 0) 82% 54% / 9% 34% no-repeat,
    linear-gradient(#ffffff45 0 0) 54% 58% / 10% 29% no-repeat,
    linear-gradient(160deg, transparent 56%, rgba(255, 255, 255, 0.24) 57% 62%, transparent 63%);
}

.destination-card.temple::after {
  background:
    conic-gradient(from 45deg at 50% 24%, transparent 0 25%, rgba(255,255,255,.52) 0 50%, transparent 0 100%) 50% 16% / 86px 86px no-repeat,
    linear-gradient(#ffffff52 0 0) 49% 60% / 34% 44% no-repeat,
    linear-gradient(160deg, transparent 56%, rgba(255, 255, 255, 0.24) 57% 62%, transparent 63%);
}

.destination-card.island::after {
  background:
    radial-gradient(ellipse at 76% 66%, rgba(255,255,255,.45) 0 16%, transparent 17%),
    linear-gradient(13deg, transparent 0 50%, rgba(255,255,255,.45) 51% 54%, transparent 55%) 54% 28% / 88px 88px no-repeat,
    linear-gradient(175deg, transparent 56%, rgba(255, 255, 255, 0.24) 57% 62%, transparent 63%);
}

.destination-card span,
.destination-card strong {
  display: block;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
}

.destination-card span {
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.destination-card strong {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  font-size: 28px;
  line-height: 1;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 18px clamp(14px, 3vw, 28px);
  background: var(--paper);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip .icon {
  grid-row: span 2;
}

.proof-strip span {
  color: var(--muted);
}

.section {
  padding: clamp(42px, 6vw, 78px) clamp(16px, 5vw, 72px);
}

.section-heading {
  margin-bottom: 24px;
}

.process-grid,
.package-grid,
.examples-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.process-grid article,
.package-card,
.doc-example {
  padding: 18px;
}

.process-grid article {
  position: relative;
  overflow: hidden;
}

.process-grid article .icon {
  margin-bottom: 14px;
  background: #f2f9ff;
}

.process-grid article::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(11, 121, 208, 0.07);
}

.compact-section {
  padding-top: clamp(32px, 5vw, 58px);
  padding-bottom: clamp(32px, 5vw, 58px);
}

.process-grid article span {
  color: var(--blue);
  font-weight: 950;
}

.process-grid p,
.package-card p,
.doc-example p,
.faq-section p {
  color: var(--muted);
}

.packages-section {
  background:
    linear-gradient(180deg, #fff, #f6fbfb);
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-card {
  position: relative;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-decoration: none;
  min-height: 100%;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  overflow: hidden;
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--teal), var(--coral));
  opacity: 0;
  transition: opacity 0.18s ease;
}

.package-card:hover::before,
.package-card.featured::before {
  opacity: 1;
}

.package-visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: end;
  min-height: 92px;
  margin-bottom: 14px;
  padding: 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f5fbff, #fff8e8);
  overflow: hidden;
}

.package-visual.compact {
  min-height: 78px;
  margin-bottom: 4px;
}

.package-visual i {
  display: block;
  min-height: 58px;
  border: 1px solid #bfd0dc;
  border-radius: 8px;
  background:
    linear-gradient(#9cb3c4 0 0) 10px 14px / 58% 6px no-repeat,
    linear-gradient(#dbe5ed 0 0) 10px 30px / 74% 6px no-repeat,
    linear-gradient(#dbe5ed 0 0) 10px 44px / 65% 6px no-repeat,
    #fff;
  box-shadow: 0 10px 20px rgba(7, 29, 46, 0.08);
  transform: translateY(0) rotate(0deg);
  transition: transform 0.18s ease;
}

.package-visual i:nth-child(2) {
  transform: translateY(10px) rotate(2deg);
  opacity: 0.8;
}

.package-visual i:nth-child(3) {
  transform: translateY(20px) rotate(-3deg);
  opacity: 0.65;
}

.passport-only i:nth-child(n+2) {
  opacity: 0.18;
}

.passport-bank i:nth-child(3) {
  opacity: 0.18;
}

.package-card:hover .package-visual i:nth-child(1) {
  transform: translateY(-3px) rotate(-2deg);
}

.package-card:hover .package-visual i:nth-child(2) {
  transform: translateY(5px) rotate(2deg);
}

.package-card:hover .package-visual i:nth-child(3) {
  transform: translateY(14px) rotate(-3deg);
}

.package-card > span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 8px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.package-card strong {
  display: block;
  margin: 8px 0;
  font-size: 36px;
}

.package-card strong::after {
  content: " service fee";
  display: inline;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.offer-list {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-2);
  font-weight: 850;
}

body[dir="rtl"] .offer-list li {
  padding-right: 26px;
  padding-left: 0;
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: inset 0 0 0 5px #fff, 0 0 0 1px rgba(15, 138, 95, 0.24);
}

body[dir="rtl"] .offer-list li::before {
  right: 0;
  left: auto;
}

.package-card small {
  display: block;
  margin-top: 14px;
  padding: 10px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--muted);
  font-weight: 850;
}

.package-card em {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  margin-top: 14px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-style: normal;
  font-weight: 950;
}

.package-card em::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

body[dir="rtl"] .package-card em::after {
  transform: rotate(-135deg);
}

.package-card.featured {
  border-color: var(--gold);
  transform: translateY(-8px);
  background: linear-gradient(180deg, #fffaf0, #fff);
}

.package-card.is-selected {
  outline: 3px solid rgba(11, 121, 208, 0.2);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(7, 29, 46, 0.17);
}

.package-card.featured:hover {
  transform: translateY(-10px);
}

.apply-section {
  background: var(--bg);
}

.trust-gallery {
  background:
    linear-gradient(135deg, rgba(15, 143, 140, 0.1), rgba(216, 169, 65, 0.12)),
    #fff;
}

.trust-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-gallery-grid article {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 170px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(7, 29, 46, 0.09);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.trust-gallery-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(7, 29, 46, 0.14);
}

.trust-gallery-grid strong,
.trust-gallery-grid span {
  display: block;
}

.trust-gallery-grid strong {
  font-size: 20px;
}

.trust-gallery-grid span {
  color: var(--muted);
}

.apply-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 18px;
  align-items: end;
  padding-top: clamp(30px, 5vw, 58px);
  padding-bottom: clamp(24px, 4vw, 42px);
  background: var(--ink);
  color: #fff;
}

.apply-hero h1 {
  max-width: 980px;
  font-size: clamp(38px, 6vw, 68px);
}

.apply-hero .hero-lede {
  max-width: 760px;
}

.route-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.route-card > span {
  color: var(--muted);
  font-weight: 950;
}

.route-card strong {
  font-size: 28px;
  line-height: 1.05;
}

.route-card p {
  margin: 0;
  color: var(--muted);
}

.route-card b {
  color: var(--ink);
  font-size: 28px;
}

.wizard-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  max-width: 1180px;
  padding: 18px;
}

.wizard-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.progress-bar {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}

.progress-bar span {
  display: block;
  width: 20%;
  height: 100%;
  background: var(--blue);
  transition: width 0.2s ease;
}

.wizard-step {
  display: none;
}

.wizard-step.is-active {
  display: block;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label span {
  display: block;
  margin-bottom: 6px;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 50px;
  padding: 10px 12px;
  border: 1px solid #cbd9e3;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.order-panel {
  position: sticky;
  top: 86px;
  align-self: start;
  padding: 18px;
  box-shadow: none;
}

.order-panel > span,
.order-panel div {
  color: var(--muted);
  font-weight: 900;
}

.order-panel strong,
.order-panel b {
  display: block;
  color: var(--ink);
  font-size: 28px;
}

.upload-grid {
  display: grid;
  gap: 14px;
}

.upload-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  box-shadow: none;
}

.sample-visual {
  min-height: 142px;
  border-radius: 8px;
  background: var(--soft);
  padding: 12px;
}

.sample-paper {
  height: 100%;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #bfd0dc;
  padding: 10px;
}

.sample-lines span,
.sample-lines b {
  display: block;
  height: 8px;
  margin: 7px 0;
  border-radius: 99px;
  background: #dbe5ed;
}

.sample-lines b {
  width: 68%;
  background: #9cb3c4;
}

.sample-face {
  width: 54px;
  height: 64px;
  margin: 0 auto 8px;
  border-radius: 44% 44% 38% 38%;
  background: linear-gradient(#f1c9a5, #d79b75);
  position: relative;
}

.sample-face::before,
.sample-face::after {
  content: "";
  position: absolute;
  top: 27px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #17283a;
}

.sample-face::before {
  left: 15px;
}

.sample-face::after {
  right: 15px;
}

.good-bad {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0;
}

.good-bad div {
  padding: 8px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
}

.good {
  background: #e8f7ef;
  color: var(--green);
}

.bad {
  background: #fdeaea;
  color: var(--red);
}

.later-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.later-row label {
  color: var(--muted);
  font-size: 14px;
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--blue);
  flex: 0 0 auto;
}

.file-warnings {
  color: var(--red);
  font-weight: 900;
}

.addon-list {
  display: grid;
  gap: 12px;
}

.addon-list label,
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.addon-list label {
  cursor: pointer;
}

.addon-list label:has(input:checked) {
  border-color: rgba(11, 121, 208, 0.55);
  background: #f2f9ff;
}

.addon-list small {
  display: block;
  color: var(--muted);
}

.summary-box {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
  padding: 14px;
  border-radius: 8px;
  background: var(--soft);
}

.summary-box div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.portal-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  overflow: hidden;
}

.portal-status {
  padding: 18px;
  background: #fff;
}

.portal-status span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: var(--line);
  font-weight: 950;
}

.portal-status span .icon {
  width: 24px;
  height: 24px;
  background: transparent;
  color: inherit;
}

.portal-status.active span {
  background: var(--blue);
  color: #fff;
}

.faq-section {
  display: grid;
  gap: 10px;
}

.faq-section .section-heading {
  margin-bottom: 8px;
}

details {
  padding: 16px;
}

summary {
  cursor: pointer;
  font-weight: 950;
}

.site-footer {
  padding: 34px clamp(16px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}

.site-footer p {
  max-width: 980px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  display: none;
  max-width: min(92vw, 560px);
  padding: 14px 16px;
  transform: translateX(-50%);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.toast.is-visible {
  display: block;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes planeDrift {
  0%,
  100% {
    transform: translate(0, 0) rotate(-4deg);
  }
  50% {
    transform: translate(12px, -8px) rotate(3deg);
  }
}

@keyframes cardPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 -12px 40px rgba(7, 29, 46, 0.12);
}

.sticky-cta span,
.sticky-cta strong,
.sticky-cta small {
  display: block;
}

.sticky-cta small {
  color: var(--muted);
  font-size: 12px;
}

.sticky-cta .button {
  width: auto;
  min-height: 44px;
  white-space: nowrap;
}

.admin-body {
  background: #eef3f7;
}

.admin-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  padding: 22px;
  background: var(--ink);
  color: #fff;
}

.admin-sidebar a {
  display: block;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 850;
}

.admin-main {
  padding: 24px;
  min-width: 0;
}

.admin-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.admin-toolbar button {
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.readiness-banner {
  display: grid;
  gap: 5px;
  margin-bottom: 18px;
  border-color: rgba(216, 169, 65, 0.42);
  background: linear-gradient(135deg, #fffaf0, #fff);
}

.readiness-banner span {
  color: var(--muted);
}

.metric-grid,
.crm-grid,
.kanban-grid {
  display: grid;
  gap: 14px;
}

.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.crm-grid {
  grid-template-columns: 1.4fr 0.9fr;
}

.kanban-grid {
  display: flex;
  overflow-x: auto;
  max-width: 100%;
  padding-bottom: 6px;
}

.kanban-grid > .admin-card {
  flex: 0 0 min(280px, 84vw);
}

.admin-card {
  padding: 16px;
  box-shadow: none;
  min-width: 0;
}

.metric strong {
  display: block;
  font-size: 30px;
}

.status-pill {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 950;
}

.case-list {
  display: grid;
  gap: 10px;
}

.case-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.case-row button {
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  padding: 8px 10px;
  cursor: pointer;
}

.admin-actions {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  margin: 14px 0;
}

.admin-actions button {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  padding: 0 14px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.data-table {
  display: grid;
  gap: 1px;
  overflow-x: auto;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.table-row {
  display: grid;
  grid-template-columns: 0.8fr 0.9fr 1.6fr 0.7fr;
  gap: 1px;
  min-width: 780px;
  background: #fff;
}

.table-row > * {
  padding: 12px;
}

.table-head {
  background: var(--ink);
  color: #fff;
}

.doc-status {
  display: grid;
  gap: 8px;
}

.doc-status div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px;
  border-radius: 8px;
  background: var(--soft);
}

body[dir="rtl"] .brand,
body[dir="rtl"] .hero-actions,
body[dir="rtl"] .wizard-actions,
body[dir="rtl"] .trust-line,
body[dir="rtl"] .footer-links,
body[dir="rtl"] .later-row,
body[dir="rtl"] .journey-pills {
  flex-direction: row-reverse;
}

body[dir="rtl"] .package-card {
  text-align: right;
}

body[dir="rtl"] .summary-box div {
  flex-direction: row-reverse;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .top-nav {
    display: none;
  }

  .managed-hero,
  .apply-hero,
  .wizard-shell,
  .crm-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .process-grid,
  .package-grid,
  .examples-row,
  .portal-preview,
  .metric-grid,
  .trust-gallery-grid,
  .destination-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkout-card {
    order: -1;
  }

  .order-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 74px;
  }

  .site-header {
    padding: 10px 12px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .managed-hero {
    min-height: auto;
    gap: 20px;
    padding-top: 18px;
  }

  h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .hero-lede,
  .section-heading p,
  .helper {
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-metrics,
  .mini-docs {
    grid-template-columns: 1fr;
  }

  .trust-line span {
    width: 100%;
  }

  .proof-strip,
  .process-grid,
  .package-grid,
  .examples-row,
  .portal-preview,
  .field-grid,
  .upload-card,
  .metric-grid,
  .trust-gallery-grid,
  .destination-strip {
    grid-template-columns: 1fr;
  }

  .journey-pills span {
    flex: 1 1 100%;
  }

  .destination-strip {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .destination-card {
    min-height: 126px;
  }

  .destination-card strong {
    font-size: 23px;
  }

  .package-card.featured {
    transform: none;
  }

  .package-card:hover,
  .package-card.featured:hover {
    transform: none;
  }

  .upload-card {
    gap: 10px;
  }

  .sample-visual {
    min-height: 112px;
  }

  .sticky-cta {
    display: flex;
  }

  .sticky-cta .button {
    width: auto;
  }

  .button {
    width: 100%;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }

  .admin-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-toolbar,
  .admin-toolbar .button,
  .admin-toolbar button {
    width: 100%;
  }

  .admin-main {
    padding: 16px;
  }

  .admin-actions {
    grid-template-columns: 1fr;
  }
}
