:root {
  --navy: #061e46;
  --navy-2: #0b2c5c;
  --blue: #1789c9;
  --blue-deep: #0872b4;
  --green: #51af26;
  --green-deep: #378b18;
  --ink: #17233a;
  --muted: #637089;
  --line: #dce7f2;
  --soft: #f3f8fc;
  --soft-blue: #eaf5fb;
  --white: #fff;
  --shadow-sm: 0 10px 30px rgba(6, 30, 70, .08);
  --shadow: 0 24px 65px rgba(6, 30, 70, .14);
  --radius: 20px;
  --radius-sm: 13px;
  --container: 1180px;
  --header-h: 126px;
  --font-head: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 145px;
}

body {
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.whatsapp-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(23, 137, 201, .35);
  outline-offset: 4px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section-sm {
  padding: 78px 0;
}

.bg-soft {
  background: var(--soft);
}

.bg-navy {
  color: var(--white);
  background: var(--navy);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: var(--blue-deep);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 3px;
  border-radius: 10px;
  background: var(--green);
  content: "";
}

.bg-navy .eyebrow,
.cta-panel .eyebrow {
  color: #8dd9ff;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(42px, 5.5vw, 74px);
}

h2 {
  font-size: clamp(31px, 4vw, 50px);
}

h3 {
  font-size: 21px;
}

p + p {
  margin-top: 14px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading p,
.lead {
  color: var(--muted);
  font-size: 16px;
}

.bg-navy h2,
.bg-navy h3,
.bg-navy p {
  color: var(--white);
}

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

.btn {
  position: relative;
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn::after {
  position: absolute;
  top: -120%;
  left: -30%;
  width: 45%;
  height: 340%;
  transform: rotate(24deg);
  background: rgba(255, 255, 255, .28);
  content: "";
  transition: left .55s ease;
}

.btn:hover {
  transform: translateY(-3px);
  background: var(--blue-deep);
  box-shadow: 0 16px 35px rgba(23, 137, 201, .28);
}

.btn:hover::after {
  left: 120%;
}

.btn i,
.btn span {
  position: relative;
  z-index: 1;
}

.btn-green {
  background: var(--green);
}

.btn-green:hover {
  background: var(--green-deep);
  box-shadow: 0 16px 35px rgba(81, 175, 38, .25);
}

.btn-outline {
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.btn-light:hover {
  background: #eff8ff;
  color: var(--blue-deep);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.justify-center {
  justify-content: center;
}

.mt-22 {
  margin-top: 22px;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  transition: box-shadow .3s ease, transform .3s ease;
}

.top-strip {
  height: 34px;
  background: var(--navy);
  color: #e5f4ff;
  font-size: 12px;
}

.top-strip .container {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-contact,
.top-note {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-contact a,
.top-note span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.top-contact a:hover {
  color: #8dd9ff;
}

.nav-shell {
  height: 92px;
  border-bottom: 1px solid rgba(6, 30, 70, .08);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(16px);
  transition: height .3s ease, box-shadow .3s ease;
}

.site-header.scrolled .nav-shell {
  height: 80px;
  box-shadow: 0 12px 35px rgba(6, 30, 70, .1);
}

.nav-shell .container {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  position: relative;
  z-index: 3;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 188px;
  height: 98px;
  object-fit: contain;
  transition: width .3s ease, height .3s ease;
}

.site-header.scrolled .brand img {
  width: 164px;
  height: 68px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 29px;
}

.nav-link {
  position: relative;
  padding: 12px 0;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  border-radius: 10px;
  background: var(--green);
  content: "";
  transition: transform .25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-deep);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 46px;
  padding: 11px 17px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--soft);
  color: var(--navy);
  cursor: pointer;
}

.menu-lines {
  position: relative;
  width: 22px;
  height: 16px;
}

.menu-lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background: currentColor;
  transition: top .25s ease, transform .25s ease, opacity .2s ease;
}

.menu-lines span:nth-child(1) { top: 0; }
.menu-lines span:nth-child(2) { top: 7px; }
.menu-lines span:nth-child(3) { top: 14px; }

.menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.mobile-menu,
.menu-backdrop {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 830px;
  align-items: center;
  overflow: hidden;
  padding: 190px 0 90px;
  background: linear-gradient(90deg, rgba(3, 23, 54, .94) 0%, rgba(3, 23, 54, .78) 47%, rgba(3, 23, 54, .28) 100%), url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=2000&q=88") center/cover no-repeat;
  color: var(--white);
}

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

.hero::before {
  top: 22%;
  right: -80px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, .22);
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  right: 10%;
  bottom: -160px;
  width: 430px;
  height: 430px;
  background: rgba(81, 175, 38, .14);
  filter: blur(2px);
  animation: float 10s ease-in-out infinite reverse;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 785px;
}

.hero .eyebrow {
  color: #91dfff;
}

.hero h1 {
  max-width: 830px;
  color: var(--white);
  text-wrap: balance;
}

.hero-copy {
  max-width: 690px;
  margin: 23px 0 30px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 38px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #f2f8fc;
  font-size: 12px;
  backdrop-filter: blur(8px);
}

.trust-chip i {
  color: #80d45f;
}

.hero-side-card {
  position: absolute;
  z-index: 2;
  right: max(20px, calc((100vw - var(--container)) / 2));
  bottom: 72px;
  width: 305px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  background: rgba(5, 32, 72, .68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-side-card .mini-title {
  margin-bottom: 5px;
  color: #91dfff;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-side-card strong {
  display: block;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 19px;
}

.hero-side-card p {
  margin-top: 7px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}

.hero-side-line {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
}

.hero-side-line + .hero-side-line {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.hero-side-line i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: rgba(81, 175, 38, .18);
  color: #82dc60;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 510px;
  align-items: center;
  overflow: hidden;
  padding: 185px 0 82px;
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 23, 54, .94), rgba(3, 23, 54, .68) 62%, rgba(3, 23, 54, .25));
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 850px;
  color: var(--white);
  font-size: clamp(39px, 5vw, 64px);
}

.page-hero p {
  max-width: 660px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
}

.hero-about { background-image: url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=2000&q=88"); }
.hero-services { background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=2000&q=88"); }
.hero-opportunities { background-image: url("../images/image.png"); }
.hero-contact { background-image: url("https://images.unsplash.com/photo-1521791055366-0d553872125f?auto=format&fit=crop&w=2000&q=88"); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 19px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.breadcrumb a:hover {
  color: #8dd9ff;
}

/* Content layouts */
.split {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 70px;
  align-items: center;
}

.split.reverse > :first-child {
  order: 2;
}

.split-content h2 {
  margin-bottom: 21px;
}

.split-content p {
  color: var(--muted);
}

.split-content .btn-row {
  margin-top: 27px;
}

.visual-stack {
  position: relative;
  min-height: 510px;
}

.visual-main {
  width: calc(100% - 72px);
  height: 480px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.visual-main img,
.image-frame img,
.country-image img,
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.visual-main:hover img,
.image-frame:hover img,
.country-card:hover .country-image img,
.service-detail:hover .service-image img {
  transform: scale(1.05);
}

.visual-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 210px;
  height: 215px;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.visual-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-badge {
  position: absolute;
  top: 26px;
  right: 8px;
  max-width: 200px;
  padding: 15px 17px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.visual-badge i {
  margin-right: 7px;
  color: #8edc6d;
}

.visual-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
}

.visual-badge span {
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
}

.check-list,
.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  list-style: none;
}

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

.check-list li,
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--ink);
  font-weight: 650;
}

.check-list i,
.feature-list i {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(81, 175, 38, .13);
  color: var(--green-deep);
  font-size: 10px;
}

.stats-strip {
  position: relative;
  z-index: 4;
  margin-top: -58px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.stat {
  position: relative;
  padding: 26px 24px;
}

.stat + .stat::before {
  position: absolute;
  top: 25%;
  bottom: 25%;
  left: 0;
  width: 1px;
  background: var(--line);
  content: "";
}

.stat strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 28px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

/* Cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.value-card,
.category-card,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 35px rgba(6, 30, 70, .055);
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}

.service-card {
  min-height: 275px;
  padding: 26px 24px;
}

.service-card::before {
  position: absolute;
  top: -54px;
  right: -54px;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: var(--soft-blue);
  content: "";
  transition: transform .45s ease, background .45s ease;
}

.service-card:hover,
.value-card:hover,
.category-card:hover,
.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(23, 137, 201, .32);
  box-shadow: var(--shadow-sm);
}

.service-card:hover::before {
  transform: scale(1.25);
  background: rgba(81, 175, 38, .12);
}

.icon-box {
  position: relative;
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 23px;
  border-radius: 15px;
  background: var(--navy);
  color: var(--white);
  font-size: 20px;
  box-shadow: 0 12px 24px rgba(6, 30, 70, .16);
  transition: transform .3s ease, background .3s ease;
}

.service-card:hover .icon-box,
.value-card:hover .icon-box {
  transform: rotate(-5deg) scale(1.06);
  background: var(--blue);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.service-card p {
  color: var(--muted);
  font-size: 13px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  color: var(--blue-deep);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
}

.card-link i {
  transition: transform .25s ease;
}

.card-link:hover i {
  transform: translateX(5px);
}

.network-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.network-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.network-panel.dark {
  border-color: transparent;
  background: var(--navy);
  color: var(--white);
}

.network-panel h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.network-panel.dark h3 {
  color: var(--white);
}

.network-panel > p {
  color: var(--muted);
  font-size: 13px;
}

.network-panel.dark > p {
  color: rgba(255, 255, 255, .66);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.location-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--soft);
  font-weight: 700;
}

.dark .location-pill {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .07);
}

.location-pill i {
  color: var(--green);
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}

.country-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}

.country-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.country-image {
  height: 200px;
  overflow: hidden;
}

.country-content {
  padding: 17px 18px 20px;
}

.country-content h3 {
  margin-bottom: 7px;
  font-size: 18px;
}

.country-content p {
  color: var(--muted);
  font-size: 12px;
}

.country-content .card-link {
  margin-top: 12px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-card {
  display: flex;
  min-height: 150px;
  align-items: flex-start;
  gap: 16px;
  padding: 23px;
}

.category-card .icon-box {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  margin: 0;
  border-radius: 13px;
  background: var(--soft-blue);
  color: var(--blue-deep);
  box-shadow: none;
  font-size: 17px;
}

.category-card h3 {
  margin-bottom: 7px;
  font-size: 16px;
}

.category-card p {
  color: var(--muted);
  font-size: 12px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.process-step {
  position: relative;
  min-height: 220px;
  padding: 25px 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  transition: transform .3s ease, border-color .3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(23, 137, 201, .35);
}

.process-step:not(:last-child)::after {
  position: absolute;
  z-index: 3;
  top: 42px;
  right: -22px;
  width: 29px;
  border-top: 1px dashed rgba(23, 137, 201, .45);
  content: "";
}

.step-number {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--blue);
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.process-step h3 {
  margin-bottom: 8px;
  font-size: 16px;
}

.process-step p {
  color: var(--muted);
  font-size: 12px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .12);
}

.why-item {
  min-height: 190px;
  padding: 27px 24px;
  background: #092653;
  transition: background .3s ease;
}

.why-item:hover {
  background: #0c326b;
}

.why-item i {
  margin-bottom: 20px;
  color: #83dd62;
  font-size: 25px;
}

.why-item h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 16px;
}

.why-item p {
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
}

.dual-cta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.cta-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 42px;
  border-radius: 22px;
  background-position: center;
  background-size: cover;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.cta-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 27, 62, .94), rgba(4, 27, 62, .52));
  content: "";
}

.cta-card > div {
  position: relative;
  z-index: 2;
  max-width: 430px;
}

.cta-card.employer { background-image: url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1200&q=85"); }
.cta-card.candidate { background-image: url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1200&q=85"); }

.cta-card h2 {
  margin-bottom: 13px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 39px);
}

.cta-card p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .74);
}

/* About */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.mission-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 36px;
  border-radius: 21px;
  background: var(--navy);
  color: var(--white);
}

.mission-card:nth-child(2) {
  background: var(--blue-deep);
}

.mission-card::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  content: "";
}

.mission-card i {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  margin-bottom: 45px;
  border-radius: 15px;
  background: rgba(255, 255, 255, .1);
  color: #8fdd71;
  font-size: 22px;
}

.mission-card h2 {
  margin-bottom: 13px;
  color: var(--white);
  font-size: 30px;
}

.mission-card p {
  max-width: 490px;
  color: rgba(255, 255, 255, .72);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card {
  padding: 29px;
}

.value-card .icon-box {
  width: 49px;
  height: 49px;
}

.value-card h3 {
  margin-bottom: 9px;
  font-size: 18px;
}

.value-card p {
  color: var(--muted);
  font-size: 13px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.audience-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.audience-card h3 {
  margin-bottom: 9px;
  font-size: 25px;
}

.audience-card > p {
  color: var(--muted);
}

/* Services details */
.service-detail-list {
  display: grid;
  gap: 30px;
}

.service-detail {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-detail:nth-child(even) {
  grid-template-columns: 1.18fr .82fr;
}

.service-detail:nth-child(even) .service-image {
  order: 2;
}

.service-image {
  min-height: 440px;
  overflow: hidden;
}

.service-copy {
  padding: 43px;
}

.service-copy .icon-box {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.service-copy h2 {
  margin-bottom: 14px;
  font-size: 31px;
}

.service-copy > p {
  color: var(--muted);
}

.service-copy .check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.service-copy .check-list li {
  font-size: 12px;
}

.service-copy .btn {
  margin-top: 25px;
}

/* Opportunities */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.destination-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 20px;
  background-position: center;
  background-size: cover;
  color: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}

.destination-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.destination-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 23, 54, .96), rgba(3, 23, 54, .1) 72%);
  content: "";
}

.destination-card > div {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 25px;
}

.destination-card h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 22px;
}

.destination-card p {
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
}

.destination-uae { background-image: url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1000&q=85"); }
.destination-saudi {   background-image: url('../images/ss.png'); }
.destination-qatar { background-image: url("https://images.unsplash.com/photo-1683194247996-43897678c94c?auto=format&fit=crop&w=1000&q=85"); }
.destination-bahrain { background-image: url("https://images.unsplash.com/photo-1611331225468-4d1055df92de?auto=format&fit=crop&w=1000&q=85"); }
.destination-oman { background-image: url("https://images.unsplash.com/photo-1512632578888-169bbbc64f33?auto=format&fit=crop&w=1000&q=85"); }
.destination-kuwait { background-image: url("https://images.unsplash.com/photo-1663000857411-b339585c938b?auto=format&fit=crop&w=1000&q=85"); }

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 750;
  box-shadow: 0 7px 20px rgba(6, 30, 70, .045);
}

.industry-tag i {
  color: var(--blue);
}

.europe-list {
  display: grid;
  gap: 24px;
}

.europe-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.europe-card:nth-child(even) {
  grid-template-columns: 1fr 360px;
}

.europe-card:nth-child(even) .europe-image {
  order: 2;
}

.europe-image {
  min-height: 310px;
  overflow: hidden;
}

.europe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.europe-card:hover .europe-image img {
  transform: scale(1.05);
}

.europe-copy {
  padding: 34px;
}

.europe-copy h3 {
  margin-bottom: 10px;
  font-size: 27px;
}

.europe-copy > p {
  color: var(--muted);
}

.europe-copy .check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.europe-copy .check-list li {
  font-size: 12px;
}

.disclaimer {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 19px;
  padding: 25px;
  border: 1px solid rgba(23, 137, 201, .22);
  border-left: 4px solid var(--blue);
  border-radius: 15px;
  background: var(--soft-blue);
}

.disclaimer i {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border-radius: 14px;
  background: var(--white);
  color: var(--blue-deep);
}

.disclaimer h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

.disclaimer p {
  color: var(--muted);
  font-size: 13px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: start;
}

.contact-form-wrap {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h2 {
  margin-bottom: 9px;
  font-size: 31px;
}

.contact-form-wrap > p {
  margin-bottom: 27px;
  color: var(--muted);
}

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

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

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 49px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  background: #fbfdff;
  color: var(--ink);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.field textarea {
  min-height: 135px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(23, 137, 201, .1);
}

.form-status {
  display: none;
  margin-bottom: 16px;
  padding: 11px 13px;
  border-radius: 9px;
  background: #fff1f1;
  color: #a42b2b;
  font-size: 12px;
}

.form-status.show {
  display: block;
}

.contact-side {
  display: grid;
  gap: 15px;
}

.contact-card {
  display: grid;
  grid-template-columns: 53px 1fr;
  gap: 16px;
  align-items: center;
  padding: 21px;
}

.contact-card .icon-box {
  width: 53px;
  height: 53px;
  margin: 0;
  border-radius: 14px;
}

.contact-card h3 {
  margin-bottom: 4px;
  font-size: 15px;
}

.contact-card p,
.contact-card a {
  color: var(--muted);
  font-size: 13px;
}

.contact-card a:hover {
  color: var(--blue-deep);
}

.office-card {
  padding: 29px;
  border-radius: 20px;
  background: var(--navy);
  color: var(--white);
}

.office-card h3 {
  margin-bottom: 11px;
  color: var(--white);
  font-size: 21px;
}

.office-card p {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.office-card .btn {
  margin-top: 19px;
}

.map-placeholder {
  position: relative;
  display: grid;
  min-height: 390px;
  overflow: hidden;
  place-items: center;
  padding: 30px;
  border-radius: 22px;
  background: linear-gradient(rgba(6, 30, 70, .72), rgba(6, 30, 70, .72)), url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1600&q=82") center/cover;
  color: var(--white);
  text-align: center;
}

.map-placeholder i {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--green);
  font-size: 27px;
  box-shadow: 0 0 0 12px rgba(81, 175, 38, .18);
}

.map-placeholder h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 31px;
}

.map-placeholder p {
  max-width: 590px;
  color: rgba(255, 255, 255, .75);
}

/* FAQ */
.faq-wrap {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 65px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 160px;
}

.faq-intro h2 {
  margin-bottom: 17px;
}

.faq-intro p {
  margin-bottom: 24px;
  color: var(--muted);
}

.accordion {
  display: grid;
  gap: 11px;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.accordion-item.open {
  border-color: rgba(23, 137, 201, .32);
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  display: flex;
  width: 100%;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
}

.accordion-button i {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--blue-deep);
  transition: transform .3s ease, background .3s ease;
}

.accordion-item.open .accordion-button i {
  transform: rotate(45deg);
  background: var(--blue);
  color: var(--white);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.accordion-panel p {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 13px;
}

/* Final CTA and footer */
.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border-radius: 25px;
  background: linear-gradient(120deg, var(--navy), #0b4487);
  color: var(--white);
  box-shadow: var(--shadow);
}

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

.cta-panel::before {
  top: -120px;
  right: 6%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, .13);
}

.cta-panel::after {
  right: -65px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  background: rgba(81, 175, 38, .15);
}

.cta-panel-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-panel h2 {
  max-width: 690px;
  margin-bottom: 12px;
  color: var(--white);
}

.cta-panel p {
  max-width: 670px;
  color: rgba(255, 255, 255, .72);
}

.cta-panel .btn-row {
  flex: 0 0 auto;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: 76px;
  background: #041631;
  color: rgba(255, 255, 255, .7);
}

.site-footer::before {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 50%;
  content: "";
}

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr .75fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 56px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 17px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.footer-about p {
  max-width: 350px;
  font-size: 13px;
}

.footer-social {
  display: flex;
  gap: 9px;
  margin-top: 20px;
}

.social-placeholder {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  color: rgba(255, 255, 255, .65);
}

.footer-title {
  margin-bottom: 20px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
}

.footer-links {
  display: grid;
  gap: 10px;
  list-style: none;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
  transform: translateX(4px);
  color: #8dd9ff;
}

.footer-links i {
  color: var(--green);
  font-size: 9px;
}

.footer-contact {
  display: grid;
  gap: 13px;
}

.footer-contact a,
.footer-contact p {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 12px;
}

.footer-contact i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  color: #8dd9ff;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 11px;
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  z-index: 1200;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  cursor: pointer;
  font-size: 28px;
  box-shadow: 0 14px 35px rgba(10, 103, 44, .34);
  transition: transform .25s ease;
}

.whatsapp-float::before,
.whatsapp-float::after {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(37, 211, 102, .45);
  border-radius: 50%;
  content: "";
  animation: ripple 2s ease-out infinite;
}

.whatsapp-float::after {
  animation-delay: 1s;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.04);
}

