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

:root {
  --navy: #000c1d;
  --navy-mid: #0a1628;
  --navy-card: #0f1d30;
  --gold: #c5a059;
  --gold-light: #d4b76a;
  --gold-dark: #9a7b3c;
  --accent: #c5a059;
  --accent2: #8b6914;
  --cyan: #c5a059;
  --text: #94a3b8;
  --text-light: #e2e8f0;
  --white: #ffffff;
  --font: "Epilogue", system-ui, sans-serif;
  --font-display: "Cinzel", "Epilogue", serif;
  --radius: 20px;
  --glow: 0 0 60px rgba(197, 160, 89, 0.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, .hero__title, .section-head h2 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  backdrop-filter: blur(20px) saturate(180%);
  background: rgba(6, 13, 24, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s, box-shadow 0.3s;
}
body.scrolled .header {
  background: rgba(6, 13, 24, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}
.logo--brand .logo__img,
.logo--brand .custom-logo-link img {
  max-height: 48px;
  max-width: 220px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}
.logo--brand .logo__img--stacked {
  max-height: 90px;
  max-width: 160px;
}
.logo--brand .custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 0;
}
.header__actions { display: flex; gap: 0.75rem; align-items: center; }
.header__lang {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(10, 22, 40, 0.55);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.lang-switcher__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 0.35rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.lang-switcher__link:hover,
.lang-switcher__link.is-active {
  color: var(--gold, #d4af37);
}
.lang-switcher__sep {
  color: rgba(212, 175, 55, 0.45);
  font-weight: 400;
  line-height: 1;
}
.lang-switcher--nav,
.lang-switcher--nav-list {
  margin-top: 0.75rem;
}
.nav__item--lang {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn--glow, .btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--white);
  box-shadow: 0 4px 24px rgba(197, 160, 89, 0.45);
  position: relative;
  overflow: hidden;
}
.btn--glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn--glow:hover::before { transform: translateX(100%); }
.btn--glow:hover, .btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(197, 160, 89, 0.55);
}
.btn--glass, .btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}
.btn--glass:hover, .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn__arrow { transition: transform 0.2s; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 80px;
  overflow: hidden;
  background: var(--navy);
}
.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(197, 160, 89, 0.15), transparent),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(197, 160, 89, 0.2), transparent),
    radial-gradient(ellipse 50% 40% at 60% 80%, rgba(0, 229, 255, 0.12), transparent);
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero__orb--1 {
  width: 500px; height: 500px;
  background: rgba(197, 160, 89, 0.3);
  top: -10%; right: -5%;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: rgba(197, 160, 89, 0.12);
  bottom: 10%; left: -10%;
  animation-delay: -3s;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: rgba(0, 229, 255, 0.15);
  top: 40%; left: 40%;
  animation-delay: -5s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__content { max-width: 600px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.25rem;
  padding: 6px 14px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 999px;
}
.eyebrow__dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(197, 160, 89,0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(197, 160, 89,0); }
}
.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #e2e8f0 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__lead {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero visual cards */
.hero__visual { position: relative; height: 400px; }
.hero__card {
  position: absolute;
  background: rgba(17, 29, 51, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
}
.hero__card--main {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  text-align: center;
  z-index: 2;
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 12px)); }
}
.hero__card-glow {
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--cyan), var(--accent2));
  z-index: -1;
  opacity: 0.4;
  filter: blur(20px);
}
.hero__card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
}
.hero__card-num {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero__card-stat { color: var(--gold); font-size: 2rem; font-weight: 700; }
.hero__card-sub { font-size: 0.85rem; color: var(--text); }
.hero__pulse-ring {
  position: absolute;
  inset: -20px;
  border: 2px solid rgba(0, 229, 255, 0.2);
  border-radius: 50%;
  animation: ringPulse 3s ease infinite;
}
@keyframes ringPulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}
.hero__card--float {
  top: 10%; right: 0;
  animation: floatSide 5s ease-in-out infinite;
}
.hero__card--float2 {
  bottom: 15%; left: 0;
  animation: floatSide 5s ease-in-out infinite reverse;
}
@keyframes floatSide {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.hero__card--float span, .hero__card--float2 span { font-size: 1.5rem; }
.hero__card--float strong, .hero__card--float2 strong {
  display: block;
  font-size: 1.5rem;
  color: var(--white);
}
.hero__card--float small, .hero__card--float2 small { color: var(--text); font-size: 0.75rem; }

/* Marquee */
.hero__marquee {
  position: relative;
  margin-top: 4rem;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0;
}
.hero__marquee-track {
  display: flex;
  gap: 2rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.hero__marquee-track span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.hero__marquee-track span:not(:nth-child(even)) { color: rgba(197, 160, 89,0.5); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== STATS ========== */
.stats {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  overflow: hidden;
}
.stats__glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 200px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(197, 160, 89,0.15), transparent);
  filter: blur(40px);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.stat {
  position: relative;
  text-align: center;
  padding: 2.5rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: transform 0.3s, border-color 0.3s;
}
.stat:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 160, 89,0.3);
}
.stat__ring {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(197, 160, 89,0.1), rgba(197, 160, 89,0.1));
  opacity: 0;
  transition: opacity 0.3s;
}
.stat:hover .stat__ring { opacity: 1; }
.stat__num {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat__suffix { font-size: 1.5rem; color: var(--gold); font-weight: 700; }
.stat__label {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ========== SERVICES ========== */
.services {
  padding: 7rem 0;
  background: var(--navy-mid);
  position: relative;
}
.section-head { margin-bottom: 3.5rem; }
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  position: relative;
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2rem;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(197, 160, 89,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(197, 160, 89,0.1);
}
.card__shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  transition: left 0.6s;
}
.card:hover .card__shine { left: 150%; }
.card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 12px rgba(197, 160, 89,0.4));
}
.card h3 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.card p { font-size: 0.9rem; color: var(--text); margin-bottom: 1.5rem; line-height: 1.6; }
.card__link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}
.card__link:hover { color: var(--cyan); gap: 10px; }

