:root {
  --navy: #062772;
  --navy-2: #0b3f9f;
  --gold: #c78b22;
  --gold-2: #f0c35b;
  --ink: #172033;
  --muted: #667085;
  --line: #e7eaf0;
  --paper: #ffffff;
  --wash: #f6f8fc;
  --shadow: 0 24px 70px rgba(5, 26, 75, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 82px;
  padding: 10px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(231, 234, 240, 0.75);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, min-height 0.25s ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  box-shadow: 0 12px 36px rgba(6, 39, 114, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--navy);
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.admin-login-page .brand img,
.admin-login-page .footer-logo {
  display: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.1vw, 18px);
  color: #26364f;
  font-size: 0.94rem;
  font-weight: 650;
}

.main-nav a,
.nav-label {
  position: relative;
  display: inline-flex;
  padding: 8px 0;
  cursor: pointer;
}

.main-nav > a::after,
.nav-item > a::after,
.nav-label::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav > a:hover::after,
.nav-item:hover > a::after,
.nav-item:hover .nav-label::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 16px);
  z-index: 80;
  display: grid;
  grid-template-columns: repeat(3, minmax(190px, 1fr));
  gap: 22px;
  width: min(760px, calc(100vw - 36px));
  padding: 24px;
  border: 1px solid rgba(231, 234, 240, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 80px rgba(5, 26, 75, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.mega-menu::before {
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
  content: "";
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-menu.compact-menu {
  grid-template-columns: minmax(210px, 1fr);
  width: 280px;
}

.mega-menu strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-menu a {
  display: block;
  padding: 8px 0;
  color: #34415a;
  font-size: 0.94rem;
  font-weight: 720;
}

.mega-menu a:hover {
  color: var(--navy);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-gold {
  color: #201300;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 14px 30px rgba(199, 139, 34, 0.25);
}

.btn-light {
  color: var(--navy);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 100px clamp(20px, 6vw, 90px) 120px;
  color: #fff;
  background: radial-gradient(circle at 72% 22%, rgba(240, 195, 91, 0.28), transparent 31%), linear-gradient(135deg, #031440 0%, var(--navy) 50%, #0c48a8 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
}

.hero-bg {
  position: absolute;
  right: clamp(-30px, 4vw, 80px);
  top: 80px;
  width: min(48vw, 620px);
  aspect-ratio: 1;
  background: url("../images/logo.png") center / contain no-repeat;
  opacity: 0.24;
  filter: drop-shadow(0 30px 70px rgba(0,0,0,0.24));
  animation: floatLogo 8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 9vw, 8.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 26px 0 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-orbit {
  position: absolute;
  right: 9vw;
  bottom: 80px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(240, 195, 91, 0.35);
  border-radius: 50%;
  animation: rotateOrbit 18s linear infinite;
}

.hero-orbit span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 28px rgba(240, 195, 91, 0.8);
}

.hero-orbit span:nth-child(1) { left: 50%; top: -6px; }
.hero-orbit span:nth-child(2) { right: 18px; bottom: 42px; }
.hero-orbit span:nth-child(3) { left: 20px; bottom: 52px; }

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 34px 22px;
  background: #fff;
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-weight: 750;
}

.section {
  padding: clamp(70px, 8vw, 118px) clamp(20px, 5vw, 80px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
}

.section h2,
.article h1,
.admin-main h1 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.03;
}

.center {
  text-align: center;
}

.section > .center + .center {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.text-link {
  color: var(--navy);
  font-weight: 850;
  border-bottom: 2px solid var(--gold);
}

.glass-panel,
.admin-card,
.blog-card,
.info-card {
  border: 1px solid rgba(231, 234, 240, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.glass-panel {
  padding: clamp(26px, 4vw, 42px);
}

.check-list {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 13px 0;
  color: #31415f;
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  content: "\2713";
  color: var(--gold);
  font-weight: 900;
}

.card-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.info-card {
  min-height: 250px;
  padding: 26px;
  overflow: hidden;
}

.info-card:hover,
.blog-card:hover,
.city-pill:hover {
  transform: translateY(-4px);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: #201300;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-radius: 8px;
  font-weight: 900;
}

.info-card h3,
.glass-panel h3,
.process h3,
.footer-grid h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.2rem;
}

.info-card p,
.blog-card p {
  margin: 0;
  color: var(--muted);
}

.dark-flow {
  color: #fff;
  background: linear-gradient(135deg, #031440, #082d78);
}

.dark-flow h2,
.dark-flow h3 {
  color: #fff;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.process > div {
  min-height: 245px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.process span {
  display: block;
  color: var(--gold-2);
  margin-bottom: 30px;
  font-size: 1.6rem;
  font-weight: 900;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.city-pill {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 16px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(6, 39, 114, 0.08);
  font-weight: 850;
  text-align: center;
  transition: transform 0.2s ease;
}

.contact-band,
.page-hero {
  background: var(--wash);
}

.page-hero {
  padding: clamp(82px, 9vw, 140px) clamp(20px, 6vw, 90px);
}

.premium-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 82% 20%, rgba(240, 195, 91, 0.3), transparent 30%), linear-gradient(135deg, #031440, #082d78 58%, #0b3f9f);
}

.premium-hero::after {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid rgba(240, 195, 91, 0.35);
  border-radius: 50%;
}

.premium-hero h1,
.premium-hero p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  color: #fff;
}

.premium-hero .hero-actions {
  position: relative;
  z-index: 2;
  margin-top: 26px;
}

.page-hero h1 {
  max-width: 1000px;
  color: var(--navy);
  font-size: clamp(2.7rem, 7vw, 6rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.15rem;
}

.premium-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
}

.page-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.feature-block {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(6, 39, 114, 0.08);
}

.feature-block h2 {
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

.detail-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: #fff;
}

.detail-copy p {
  color: #34415a;
}

.detail-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--wash);
  box-shadow: var(--shadow);
}

.detail-card h3 {
  margin: 0 0 18px;
  color: var(--navy);
}

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

.mini-city-grid span {
  padding: 10px 12px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
  text-align: center;
}

.related-section {
  background: var(--wash);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.related-link {
  display: grid;
  min-height: 84px;
  place-items: center;
  padding: 14px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(6, 39, 114, 0.07);
  font-weight: 850;
  text-align: center;
}

.visa-finder {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: #fff;
}

.faq-section {
  background: var(--wash);
}

.faq-list {
  width: min(920px, 100%);
  margin: 34px auto 0;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(6, 39, 114, 0.06);
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 850;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.lead-form.compact {
  padding: 0;
  border: 0;
  box-shadow: none;
}

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

label {
  display: grid;
  gap: 7px;
  color: #26364f;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid #d8dee9;
  border-radius: 8px;
  background: #fff;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(199, 139, 34, 0.12);
}

textarea {
  resize: vertical;
}

.hp {
  position: absolute;
  left: -10000px;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(3, 20, 64, 0.68);
  backdrop-filter: blur(10px);
}

.lead-modal[hidden] {
  display: none;
}

.modal-open {
  overflow: hidden;
}

.modal-panel {
  position: relative;
  width: min(680px, 100%);
  max-height: min(92vh, 820px);
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.modal-panel h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.blog-card {
  display: block;
  padding: 26px;
  transition: transform 0.2s ease;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: -8px 0 18px;
  border-radius: 8px;
}

.blog-card span,
.article-date {
  color: var(--gold);
  font-weight: 850;
}

.blog-card h2 {
  margin: 12px 0;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.2;
}

.article {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(80px, 9vw, 130px) 0;
}

.article-body {
  color: #2f3b52;
  font-size: 1.08rem;
}

.article-body p {
  margin: 0 0 20px;
}

.article-featured {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  margin-bottom: 28px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.tag-list span {
  padding: 7px 11px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.86rem;
  font-weight: 800;
}

.article-cta {
  margin-top: 42px;
  padding: 28px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, #031440, #082d78);
}

.article-cta h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.article-faq {
  margin-top: 42px;
}

.article-faq h2 {
  margin-bottom: 18px;
  color: var(--navy);
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #031440;
  padding: 64px clamp(20px, 5vw, 80px) 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1.1fr 1.1fr 1.1fr;
  gap: 36px;
}

.footer-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  padding: 6px;
  border-radius: 8px;
  background: #fff;
}

.footer-grid a {
  display: block;
  margin: 9px 0;
}

.footer-grid h3 {
  color: #fff;
}

.copyright {
  margin: 36px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.admin-shell {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 50px 20px;
  background: var(--wash);
}

.admin-card {
  width: min(430px, 100%);
  padding: 32px;
}

.admin-card h1 {
  margin: 0 0 22px;
  color: var(--navy);
}

.alert {
  padding: 12px 14px;
  color: #8a5200;
  background: #fff6df;
  border: 1px solid #f4d58b;
  border-radius: 8px;
}

.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 76vh;
  background: var(--wash);
}

.admin-layout aside {
  padding: 30px 18px;
  background: #031440;
}

.admin-layout aside a {
  display: block;
  margin-bottom: 8px;
  padding: 12px 14px;
  color: #fff;
  border-radius: 8px;
}

.admin-layout aside a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.admin-main {
  min-width: 0;
  padding: clamp(24px, 4vw, 54px);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 220px));
  gap: 16px;
}

.admin-stats div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.admin-stats strong {
  display: block;
  color: var(--navy);
  font-size: 2.5rem;
}

.admin-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--navy);
  background: #eef3ff;
}

.editor-form {
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.seo-editor-form {
  max-width: none;
}

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

.editor-topbar h1 {
  margin-bottom: 0;
}

.editor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.editor-main-panel,
.editor-side-panel,
.seo-help,
.seo-panel,
.search-preview,
.seo-checklist {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(6, 39, 114, 0.07);
}

.editor-main-panel,
.editor-side-panel {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.editor-side-panel {
  position: sticky;
  top: 92px;
}

.seo-help {
  padding: 20px;
  background: #f8fbff;
}

.seo-help h2,
.seo-panel h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.1rem;
}

.seo-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
}

.seo-score-ring {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: #201300;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-size: 1.35rem;
  font-weight: 900;
}

.seo-score-pill {
  display: inline-flex;
  padding: 5px 9px;
  color: #201300;
  border-radius: 999px;
  background: #f7d67e;
  font-weight: 900;
}

.search-preview {
  padding: 16px;
}

.search-preview span {
  display: block;
  color: #188038;
  font-size: 0.84rem;
  word-break: break-all;
}

.search-preview strong {
  display: block;
  margin: 6px 0;
  color: #1a0dab;
  font-size: 1.05rem;
  line-height: 1.25;
}

.search-preview p {
  margin: 0;
  color: #4d5156;
  font-size: 0.9rem;
}

.seo-checklist {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.seo-checklist div {
  position: relative;
  padding-left: 24px;
  color: #34415a;
  font-size: 0.9rem;
  font-weight: 750;
}

.seo-checklist div::before {
  position: absolute;
  left: 0;
  color: #b42318;
  content: "!";
  font-weight: 900;
}

.seo-checklist .pass::before {
  color: #16803c;
  content: "\2713";
}

.seo-checklist .pass {
  color: #245b37;
}

.delete-form {
  margin-top: 18px;
}

.delete-form button {
  color: #b42318;
  border: 1px solid #f1b8b3;
  border-radius: 8px;
  background: #fff;
  padding: 10px 14px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}

@keyframes rotateOrbit {
  to { transform: rotate(360deg); }
}

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

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

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

  .brand {
    min-width: 0;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 0;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a,
  .nav-label {
    padding: 10px 0;
  }

  .nav-item {
    position: static;
  }

  .mega-menu,
  .mega-menu.compact-menu {
    position: static;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 0 12px 16px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
  }

  .mega-menu::before {
    display: none;
  }

  .mega-menu a {
    padding: 6px 0;
  }

  .hero {
    min-height: 650px;
    padding-top: 82px;
  }

  .hero-bg {
    width: 80vw;
    right: -18vw;
    top: 160px;
  }

  .hero-orbit {
    display: none;
  }

  .stats-band,
  .split,
  .footer-grid,
  .admin-layout,
  .page-detail-grid,
  .visa-finder,
  .detail-band {
    grid-template-columns: 1fr;
  }

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

  .admin-layout aside {
    display: flex;
    gap: 8px;
    overflow-x: auto;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .editor-grid {
    grid-template-columns: 1fr;
  }

  .editor-side-panel {
    position: static;
  }

  .editor-topbar {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .brand span {
    max-width: 140px;
    line-height: 1.1;
  }

  .hero {
    min-height: 620px;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 4.7rem);
  }

  .card-grid,
  .process,
  .city-grid,
  .form-row,
  .admin-stats,
  .related-grid,
  .mini-city-grid {
    grid-template-columns: 1fr;
  }

  .info-card,
  .process > div {
    min-height: auto;
  }

  .page-hero h1,
  .section h2 {
    font-size: clamp(2.25rem, 13vw, 3.25rem);
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