.whatsapp-tooltip {
  position: absolute;
  right: 74px;
  width: max-content;
  padding: 8px 11px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity .25s ease, transform .25s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-panel {
  position: fixed;
  z-index: 1300;
  right: 24px;
  bottom: 99px;
  width: min(370px, calc(100vw - 30px));
  overflow: hidden;
  border-radius: 19px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(4, 22, 49, .28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(.97);
  transform-origin: bottom right;
  transition: opacity .25s ease, transform .25s ease;
}

.whatsapp-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.wa-head {
  position: relative;
  padding: 24px;
  background: linear-gradient(135deg, #116f36, #25a955);
  color: var(--white);
}

.wa-head h3 {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 20px;
}

.wa-head p {
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
}

.wa-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: var(--white);
  cursor: pointer;
}

.wa-body {
  display: grid;
  gap: 8px;
  padding: 15px;
}

.wa-option {
  display: grid;
  grid-template-columns: 41px 1fr 18px;
  gap: 11px;
  align-items: center;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--white);
  color: var(--navy);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.wa-option:hover {
  transform: translateX(3px);
  border-color: rgba(37, 211, 102, .38);
  background: #f4fff8;
}

.wa-option > i:first-child {
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  border-radius: 11px;
  background: rgba(37, 211, 102, .11);
  color: #159348;
}

.wa-option strong {
  display: block;
  font-family: var(--font-head);
  font-size: 12px;
}

.wa-option span {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.wa-option > i:last-child {
  color: #9aa8b7;
  font-size: 10px;
}

.back-to-top {
  position: fixed;
  z-index: 900;
  right: 31px;
  bottom: 98px;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22, .61, .36, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22, .61, .36, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22, .61, .36, 1);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

.delay-1 { transition-delay: .09s; }
.delay-2 { transition-delay: .18s; }
.delay-3 { transition-delay: .27s; }
.delay-4 { transition-delay: .36s; }

.hero-animate {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn .75s ease forwards;
}

.hero-animate:nth-child(2) { animation-delay: .12s; }
.hero-animate:nth-child(3) { animation-delay: .23s; }
.hero-animate:nth-child(4) { animation-delay: .34s; }
.hero-animate:nth-child(5) { animation-delay: .45s; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ripple {
  0% { opacity: .8; transform: scale(.8); }
  100% { opacity: 0; transform: scale(1.35); }
}

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

@media (max-width: 1080px) {
  .desktop-nav { gap: 17px; }
  .header-cta { display: none; }
  .hero-side-card { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .country-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-step:not(:last-child)::after { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr .8fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  :root { --header-h: 82px; }
  html { scroll-padding-top: 100px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 82px 0; }
  .section-sm { padding: 62px 0; }
  .top-strip,
  .desktop-nav { display: none; }
  .nav-shell,
  .site-header.scrolled .nav-shell { height: 82px; }
  .brand img,
  .site-header.scrolled .brand img { width: 156px; height: 70px; }
  .menu-toggle { display: flex; }
  .menu-backdrop {
    position: fixed;
    z-index: 998;
    inset: 0;
    display: block;
    background: rgba(3, 19, 45, .55);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(3px);
    transition: opacity .3s ease;
  }
  .menu-backdrop.open { opacity: 1; pointer-events: auto; }
  .mobile-menu {
    position: fixed;
    z-index: 999;
    top: 82px;
    right: 0;
    display: flex;
    width: min(390px, 88vw);
    height: calc(100dvh - 82px);
    flex-direction: column;
    overflow-y: auto;
    padding: 22px;
    background: var(--white);
    box-shadow: -20px 30px 60px rgba(3, 19, 45, .2);
    transform: translateX(105%);
    transition: transform .35s cubic-bezier(.22, .61, .36, 1);
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu .nav-link {
    width: 100%;
    padding: 15px 3px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }
  .mobile-menu .nav-link::after { display: none; }
  .mobile-menu .btn { width: 100%; margin-top: 22px; }
  .mobile-contact {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 30px;
    color: var(--muted);
    font-size: 12px;
  }
  .mobile-contact a { display: flex; align-items: center; gap: 8px; }
  .hero { min-height: 790px; padding: 150px 0 80px; background-position: 62% center; }
  .hero::before { display: none; }
  .hero h1 { font-size: clamp(39px, 10.5vw, 58px); }
  .hero-copy { font-size: 16px; }
  .page-hero { min-height: 450px; padding: 148px 0 70px; }
  .stats-strip { margin-top: -30px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before { display: none; }
  .split,
  .contact-grid,
  .faq-wrap { grid-template-columns: 1fr; gap: 45px; }
  .split.reverse > :first-child { order: initial; }
  .visual-stack { min-height: 450px; }
  .visual-main { height: 420px; }
  .network-wrap,
  .mission-grid,
  .audience-grid,
  .dual-cta { grid-template-columns: 1fr; }
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail,
  .service-detail:nth-child(even),
  .europe-card,
  .europe-card:nth-child(even) { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-image,
  .europe-card:nth-child(even) .europe-image { order: initial; }
  .service-image { min-height: 330px; }
  .destination-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-intro { position: static; }
  .cta-panel { padding: 43px 34px; }
  .cta-panel-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 38px; }
  .footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  body { font-size: 14px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 69px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading p,
  .lead { font-size: 14px; }
  h2 { font-size: 30px; }
  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; }
  .hero { min-height: 770px; padding: 132px 0 60px; }
  .hero h1 { font-size: 39px; }
  .hero-copy { margin: 19px 0 25px; font-size: 14px; }
  .trust-row { margin-top: 28px; gap: 7px; }
  .trust-chip { padding: 7px 10px; font-size: 10px; }
  .page-hero { min-height: 420px; padding: 130px 0 55px; }
  .page-hero h1 { font-size: 37px; }
  .page-hero p { font-size: 14px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 20px 15px; }
  .stat strong { font-size: 23px; }
  .stat span { font-size: 10px; }
  .service-grid,
  .category-grid,
  .process-grid,
  .why-grid,
  .country-grid,
  .destination-grid,
  .value-grid { grid-template-columns: 1fr; }
  .why-grid { gap: 1px; }
  .service-card { min-height: auto; }
  .visual-stack { min-height: 390px; }
  .visual-main { width: calc(100% - 30px); height: 365px; }
  .visual-small { width: 150px; height: 155px; border-width: 5px; }
  .visual-badge { top: 15px; right: 0; max-width: 165px; }
  .check-list.two-col,
  .service-copy .check-list,
  .europe-copy .check-list { grid-template-columns: 1fr; }
  .network-panel,
  .mission-card,
  .audience-card { padding: 25px 21px; }
  .location-grid { grid-template-columns: 1fr; }
  .country-image { height: 230px; }
  .cta-card { min-height: 350px; padding: 30px 24px; }
  .service-copy,
  .europe-copy { padding: 27px 21px; }
  .service-image,
  .europe-image { min-height: 260px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .contact-form-wrap { padding: 27px 20px; }
  .map-placeholder { min-height: 420px; }
  .cta-panel { padding: 38px 23px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 57px; height: 57px; }
  .whatsapp-panel { right: 15px; bottom: 85px; }
  .back-to-top { right: 23px; bottom: 84px; }
  .whatsapp-tooltip { display: none; }
}

@media (max-width: 360px) {
  .brand img,
  .site-header.scrolled .brand img { width: 142px; }
  .hero h1 { font-size: 35px; }
  .trust-chip { width: 100%; justify-content: center; }
  .stat { padding-inline: 10px; }
  .cta-panel h2 { font-size: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal,
  .reveal-left,
  .reveal-right { opacity: 1; transform: none; }
}
