:root {
  --bg: #eff5fb;
  --bg-deep: #0b2947;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-dark: rgba(11, 41, 71, 0.92);
  --primary: #0f4c81;
  --primary-strong: #09345c;
  --accent: #d3a649;
  --accent-deep: #ad7b1d;
  --text: #102840;
  --muted: #5a7288;
  --border: rgba(15, 76, 129, 0.12);
  --border-strong: rgba(211, 166, 73, 0.28);
  --shadow: 0 24px 60px rgba(9, 35, 64, 0.12);
  --shadow-soft: 0 18px 35px rgba(9, 35, 64, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container-max: min(1540px, calc(100vw - 3rem));
  --container-wide: calc(100vw - 0.75rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
article[id] {
  scroll-margin-top: 8rem;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(211, 166, 73, 0.18), transparent 28%),
    radial-gradient(circle at left 20%, rgba(15, 76, 129, 0.11), transparent 32%),
    linear-gradient(180deg, #f8fbfe 0%, var(--bg) 38%, #ffffff 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.is-loading,
body.popup-open {
  overflow: hidden;
}

.site-locked,
.site-locked *:not(input):not(textarea):not(select):not(option) {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.site-locked input,
.site-locked textarea,
.site-locked select,
.site-locked option {
  -webkit-user-select: text;
  user-select: text;
}

img {
  display: block;
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

::selection {
  background: rgba(211, 166, 73, 0.22);
}

.container {
  width: var(--container-max);
  max-width: none;
  margin: 0 auto;
}

.hero-wrap .container {
  width: var(--container-wide);
}

.site-header .container {
  width: min(1460px, calc(100vw - 2.8rem));
}

.topbar .container {
  width: min(1380px, calc(100vw - 4rem));
}

.section {
  padding: 5.5rem 0;
}

.section-tight {
  padding: 4rem 0;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(15, 76, 129, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.35rem rgba(211, 166, 73, 0.16);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  line-height: 1.12;
}

h1,
.display-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  letter-spacing: -0.03em;
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.3rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease,
    border-color 0.25s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #efc36f 100%);
  color: #14263a;
  box-shadow: 0 16px 28px rgba(211, 166, 73, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 34px rgba(211, 166, 73, 0.32);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
}

.button-secondary.is-dark {
  color: var(--primary);
  background: rgba(15, 76, 129, 0.08);
  border-color: rgba(15, 76, 129, 0.12);
}

.button-ghost {
  background: transparent;
  color: var(--primary);
  border-color: rgba(15, 76, 129, 0.14);
}

.button-block {
  width: 100%;
}

.text-accent {
  color: var(--accent);
}

.topbar {
  position: relative;
  z-index: 30;
  padding: 0.08rem 0 0.18rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, #09233f 0%, #123f68 100%);
  color: rgba(255, 255, 255, 0.85);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: auto;
  padding: 0.22rem 0.45rem;
  border-radius: 0;
  background: transparent;
  font-size: 0.8rem;
}

.topbar__links,
.topbar__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar__links {
  flex-wrap: wrap;
}

.topbar__utilities {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.topbar__socials {
  gap: 0.45rem;
}

.topbar__socials a {
  display: inline-grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.26rem 0.58rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.language-switcher i {
  color: var(--accent);
}

.language-select {
  min-width: 7.8rem;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  outline: none;
  font-size: 0.78rem;
}

.language-select option,
.language-select optgroup {
  color: var(--text);
  background: #ffffff;
}

.topbar a:hover,
.topbar a:focus-visible {
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled .nav-shell {
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.94);
}

.nav-shell {
  margin-top: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(10, 38, 68, 0.08);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.85rem;
  padding: 0 0.8rem 0 0.95rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.brand--logo {
  gap: 0;
}

.brand__logo {
  display: block;
  width: clamp(178px, 17vw, 290px);
  height: auto;
  object-fit: contain;
}

.brand__logo--footer {
  width: clamp(240px, 24vw, 380px);
}

.brand--footer {
  margin-bottom: 1rem;
}

.footer .brand--footer {
  display: inline-flex;
  padding: 0.85rem 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.brand__mark {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, #1b699f 100%);
  color: #ffffff;
  font-size: 1.1rem;
  box-shadow: 0 14px 26px rgba(15, 76, 129, 0.22);
}

.brand__name {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  color: var(--text);
}

.brand__tag {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.76rem;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 76, 129, 0.08);
  color: var(--primary);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-list > li {
  position: relative;
}

.nav-list > li.has-dropdown {
  position: static;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.52rem 0.74rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active,
.has-dropdown:hover > .nav-link,
.has-dropdown:focus-within > .nav-link {
  background: rgba(15, 76, 129, 0.08);
  color: var(--primary);
}

.nav-link i {
  font-size: 0.72rem;
}

.dropdown-toggle {
  display: none;
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 0;
  min-width: 18rem;
  padding: 0.8rem;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.dropdown--mega {
  left: 0;
  right: 0;
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 0.8rem;
}

.dropdown-group {
  padding: 0.35rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 76, 129, 0.04), rgba(211, 166, 73, 0.04));
}

.dropdown-group__title {
  display: block;
  padding: 0.65rem 0.85rem 0.45rem;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown a::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
  opacity: 0.5;
}

.dropdown a:hover,
.dropdown a:focus-visible,
.dropdown a.is-active {
  background: rgba(15, 76, 129, 0.07);
  color: var(--primary);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-cta {
  flex-shrink: 0;
  min-height: 2.8rem;
  padding: 0.68rem 1.2rem;
  font-size: 0.88rem;
}

.hero-wrap {
  padding-top: 1.2rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 2.2rem;
  align-items: center;
  min-height: 46rem;
  padding: clamp(2.2rem, 4vw, 4.25rem);
  border-radius: 42px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, rgba(6, 35, 63, 0.98) 0%, rgba(13, 66, 111, 0.95) 58%, rgba(19, 81, 133, 0.92) 100%);
  color: #ffffff;
  box-shadow: 0 35px 70px rgba(6, 35, 63, 0.18);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 26rem;
  height: 26rem;
  top: -10rem;
  right: -8rem;
  background: radial-gradient(circle, rgba(211, 166, 73, 0.42) 0%, rgba(211, 166, 73, 0) 72%);
}

.hero::after {
  width: 34rem;
  height: 34rem;
  bottom: -15rem;
  left: -14rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.9s ease, transform 1.2s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(92deg, rgba(5, 30, 52, 0.78) 0%, rgba(8, 49, 83, 0.56) 40%, rgba(10, 58, 97, 0.24) 70%, rgba(10, 58, 97, 0.12) 100%),
    radial-gradient(circle at 82% 20%, rgba(211, 166, 73, 0.22), rgba(211, 166, 73, 0) 18%),
    radial-gradient(circle at 70% 78%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 18%);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 1.35rem;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide--passport {
  background:
    linear-gradient(92deg, rgba(5, 30, 52, 0.68), rgba(5, 30, 52, 0.08)),
    url("../images/hero-bg-passport.jpg") 70% center / cover no-repeat,
    radial-gradient(circle at 78% 22%, rgba(211, 166, 73, 0.32), transparent 14%),
    radial-gradient(circle at 72% 80%, rgba(255, 255, 255, 0.14), transparent 18%),
    linear-gradient(135deg, #0a3054 0%, #134673 48%, #1e679a 100%);
}

.hero-slide--documents {
  background:
    linear-gradient(92deg, rgba(5, 30, 52, 0.68), rgba(5, 30, 52, 0.12)),
    url("../images/hero-bg-airport.jpg") 68% center / cover no-repeat,
    radial-gradient(circle at 84% 24%, rgba(211, 166, 73, 0.24), transparent 14%),
    radial-gradient(circle at 64% 76%, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(135deg, #0d365c 0%, #114b73 52%, #19567a 100%);
}

.hero-slide--support {
  background:
    linear-gradient(92deg, rgba(5, 30, 52, 0.66), rgba(5, 30, 52, 0.1)),
    url("../images/hero-bg-student.jpg") 70% center / cover no-repeat,
    radial-gradient(circle at 84% 20%, rgba(211, 166, 73, 0.24), transparent 14%),
    radial-gradient(circle at 68% 78%, rgba(255, 255, 255, 0.14), transparent 18%),
    linear-gradient(135deg, #0b2e50 0%, #12486d 48%, #1b6287 100%);
}

.hero__content,
.hero__visual {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
}

.hero-copy-stack {
  position: relative;
  min-height: 25rem;
}

.hero-copy {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.hero-copy.is-active {
  opacity: 1;
  transform: translateY(0);
}

.hero__content p {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #ffffff;
  font-size: 1.4rem;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.hero__visual {
  display: grid;
  gap: 1rem;
}

.hero-showcase {
  position: relative;
  min-height: 30rem;
  width: min(100%, 46rem);
  justify-self: end;
  overflow: hidden;
}

.hero-preview {
  position: absolute;
  inset: 0;
  padding: 1.1rem;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 52px rgba(5, 28, 50, 0.2);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-preview.is-active {
  opacity: 1;
  transform: translateY(0);
}

.hero-preview__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-preview__frame {
  display: grid;
  place-items: center;
  min-height: 25.5rem;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(8, 44, 74, 0.62), rgba(8, 44, 74, 0.3)),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 18%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-preview__frame--photo {
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 44, 74, 0.18), rgba(8, 44, 74, 0.32)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.hero-preview__frame img {
  width: 100%;
  max-width: 34rem;
  max-height: 22rem;
  object-fit: contain;
}

.hero-preview__frame--photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-indicators {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.hero-indicator {
  width: 0.8rem;
  height: 0.8rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.hero-indicator.is-active {
  width: 2.6rem;
  background: linear-gradient(135deg, var(--accent) 0%, #efc36f 100%);
}

.hero-indicator:hover,
.hero-indicator:focus-visible {
  transform: translateY(-1px);
}

.hero-aside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.js-form .button[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.glass-card {
  padding: 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.glass-card i {
  color: var(--accent);
  font-size: 1.25rem;
}

.glass-card strong {
  display: block;
  margin: 0.8rem 0 0.25rem;
  font-size: 1rem;
}

.glass-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.page-hero {
  position: relative;
  padding: 7.5rem 0 4rem;
}

.page-hero__shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 34px;
  background: linear-gradient(135deg, #0d3b64 0%, #114d81 58%, #1b699f 100%);
  color: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-hero__shell::before {
  content: "";
  position: absolute;
  right: -6rem;
  top: -6rem;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 166, 73, 0.5), rgba(211, 166, 73, 0));
}

.page-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.page-hero__details {
  display: grid;
  gap: 1rem;
}

.page-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.86rem;
  font-weight: 800;
}

.page-hero__list {
  display: grid;
  gap: 0.85rem;
}

.page-hero__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.page-hero__list i {
  color: var(--accent);
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 1.4rem;
}

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

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

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

.card {
  position: relative;
  padding: 1.7rem;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow: 0 28px 48px rgba(9, 35, 64, 0.14);
}

.icon-badge {
  width: 3.5rem;
  height: 3.5rem;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(15, 76, 129, 0.12) 0%, rgba(211, 166, 73, 0.14) 100%),
    #ffffff;
  color: var(--primary);
  font-size: 1.15rem;
  box-shadow: inset 0 0 0 1px rgba(15, 76, 129, 0.06);
}

.service-card {
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(211, 166, 73, 0.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(15, 76, 129, 0.09), transparent 26%);
  opacity: 0.9;
  pointer-events: none;
}

.service-card > * {
  position: relative;
}

.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.service-card__art {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(15, 76, 129, 0.1), rgba(211, 166, 73, 0.18));
  display: inline-grid;
  place-items: center;
  font-size: 1.55rem;
  color: var(--primary);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.5rem;
  color: var(--primary);
  font-weight: 800;
}

.service-card__link i {
  font-size: 0.76rem;
}

.feature-list,
.check-list {
  display: grid;
  gap: 0.8rem;
}

.feature-list li,
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text);
}

.feature-list i,
.check-list i {
  color: var(--accent);
  margin-top: 0.25rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.visual-stack {
  display: grid;
  gap: 1.2rem;
}

.visual-card {
  padding: 1.4rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
}

.visual-card--photo {
  padding: 0.85rem;
  background:
    linear-gradient(180deg, rgba(15, 76, 129, 0.16), rgba(211, 166, 73, 0.12)),
    #ffffff;
}

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

.metric {
  padding: 1.25rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.08), rgba(211, 166, 73, 0.14));
}

.metric strong {
  display: block;
  color: var(--primary);
  font-size: 1.75rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.timeline__step {
  position: relative;
  padding: 1.5rem 1.2rem;
  border-radius: 24px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.timeline__step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.7rem;
  width: 1.4rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(15, 76, 129, 0.24), rgba(211, 166, 73, 0.38));
}

.timeline__step:last-child::after {
  display: none;
}

.timeline__number {
  display: inline-grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #1b699f);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(15, 76, 129, 0.08);
  color: var(--primary);
  font-weight: 800;
}

.pill.flag {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 76, 129, 0.1);
  box-shadow: var(--shadow-soft);
}

.country-card {
  padding: 1.4rem;
  display: grid;
  gap: 0.7rem;
}

.country-card__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.45rem;
  height: 3.45rem;
  border-radius: 16px;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.08), rgba(211, 166, 73, 0.16));
  box-shadow: var(--shadow-soft);
}

.country-card__flag img {
  width: 2.1rem;
  height: 2.1rem;
}

.country-card small {
  display: block;
  color: var(--muted);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  height: 100%;
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__photo {
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid rgba(15, 76, 129, 0.08);
  box-shadow: var(--shadow-soft);
}

.testimonial-card__meta strong {
  display: block;
  color: var(--text);
}

.testimonial-card__meta p {
  margin: 0.28rem 0 0;
  color: var(--muted);
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.7;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 76, 129, 0.08);
}

.testimonial-card__author small {
  color: var(--muted);
}

.testimonial-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(211, 166, 73, 0.14);
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.4rem;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  text-align: left;
}

.faq-question i {
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.4rem 1.35rem;
}

.faq-answer[hidden] {
  display: none;
}

.blog-card__meta,
.detail-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-card__meta span,
.detail-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 76, 129, 0.08);
}

.blog-card__image {
  aspect-ratio: 16 / 10;
  margin-bottom: 1.2rem;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(15, 76, 129, 0.72), rgba(211, 166, 73, 0.44)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  position: relative;
  overflow: hidden;
}

.blog-card__image--photo {
  background: #0c3a63;
}

.blog-card__image::before,
.blog-card__image::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.blog-card__image::before {
  width: 11rem;
  height: 11rem;
  background: rgba(255, 255, 255, 0.18);
  top: -4rem;
  right: -3rem;
}

.blog-card__image::after {
  width: 8rem;
  height: 8rem;
  background: rgba(255, 255, 255, 0.14);
  bottom: -2rem;
  left: -2rem;
}

.blog-card__image i {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.94);
  font-size: 3rem;
}

.blog-card__image--photo::before {
  inset: 0;
  width: auto;
  height: auto;
  background: linear-gradient(180deg, rgba(9, 35, 64, 0.04), rgba(9, 35, 64, 0.34));
  z-index: 1;
}

.blog-card__image--photo::after,
.blog-card__image--photo i {
  display: none;
}

.blog-card__image--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band {
  position: relative;
  padding: 2.2rem;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--primary-strong) 0%, #13578e 58%, #1b699f 100%);
  color: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  right: -3rem;
  top: -4rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 166, 73, 0.52), rgba(211, 166, 73, 0));
}

.cta-band__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
}

.content-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1.08fr 0.92fr;
}

.detail-card,
.info-card,
.contact-card {
  padding: 1.55rem;
  border-radius: 24px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.detail-card__meta {
  margin-bottom: 1.1rem;
}

.info-stack {
  display: grid;
  gap: 1rem;
}

.list-columns {
  columns: 2;
  column-gap: 1.4rem;
}

.list-columns li {
  break-inside: avoid;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.list-columns i {
  color: var(--accent);
  margin-top: 0.22rem;
}

.process-points {
  display: grid;
  gap: 1rem;
}

.process-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.process-points strong {
  display: block;
  color: var(--text);
}

.process-points .timeline__number {
  margin-bottom: 0;
}

.form-layout {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 0.88fr;
  align-items: start;
}

.contact-form {
  padding: 1.8rem;
  border-radius: 28px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 76, 129, 0.16);
  background: #ffffff;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(15, 76, 129, 0.34);
  box-shadow: 0 0 0 0.25rem rgba(15, 76, 129, 0.08);
}

textarea {
  min-height: 10rem;
  resize: vertical;
}

.form-feedback {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(211, 166, 73, 0.16);
  color: #5f430a;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.contact-card i {
  color: var(--accent);
  font-size: 1.3rem;
}

.map-frame {
  width: 100%;
  min-height: 24rem;
  border: 0;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  background: rgba(15, 76, 129, 0.08);
  color: var(--primary);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--primary), #1b699f);
  color: #ffffff;
}

.footer {
  position: relative;
  margin-top: 5rem;
  padding: 4.2rem 0 1.4rem;
  background: linear-gradient(180deg, #09233f 0%, #071a2e 100%);
  color: rgba(255, 255, 255, 0.78);
}

.footer a:hover,
.footer a:focus-visible {
  color: #ffffff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
  gap: 1.5rem;
}

.footer h3,
.footer h4 {
  color: #ffffff;
}

.footer .brand__name,
.footer .brand__tag {
  color: rgba(255, 255, 255, 0.82);
}

.footer .brand__mark {
  background: linear-gradient(135deg, var(--accent) 0%, #efc36f 100%);
  color: #17314c;
}

.footer__list {
  display: grid;
  gap: 0.7rem;
}

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
}

.floating-stack {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  display: grid;
  gap: 0.8rem;
  justify-items: end;
}

.floating-button,
.chat-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.6rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  border: 0;
  color: #ffffff;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.floating-button small,
.chat-toggle small {
  font-size: 0.92rem;
}

.floating-button i,
.chat-toggle i {
  font-size: 1.25rem;
}

.floating-button--whatsapp {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.floating-button--call {
  background: linear-gradient(135deg, var(--primary) 0%, #1b699f 100%);
}

.chat-toggle {
  background: linear-gradient(135deg, var(--primary) 0%, #1b699f 100%);
}

.chat-widget {
  width: min(24rem, calc(100vw - 2rem));
  padding: 1.2rem;
  border-radius: 26px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.chat-widget[hidden] {
  display: none;
}

.chat-widget__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.chat-widget__header strong {
  display: block;
  color: var(--text);
}

.chat-widget__bubble {
  padding: 1rem;
  border-radius: 20px 20px 20px 8px;
  background: rgba(15, 76, 129, 0.06);
}

.chat-widget__actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.chat-widget__actions .button {
  flex: 1;
}

.promo-popup[hidden] {
  display: none;
}

.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1.2rem;
}

.promo-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 26, 46, 0.68);
  backdrop-filter: blur(8px);
}

.promo-popup__card {
  position: relative;
  z-index: 1;
  width: min(36rem, calc(100vw - 2rem));
  padding: 2rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(211, 166, 73, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 254, 0.96));
  border: 1px solid rgba(15, 76, 129, 0.14);
  box-shadow: 0 34px 70px rgba(7, 26, 46, 0.24);
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.promo-popup.is-active .promo-popup__card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.promo-popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 76, 129, 0.08);
  color: var(--primary);
}

.promo-popup__card h3 {
  margin: 0.75rem 0 0.8rem;
}

.promo-popup__card p {
  margin: 0;
  color: var(--muted);
}

.promo-popup__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.25rem 0 1.45rem;
}

.promo-popup__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(15, 76, 129, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(211, 166, 73, 0.18), transparent 22%),
    radial-gradient(circle at left 20%, rgba(15, 76, 129, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fbfe 0%, #eef5fb 52%, #f8fbfe 100%);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-preloader__inner {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: min(34rem, calc(100vw - 2rem));
  padding: clamp(0.9rem, 2vw, 1.1rem) clamp(1rem, 2.5vw, 1.4rem);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 255, 0.92)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  border: 1px solid rgba(15, 76, 129, 0.12);
  box-shadow:
    0 24px 55px rgba(9, 35, 64, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: scale(0.8) translateY(1.15rem);
  opacity: 0;
  animation: preloaderWrapIn 0.9s cubic-bezier(0.2, 0.84, 0.24, 1) 0.08s forwards;
}

.site-preloader__glow,
.site-preloader__ring {
  position: absolute;
  border-radius: 50%;
}

.site-preloader__glow {
  width: min(26rem, 72vw);
  height: min(26rem, 72vw);
  background: radial-gradient(circle, rgba(15, 76, 129, 0.18) 0%, rgba(211, 166, 73, 0.12) 34%, rgba(15, 76, 129, 0) 72%);
  filter: blur(10px);
  animation: preloaderGlow 2.8s ease-in-out infinite;
}

.site-preloader__ring {
  width: min(18rem, 50vw);
  height: min(18rem, 50vw);
  border: 1px solid rgba(15, 76, 129, 0.1);
  box-shadow:
    0 0 0 1.15rem rgba(15, 76, 129, 0.04),
    0 0 0 2.25rem rgba(211, 166, 73, 0.05);
  animation: preloaderRingPulse 2.8s ease-in-out infinite;
}

.site-preloader__logo {
  width: min(28rem, 78vw);
  transform: scale(0.84);
  opacity: 0;
  filter: blur(8px) drop-shadow(0 18px 30px rgba(11, 38, 70, 0.12));
  animation: preloaderLogoIn 1.05s cubic-bezier(0.18, 0.84, 0.24, 1) 0.18s forwards;
}

@keyframes preloaderGlow {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes preloaderRingPulse {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes preloaderWrapIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(1.15rem);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes preloaderLogoIn {
  0% {
    transform: scale(0.84);
    opacity: 0;
    filter: blur(8px) drop-shadow(0 18px 30px rgba(11, 38, 70, 0.12));
  }

  100% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0) drop-shadow(0 18px 30px rgba(11, 38, 70, 0.12));
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.muted-panel {
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(15, 76, 129, 0.06);
  border: 1px solid rgba(15, 76, 129, 0.1);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.highlight-card {
  padding: 1.3rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 76, 129, 0.08);
}

.highlight-card strong {
  display: block;
  margin-top: 0.8rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(15, 76, 129, 0.08);
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 800;
}

.country-inline-flag {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 1rem;
  line-height: 1;
}

.country-inline-flag img {
  width: 1rem;
  height: 1rem;
  vertical-align: middle;
}

.divider-space {
  height: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1100px) {
  .hero,
  .page-hero__shell,
  .split-layout,
  .content-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }

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

  .timeline__step::after {
    display: none;
  }

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

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

  .hero-copy-stack {
    min-height: 21rem;
  }

  .hero-showcase {
    min-height: 30rem;
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 940px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    inset: 6.8rem 1rem auto;
    display: grid;
    gap: 1rem;
    max-height: calc(100vh - 8rem);
    padding: 1rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: scale(0.98) translateY(-0.75rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: auto;
  }

  .site-nav.is-open {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-list,
  .site-nav {
    align-items: stretch;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.2rem;
  }

  .nav-list > li {
    width: 100%;
  }

  .has-dropdown {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.45rem;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
  }

  .has-dropdown > .nav-link > i,
  .has-dropdown > .nav-link .fa-chevron-down {
    display: none;
  }

  .nav-cta {
    width: 100%;
  }

  .dropdown-toggle {
    display: inline-grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    margin-right: 0.35rem;
    border: 0;
    border-radius: 50%;
    background: rgba(15, 76, 129, 0.08);
    color: var(--primary);
  }

  .nav-link__text {
    flex: 1;
  }

  .has-dropdown .dropdown {
    position: static;
    grid-column: 1 / -1;
    min-width: 0;
    margin-top: 0.55rem;
    padding: 0.5rem;
    border-radius: 18px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    background: rgba(15, 76, 129, 0.04);
  }

  .has-dropdown.is-open .dropdown {
    display: grid;
  }

  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

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

  .topbar__inner,
  .cta-band__content,
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar__utilities {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    gap: 1.4rem;
  }

  .hero__visual {
    gap: 0.8rem;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.2rem 0;
  }

  .topbar {
    display: none;
  }

  .hero {
    min-height: auto;
    gap: 1rem;
    padding: 1.15rem;
    border-radius: 24px;
  }

  .hero::before,
  .hero::after,
  .hero-slide::after {
    display: none;
  }

  .hero-copy-stack {
    min-height: 29.5rem;
  }

  .hero-copy {
    transition-duration: 0.45s;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
    margin-bottom: 0.75rem;
  }

  .hero__meta {
    gap: 0.55rem;
    margin-bottom: 0.9rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .hero__content p {
    max-width: 100%;
    font-size: 0.94rem;
  }

  .hero__cta {
    margin-top: 1.25rem;
    gap: 0.7rem;
  }

  .hero__cta .button,
  .page-hero__actions .button {
    flex: 1 1 calc(50% - 0.35rem);
    width: auto;
    min-width: 0;
    justify-content: center;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    margin-top: 1.2rem;
  }

  .stat-card {
    padding: 0.95rem 1rem;
  }

  .stat-card strong {
    font-size: 1.2rem;
  }

  .stat-card span {
    font-size: 0.88rem;
  }

  .hero-showcase {
    min-height: 18rem;
  }

  .hero-preview {
    padding: 0.65rem;
    border-radius: 20px;
  }

  .hero-preview__tag {
    padding: 0.45rem 0.7rem;
    font-size: 0.7rem;
  }

  .hero-preview__frame {
    min-height: 11rem;
    margin-top: 0.65rem;
    padding: 0.75rem;
    border-radius: 16px;
  }

  .hero-preview__frame img {
    max-height: 11rem;
  }

  .hero-indicators {
    justify-content: center;
    margin-top: 0.2rem;
  }

  .hero-aside {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .glass-card {
    padding: 1rem;
  }

  .page-hero {
    padding-top: 5.6rem;
  }

  .page-hero__shell,
  .contact-form,
  .cta-band {
    padding: 1.45rem;
    border-radius: 24px;
  }

  .page-hero__actions {
    gap: 0.65rem;
  }

  .hero__stats,
  .hero-aside,
  .grid-2,
  .grid-3,
  .grid-4,
  .timeline,
  .form-grid,
  .contact-grid,
  .metric-grid,
  .footer__grid,
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .list-columns {
    columns: 1;
  }

  .topbar__inner,
  .topbar__links {
    gap: 0.55rem;
  }

  .topbar__links,
  .topbar__socials {
    flex-wrap: wrap;
  }

  .language-switcher {
    width: 100%;
    justify-content: space-between;
  }

  .language-select {
    min-width: 0;
    width: 100%;
  }

  .dropdown--mega {
    grid-template-columns: 1fr;
  }

  .promo-popup__actions {
    grid-template-columns: 1fr;
  }

  .nav-shell {
    margin-top: 0.45rem;
  }

  .nav-wrap {
    min-height: 3.9rem;
    padding-inline: 0.7rem;
  }

  .brand__tag {
    display: none;
  }

  .brand__logo {
    width: min(64vw, 215px);
  }

  .site-nav {
    inset: 4.8rem 0.75rem auto;
    max-height: calc(100vh - 5.5rem);
  }

  .floating-stack {
    right: 0.65rem;
    bottom: 0.65rem;
    gap: 0.55rem;
  }

  .floating-button {
    min-height: 3.05rem;
    padding: 0.65rem 0.85rem;
  }

  .floating-button small,
  .chat-toggle small {
    display: none;
  }

  .site-preloader__inner {
    width: min(30rem, calc(100vw - 1.5rem));
    padding: 0.8rem 0.9rem;
  }

  .site-preloader__ring {
    width: min(14rem, 56vw);
    height: min(14rem, 56vw);
  }

  .site-preloader__glow {
    width: min(18rem, 72vw);
    height: min(18rem, 72vw);
  }

  .site-preloader__logo {
    width: min(22rem, 78vw);
  }

  .promo-popup__card {
    padding: 1.55rem;
  }

  .testimonial-card__author {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 400px) {
  .hero-copy-stack {
    min-height: 31rem;
  }

  .hero__cta .button,
  .page-hero__actions .button {
    flex-basis: 100%;
  }
}