/* ========== CTA ========== */
.cta-band {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 50%, var(--navy-mid) 100%);
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none' stroke='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.cta-band__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.85); }
.cta-band .btn--glow { background: var(--white); color: var(--accent); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }

/* ========== TEAM ========== */
.team { padding: 7rem 0; background: var(--navy); }
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.member {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  transition: transform 0.3s, border-color 0.3s;
}
.member:hover { transform: translateY(-6px); border-color: rgba(197, 160, 89,0.2); }
.member__photo {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy-card), var(--navy-mid));
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.member h4 { color: var(--white); font-size: 1rem; }
.member p { font-size: 0.82rem; color: var(--text); }
.member small { display: block; margin-top: 0.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.5; }
.member__photo { background-size: cover; background-position: center; }

/* ========== FOOTER ========== */
.footer {
  background: #040a12;
  color: var(--text);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__grid--4 {
  grid-template-columns: 1.4fr 1fr 1.4fr 1fr;
}
.footer__grid strong { display: block; color: var(--white); margin-bottom: 1rem; }
.footer__grid a {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.footer__grid a:hover { color: var(--cyan); }
.footer__copy {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.footer__copy-inner {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.footer__developer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.4;
}
.footer__developer a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__developer a:hover { color: var(--gold); }
.footer__reg { color: rgba(255,255,255,0.45); }

/* ========== REVEAL ANIMATIONS ========== */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
  transition-delay: var(--delay, 0s);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== NAV — fix overlap + dropdown ========== */
.nav { flex: 1; display: flex; justify-content: center; min-width: 0; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.nav__list > li,
.nav__item { position: relative; list-style: none; }
.nav__list a,
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav__list a:hover,
.nav__link:hover { color: var(--cyan); background: rgba(255,255,255,0.04); }
.nav__caret { font-size: 0.65rem; opacity: 0.6; }
.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: rgba(10, 18, 32, 0.98);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 0.5rem 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 9999;
  list-style: none;
  max-height: 360px;
  overflow-y: auto;
}
.nav__item--has-dropdown:hover .nav__dropdown { display: block; }
.nav__dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 0.85rem;
  white-space: normal;
  border-radius: 0;
}
.nav__dropdown a:hover { background: rgba(197, 160, 89,0.08); }
.logo { flex-shrink: 0; }
.logo span { white-space: nowrap; }
.header__actions { flex-shrink: 0; }
.header__inner .logo span {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 1100px) {
  .header__inner .logo span { max-width: none; }
}

/* ========== HERO INNER ========== */
.hero--inner {
  min-height: auto;
  padding: 120px 0 60px;
}

/* ========== SERVICE DETAIL ========== */
.service-detail {
  padding: 4rem 0 6rem;
  background: var(--navy-mid);
}
.service-detail__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.service-detail__icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 20px rgba(197, 160, 89,0.4));
}
.service-detail__intro p {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.7;
}
.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
.service-detail__block {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2rem;
}
.service-detail__block h2 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.service-detail__list {
  list-style: none;
  padding: 0;
}
.service-detail__list li {
  padding: 0.75rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.service-detail__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}
