/* =====================================================
   PRESTIGE CONSULTANTS — styles.css
   Design: Liquid Glass | Navy + Gold | Bodoni + Jost
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Jost:wght@300;400;500;600;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0F172A;
  --navy-80: rgba(15,23,42,0.8);
  --navy-60: rgba(15,23,42,0.6);
  --slate: #334155;
  --slate-light: #64748B;
  --gold: #CA8A04;
  --gold-light: #FBBF24;
  --gold-pale: #FEF3C7;
  --bg: #F8FAFC;
  --bg-2: #F1F5F9;
  --white: #FFFFFF;
  --text: #020617;
  --text-muted: #475569;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --shadow-gold: 0 8px 32px rgba(202,138,4,0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Bodoni Moda', serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

em { font-style: italic; color: var(--gold); }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
button { cursor: pointer; font-family: 'Jost', sans-serif; }
ul { list-style: none; }

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

/* ===== TOPBAR ===== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  height: 44px;
  background: #080E1F;
  border-bottom: 1px solid rgba(202,138,4,0.2);
  display: flex;
  align-items: center;
  transition: transform 0.35s ease;
}
.topbar.hidden { transform: translateY(-100%); }

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.topbar-contacts {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.65);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.topbar-link:hover { color: var(--gold-light); }
.topbar-sep { color: rgba(255,255,255,0.2); font-size: 16px; }
.topbar-hours {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 44px; /* sits flush below topbar */
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(15,23,42,0.06);
  transition: var(--transition);
}

/* Glassmorphism on pseudo-element — keeps backdrop-filter off the parent
   so position:fixed children (mobile overlay) anchor to viewport in WebKit */
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(202,138,4,0.18);
  z-index: -1;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(15,23,42,0.1);
}
.navbar.scrolled::before {
  background: rgba(255,255,255,0.98);
  border-bottom-color: rgba(202,138,4,0.28);
}
.navbar.topbar-gone { top: 0; }

.nav-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--navy); background: rgba(15,23,42,0.05); }

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  padding: 10px 24px;
  border-radius: 6px;
  margin-left: 8px;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.02em;
}
.nav-cta:hover {
  background: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.nav-close {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: hsl(222deg 47% 11% / 85%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('image/section1.webp') center center / cover no-repeat;
  opacity: 0.32;
  z-index: 0;
  mix-blend-mode: luminosity;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(202,138,4,0.16) 0%, transparent 70%);
  top: -250px; right: -150px;
  animation-delay: 0s;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(51,65,85,0.6) 0%, transparent 70%);
  bottom: -150px; left: -150px;
  animation-delay: -3s;
}
.orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(202,138,4,0.08) 0%, transparent 70%);
  top: 40%; left: 35%;
  animation-delay: -6s;
}
.orb-4 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30,58,138,0.4) 0%, transparent 70%);
  bottom: 10%; right: 10%;
  animation-delay: -4s;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

@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 2-col layout */
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 24px 60px;
  width: 100%;
  flex: 1;
}

.hero-content {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(202,138,4,0.12);
  border: 1px solid rgba(202,138,4,0.28);
  color: var(--gold-light);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-title em { color: var(--gold-light); font-style: italic; }

.hero-type-wrap {
  display: inline-block;
  overflow: hidden;
}

#heroType {
  display: inline-block;
  transition: opacity 0.35s ease, transform 0.35s ease;
  line-height: 1.4;
}

.hero-subtitle {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 0 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(202,138,4,0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.28);
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-2px);
}

/* Trust pills */
.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-trust-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-right: 4px;
}
.trust-pill {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 50px;
  padding: 5px 12px;
}

/* Hero visual right column */
.hero-visual {
  flex: 0 0 400px;
  position: relative;
}

