/* ===== TrustWay - Global Styles ===== */
:root {
  --primary: #0e6e8c;
  --primary-dark: #0a5269;
  --primary-light: #1490b5;
  --secondary: #1a1a1a;
  --accent: #ff6d00;
  --accent-dark: #e65100;
  --accent-gold: #ffab00;
  --text: #333;
  --text-light: #69727d;
  --white: #fff;
  --bg-light: #f5f8fa;
  --bg-green: #edf5f8;
  --bg-dark: #1a2d3d;
  --border: #e1e5ea;
  --shadow: 0 2px 16px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Jost', 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--secondary);
}

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

.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 48px;
}

.tag {
  display: inline-block;
  background: rgba(14,110,140,0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14,110,140,0.35);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229,63,37,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-black {
  background: linear-gradient(135deg, #1a3a6c 0%, #0d2240 100%);
  color: var(--white);
  border-color: #1a3a6c;
}
.btn-black:hover {
  background: linear-gradient(135deg, #234d8a 0%, #163058 100%);
  border-color: #234d8a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,58,108,0.35);
}

.btn-grey {
  background: linear-gradient(135deg, #0097a7 0%, #00796b 100%);
  color: var(--white);
  border-color: #0097a7;
}
.btn-grey:hover {
  background: linear-gradient(135deg, #00acc1 0%, #00897b 100%);
  border-color: #00acc1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,151,167,0.35);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--primary);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--white); transition: var(--transition); font-weight: 600; }
.topbar a:hover { color: var(--accent); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-item { display: flex; align-items: center; gap: 6px; }

/* ===== HEADER / NAV ===== */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 9990;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
  overflow: visible;
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.12); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
  position: relative;
}
.header .container { overflow: visible; }

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  font-weight: 800;
  color: var(--secondary);
  font-family: 'Jost', sans-serif;
  flex-shrink: 0;
}
.logo img {
  height: 52px !important;
  width: auto !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.logo:hover img {
  transform: scale(1.06);
  filter: drop-shadow(0 2px 8px rgba(14,110,140,0.3));
}
.logo:active img {
  transform: scale(0.97);
}
.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #1a3a6c 0%, #0d2240 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffab00;
  font-size: 22px;
  box-shadow: 0 2px 8px rgba(13,34,64,0.3);
}
.logo span { color: var(--primary); }
.logo small { display: block; font-size: 11px; font-weight: 400; color: var(--text-light); letter-spacing: 1px; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 1px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 10px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(14,110,140,0.07); }

/* Dropdown */
.dropdown { position: relative; z-index: 100; }
.dropdown:hover { z-index: 101; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 9999;
  border: 1px solid var(--border);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
}
.dropdown-item:hover { background: var(--bg-light); color: var(--primary); padding-left: 20px; }

.nav-cta { margin-left: 4px; }
.nav-cta .btn { padding: 10px 18px; font-size: 13px; }

/* Language switch — always visible in header bar */
.lang-switch {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1001;
}
.lang-switch:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.lang-switch svg { flex-shrink: 0; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #020a1a 0%, #041e42 30%, #0428b9 70%, #0a1628 100%);
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.hero::before { content: ''; position: absolute; inset: 0; z-index: 0; }
.hero-glow { display: none; }
.hero canvas.hero-waves { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { color: var(--white); }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(236,163,47,0.15);
  border: 1px solid rgba(236,163,47,0.3);
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero h1 .highlight { color: var(--accent); }
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* Hero form card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-form-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--secondary);
}
.hero-form-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* ===== FORM STYLES ===== */
.form-group { margin-bottom: 16px; position: relative; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14,110,140,0.12);
}
.form-group input::placeholder { color: #aaa; }

/* Messenger choice */
.messenger-choice {
  display: block;
  margin-top: 12px;
  margin-bottom: 16px;
}
.messenger-choice-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  display: block;
}
.messenger-options {
  display: flex;
  gap: 10px;
}
.messenger-option {
  flex: 1;
  position: relative;
}
.messenger-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.messenger-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  background: var(--white);
  user-select: none;
}
.messenger-option label:hover {
  border-color: var(--primary-light);
  background: rgba(14,110,140,0.03);
}
.messenger-option input[type="radio"]:checked + label {
  border-color: var(--primary);
  background: rgba(14,110,140,0.07);
  color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}
.messenger-option label .ico { width: 18px; height: 18px; flex-shrink: 0; }
.messenger-option label svg.ico { display: inline-block; vertical-align: middle; }
.messenger-tg input[type="radio"]:checked + label { border-color: #229ED9; background: rgba(34,158,217,0.07); color: #229ED9; box-shadow: 0 0 0 1px #229ED9; }
.messenger-wa input[type="radio"]:checked + label { border-color: #25D366; background: rgba(37,211,102,0.07); color: #25D366; box-shadow: 0 0 0 1px #25D366; }

.form-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-submit-btn:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(229,63,37,0.3); }
.form-privacy { font-size: 11px; color: var(--text-light); text-align: center; margin-top: 10px; }

/* Form success/error */
.form-message {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  text-align: center;
}
.form-message.success { background: rgba(14,110,140,0.1); color: var(--primary); border: 1px solid rgba(53,141,26,0.3); display: block; }
.form-message.error { background: rgba(220,53,69,0.1); color: #d32f2f; border: 1px solid rgba(211,47,47,0.3); display: block; }

/* ===== TRUST BADGES ===== */
/* ===== TRUST MARQUEE ===== */
.trust-marquee-wrap { background:#fff; border-bottom:1px solid #eee; border-top:3px solid var(--primary); padding:18px 0; overflow:hidden !important; width:100%; position:relative; }
.trust-marquee { position:relative; width:100%; overflow:hidden; }
.trust-marquee::before,.trust-marquee::after { content:''; position:absolute; top:0; bottom:0; width:80px; z-index:2; pointer-events:none; }
.trust-marquee::before { left:0; background:linear-gradient(90deg,#fff,transparent); }
.trust-marquee::after { right:0; background:linear-gradient(90deg,transparent,#fff); }
.trust-marquee-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: trustScroll 50s linear infinite;
  will-change: transform;
}
.trust-marquee-track:hover { animation-play-state:paused; }
@keyframes trustScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.tm-badge {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  white-space: nowrap;
  flex-shrink: 0;
  flex-wrap: nowrap !important;
}
.tm-badge img { flex-shrink:0; display:inline-block; }
.tm-badge svg { flex-shrink:0; display:inline-block; }
.tm-badge > div { line-height:1.3; display:inline-block; text-align:left; }
.tm-badge strong { display:block; font-size:13px; color:#1a1a1a; font-weight:700; white-space:nowrap; }
.tm-badge span { display:block; font-size:11px; color:#888; font-weight:400; white-space:nowrap; }
.tm-divider { width:1px; height:28px; background:#e1e1e1; flex-shrink:0; display:inline-block; }

@media (max-width: 768px) {
  .trust-marquee-wrap { padding: 14px 0; }
  .tm-badge { padding: 0 16px; gap: 8px; }
  .tm-badge strong { font-size: 12px; }
  .tm-badge span { font-size: 10px; }
  .trust-marquee-track { animation-duration: 40s; }
}

.trust-bar {
  background: var(--white);
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  border-top: 3px solid var(--primary);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.trust-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.trust-badge-text span { display: block; font-size: 12px; font-weight: 400; color: var(--text-light); }

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--white);
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item { text-align: center; color: var(--text); }
.stat-number {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  display: block;
}
.stat-suffix { color: var(--accent); }
.stat-label { font-size: 15px; color: var(--text-light); margin-top: 8px; }

/* ===== SERVICE CARDS V2 WITH PHOTOS ===== */
.svc-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:20px; }
.svc-card { background:#fff; border-radius:14px; overflow:hidden; border:1px solid #e8edf2; transition:all 0.4s; text-decoration:none; display:block; }
.svc-card:hover { transform:translateY(-6px); box-shadow:0 16px 48px rgba(0,0,0,0.12); border-color:transparent; }
.svc-img { position:relative; height:160px; overflow:hidden; }
.svc-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s; }
.svc-card:hover .svc-img img { transform:scale(1.08); }
.svc-img .svc-flag { position:absolute; top:10px; left:10px; font-size:28px; filter:drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.svc-body { padding:18px 20px 22px; }
.svc-body h3 { font-size:17px; margin-bottom:6px; color:#1a1a1a; }
.svc-body p { font-size:13px; color:#666; line-height:1.5; margin-bottom:12px; }
.svc-link { font-size:13px; font-weight:700; color:var(--primary); }
.svc-card:hover .svc-link { color:var(--accent); }
@media (max-width:960px) { .svc-grid { grid-template-columns:repeat(2, 1fr); } }
@media (max-width:480px) { .svc-grid { grid-template-columns:1fr; } .svc-img { height:140px; } }

/* ===== SERVICES (legacy) ===== */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(53,141,26,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); }
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-light); margin-bottom: 20px; line-height: 1.7; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* ===== WHY CHOOSE US ===== */
.why-us { background: var(--white); }
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-us-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-us-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); min-height: 480px; }
.why-us-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.why-us-badge-icon { font-size: 36px; }
.why-us-badge-text strong { display: block; font-size: 22px; color: var(--primary); }
.why-us-badge-text span { font-size: 13px; color: var(--text-light); }

.why-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-feature:hover { border-color: var(--primary); background: rgba(53,141,26,0.04); }
.why-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  color: white;
}
.why-feature-body h4 { font-size: 16px; margin-bottom: 4px; }
.why-feature-body p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ===== COUNTRIES ===== */
.countries-section { background: var(--white); }
.countries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.country-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.country-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.country-flag {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  background: var(--bg-light);
  background-size: cover;
  background-position: center;
  position: relative;
}
.country-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.country-info { padding: 16px; }
.country-info h4 { font-size: 16px; margin-bottom: 4px; }
.country-info p { font-size: 12px; color: var(--text-light); }
.country-tag {
  display: inline-block;
  background: rgba(14,110,140,0.1);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 8px;
}

/* ===== PROCESS ===== */
.process-section { background: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step-num {
  width: 72px;
  height: 72px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.process-step:hover .process-step-num {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}
.process-step h4 { font-size: 15px; margin-bottom: 6px; }
.process-step p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ===== SUCCESS GALLERY ===== */
.success-gallery { background: var(--bg-light); padding: 80px 0; }
.stories-carousel {
  position: relative;
  overflow: hidden;
  margin: 0 -12px;
}
.stories-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 12px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.stories-track::-webkit-scrollbar { display: none; }
.story-card {
  flex: 0 0 240px;
  min-width: 240px;
  max-width: 240px;
  height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transition: var(--transition);
  cursor: pointer;
  background: var(--white);
}
.story-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.18); }
.story-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}
.stories-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: var(--transition);
  line-height: 1;
}
.stories-arrow:hover { background: var(--primary-dark); transform: translateY(-50%) scale(1.1); }
.stories-arrow-left { left: 8px; }
.stories-arrow-right { right: 8px; }
.stories-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.stories-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}
.stories-dot.active { background: var(--primary); transform: scale(1.2); }

/* ===== TESTIMONIALS (subpage) ===== */
.testimonials-section { background: var(--bg-light); padding: 80px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: var(--accent); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; color: var(--text); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--primary);
  box-shadow: 0 2px 12px rgba(53,141,26,0.15);
}
.testimonial-name { font-size: 15px; font-weight: 700; color: var(--secondary); }
.testimonial-country { font-size: 12px; color: var(--text-light); }

/* ===== CTA BANNER ===== */
.cta-section {
  padding: 80px 0;
  text-align: center;
}
.cta-section:not(.section-red):not(.section-blue) {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.cta-section h2 { font-size: clamp(28px, 4vw, 42px); color: var(--white); margin-bottom: 16px; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info h3 { font-size: 24px; margin-bottom: 12px; }
.contact-info p { font-size: 15px; color: var(--text-light); margin-bottom: 30px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(14,110,140,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-detail-body label { display: block; font-size: 12px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 4px; }
.contact-detail-body a, .contact-detail-body span { font-size: 15px; font-weight: 600; color: var(--text); }
.contact-detail-body a:hover { color: var(--primary); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form-card h3 { font-size: 22px; margin-bottom: 8px; }
.contact-form-card p { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.75); }
.footer-main {
  padding: 64px 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.8; max-width: 260px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-col h4 { color: var(--white); font-size: 16px; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-links a::before { content: '›'; color: var(--primary); font-size: 18px; }
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom a { color: var(--accent); }
.footer-bottom a:hover { color: var(--white); }

/* ===== FLOATING BUTTONS ===== */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
  text-decoration: none;
  border: none;
}
.float-btn:hover { transform: scale(1.1); }
.float-wa { background: #25D366; }
.float-tg { background: #229ED9; }
.float-call { background: var(--accent); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transform: translateY(-20px);
  transition: var(--transition);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 36px;
  height: 36px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  border: none;
}
.modal { position: relative; }
.modal h3 { font-size: 22px; margin-bottom: 6px; }
.modal p { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.animate { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease; }
.js-ready .animate { opacity: 0; transform: translateY(20px); }
.js-ready .animate.visible { opacity: 1; transform: translateY(0); }

/* ===== COLORFUL SECTION VARIANTS (like dm-consultant) ===== */
.section-red {
  background: linear-gradient(135deg, #ff6d00 0%, #e65100 100%);
  color: white;
}
.section-red h2, .section-red h3, .section-red h4 { color: white; }
.section-red p, .section-red .stat-label { color: rgba(255,255,255,0.85); }
.section-red .stat-number { color: white; }
.section-red .tag { background: rgba(255,255,255,0.15); color: white; }

.section-blue {
  background: linear-gradient(135deg, #1a3a6c 0%, #0d2240 100%);
  color: white;
}
.section-blue h2, .section-blue h3, .section-blue h4 { color: white; }
.section-blue p, .section-blue .stat-label { color: rgba(255,255,255,0.85); }
.section-blue .stat-number { color: #ffd700; }
.section-blue .tag { background: rgba(255,255,255,0.15); color: white; }

.section-dark {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: white; }
.section-dark p { color: rgba(255,255,255,0.8); }
.section-dark .tag { background: rgba(255,255,255,0.1); color: white; }

/* ===== TWO-COL GRIDS (used across all pages) ===== */
.india-spotlight-grid,
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.india-spotlight-grid > *,
.two-col-grid > * {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

/* lang-switch z-index handled in main definition above */

/* ===== GLOBAL OVERFLOW GUARD ===== */
html, body { overflow-x: hidden; max-width: 100vw; }
section, .hero, .trust-bar, .footer { overflow-x: hidden; }
/* NOTE: .container and .header must NOT have overflow:hidden — breaks dropdowns */

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .countries-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .hero .container { grid-template-columns: 1fr; gap: 30px; }
  .hero { padding: 50px 0; min-height: auto; }
  .hero-form-card { padding: 24px 20px; }
  .hero h1 { font-size: clamp(26px, 6vw, 36px); }
  .why-us-grid { grid-template-columns: 1fr; gap: 30px; }
  .why-us-image img { min-height: 280px !important; height: 280px !important; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .story-card { flex: 0 0 220px; min-width: 220px; max-width: 220px; height: 160px; }
  .stories-arrow { width: 36px; height: 36px; font-size: 22px; }
  .services-grid { grid-template-columns: 1fr; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .country-flag { height: 100px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-number { font-size: clamp(28px, 8vw, 42px); }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }

  /* Nav mobile */
  .nav-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 76px 20px 30px;
    gap: 0;
    overflow-y: auto;
    z-index: 9980;
  }
  .nav-menu.open { display: flex; }
  .nav-item { border-bottom: 1px solid var(--border); }
  .nav-link { font-size: 15px; padding: 12px 8px; width: 100%; border-radius: 0; }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-radius: 0;
    background: var(--bg-light); margin: 0; padding: 0 0 0 12px;
  }
  .dropdown-item { font-size: 13px; padding: 8px 10px; border-radius: 0; }
  .hamburger { display: flex; z-index: 9995; }
  .lang-switch { z-index: 9995; padding: 5px 10px; font-size: 12px; }
  .nav-cta { width: 100%; padding: 12px 0 0; border-bottom: none; }
  .nav-cta .btn { width: 100%; justify-content: center; font-size: 14px; padding: 12px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  /* Trust bar overflow fix */
  .trust-bar .container { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; gap: 16px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .trust-bar .container::-webkit-scrollbar { display: none; }
  .trust-badge { flex-shrink: 0; min-width: max-content; }

  .topbar { display: none; }
  .footer-main { grid-template-columns: 1fr; gap: 24px; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 24px; }
  .contact-form-card { padding: 20px; }

  /* Two-col grids → single col on mobile — CRITICAL */
  .india-spotlight-grid,
  .two-col-grid { grid-template-columns: 1fr; gap: 30px; }
  .india-spotlight-grid > *,
  .two-col-grid > * { min-width: 0; max-width: 100%; overflow: hidden; }
  .india-spotlight-grid img,
  .two-col-grid img { max-width: 100%; height: auto; }
  .india-spotlight-grid .btn,
  .two-col-grid .btn { white-space: normal; word-break: break-word; }

  /* Sections colorful on mobile */
  .section-title { font-size: clamp(24px, 5vw, 36px); }
  .section-subtitle { font-size: 15px; margin-bottom: 32px; }

  /* Modal mobile */
  .modal { padding: 28px 20px; max-width: 95vw; }
  .modal-close { top: -8px; right: -8px; width: 32px; height: 32px; font-size: 16px; }
}

@media (max-width: 480px) {
  .countries-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .country-flag { height: 80px; font-size: 40px; }
  .country-info { padding: 10px; }
  .country-info h4 { font-size: 14px; }
  .country-info p { font-size: 11px; }
  .process-steps { grid-template-columns: 1fr; gap: 16px; }
  .process-step-num { width: 56px; height: 56px; font-size: 18px; }
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 15px; }
  .messenger-options { flex-direction: column; }
  .btn { padding: 12px 20px; font-size: 14px; }
  .container { padding: 0 16px; }
  .service-card { padding: 24px 20px; }
  .why-feature { padding: 16px; }
  .footer-brand p { font-size: 13px; }
  .floating-btns { bottom: 16px; right: 16px; }
  .float-btn { width: 48px; height: 48px; }
  .float-btn svg { width: 24px; height: 24px; }
}

/* ===== Font Awesome Icon Overrides ===== */
.service-icon { display:flex; align-items:center; justify-content:center; width:72px; height:72px; background:var(--bg-green); border-radius:16px; margin-bottom:20px; }
.service-icon i { line-height:1; }
.why-feature-icon { display:flex; align-items:center; justify-content:center; width:36px; height:36px; background:var(--bg-green); border-radius:8px; flex-shrink:0; }
.why-feature-icon i { line-height:1; }
.hero-tag i { margin-right:4px; }

/* ===== Jobs Carousel ===== */
.jobs-carousel-wrap { position:relative; padding:0 48px; }
.jobs-track { display:flex; gap:20px; overflow-x:auto; scroll-behavior:smooth; scrollbar-width:none; -webkit-overflow-scrolling:touch; padding:8px 4px 16px; }
.jobs-track::-webkit-scrollbar { display:none; }
.jobs-arrow { position:absolute; top:50%; transform:translateY(-50%); width:40px; height:40px; border-radius:50%; border:1px solid var(--border); background:var(--white); color:var(--text); cursor:pointer; display:flex; align-items:center; justify-content:center; z-index:2; box-shadow:var(--shadow); transition:var(--transition); }
.jobs-arrow:hover { background:var(--primary); color:#fff; border-color:var(--primary); }
.jobs-arrow-left { left:0; }
.jobs-arrow-right { right:0; }

.job-card { flex:0 0 272px; background:var(--white); border-radius:16px; overflow:hidden; box-shadow:0 4px 20px rgba(0,0,0,0.08); transition:transform 0.3s,box-shadow 0.3s; }
.job-card:hover { transform:translateY(-4px); box-shadow:0 8px 28px rgba(0,0,0,0.14); }
.job-card img { width:100%; height:160px; object-fit:cover; display:block; }
.job-card-body { padding:18px 20px 20px; }
.job-country { display:inline-block; font-size:12px; font-weight:700; color:var(--text-light); text-transform:uppercase; letter-spacing:0.5px; margin-bottom:6px; }
.job-card-body h4 { font-size:17px; font-weight:700; margin-bottom:6px; color:var(--text); }
.job-salary { font-size:18px; font-weight:800; color:var(--primary); margin-bottom:12px; }
.job-salary span { font-size:13px; font-weight:500; color:var(--text-light); }
.job-reqs { list-style:none; padding:0; margin:0 0 16px; display:flex; flex-direction:column; gap:6px; }
.job-reqs li { font-size:13px; color:var(--text-light); display:flex; align-items:center; gap:6px; }
.job-reqs li i { color:var(--primary); font-size:12px; flex-shrink:0; }
.btn-sm { padding:10px 20px; font-size:13px; width:100%; }

@media (max-width:768px) {
  .jobs-carousel-wrap { padding:0; }
  .jobs-arrow { display:none; }
  .jobs-track { padding:4px 4px 12px; gap:14px; }
  .job-card { flex:0 0 260px; }
}

/* ===== Vacancies Grid ===== */
.vacancies-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:24px; }
.vacancy-card { background:var(--white); border-radius:16px; overflow:hidden; box-shadow:0 4px 20px rgba(0,0,0,0.08); transition:transform 0.3s,box-shadow 0.3s; }
.vacancy-card:hover { transform:translateY(-4px); box-shadow:0 8px 28px rgba(0,0,0,0.14); }
.vacancy-card img { width:100%; height:180px; object-fit:cover; display:block; }
.vacancy-body { padding:20px 24px 24px; }
.vacancy-country { font-size:12px; font-weight:700; color:var(--text-light); text-transform:uppercase; letter-spacing:0.5px; margin-bottom:8px; }
.vacancy-country i { color:var(--accent); margin-right:4px; }
.vacancy-body h4 { font-size:17px; font-weight:700; margin-bottom:8px; color:var(--text); line-height:1.3; }
.vacancy-salary { font-size:20px; font-weight:800; color:var(--primary); margin-bottom:14px; }
.vacancy-salary span { font-size:13px; font-weight:500; color:var(--text-light); }
.vacancy-details { list-style:none; padding:0; margin:0 0 18px; display:flex; flex-direction:column; gap:7px; }
.vacancy-details li { font-size:13px; color:var(--text-light); display:flex; align-items:center; gap:7px; }
.vacancy-details li i { color:var(--primary); font-size:12px; flex-shrink:0; }
.btn-lg { padding:16px 36px; font-size:16px; }

@media (max-width:768px) {
  .vacancies-grid { grid-template-columns:1fr; }
}

/* ===== Employment Promo Block ===== */
.emp-promo { background:linear-gradient(135deg,#0d1b2a 0%,#1a3a5c 50%,#0d2240 100%); padding:80px 0; color:white; overflow:hidden; }
.emp-promo-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.emp-tag { background:rgba(255,171,0,0.15); color:#ffab00; }
.emp-title { color:white; font-size:clamp(24px,3.5vw,38px); margin:16px 0; line-height:1.25; }
.emp-title span { color:var(--accent); }
.emp-desc { color:rgba(255,255,255,0.8); font-size:15px; line-height:1.7; margin-bottom:24px; }
.emp-stats { display:flex; gap:28px; margin-bottom:28px; flex-wrap:wrap; }
.emp-stat strong { font-size:26px; font-weight:800; color:#ffab00; display:block; }
.emp-stat span { font-size:12px; color:rgba(255,255,255,0.55); }
.emp-promo-imgs { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.emp-promo-imgs img { width:100%; height:160px; object-fit:cover; border-radius:14px; }

/* Brand image overlay — hides Russian watermarks */
.brand-img-wrap { position:relative; border-radius:14px; overflow:hidden; display:block; }
.brand-img-wrap img { object-position: left 65%; }
.brand-img-wrap::after { content:''; position:absolute; top:-2px; right:-2px; width:140px; height:48px; background:radial-gradient(ellipse at top right, rgba(13,27,42,0.97) 40%, rgba(13,27,42,0.7) 70%, transparent 100%); z-index:2; pointer-events:none; }
.brand-country { position:absolute; top:8px; right:8px; z-index:3; background:rgba(0,102,255,0.95); color:#fff; font-size:11px; font-weight:700; padding:5px 12px; border-radius:6px; white-space:nowrap; line-height:1.3; backdrop-filter:blur(4px); }
.brand-country small { display:block; font-size:9px; font-weight:400; opacity:0.8; }
.emp-promo .btn-lg { padding:14px 28px; font-size:15px; }
.emp-promo .btn-lg i { margin-right:8px; }

@media (max-width:960px) {
  .emp-promo-grid { grid-template-columns:1fr; gap:32px; }
  .emp-promo-imgs { grid-template-columns:1fr 1fr; max-width:400px; }
  .emp-promo-imgs img { height:120px; }
}
@media (max-width:480px) {
  .emp-promo { padding:48px 0; }
  .emp-stats { gap:16px; }
  .emp-stat strong { font-size:22px; }
  .emp-promo-imgs { gap:8px; }
  .emp-promo-imgs img { height:90px; border-radius:10px; }
}

/* ===== Included Section (Employment) ===== */
.included-section { background:linear-gradient(135deg,#0d1b2a,#1a3a5c); color:white; padding:80px 0; }
.included-section .section-header { text-align:center; max-width:680px; margin:0 auto 48px; }
.included-section .section-title { color:white; }
.included-section .section-subtitle { color:rgba(255,255,255,0.8); }
.included-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:20px; }
.included-card { background:rgba(255,255,255,0.06); border-radius:16px; padding:28px; border:1px solid rgba(255,255,255,0.1); transition:transform 0.3s,background 0.3s; }
.included-card:hover { background:rgba(255,255,255,0.1); transform:translateY(-3px); }
.included-card i { font-size:30px; color:var(--accent-gold); margin-bottom:16px; display:block; }
.included-card h4 { color:white; margin-bottom:8px; font-size:16px; }
.included-card p { color:rgba(255,255,255,0.65); font-size:14px; line-height:1.6; }
@media (max-width:768px) {
  .included-grid { grid-template-columns:1fr; }
  .included-section { padding:48px 0; }
}