.service-detail__steps {
  list-style: none;
  padding: 0;
  counter-reset: steps;
}
.service-detail__steps li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.step-num {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
}
.service-detail__features h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.3s;
}
.feature-card:hover { border-color: rgba(197, 160, 89,0.3); }
.feature-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.88rem; color: var(--text); }
.service-detail__cta {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(197, 160, 89,0.1), rgba(154, 123, 60,0.1));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
}
.service-detail__cta h2 { color: var(--white); margin-bottom: 0.75rem; }
.service-detail__cta p { color: var(--text); }
.services--related { padding-top: 0; background: var(--navy); }
.services__grid--compact { grid-template-columns: repeat(3, 1fr); }

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 0.85rem 0;
  overflow: hidden;
}
.trust-bar__track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: trustScroll 30s linear infinite;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust-bar__dot { opacity: 0.3; }
@keyframes trustScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== ABOUT ========== */
.about {
  padding: 6rem 0;
  background: var(--navy);
}
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about__lead {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}
.about__content p {
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about__legal {
  font-size: 0.88rem;
  color: var(--cyan);
  padding: 1rem 1.25rem;
  background: rgba(197, 160, 89,0.06);
  border: 1px solid rgba(197, 160, 89,0.15);
  border-radius: 10px;
  margin: 1.5rem 0;
}
.about__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.about__visual { display: grid; gap: 1rem; }
.about__card {
  padding: 1.5rem;
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.about__card--accent {
  background: linear-gradient(135deg, rgba(197, 160, 89,0.12), rgba(154, 123, 60,0.12));
  border-color: rgba(197, 160, 89,0.2);
}
.about__card-icon { font-size: 1.5rem; }
.about__card strong { font-size: 1.75rem; color: var(--white); }
.about__card span { font-size: 0.85rem; color: var(--text); }

/* ========== PROCESS ========== */
.process {
  padding: 6rem 0;
  background: var(--navy-mid);
}
.process__timeline {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
.process__step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
}
.process__num {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 50%;
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
}
.process__body h3 { color: var(--white); margin-bottom: 0.5rem; }
.process__body p { color: var(--text); line-height: 1.6; }

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 6rem 0;
  background: var(--navy);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}
.testimonial__quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial footer strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}
.testimonial footer span {
  font-size: 0.82rem;
  color: var(--text);
}

/* ========== FAQ ========== */
.faq {
  padding: 6rem 0;
  background: var(--navy-mid);
}
.faq__list { display: grid; gap: 0.75rem; margin-top: 2rem; }
.faq__item {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
}
.faq__item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  color: var(--white);
  font-weight: 600;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  float: right;
  color: var(--cyan);
  font-size: 1.25rem;
}
.faq__item[open] summary::after { content: '−'; }
.faq__item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text);
  line-height: 1.7;
}

