/* YMS Partner — Corporate site */
:root {
  --navy: #071426;
  --navy-mid: #0c1f3d;
  --navy-light: #132d52;
  --gold: #d4a853;
  --gold-light: #f0d48a;
  --gold-dim: rgba(212, 168, 83, 0.15);
  --cyan: #4db8e8;
  --text: #e8edf5;
  --muted: #8fa3bf;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --font: "Outfit", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --header-h: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Cursor glow (desktop) */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
@media (min-width: 1024px) {
  .cursor-glow { opacity: 1; }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s;
}
.site-header.scrolled {
  background: rgba(7, 20, 38, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
body.home-hero .site-header:not(.scrolled) {
  background: transparent;
  box-shadow: none;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand img { height: 44px; width: auto; }
.nav {
  display: flex;
  gap: 2rem;
}
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav a:hover,
.nav a.active { color: var(--text); }
.nav a:hover::after,
.nav a.active::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lang-toggle {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: border-color 0.25s, background 0.25s;
}
.lang-toggle:hover { border-color: var(--gold); background: var(--gold-dim); }
.lang-active { color: var(--gold); }
.lang-sep, .lang-alt { color: var(--muted); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #b8892e 100%);
  color: var(--navy);
  box-shadow: 0 8px 32px rgba(212, 168, 83, 0.35);
}
.btn-primary:hover { box-shadow: 0 12px 40px rgba(212, 168, 83, 0.45); }
.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-gold {
  background: var(--gold-dim);
  color: var(--gold-light);
  border: 1px solid rgba(212, 168, 83, 0.3);
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.05); }
}

/* Hero slider + classic front */
.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.slider-track {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s var(--ease), visibility 1s;
}
.slide.is-active {
  opacity: 1;
  visibility: visible;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7, 20, 38, 0.92) 0%,
    rgba(7, 20, 38, 0.75) 45%,
    rgba(7, 20, 38, 0.55) 100%
  );
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.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% 40%, black 20%, transparent 75%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 12s ease-in-out infinite;
}
.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(77, 184, 232, 0.12);
  top: -10%;
  right: -5%;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(212, 168, 83, 0.1);
  bottom: 10%;
  left: -10%;
  animation-delay: -6s;
}

.hero-front {
  position: relative;
  z-index: 4;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 5rem;
  pointer-events: none;
}
.hero-front > * { pointer-events: auto; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem 0.45rem 0.65rem;
  background: var(--gold-dim);
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 1.75rem;
  width: fit-content;
  transition: opacity 0.4s var(--ease);
}
.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  display: block;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 2.25rem;
  font-weight: 300;
}

.slider-controls {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 20, 38, 0.5);
  backdrop-filter: blur(8px);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text);
  transition: border-color 0.25s, background 0.25s;
}
.slider-arrow:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 83, 0.15);
}
.slider-dots {
  display: flex;
  gap: 0.5rem;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: background 0.3s, transform 0.3s;
}
.slider-dot.is-active {
  background: var(--gold);
  transform: scale(1.2);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: fit-content;
  backdrop-filter: blur(8px);
}
.stat strong {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat span { color: var(--gold); font-weight: 700; }
.stat small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  z-index: 6;
  animation: hero-scroll-bounce 2s ease infinite;
  transition: color 0.25s;
}
.hero-scroll:hover { color: var(--gold-light); }
@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Marquee */
.marquee {
  border-block: 1px solid var(--border);
  background: var(--navy-mid);
  padding: 1rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.marquee-track span:nth-child(odd) { color: var(--gold); opacity: 0.7; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-head h2,
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
}

/* About */
.about { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual { position: relative; min-height: 420px; }
.about-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}
.about-card img { width: 100%; height: 100%; object-fit: cover; }
.about-card-main {
  width: 85%;
  aspect-ratio: 4/3;
  position: relative;
}
.about-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(7, 20, 38, 0.95));
  font-weight: 600;
  font-size: 0.95rem;
}
.about-card-float {
  position: absolute;
  width: 45%;
  aspect-ratio: 1;
  bottom: 0;
  right: 0;
  border: 3px solid var(--navy);
}
.experience-badge {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--gold), #b8892e);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 12px 40px rgba(212, 168, 83, 0.4);
  animation: float 8s ease-in-out infinite;
}
.experience-badge strong { font-size: 1.75rem; line-height: 1; }
.experience-badge span { font-size: 0.7rem; text-transform: uppercase; }

.about-text p { color: var(--muted); margin-bottom: 1.25rem; }
.about-features { margin-top: 1.5rem; }
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}
.about-features svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

/* Services */
.services { background: var(--navy-mid); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 83, 0.35);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}
.service-card.featured {
  grid-column: span 1;
  background: linear-gradient(145deg, rgba(212, 168, 83, 0.08) 0%, rgba(255,255,255,0.02) 100%);
  border-color: rgba(212, 168, 83, 0.2);
}
.service-thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
  aspect-ratio: 16/10;
  background: var(--navy-light);
  border: 1px solid var(--border);
}
.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-thumb img {
  transform: scale(1.06);
}
.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
  margin-bottom: 1.25rem;
}
.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap 0.25s;
}
.service-link:hover { color: var(--gold-light); }

