/* ============================================================
   TOP INFO BAR
============================================================ */
.topbar {
  background: var(--P-DK);
  padding: 9px 0;
  font-size: 12.5px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar-contacts { display: flex; align-items: center; gap: 24px; }
.topbar-contacts a {
  color: rgba(255,255,255,.78); display: flex; align-items: center; gap: 7px;
  transition: color .25s; font-weight: 500; font-size: 12.5px;
}
.topbar-contacts a:hover { color: var(--GOLD-L); }
.topbar-contacts a i { font-size: 12px; color: var(--GOLD-L); }
.topbar-right a {
  background: var(--GOLD); color: #fff;
  padding: 5px 18px; border-radius: 6px; font-weight: 700; font-size: 12px;
  transition: var(--T); letter-spacing: .3px;
}
.topbar-right a:hover { background: var(--GOLD-L); }

/* ============================================================
   NAVBAR  –  Premium dark-glass style
============================================================ */
.navbar {
  background: #fff;
  position: sticky; top: 0; z-index: 900;
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: box-shadow .3s, background .3s, top .3s;
}
.navbar.up {
  box-shadow: 0 2px 20px rgba(0,0,0,.10);
  border-color: transparent;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.nav-logo img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.nav-list { display: flex; align-items: center; gap: 0; }
.mob-nav-close { display: none; }
.mob-nav-close-wrap { display: none; }

.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 10px 14px; color: #1a2237;
  font-weight: 600; font-size: 13.5px; transition: color .22s;
  position: relative; letter-spacing: .1px;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2.5px; background: var(--P); border-radius: 3px;
  transform: scaleX(0); transition: transform .28s var(--R); transform-origin: left;
}
.nav-item:hover > .nav-link { color: var(--P); }
.nav-item:hover > .nav-link::after { transform: scaleX(1); }
.nav-link .chev { font-size: 9px; margin-top: 1px; transition: transform .25s; color: var(--MUTED); }
.nav-item:hover > .nav-link .chev { transform: rotate(180deg); color: var(--P); }

/* Dropdown */
.drop {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--WHITE); min-width: 230px; border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,.14); border: 1px solid rgba(0,0,0,.07);
  opacity: 0; visibility: hidden; transform: translateY(10px) scale(.97);
  transition: var(--T); z-index: 910; overflow: hidden;
  border-top: 3px solid var(--GOLD);
}
.nav-item:hover .drop { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.drop a { display: block; padding: 10px 18px; font-size: 13.5px; color: var(--BODY); font-weight: 500; transition: var(--T); }
.drop a:hover { color: var(--P); background: var(--P-LT); padding-left: 24px; }

/* Mega menu */
.mega {
  position: absolute; top: calc(100% + 4px);
  left: 50%; transform: translateX(-50%) translateY(10px) scale(.97);
  background: var(--WHITE); width: 620px; border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,.14); border: 1px solid rgba(0,0,0,.07);
  opacity: 0; visibility: hidden;
  transition: var(--T); z-index: 910;
  border-top: 3px solid var(--GOLD); padding: 24px;
}
.nav-item:hover .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0) scale(1); }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mega-col h5 {
  font-size: 10.5px; font-weight: 800; color: var(--GOLD);
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--BORDER);
}
.mega-col ul li a {
  display: block; padding: 6px 8px; border-radius: 6px;
  font-size: 13.5px; color: var(--BODY); font-weight: 500; transition: var(--T);
}
.mega-col ul li a:hover { color: var(--P); background: var(--P-LT); padding-left: 14px; }
.mega-col ul li.sub a {
  font-size: 12.5px; color: var(--MUTED);
  padding: 5px 8px 5px 20px; font-weight: 400;
}
.mega-col ul li.sub a::before { content: '→ '; color: var(--GOLD); font-size: 11px; }
.mega-col ul li.sub a:hover { color: var(--P); padding-left: 26px; }

