:root {
  --black: #050608;
  --matte: #0b0d10;
  --ink: #11151c;
  --navy: #071b34;
  --navy-2: #0d2747;
  --gold: #d6a84f;
  --gold-light: #f6d990;
  --gold-deep: #7d5a1d;
  --white: #ffffff;
  --text: #f4f1ea;
  --muted: #b9bfcb;
  --line: rgba(246, 217, 144, 0.22);
  --glass: rgba(255, 255, 255, 0.065);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --gold-metal: linear-gradient(135deg, #fff2b8 0%, #d8a94d 35%, #8a641f 58%, #f7da8a 100%);
  --navy-metal: linear-gradient(135deg, #081b34 0%, #12365f 54%, #061120 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(7, 27, 52, 0.74), rgba(5, 6, 8, 0) 34%),
    linear-gradient(180deg, #050608 0%, #090b0f 48%, #030406 100%);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

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

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

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px 18px;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.72), rgba(5, 6, 8, 0.12));
  backdrop-filter: blur(16px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.navbar.is-scrolled,
.navbar.is-open {
  border-color: rgba(246, 217, 144, 0.2);
  background: rgba(5, 7, 10, 0.92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--white);
}

.brand img,
.footer-brand img {
  width: 44px;
  height: 44px;
  padding: 1px;
  border: 1px solid rgba(246, 217, 144, 0.72);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: #050608;
  box-shadow: 0 0 28px rgba(216, 169, 77, 0.28);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--gold-light);
  border: 1px solid rgba(246, 217, 144, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.nav-toggle .lucide {
  width: 20px;
  height: 20px;
}

.nav-links {
  position: absolute;
  top: calc(100% + 10px);
  left: 18px;
  right: 18px;
  display: grid;
  gap: 4px;
  max-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  background: rgba(5, 7, 10, 0.96);
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 260ms ease, padding 260ms ease, opacity 220ms ease, transform 220ms ease;
}

.nav-links.is-open {
  max-height: 330px;
  padding: 10px;
  border-color: rgba(246, 217, 144, 0.18);
  opacity: 1;
  transform: translateY(0);
}

.nav-links a {
  position: relative;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.nav-links a::after {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 1px;
  content: "";
  background: var(--gold-metal);
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-light);
  text-shadow: 0 0 18px rgba(246, 217, 144, 0.42);
  outline: none;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.section {
  position: relative;
  padding: 76px 18px;
}

.section-glow::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, rgba(216, 169, 77, 0.13), transparent 28%),
    linear-gradient(250deg, rgba(10, 44, 82, 0.42), transparent 44%);
}

.hero {
  display: grid;
  align-items: center;
  min-height: 84svh;
  padding: 84px 18px 22px;
  isolation: isolate;
}

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

.hero::before {
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.42), rgba(5, 6, 8, 0.94)),
    linear-gradient(120deg, rgba(214, 168, 79, 0.18), rgba(7, 27, 52, 0.24), transparent 72%);
}

.hero::after {
  right: -22%;
  bottom: 9%;
  z-index: -1;
  width: 72%;
  height: 32%;
  border-top: 1px solid rgba(246, 217, 144, 0.24);
  border-left: 1px solid rgba(246, 217, 144, 0.16);
  transform: skewX(-18deg);
  background: linear-gradient(120deg, rgba(246, 217, 144, 0.1), rgba(7, 27, 52, 0.18), transparent);
  filter: blur(0.1px);
}

.tech-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(246, 217, 144, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(246, 217, 144, 0.075) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
  opacity: 0.48;
}

.constellation {
  position: absolute;
  inset: 22% 8% auto auto;
  z-index: -1;
  width: 220px;
  height: 180px;
  pointer-events: none;
  opacity: 0.65;
}

.constellation::before,
.constellation::after {
  position: absolute;
  content: "";
  border-top: 1px solid rgba(246, 217, 144, 0.35);
  transform-origin: left center;
}

.constellation::before {
  top: 54px;
  left: 22px;
  width: 150px;
  transform: rotate(22deg);
}

.constellation::after {
  top: 126px;
  left: 72px;
  width: 115px;
  transform: rotate(-32deg);
}

.constellation span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 18px rgba(246, 217, 144, 0.72);
}