/* Philosophy */
.philosophy {
  padding: 5rem 0;
  background: var(--navy);
}
.philosophy-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: end;
  padding: 3rem;
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, var(--gold-dim) 0%, transparent 40%);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.philosophy blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
}
.philosophy-meta p:last-child { color: var(--muted); font-size: 0.95rem; }

/* Mission */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.mission-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.35s;
}
.mission-card:hover { border-color: rgba(77, 184, 232, 0.3); }
.mission-icon {
  font-size: 1.5rem;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.mission-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.mission-card p { color: var(--muted); font-size: 0.95rem; }

/* CTA band */
.cta-band {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  border-block: 1px solid var(--border);
}
.cta-band-inner {
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}
.cta-band p { color: var(--muted); margin-bottom: 1.75rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.contact-list li { margin-bottom: 1.5rem; }
.contact-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.contact-list a {
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.25s;
}
.contact-list a:hover { color: var(--gold); }
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}
.social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--muted);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.social-links a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-dim);
}
.social-links svg { width: 20px; height: 20px; }

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--muted);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(7, 20, 38, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row select { cursor: pointer; }
.form-row select option { background: var(--navy); }
.form-success {
  margin-top: 1rem;
  padding: 0.85rem;
  background: rgba(77, 184, 232, 0.12);
  border: 1px solid rgba(77, 184, 232, 0.3);
  border-radius: var(--radius-sm);
  color: var(--cyan);
  font-size: 0.9rem;
  text-align: center;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: var(--navy);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand-footer img { height: 36px; opacity: 0.9; }
.footer-copy { font-size: 0.85rem; color: var(--muted); }
.footer-nav { display: flex; gap: 1.5rem; }
.footer-nav a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.25s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
  width: 100%;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.footer-services a {
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-services a:hover { color: var(--gold); }

/* Nav dropdown */
.nav-item-dropdown { position: relative; }
.nav-dropdown-toggle {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0;
  transition: color 0.25s;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active { color: var(--text); }
.nav-item-dropdown.is-open .nav-dropdown-toggle { color: var(--gold-light); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  padding: 0.5rem;
  background: rgba(12, 31, 61, 0.98);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 120;
}
.nav-item-dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-link {
  display: block;
  padding: 0.55rem 0.85rem;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  white-space: nowrap;
}
.nav-dropdown-link:hover,
.nav-dropdown-link.active {
  background: var(--gold-dim);
  color: var(--gold-light);
}
.nav-dropdown-link::after { display: none !important; }

/* Home — post-hero */
.home-trust {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.home-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}
.trust-item {
  text-align: center;
  min-width: 120px;
}
.trust-item strong {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.trust-item span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.trust-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

.home-intro {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
}
.home-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: center;
}
.home-intro-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}
.home-intro-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.home-intro-accent {
  position: absolute;
  bottom: -20%;
  right: -15%;
  width: 55%;
  height: 55%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.25) 0%, transparent 70%);
  pointer-events: none;
}
.home-intro-quote {
  margin-top: 1.5rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--gold);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.45;
}
.home-intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin-bottom: 1.25rem;
}
.home-intro-text p { color: var(--muted); margin-bottom: 1rem; }
.home-intro-list { margin: 1.5rem 0 2rem; }
.home-intro-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.home-intro-list .check {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.home-intro-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.home-expertise { background: var(--navy); }
.home-expertise-cta { text-align: center; margin-top: 2.5rem; }

.expertise-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 1.25rem;
}
.bento-card {
  position: relative;
  min-height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--navy-mid);
  transition: transform 0.45s var(--ease), border-color 0.35s, box-shadow 0.45s;
}
.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 83, 0.4);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}
.bento-featured {
  grid-column: span 6;
  grid-row: span 2;
  min-height: 480px;
}
.bento-card:not(.bento-featured) {
  grid-column: span 3;
}
.bento-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.bento-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.bento-card:hover .bento-media img { transform: scale(1.06); }
.bento-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(7, 20, 38, 0.92) 100%);
}
.bento-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.35rem;
  z-index: 1;
}
.bento-tag {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.bento-body p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.bento-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.home-values { background: var(--navy-mid); }
.values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.value-card {
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, background 0.3s;
}
.value-card:hover {
  border-color: rgba(212, 168, 83, 0.3);
  background: rgba(212, 168, 83, 0.06);
}
.value-icon {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.value-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

.home-process { background: var(--navy); }
.home-process-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.home-process-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-top: 0.5rem;
}
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-timeline::before {
  content: "";
  position: absolute;
  top: 1.75rem;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--gold), var(--border), transparent);
  z-index: 0;
}
.timeline-step {
  position: relative;
  z-index: 1;
  padding: 2rem 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.timeline-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(212, 168, 83, 0.35);
  font-weight: 700;
  color: var(--gold);
  font-size: 0.85rem;
}
.timeline-step h3 { text-align: center; font-size: 1rem; margin-bottom: 0.5rem; }
.timeline-step p { text-align: center; font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

.home-regions { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%); }
.regions-panel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
}
.regions-panel-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0.5rem 0 1rem;
}
.regions-panel-text p { color: var(--muted); margin-bottom: 1.5rem; }
.regions-chips { display: flex; flex-direction: column; gap: 1rem; }
.region-chip {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: rgba(7, 20, 38, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s;
}
.region-chip:hover { border-color: rgba(212, 168, 83, 0.35); }
.region-chip-flag { font-size: 1.75rem; line-height: 1; }
.region-chip strong { display: block; margin-bottom: 0.2rem; }
.region-chip p { font-size: 0.85rem; color: var(--muted); }

.home-cta {
  padding: 5rem 0;
  background: var(--navy);
}
.home-cta-inner {
  position: relative;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(212, 168, 83, 0.25);
  background: linear-gradient(145deg, rgba(212, 168, 83, 0.12) 0%, rgba(7, 20, 38, 0.9) 55%);
  overflow: hidden;
}
.home-cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(212, 168, 83, 0.15) 0%, transparent 65%);
  pointer-events: none;
}
.home-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin: 0.5rem 0 1rem;
  position: relative;
}
.home-cta-inner > p {
  color: var(--muted);
  max-width: 42ch;
  margin: 0 auto 2rem;
  position: relative;
}
.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative;
}