/* ========== COMPANY DETAILS ========== */
.company-details__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.company-details__item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0.75rem;
  align-items: start;
}
.company-details__icon { font-size: 1.1rem; line-height: 1.4; }
.company-details__label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.15rem;
}
.company-details__item strong,
.company-details__item a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.company-details__item a:hover { color: var(--cyan); }
.company-details--footer { margin-top: 1.25rem; }
.company-details--contact {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(197, 160, 89,0.08), rgba(154, 123, 60,0.08));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.company-details--contact .company-details__header h2 {
  color: var(--white);
  font-size: 1.35rem;
  margin: 0.5rem 0;
}
.company-details--contact .company-details__tagline {
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.company-details--contact .company-details__list { gap: 1rem; }

/* ========== CONTACT ========== */
.contact-section { padding: 4rem 0 6rem; background: var(--navy-mid); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: start;
}
.contact-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.contact-card { padding: 1.25rem 1.5rem; }
.contact-card h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 0.95rem; }
.contact-card p { color: var(--text); font-size: 0.9rem; line-height: 1.6; margin: 0; }
.contact-card a { color: var(--cyan); text-decoration: none; }
.contact-card--hours p + p { margin-top: 0.35rem; }
.contact-form { padding: 2.5rem; }
.form-row { margin-bottom: 1.25rem; }
.form-row--half { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--cyan);
}
.form-row select option { background: var(--navy); color: var(--white); }
.form-notice {
  grid-column: 1 / -1;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-weight: 500;
}
.form-notice--success {
  background: rgba(197, 160, 89,0.1);
  border: 1px solid rgba(197, 160, 89,0.3);
  color: var(--cyan);
}
.form-notice--error {
  background: rgba(197, 160, 89,0.1);
  border: 1px solid rgba(197, 160, 89,0.3);
  color: var(--accent);
}

/* ========== FOOTER SERVICES COLS ========== */
.footer__services-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
}
.footer__logo { display: inline-block; margin-bottom: 1rem; line-height: 0; }
.footer__logo-img--stacked,
.footer__logo .logo__img--stacked,
.footer__logo .custom-logo-link img { max-height: 90px; max-width: 160px; width: auto; }
.footer__brand-line {
  margin: 0.75rem 0 0.5rem;
  line-height: 1.4;
}
.footer__brand-line strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
}
.footer__brand-line span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer__logo .custom-logo-link { display: block; line-height: 0; }

/* ========== INNER PAGES ========== */
.page-content { font-size: 1.05rem; line-height: 1.7; color: var(--text-light); }
.page-content p { margin-bottom: 1rem; }
.page-content h2, .page-content h3 { color: var(--white); margin: 1.5rem 0 0.75rem; }
.page-content ul { margin: 0 0 1rem 1.25rem; }
.page-content li { margin-bottom: 0.5rem; }
.page-section { padding: 3rem 0 5rem; background: var(--navy-mid); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.custom-logo-link img { max-height: 36px; width: auto; }

/* Values */
.values { padding: 5rem 0; background: var(--navy-mid); }
.values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.values__card { padding: 1.75rem; }
.values__icon { font-size: 1.75rem; display: block; margin-bottom: 0.75rem; }
.values__card h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1rem; }
.values__card p { font-size: 0.88rem; color: var(--text); line-height: 1.6; }

/* Careers */
.careers-section { padding: 4rem 0; background: var(--navy); }
.careers__jobs { display: grid; gap: 1.25rem; }
.careers__job { padding: 2rem; }
.careers__job-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.careers__job h3 { color: var(--white); margin: 0; }
.careers__job-type { font-size: 0.82rem; color: var(--cyan); white-space: nowrap; }
.careers__job p { color: var(--text); margin-bottom: 1.25rem; line-height: 1.6; }
.careers-benefits { padding: 4rem 0; background: var(--navy-mid); }
.careers-benefits__list {
  list-style: none; margin: 2rem 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem;
}
.careers-benefits__list li {
  padding: 1rem 1.25rem;
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  color: var(--text-light);
  font-size: 0.92rem;
}
.careers-benefits__list li::before { content: '✓ '; color: var(--cyan); }

/* Legal */
.legal-content { padding: 3rem 0 5rem; background: var(--navy-mid); }
.legal-content__inner { max-width: 760px; }
.legal-content__block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.legal-content__block h2 { color: var(--white); font-size: 1.15rem; margin-bottom: 0.75rem; }
.legal-content__block p { color: var(--text); line-height: 1.75; }
.legal-content__updated { font-size: 0.82rem; color: rgba(255,255,255,0.35); margin-top: 2rem; }