/* Floating badges */
.hero-float-badge {
  position: absolute;
  background: rgba(8,14,31,0.85);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 50px;
  padding: 9px 16px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  z-index: 3;
}
.hero-float-badge svg { color: var(--gold-light); flex-shrink: 0; }
.badge-tl {
  top: -16px;
  right: 16px;
  animation: floatBadge 4s ease-in-out infinite;
}
.badge-br {
  bottom: 70px;
  left: -24px;
  animation: floatBadge 4s ease-in-out infinite;
  animation-delay: -2s;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* Showcase card */
.hero-card-showcase {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 28px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.hero-card-showcase::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.showcase-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.showcase-label-line {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.showcase-slides-wrapper {
  position: relative;
  min-height: 248px;
}

.showcase-slide {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.showcase-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.slide-icon {
  width: 50px; height: 50px;
  background: rgba(202,138,4,0.14);
  border: 1px solid rgba(202,138,4,0.24);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold-light);
}

.slide-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.slide-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.slide-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 18px;
}

.slide-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  background: rgba(202,138,4,0.1);
  border: 1px solid rgba(202,138,4,0.2);
  border-radius: 50px;
  padding: 6px 16px;
}
.slide-stat-num {
  font-family: 'Bodoni Moda', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.slide-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

.showcase-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.09);
}
.showcase-dots { display: flex; align-items: center; gap: 6px; }
.showcase-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}
.showcase-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}
.showcase-more {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-light);
  opacity: 0.85;
  transition: opacity 0.2s, letter-spacing 0.2s;
  letter-spacing: 0;
}
.showcase-more:hover { opacity: 1; letter-spacing: 0.02em; }

/* Stats strip */
.hero-stats-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.18);
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  gap: 4px;
}

.stat-num-row {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.stat-num {
  font-family: 'Bodoni Moda', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-plus {
  font-family: 'Bodoni Moda', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  align-self: center;
}
.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.45);
  border-radius: 2px;
  margin-top: 7px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-items {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-light);
  white-space: nowrap;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ===== SECTION SHARED ===== */
section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services { background: var(--bg); }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(202,138,4,0.3);
}
.service-card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  transition: var(--transition);
}
.service-card:hover .card-icon {
  background: var(--gold);
  color: var(--white);
}


.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
}
.card-link:hover { gap: 10px; }

/* ===== WHY US ===== */
.why-us {
  background: var(--navy);
  padding: 96px 0;
}

.why-us .section-title { color: var(--white); }
.why-us .section-sub { color: rgba(255,255,255,0.6); }
.why-us .section-tag { color: var(--gold-light); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-features { display: flex; flex-direction: column; gap: 28px; }

.why-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(202,138,4,0.15);
  border: 1px solid rgba(202,138,4,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
  transition: var(--transition);
}
.why-feature:hover .feature-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.why-feature h4 {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.why-feature p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* Glass Card */
.glass-card-large {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.avatar-stack {
  display: flex;
  margin-right: 8px;
}
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  margin-left: -10px;
}
.avatar:first-child { margin-left: 0; }
.av1 { background: var(--gold); }
.av2 { background: #3B82F6; }
.av3 { background: #10B981; }

.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  padding: 6px 12px;
  border-radius: 50px;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10B981;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.metric {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
}
.metric-num {
  display: block;
  font-family: 'Bodoni Moda', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.metric-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.progress-items { display: flex; flex-direction: column; gap: 16px; }
.progress-item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.progress-item span:last-of-type { color: var(--gold-light); font-weight: 600; }
.progress-bar {
  grid-column: 1 / -1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: progressLoad 1.5s ease-out forwards;
  transform-origin: left;
}

@keyframes progressLoad {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.card-cta-btn {
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}
.card-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ===== PROCESS ===== */
.process {
  background: #F1F5F9;
  position: relative;
  overflow: hidden;
}
.process .section-title { color: var(--navy); }
.process .section-sub { color: var(--text-muted); }
.process .section-tag { color: var(--gold); }

.process-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  position: relative;
}

.process-step {
  flex: 1;
  max-width: 260px;
  text-align: left;
  padding: 36px 28px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(15,23,42,0.06);
}
.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.process-step:hover {
  background: var(--white);
  border-color: rgba(202,138,4,0.3);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(15,23,42,0.12);
}
.process-step:hover::before {
  transform: scaleX(1);
}

.step-number {
  font-family: 'Bodoni Moda', serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
  -webkit-text-stroke: 1.5px rgba(202,138,4,0.4);
  color: transparent;
  position: absolute;
  top: 16px;
  right: 20px;
}

.step-icon {
  width: 52px;
  height: 52px;
  background: rgba(202,138,4,0.12);
  border: 1px solid rgba(202,138,4,0.28);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-light);
  transition: var(--transition);
}
.process-step:hover .step-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(202,138,4,0.3);
}

.step-label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.process-step h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.process-step p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  position: relative;
  top: -10px;
}
.process-connector::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: rgba(202,138,4,0.35);
}
.process-connector::after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid rgba(202,138,4,0.5);
  border-right: 1.5px solid rgba(202,138,4,0.5);
  transform: rotate(45deg);
  position: absolute;
  right: 8px;
  top: -3px;
}