/* Float actions */
.float-actions {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-light);
  border: 1px solid var(--border);
  color: var(--gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s var(--ease), background 0.25s;
}
.float-btn:hover { transform: scale(1.08); background: var(--gold-dim); }
.float-btn svg { width: 22px; height: 22px; }
.float-wa { color: #25d366; }
.float-wa:hover { background: rgba(37, 211, 102, 0.15); }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 2.5rem; }
}
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    background: rgba(7, 20, 38, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.4s;
    pointer-events: none;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a,
  .nav-dropdown-link {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .nav-item-dropdown { width: 100%; }
  .nav-dropdown-toggle {
    width: 100%;
    text-align: left;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 1rem;
    display: none;
    min-width: 0;
  }
  .nav-item-dropdown.is-open .nav-dropdown { display: block; }
  .nav-dropdown-link { border-bottom: 1px solid var(--border); }
  .home-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .home-intro-frame img { aspect-ratio: 16 / 10; }
  .expertise-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-featured,
  .bento-card:not(.bento-featured) { grid-column: span 1; grid-row: span 1; }
  .bento-featured .bento-media { min-height: 200px; }
  .values-row { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .process-timeline::before { display: none; }
  .regions-panel { grid-template-columns: 1fr; padding: 2rem; }
  .trust-divider { display: none; }
  .menu-toggle { display: flex; }
  .header-actions .btn-gold { display: none; }

  .about-grid,
  .contact-grid,
  .philosophy-inner,
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .about-visual { min-height: 320px; margin-bottom: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-front { padding-bottom: 4rem; }
  .hero-cta { margin-bottom: 2rem; }
  .hero-stats { flex-wrap: wrap; width: 100%; max-width: 100%; }
  .slider-controls {
    bottom: 1.25rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .hero-scroll { display: none; }
  .philosophy-inner { padding: 1.5rem; }
}
@media (max-width: 600px) {
  .expertise-bento { grid-template-columns: 1fr; }
  .values-row,
  .process-timeline { grid-template-columns: 1fr; }
  .home-cta-inner { padding: 2.5rem 1.25rem; }
  .home-cta-actions { flex-direction: column; }
  .home-cta-actions .btn { width: 100%; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .stat-divider { display: none; }
  .hero-stats { gap: 1.25rem; }
  .slider-arrow { width: 38px; height: 38px; }
}

/* Why us */
.why { background: var(--navy); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 83, 0.3);
}
.why-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Process */
.process { background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.25;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Regions */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.region-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(77, 184, 232, 0.06) 0%, rgba(255,255,255,0.02) 100%);
  text-align: center;
  transition: transform 0.35s var(--ease);
}
.region-card:hover { transform: translateY(-4px); }
.region-flag {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.region-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.region-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* FAQ */
.faq { background: var(--navy-mid); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.25s;
}
.faq-question:hover { color: var(--gold-light); }
.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  transition: transform 0.3s var(--ease), background 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-dim);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 1.35rem;
}
.faq-answer p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.services-footer-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Slogan band */
.taglines-band {
  padding: 3rem 0;
  background: var(--navy-mid);
  border-block: 1px solid var(--border);
  overflow: hidden;
}
.taglines-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.taglines-scroll blockquote {
  flex: 1 1 280px;
  max-width: 420px;
  padding: 1.5rem;
  background: var(--gold-dim);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .why-grid,
  .process-steps,
  .regions-grid { grid-template-columns: 1fr; }
}

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