/* Case Studies */
.case-studies { padding: 5rem 0; background: var(--navy); }
.case-studies__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.case-study-card { padding: 2rem; display: flex; flex-direction: column; }
.case-study-card__client { font-size: 0.78rem; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.case-study-card h3 { margin-bottom: 0.75rem; }
.case-study-card h3 a { color: var(--white); text-decoration: none; }
.case-study-card h3 a:hover { color: var(--cyan); }
.case-study-card p { flex: 1; color: var(--text); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.case-study-card__meta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1rem; }
.case-study-card__meta span { font-size: 0.78rem; padding: 4px 10px; background: rgba(255,255,255,0.05); border-radius: 999px; color: var(--text); }
.case-study-card__result { color: var(--cyan) !important; border: 1px solid rgba(197, 160, 89,0.2); }
.case-study-single { padding: 3rem 0 5rem; background: var(--navy-mid); }
.case-study-single__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2.5rem;
}
.case-study-single__stat {
  text-align: center; padding: 1.5rem;
  background: var(--navy-card); border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
}
.case-study-single__stat strong { display: block; font-size: 1.5rem; color: var(--white); margin-bottom: 0.25rem; }
.case-study-single__stat span { font-size: 0.82rem; color: var(--text); }
.case-study-single__stat--accent { border-color: rgba(197, 160, 89,0.25); background: rgba(197, 160, 89,0.06); }
.case-study-single__stat--accent strong { color: var(--cyan); }
.case-study-single__body { max-width: 760px; margin-bottom: 2rem; }
.case-study-single__service {
  display: flex; align-items: center; gap: 1.25rem; padding: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.case-study-single__service span { font-size: 2rem; }
.case-study-single__service h3 { color: var(--white); margin-bottom: 0.25rem; font-size: 1rem; }
.case-study-single__service p { color: var(--text); font-size: 0.88rem; margin: 0; }
.case-study-single__nav { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Blog */
.blog-archive { padding: 3rem 0 5rem; background: var(--navy); }
.blog-archive__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card { padding: 2rem; }
.blog-card__date { font-size: 0.78rem; color: var(--cyan); display: block; margin-bottom: 0.75rem; }
.blog-card h2 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.blog-card h2 a { color: var(--white); text-decoration: none; }
.blog-card h2 a:hover { color: var(--cyan); }
.blog-card p { color: var(--text); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.blog-archive__pagination { margin-top: 3rem; text-align: center; }
.blog-archive__pagination .nav-links { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; }
.blog-archive__pagination a, .blog-archive__pagination span {
  padding: 8px 14px; border-radius: 8px;
  background: var(--navy-card); color: var(--text-light); text-decoration: none; font-size: 0.88rem;
}
.blog-archive__pagination a:hover { color: var(--cyan); }
.blog-archive__empty { text-align: center; color: var(--text); padding: 3rem 0; }
.blog-single { padding: 3rem 0 5rem; background: var(--navy-mid); }
.blog-single__inner { max-width: 760px; }
.blog-single__nav { margin-top: 2.5rem; }

/* Quote */
.quote-steps { list-style: none; margin: 0; padding: 0; }
.quote-steps li {
  padding: 0.5rem 0 0.5rem 1.5rem; position: relative;
  color: var(--text); font-size: 0.9rem;
}
.quote-steps li::before { content: '→'; position: absolute; left: 0; color: var(--cyan); }

/* Mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
}
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(6,13,24,0.98);
    padding: 1.5rem 24px 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; gap: 1rem; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { height: 280px; margin-top: 2rem; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .footer__grid, .contact-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .values__grid, .case-studies__grid, .blog-archive__grid { grid-template-columns: 1fr; }
  .careers-benefits__list { grid-template-columns: 1fr; }
  .case-study-single__stats { grid-template-columns: 1fr; }
  .footer__grid--4 { grid-template-columns: 1fr; }
  .footer__copy-inner { text-align: center; }
  .form-row--half { grid-template-columns: 1fr; }
  .service-detail__grid, .features-grid { grid-template-columns: 1fr; }
  .services__grid--compact { grid-template-columns: 1fr; }
  .nav__dropdown { position: static; display: none; box-shadow: none; border: none; background: transparent; padding-left: 1rem; }
  .nav__item--has-dropdown.is-open .nav__dropdown { display: block; }
  .header__inner .logo span { max-width: 140px; }
  .header__actions .btn--outline { display: none; }
}
@media (min-width: 901px) {
  .nav__lang,
  .nav__item--lang { display: none; }
  .lang-switcher--nav-list { display: none; }
}
@media (max-width: 560px) {
  .services__grid { grid-template-columns: 1fr; }
}