.constellation span:nth-child(1) {
  top: 48px;
  left: 18px;
}

.constellation span:nth-child(2) {
  top: 92px;
  left: 172px;
}

.constellation span:nth-child(3) {
  top: 128px;
  left: 70px;
}

.constellation span:nth-child(4) {
  top: 64px;
  right: 4px;
}

.hero-content {
  width: min(100%, 920px);
  margin: 0 auto;
  text-align: center;
}

.market-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(246, 217, 144, 0.28);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 700;
}

.flag-chip {
  width: 22px;
  height: 14px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.flag-us {
  background:
    linear-gradient(90deg, #1f3b78 0 42%, transparent 42%),
    repeating-linear-gradient(180deg, #b22234 0 2px, #ffffff 2px 4px);
}

.flag-jo {
  background:
    linear-gradient(135deg, #c8102e 0 34%, transparent 34%),
    linear-gradient(180deg, #000000 0 33%, #ffffff 33% 66%, #007a3d 66%);
}

.gold-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(216, 169, 77, 0.8);
}

.hero-logo {
  width: 160px;
  aspect-ratio: 1;
  margin: 16px auto 16px;
  border: 1px solid rgba(246, 217, 144, 0.45);
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 6px rgba(246, 217, 144, 0.04),
    0 0 52px rgba(216, 169, 77, 0.35),
    var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--white);
  line-height: 1.06;
}

h1 {
  max-width: 860px;
  margin: 0 auto;
  font-size: 2.35rem;
  font-weight: 800;
  text-wrap: balance;
  text-shadow: 0 0 44px rgba(216, 169, 77, 0.22);
}

.hero-subtitle {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(100%, 420px);
  margin: 22px auto 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn .lucide {
  width: 18px;
  height: 18px;
}

.btn-primary {
  color: #100b02;
  border: 1px solid rgba(246, 217, 144, 0.7);
  background: var(--gold-metal);
  box-shadow: 0 14px 36px rgba(216, 169, 77, 0.32);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(246, 217, 144, 0.34);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

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

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 46px rgba(216, 169, 77, 0.43);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(246, 217, 144, 0.58);
  background: rgba(246, 217, 144, 0.09);
}

.section-header {
  width: min(100%, 780px);
  margin: 0 auto 34px;
  text-align: center;
}

.section.about {
  padding-top: 20px;
}

.section-header h2 {
  margin-bottom: 14px;
  font-size: 2rem;
  font-weight: 800;
  text-wrap: balance;
}

.section-header p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

.about-grid,
.service-grid,
.testimonial-grid,
.contact-grid {
  display: grid;
  gap: 18px;
  width: min(100%, 1140px);
  margin: 0 auto;
  grid-template-columns: 1fr;
}

.feature-card,
.service-card,
.tech-category,
.testimonial-card,
.contact-form,
.contact-card {
  position: relative;
  border: 1px solid rgba(246, 217, 144, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(7, 14, 24, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.feature-card,
.service-card,
.testimonial-card,
.contact-form {
  padding: 24px;
}

.feature-card::before,
.service-card::before,
.tech-category::before,
.testimonial-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(246, 217, 144, 0.18), transparent 42%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.feature-card:hover::before,
.service-card:hover::before,
.tech-category:hover::before,
.testimonial-card:hover::before {
  opacity: 1;
}

.feature-card {
  min-height: 232px;
}

.feature-card .lucide,
.testimonial-card > .lucide {
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  color: var(--gold-light);
}

.feature-card h3,
.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.feature-card p,
.service-card p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.7;
}

.service-card {
  min-height: 300px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(246, 217, 144, 0.46);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(8, 21, 37, 0.74);
}

.icon-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border: 1px solid rgba(246, 217, 144, 0.36);
  border-radius: 50%;
  color: var(--gold-light);
  background: radial-gradient(circle at 30% 30%, rgba(246, 217, 144, 0.28), rgba(7, 27, 52, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 16px 32px rgba(0, 0, 0, 0.28);
}

.icon-ring .lucide {
  width: 25px;
  height: 25px;
}

.service-card a {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  color: var(--gold-light);
  font-weight: 800;
}

.service-card a .lucide {
  width: 17px;
  height: 17px;
}

.why {
  padding-top: 30px;
  padding-bottom: 30px;
}

.stats-panel {
  display: grid;
  gap: 1px;
  width: min(100%, 1140px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(246, 217, 144, 0.22);
  border-radius: 8px;
  background: rgba(246, 217, 144, 0.16);
  box-shadow: var(--shadow);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat {
  display: grid;
  place-items: center;
  min-height: 132px;
  padding: 22px 14px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(7, 27, 52, 0.62), rgba(5, 6, 8, 0.92)),
    var(--matte);
}

.stat strong {
  color: transparent;
  background: var(--gold-metal);
  background-clip: text;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

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

.tech-category {
  padding: 28px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.tech-category:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 217, 144, 0.4);
}

.tech-categories {
  display: grid;
  gap: 18px;
  width: min(100%, 1140px);
  margin: 0 auto;
  grid-template-columns: 1fr;
}

.tech-category-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.tech-category-header .icon-ring {
  width: 46px;
  height: 46px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.tech-category-header .icon-ring .lucide {
  width: 20px;
  height: 20px;
}

.tech-category-header span {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tags span {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border: 1px solid rgba(246, 217, 144, 0.22);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  background: rgba(246, 217, 144, 0.05);
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease;
}

.tech-tags span:hover {
  border-color: rgba(246, 217, 144, 0.52);
  color: var(--gold-light);
  background: rgba(246, 217, 144, 0.1);
}

.testimonial-card {
  min-height: 292px;
}

.testimonial-card p {
  margin-bottom: 24px;
  font-size: 0.97rem;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  margin-bottom: 4px;
  color: var(--white);
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-grid {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--gold-light);
  font-size: 0.83rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  color: var(--white);
  border: 1px solid rgba(246, 217, 144, 0.18);
  border-radius: 6px;
  background: rgba(5, 6, 8, 0.58);
  outline: none;
  padding: 12px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(244, 241, 234, 0.46);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(246, 217, 144, 0.58);
  box-shadow: 0 0 0 4px rgba(246, 217, 144, 0.08);
}

.contact-form option {
  color: #101010;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--gold-light);
  font-size: 0.9rem;
}

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

.contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 86px;
  padding: 18px;
}

.contact-card > .lucide {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: var(--gold-light);
}

.contact-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card p {
  margin: 0;
}

.contact-card a,
.contact-card p {
  color: var(--white);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.map-placeholder {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(246, 217, 144, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 27, 52, 0.88), rgba(5, 6, 8, 0.88)),
    #07111f;
  box-shadow: var(--shadow);
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 217, 144, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(246, 217, 144, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.72;
}

.route-line {
  position: absolute;
  left: 27%;
  right: 24%;
  top: 47%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  transform: rotate(-13deg);
  box-shadow: 0 0 18px rgba(246, 217, 144, 0.48);
}

.pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(246, 217, 144, 0.44);
  border-radius: 999px;
  color: var(--white);
  background: rgba(5, 6, 8, 0.72);
  box-shadow: 0 0 26px rgba(216, 169, 77, 0.28);
  font-size: 0.78rem;
  font-weight: 800;
}

.pin::before {
  width: 8px;
  height: 8px;
  margin-right: 7px;
  content: "";
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 18px rgba(246, 217, 144, 0.82);
}

.pin-usa {
  top: 33%;
  left: 12%;
}

.pin-jo {
  right: 12%;
  bottom: 30%;
}

.footer {
  position: relative;
  z-index: 10;
  background: #080b10;
  isolation: isolate;
}

.gold-divider {
  width: min(100%, 1140px);
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(246, 217, 144, 0.75), transparent);
}

.pre-footer {
  padding: 70px 18px;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 27, 52, 0.32) 50%, transparent 100%);
}

.pre-footer-inner {
  width: min(100%, 680px);
  margin: 0 auto;
}

.pre-footer h2 {
  margin-bottom: 12px;
  font-size: 2rem;
  font-weight: 800;
  text-wrap: balance;
}

.pre-footer-sub {
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.footer-main {
  display: grid;
  gap: 36px;
  width: min(100%, 1140px);
  margin: 0 auto;
  padding: 48px 18px;
}

.footer-col h4 {
  margin: 0 0 18px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gold-light);
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col nav a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.footer-col nav a:hover {
  color: var(--gold-light);
}

.footer-col-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.72;
  margin: 14px 0 18px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-contact > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact .lucide {
  width: 16px;
  height: 16px;
  color: var(--gold-light);
  flex-shrink: 0;
}

.footer-contact a,
.footer-contact span {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(246, 217, 144, 0.13);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  width: min(100%, 1140px);
  margin: 0 auto;
  padding: 20px 18px;
}

.footer-bottom-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--muted);
  font-size: 0.83rem;
  transition: color 180ms ease;
}

.footer-bottom-links a:hover {
  color: var(--gold-light);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(246, 217, 144, 0.44);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(246, 217, 144, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(246, 217, 144, 0.6);
  outline: none;
}

.social-links .lucide {
  width: 19px;
  height: 19px;
}


.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 639px) {
  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .section-header h2 {
    font-size: 1.65rem;
  }

  .hero {
    padding-bottom: 44px;
  }

  .hero-logo {
    width: 120px;
    margin: 10px auto;
  }

  .feature-card {
    min-height: 0;
  }

  .service-card {
    min-height: 260px;
  }

  .testimonial-card {
    min-height: 0;
  }

  .stat {
    min-height: 108px;
    padding: 18px 10px;
  }

  .stat strong {
    font-size: 1.72rem;
  }

  .pre-footer {
    padding: 46px 16px;
  }

  .pre-footer h2 {
    font-size: 1.65rem;
  }

  .footer-main {
    padding: 36px 16px;
    gap: 24px;
  }

  .map-placeholder {
    min-height: 200px;
  }
}

@media (min-width: 640px) {
  .navbar {
    padding-inline: 28px;
  }

  .hero {
    padding-inline: 28px;
  }

  .hero-logo {
    width: 178px;
  }

  h1 {
    font-size: 3.05rem;
  }

  .hero-subtitle {
    font-size: 1.12rem;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }

  .btn {
    min-width: 176px;
  }

  .section {
    padding-inline: 28px;
  }

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

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

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    max-height: none;
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    opacity: 1;
    transform: none;
  }

  .nav-links a {
    padding: 10px 12px;
  }

  .hero {
    min-height: 84svh;
    padding-top: 84px;
  }

  .hero-logo {
    width: 188px;
  }

  h1 {
    max-width: 980px;
    font-size: 3.75rem;
  }

  .section {
    padding-top: 94px;
    padding-bottom: 94px;
  }

  .section-header h2 {
    font-size: 2.65rem;
  }

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

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

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

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

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

  .contact-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  }

  .footer-main {
    grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  }

  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1180px) {
  .navbar {
    padding-inline: calc((100vw - 1140px) / 2);
  }

  h1 {
    font-size: 4rem;
  }

  .hero-logo {
    width: 196px;
  }
}

/* ── Region geo-targeting ────────────────────────────────── */
.region-intl { display: none; }
html[data-geo="intl"] .region-arab { display: none; }
html[data-geo="intl"] .region-intl { display: inline; }
html[data-geo="intl"] .testimonial-card .region-intl { display: block; }

@media (max-width: 380px) {
  .brand span {
    display: none;
  }

  h1 {
    font-size: 2.18rem;
  }

  .hero-logo {
    width: 142px;
  }

  .section-header h2 {
    font-size: 1.76rem;
  }

  .market-pill {
    gap: 7px;
    font-size: 0.7rem;
  }

  .flag-chip {
    width: 18px;
    height: 12px;
  }
}