/* Nav apply btn */
.nav-apply { margin-left: 8px; }
.nav-apply .btn-prim {
  background: linear-gradient(135deg, var(--P) 0%, var(--P-MD) 100%);
  color: #fff; box-shadow: 0 4px 16px rgba(24,101,52,.32);
}
.nav-apply .btn-prim:hover { background: linear-gradient(135deg, var(--P-MD) 0%, #25a050 100%); box-shadow: 0 6px 24px rgba(24,101,52,.42); }

/* Hamburger */
.ham { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.ham span { width: 23px; height: 2px; background: var(--INK); border-radius: 2px; transition: var(--T); display: block; }
.ham.on span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.ham.on span:nth-child(2) { opacity: 0; }
.ham.on span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mob-veil { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.52); z-index: 890; }
.mob-veil.on { display: block; }

/* ============================================================
   HERO  –  Diagonal split: angled green panel left | image right
============================================================ */
.hero-wrap {
  position: relative; overflow: hidden;
  background: #051a0c;
}
.hero-dots-bg { display: none; }

.hero-slider {
  position: relative;
  height: 600px;
  display: flex; align-items: stretch;
}

/* ── Slide: flex row – text left | image right ── */
.hslide {
  position: absolute; inset: 0;
  display: flex; align-items: stretch;
  opacity: 0;
  transition: opacity .85s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.hslide.on { opacity: 1; pointer-events: auto; }
.hslide-bg, .hslide-overlay { display: none; }

/* ── LEFT: angled green panel – stays in flow, overlaps image via negative margin ── */
.ht-panel {
  position: relative; z-index: 3;
  flex: 0 0 52%;
  /* Extend 80px into image area – clip-path creates the diagonal blade in that zone */
  margin-right: -80px;
  background: linear-gradient(155deg, #051a0c 0%, #0d3d1e 50%, #186534 100%);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
  display: flex; align-items: center;
  padding: 60px 140px 60px 60px;  /* right padding > overlap so text isn't clipped */
  overflow: hidden;
}

/* ── RIGHT: image fully visible in its own flex column ── */
.hi-panel {
  display: flex !important;
  position: relative; z-index: 1;
  flex: 1; overflow: hidden;
}
.hi-panel img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: block;
  transition: transform 8s ease;
}
.hslide.on .hi-panel img { transform: scale(1.05); }

/* dot-grid texture */
.ht-panel-dots {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* decorative glow circle */
.ht-panel::before {
  content: '';
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(24,101,52,.35) 0%, transparent 65%);
  top: -200px; right: -100px; pointer-events: none; z-index: 0;
}

.ht-content { position: relative; z-index: 1; max-width: 480px; }

.ht-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(212,160,23,.16); color: var(--GOLD-L);
  border: 1px solid rgba(212,160,23,.3);
  padding: 5px 16px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  margin-bottom: 18px;
}

.ht-h1 {
  font-size: clamp(28px, 3.2vw, 50px);
  font-weight: 900; color: #fff; line-height: 1.1;
  letter-spacing: -.4px; margin-bottom: 14px;
}
.ht-h1 span { color: var(--GOLD-L); }

.ht-tagline {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--GOLD);
  background: linear-gradient(90deg, var(--GOLD) 0%, var(--GOLD-L) 100%);
  color: #1a1000;
  padding: 7px 18px; border-radius: 7px;
  font-size: 13.5px; font-weight: 800;
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(212,160,23,.35);
}

.ht-sub {
  font-size: clamp(13px, 1.3vw, 15px); color: rgba(255,255,255,.72);
  line-height: 1.76; margin-bottom: 28px; max-width: 420px;
}

.ht-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

.ht-stats {
  display: flex; flex-wrap: wrap; gap: 0;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 12px 6px;
  width: fit-content; backdrop-filter: blur(8px);
}
.ht-stat {
  display: flex; flex-direction: column; padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.ht-stat:first-child { padding-left: 12px; }
.ht-stat:last-child { border-right: none; }
.ht-stat-n { font-size: 20px; font-weight: 900; color: var(--GOLD-L); line-height: 1; }
.ht-stat-l { font-size: 10px; color: rgba(255,255,255,.55); margin-top: 3px; font-weight: 500; }

/* Text animations */
.hslide.on .ht-pill    { animation: htxt .65s .05s both; }
.hslide.on .ht-h1      { animation: htxt .65s .18s both; }
.hslide.on .ht-tagline { animation: htxt .65s .30s both; }
.hslide.on .ht-sub     { animation: htxt .65s .40s both; }
.hslide.on .ht-btns    { animation: htxt .65s .50s both; }
.hslide.on .ht-stats   { animation: htxt .65s .60s both; }
@keyframes htxt { from { opacity:0; transform:translateX(-28px); } to { opacity:1; transform:none; } }

/* Floating trust badge – inside image area */
.hero-trust {
  position: absolute; bottom: 40px; right: 40px; z-index: 5;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-radius: 14px; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.9);
}
.hslide.on .hero-trust { animation: popIn .5s .9s both; }
@keyframes popIn { from { opacity:0; transform:scale(.85) translateY(10px); } to { opacity:1; transform:none; } }
.hero-trust-icon {
  width: 40px; height: 40px; border-radius: 9px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--P), var(--P-MD));
  color: var(--GOLD-L);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.hero-trust-text strong { display: block; font-size: 13px; font-weight: 800; color: var(--INK); line-height: 1.2; }