/* ===== SECTION CTA BLOCK ===== */
.section-cta-block {
  margin-top: 56px;
  padding: 52px 48px;
  background: var(--navy);
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.section-cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(202,138,4,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.section-cta-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(202,138,4,0.12);
  border: 1px solid rgba(202,138,4,0.25);
  border-radius: 50px;
  padding: 5px 14px;
}
.section-cta-block h3 {
  font-family: 'Bodoni Moda', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.25;
  max-width: 560px;
}
.section-cta-block > p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 600px) {
  .section-cta-block { padding: 36px 24px; gap: 12px; }
  .section-cta-block h3 { font-size: 22px; }
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--white); }

.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.testimonial-card {
  min-width: 100%;
  padding: 48px 56px;
  background: linear-gradient(135deg, var(--navy) 0%, #1E293B 100%);
  border-radius: var(--radius);
  position: relative;
}

.quote-icon {
  color: rgba(202,138,4,0.3);
  margin-bottom: 24px;
}

.testimonial-text {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 800px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 14px;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 16px;
  font-family: 'Jost', sans-serif;
}
.testimonial-author span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.stars {
  margin-left: auto;
  color: var(--gold-light);
  font-size: 20px;
  letter-spacing: 2px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: var(--transition);
  cursor: pointer;
}
.slider-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: scale(1.05);
}

.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.slider-dot.active {
  background: var(--navy);
  width: 24px;
  border-radius: 4px;
}

/* ===== FAQ ===== */
.faq { background: var(--bg); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(202,138,4,0.3); }
.faq-item.open { border-color: var(--gold); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }

.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--slate-light);
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--navy);
  padding: 96px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 16px;
}
.contact-title em { color: var(--gold-light); }

.contact-info > p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(202,138,4,0.15);
  border: 1px solid rgba(202,138,4,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  font-family: 'Jost', sans-serif;
}
.contact-item span {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.contact-item div {
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}
.contact-item a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  word-break: break-word;
  overflow-wrap: break-word;
}
.contact-item a:hover { color: var(--gold-light); }

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  cursor: pointer;
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 40px;
  min-width: 0;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--white);
  transition: var(--transition);
  outline: none;
  resize: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(202,138,4,0.08);
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 18px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
}
.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  color: #34D399;
  font-size: 15px;
  font-weight: 500;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
}
.form-success.show { display: flex; }

/* ===== FOOTER ===== */
.footer {
  background: #040B16;
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}
.footer-col li svg { color: var(--gold); flex-shrink: 0; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}
.footer-policy-link {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  white-space: nowrap;
}
.footer-policy-link:hover { color: var(--gold-light); }
.footer-sep { color: rgba(255,255,255,0.2); }