.hero-trust-text span { font-size: 11px; color: var(--MUTED); }

/* Nav arrows */
.hero-nav {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.ha {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3);
  color: #fff; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--T); backdrop-filter: blur(6px);
}
.ha:hover { background: var(--GOLD); border-color: var(--GOLD); transform: scale(1.1); }

/* Dot indicators */
.hero-dots-nav {
  position: absolute; bottom: 40px; right: 130px;
  display: flex; gap: 7px; z-index: 10;
}
.hd {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.3); cursor: pointer; transition: var(--T);
}
.hd.on { background: var(--GOLD-L); width: 26px; border-radius: 4px; }

/* ── Not used ── */
.hi-badge-top, .hi-chip, .hi-ring, .hi-card { display: none; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .ht-panel { flex: 0 0 55%; padding: 50px 120px 50px 44px; }
}
@media (max-width: 860px) and (min-width: 769px) {
  .ht-panel { flex: 0 0 60%; padding: 44px 110px 44px 32px; clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%); }
  .ht-h1 { font-size: clamp(24px,3vw,38px); }
}
@media (max-width: 768px) {
  .hero-slider { height: auto; display: block; }
  .hslide { position: relative; inset: unset; flex-direction: column; width: 100%; }
  .hslide:not(.on) { display: none; }
  .hslide.on { display: flex; width: 100%; }
  /* Image on top, full width */
  .hi-panel { flex: none; height: 280px; width: 100%; order: -1; }
  .ht-panel {
    flex: none; width: 100%; margin-right: 0; clip-path: none;
    padding: 36px 24px 52px; box-sizing: border-box;
    background: linear-gradient(160deg, #051a0c 0%, #0d3d1e 60%, #186534 100%);
  }
  .ht-panel::before { display: none; }
  .hero-trust { bottom: 14px; right: 14px; }
  .hero-dots-nav { right: 14px; bottom: 14px; }
  .hero-nav { bottom: 8px; }
  /* Kill desktop hover transform on mega menu — tap events must not shift it */
  .nav-item:hover .mega { transform: none; }
  .drop, .mega { transform: none !important; }
}
@media (max-width: 480px) {
  .hi-panel { height: 220px; width: 100%; }
  .ht-h1 { font-size: 22px; }
  .ht-tagline { font-size: 11.5px; padding: 6px 14px; }
  .ht-btns { flex-direction: column; }
  .ht-btns .btn { width: 100%; justify-content: center; }
  .ht-stat-n { font-size: 17px; }
  .ht-stats { gap: 10px; }
}

/* ============================================================
   STATS STRIP
============================================================ */
.stats-strip { background: var(--INK); }
.sgrid { display: grid; grid-template-columns: repeat(4,1fr); }
.scell {
  padding: 26px 18px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .3s;
}
.scell:last-child { border-right: none; }
.scell:hover { background: rgba(255,255,255,.03); }
.scell::after { display: none; }
.sn { font-size: clamp(26px,3vw,36px); font-weight: 900; color: var(--GOLD-L); line-height: 1; margin-bottom: 5px; }
.sl { font-size: 12px; color: rgba(255,255,255,.55); font-weight: 500; letter-spacing: .3px; }

/* ============================================================
   SECTION BASE
============================================================ */
.sec { padding: 88px 0; }
.sec-alt { background: var(--BG); }
.sec-dark { background: linear-gradient(145deg, var(--P-DK) 0%, var(--P) 100%); }