/* ── WHATSAPP FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-fab svg { width: 30px; height: 30px; }
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.6);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .hero-visual { flex: 0 0 340px; }
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { flex-direction: column; gap: 12px; align-items: stretch; }
  .process-step { max-width: 100%; }
  .process-connector { width: 1.5px; height: 32px; top: 0; align-self: center; flex-direction: column; }
  .process-connector::before { width: 1.5px; height: 24px; }
  .process-connector::after { right: auto; top: auto; bottom: -4px; transform: rotate(135deg); }
  .topbar-hours { display: none; }
  .hero-inner {
    flex-direction: column;
    align-items: center;
    padding: 120px 20px 40px;
    text-align: center;
    gap: 40px;
  }
  .hero-content { text-align: center; width: 100%; }
  .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; flex-wrap: wrap; }
  .hero-trust { justify-content: center; }
  .hero-visual { flex: none; width: 100%; max-width: 460px; align-self: center; }
  .badge-tl { top: -12px; right: 10px; }
  .badge-br { bottom: 80px; left: -10px; }
  .stat-item { padding: 0 20px; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .navbar { top: 44px; width: 100%; }
  .nav-container { padding: 10px 18px; }
  .nav-logo-img { height: 36px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15,23,42,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: var(--transition);
  }
  .nav-close:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }
  .nav-link { color: white; font-size: 18px; }
  .nav-cta { font-size: 16px; padding: 14px 32px; }
  .nav-toggle { display: flex; position: relative; z-index: 101; }
  .nav-links.open ~ .nav-toggle { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 36px 28px; }
  .testimonial-text { font-size: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 6px; }
  .footer-bottom-links { flex-direction: column; gap: 4px; align-items: center; }
  .trust-bar .container { flex-direction: column; gap: 16px; align-items: flex-start; }
  .trust-items { gap: 16px; }
  /* Contact */
  .contact { padding: 64px 0; }
  .contact-grid { gap: 36px; }
  .contact-form-wrap { padding: 28px 20px; }
  .contact-title { font-size: 28px; }
  .contact-info > p { font-size: 15px; margin-bottom: 28px; }
  .contact-item { gap: 12px; }
  .contact-icon { width: 36px; height: 36px; flex-shrink: 0; }
}

@media (max-width: 600px) {
  .topbar { display: none; }
  .navbar { top: 0; }
  .hero-inner { padding: 80px 16px 36px; gap: 32px; }
  .hero-float-badge { display: none; }
  .hero-visual { max-width: 100%; }
  .stat-item { padding: 0 10px; }
  .stat-num { font-size: 26px; }
  .stat-plus { font-size: 18px; }
  .stat-label { font-size: 11px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 34px; }
  .nav-logo-img { height: 32px; }
  .hero-stats { padding: 20px 8px; }
  .stat-item { padding: 0 8px; }
  .stat-num { font-size: 22px; }
  .stat-plus { font-size: 15px; }
  .stat-divider { height: 32px; }
  .hero-card-showcase { padding: 22px 20px; border-radius: 18px; }
  .stars { display: none; }
  /* Contact */
  .contact-form-wrap { padding: 20px 16px; border-radius: 12px; }
  .contact-details { gap: 16px; }
  .contact-item a,
  .contact-item strong,
  .contact-item span { font-size: 13px; }
  .btn-submit { font-size: 14px; padding: 16px; }
  .social-links { gap: 10px; }
}


/* ===== LANGUAGE SWITCHER ===== */

/* Suppress Google Translate toolbar */
.goog-te-banner-frame { display: none !important; }
.goog-te-gadget       { display: none !important; }
#goog-gt-tt           { display: none !important; }
body                  { top: 0 !important; }

/* Separator before the switcher */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 16px;
  margin-left: 8px;
}
.lang-switcher::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: rgba(15,23,42,0.15);
}

/* Trigger button — styled like a nav-link */
.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.lang-current:hover,
.lang-switcher.open .lang-current {
  background: rgba(15,23,42,0.05);
  color: var(--navy);
}
.lang-globe { color: var(--gold); flex-shrink: 0; }
.lang-name  { letter-spacing: 0.04em; font-weight: 600; }
.lang-chevron { opacity: 0.45; transition: transform 0.22s ease, opacity 0.22s; }
.lang-switcher.open .lang-chevron { transform: rotate(180deg); opacity: 0.7; }

/* Dropdown */
.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.1);
  border-radius: 10px;
  box-shadow: 0 12px 36px rgba(15,23,42,0.14);
  list-style: none;
  padding: 6px;
  min-width: 168px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  pointer-events: none;
  z-index: 200;
  margin: 0;
}
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-dropdown li { margin: 0; padding: 0; }
.lang-dropdown button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: transparent;
  border: none;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--navy);
  transition: background 0.15s, color 0.15s;
  text-align: left;
}
/* Small code badge in dropdown */
.lang-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  padding: 2px 5px;
  background: rgba(15,23,42,0.07);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--navy);
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.lang-dropdown button:hover {
  background: rgba(202,138,4,0.08);
  color: var(--gold);
}
.lang-dropdown button:hover .lang-code {
  background: rgba(202,138,4,0.15);
  color: var(--gold);
}

@media (max-width: 768px) {
  .lang-switcher { margin-left: 4px; padding-left: 12px; }
  .lang-dropdown { min-width: 155px; }
}

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