/* =============================================
   TOKENS
============================================= */
:root {
  --bg:        #0D1F17;
  --bg-alt:    #091510;
  --bg-card:   rgba(20,43,30,0.85);
  --bg-cs:     #142B1E;
  --sage:      #7EB89A;
  --sage-l:    #A8D5B5;
  --gold:      #C9A96E;
  --gold-l:    #DEC08A;
  --text:      #F5F0EB;
  --text-2:    #9BB5A8;
  --text-3:    #5C7A6A;
  --border:    rgba(126,184,154,0.12);
  --border-g:  rgba(201,169,110,0.22);
  --font:      'Manrope', system-ui, sans-serif;
  --r:         12px;
  --rl:        20px;
  --sec:       clamp(80px,10vw,140px);
  --mw:        1280px;
  --px:        clamp(20px,6vw,80px);
  --ease:      cubic-bezier(.25,.46,.45,.94);
  --ease-b:    cubic-bezier(.34,1.56,.64,1);
}

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

/* =============================================
   TYPOGRAPHY
============================================= */
.sec-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 14px;
}
.sec-tag::before { content: ''; width: 28px; height: 1px; background: var(--sage); }
.sec-h {
  font-size: clamp(32px,4.5vw,60px); font-weight: 300;
  line-height: 1.12; letter-spacing: -.025em; color: var(--text); margin-bottom: 20px;
}
.sec-h em { font-style: normal; color: var(--gold); }
.sec-sub {
  font-size: clamp(15px,1.5vw,18px); color: var(--text-2); line-height: 1.75;
  max-width: 600px; margin-bottom: 48px;
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px; font-size: 14px; font-weight: 600;
  letter-spacing: .02em; transition: all .3s var(--ease); white-space: nowrap; cursor: pointer;
}
.btn-gold  { background: var(--gold); color: #091510; }
.btn-gold:hover { background: var(--gold-l); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,169,110,.35); }
.btn-ghost { background: transparent; border: 1px solid rgba(245,240,235,.2); color: var(--text); }
.btn-ghost:hover { border-color: var(--sage); color: var(--sage); transform: translateY(-2px); }
.btn-lg  { padding: 18px 40px; font-size: 15px; }
.btn-xl  { padding: 20px 52px; font-size: 16px; }
.btn-sm  { padding: 10px 22px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* =============================================
   LAYOUT
============================================= */
.container { width: 100%; max-width: var(--mw); margin: 0 auto; padding: 0 var(--px); }
.section { padding: var(--sec) 0; position: relative; }

/* =============================================
   REVEAL
============================================= */
.rv { opacity: 0; transform: translateY(44px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.rv-r { opacity: 0; transform: translateX(52px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rv.in, .rv-r.in { opacity: 1; transform: none; }
/* Hero above-fold: pure CSS animation — no IO needed */
.hero__content .rv, .hero__content .rv-r {
  opacity: 0;
  transition: none;
  animation: heroFadeUp .9s var(--ease) forwards;
}
.hero__right .rv-r {
  opacity: 0;
  transition: none;
  animation: heroFadeRight 1s var(--ease) .2s forwards;
}
.hero__content .rv:nth-child(1) { animation-delay: .05s; }
.hero__content .rv:nth-child(2) { animation-delay: .15s; }
.hero__content .rv:nth-child(3) { animation-delay: .25s; }
.hero__content .rv:nth-child(4) { animation-delay: .35s; }
.hero__content .rv:nth-child(5) { animation-delay: .45s; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroFadeRight {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: none; }
}
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; } .d5 { transition-delay: .40s; } .d6 { transition-delay: .48s; }
.d7 { transition-delay: .56s; } .d8 { transition-delay: .64s; }

/* =============================================
   NAV
============================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0; transition: all .4s var(--ease);
}
.nav.scrolled {
  background: rgba(9,21,16,.96); backdrop-filter: blur(20px);
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex; align-items: center; gap: 36px;
  max-width: var(--mw); margin: 0 auto; padding: 0 var(--px);
}
.logo { display: flex; align-items: baseline; gap: 7px; flex-shrink: 0; }
.logo-n { font-size: 18px; font-weight: 800; color: var(--gold); letter-spacing: -.01em; }
.logo-cr { font-size: 11px; font-weight: 600; color: var(--text-2); letter-spacing: .12em; text-transform: uppercase; }
.nav__links { display: flex; list-style: none; gap: 30px; margin-left: auto; }
.nav__links a { font-size: 13px; font-weight: 500; color: var(--text-2); transition: color .2s; white-space: nowrap; }
.nav__links a:hover { color: var(--text); }
.nav__cta { margin-left: 12px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; margin-left: auto; padding: 8px; }
.nav__burger span { width: 22px; height: 1.5px; background: var(--text); border-radius: 2px; transition: all .3s; display: block; }
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-5px); }

/* Mobile Menu */
.mob-menu {
  position: fixed; inset: 0; background: rgba(9,21,16,.98); z-index: 99;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .35s var(--ease);
}
.mob-menu.open { opacity: 1; pointer-events: all; }
.mob-menu__inner { display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center; }
.mob-menu__inner a { font-size: 26px; font-weight: 300; color: var(--text-2); transition: color .2s; }
.mob-menu__inner a:hover { color: var(--text); }
.mob-menu__inner .btn { font-size: 16px; }

/* =============================================
   HERO
============================================= */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-img {
  width: 100%; height: 115%; object-fit: cover; object-position: center 30%;
  will-change: transform;
}
.hero__bg-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(9,21,16,.93) 0%, rgba(13,31,23,.72) 55%, rgba(13,31,23,.3) 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  padding-top: 110px; padding-bottom: 80px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(126,184,154,.1); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 16px;
  font-size: 11px; font-weight: 600; color: var(--sage); letter-spacing: .1em;
  margin-bottom: 22px; white-space: nowrap;
}
.hero__badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--sage);
  animation: dotpulse 2s infinite;
}
@keyframes dotpulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.7)} }
.hero__h1 {
  font-size: clamp(38px,5.8vw,76px); font-weight: 300;
  line-height: 1.08; letter-spacing: -.03em; margin-bottom: 22px;
}
.hero__h1 em { font-style: normal; color: var(--gold); }
.hero__sub { font-size: clamp(15px,1.5vw,18px); color: var(--text-2); line-height: 1.75; max-width: 510px; margin-bottom: 36px; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero__stats { display: flex; gap: 32px; padding-top: 32px; border-top: 1px solid var(--border); }
.hero__stat-n { display: block; font-size: 30px; font-weight: 800; color: var(--gold); letter-spacing: -.03em; line-height: 1; }
.hero__stat-l { font-size: 12px; color: var(--text-3); display: block; margin-top: 4px; }

/* Hero Right */
.hero__right { position: relative; display: flex; justify-content: center; }
.hero__photo-wrap { position: relative; display: inline-block; }
.hero__photo {
  width: 100%; max-width: 400px; aspect-ratio: 3/4;
  object-fit: cover; border-radius: var(--rl);
  filter: brightness(.92) contrast(1.08) saturate(.9);
  display: block;
}
.hero__cards { position: absolute; inset: 0; pointer-events: none; }
.hcard {
  position: absolute; background: rgba(9,21,16,.92); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: 10px; padding: 10px 16px;
  font-size: 12px; font-weight: 500; color: var(--text); white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.hcard-i { color: var(--sage); font-size: 13px; }
.hcard:nth-child(1) { top: 10%; right: -18px; animation: fl1 4s ease-in-out infinite; }
.hcard:nth-child(2) { top: 34%; left: -18px; animation: fl2 4.5s ease-in-out infinite; }
.hcard:nth-child(3) { top: 60%; right: -18px; animation: fl1 5s ease-in-out infinite; }
.hcard:nth-child(4) { bottom: 8%; left: 4px; animation: fl2 3.8s ease-in-out infinite; }
@keyframes fl1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes fl2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(9px)} }

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 1;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--text-3));
  animation: scrollL 2.2s ease-in-out infinite;
}
@keyframes scrollL {
  0%{transform:scaleY(0);transform-origin:top;opacity:1}
  50%{transform:scaleY(1);transform-origin:top;opacity:1}
  100%{transform:scaleY(0);transform-origin:bottom;opacity:0}
}
.scroll-hint span { font-size: 10px; letter-spacing: .16em; color: var(--text-3); text-transform: uppercase; }

/* =============================================
   PROBLEMS
============================================= */
.problems { background: var(--bg-alt); }
.probs-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
  gap: 14px; margin-bottom: 60px;
}
.prob-card {
  background: var(--bg-card); border: 1px solid rgba(220,80,80,.1);
  border-radius: var(--r); padding: 20px 22px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: all .3s var(--ease);
}
.prob-card:hover { border-color: rgba(220,80,80,.22); transform: translateY(-2px); }
.prob-x {
  width: 28px; height: 28px; border-radius: 50%; background: rgba(200,60,60,.1);
  color: #D97070; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.prob-card p { font-size: 14px; color: var(--text-2); line-height: 1.5; }
.probs-conclusion {
  text-align: center; padding: 48px 40px;
  background: linear-gradient(135deg, rgba(201,169,110,.07), rgba(126,184,154,.07));
  border: 1px solid var(--border-g); border-radius: var(--rl);
}
.probs-conclusion p { font-size: clamp(18px,2.5vw,28px); font-weight: 300; color: var(--text); line-height: 1.5; }
.probs-conclusion strong { color: var(--gold); font-weight: 600; }

/* =============================================
   ABOUT
============================================= */
.about { position: relative; overflow: hidden; }
.about__bg-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; opacity: .05;
}
.about__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.timeline { display: flex; flex-direction: column; gap: 0; margin: 28px 0; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px;
  width: 1px; background: linear-gradient(to bottom, var(--sage), transparent);
}
.tl-item { display: flex; gap: 24px; padding-bottom: 30px; position: relative; }
.tl-dot {
  width: 15px; height: 15px; border-radius: 50%; border: 2px solid var(--sage);
  background: var(--bg); flex-shrink: 0; margin-top: 4px; position: relative; z-index: 1;
}
.tl-item h3 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.tl-item p { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.about-quote {
  background: rgba(201,169,110,.07); border-left: 3px solid var(--gold);
  border-radius: 0 var(--r) var(--r) 0; padding: 22px 26px;
  font-size: clamp(15px,1.8vw,20px); font-weight: 300; font-style: italic;
  color: var(--text); line-height: 1.55;
}
.about-quote cite { display: block; margin-top: 10px; font-style: normal; font-size: 13px; color: var(--gold); font-weight: 600; }
.about__photo {
  width: 100%; border-radius: var(--rl); margin-bottom: 22px;
  object-fit: cover; object-position: top center;
  aspect-ratio: 3/4; max-height: 480px;
  filter: brightness(.92) contrast(1.06) saturate(.85);
}
.about__sg { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about__sg-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 20px; text-align: center;
}
.about__sg-item strong {
  display: block; font-size: 32px; font-weight: 800; color: var(--gold);
  letter-spacing: -.03em; line-height: 1; margin-bottom: 5px;
}
.about__sg-item span { font-size: 12px; color: var(--text-2); }

/* =============================================
   SERVICES
============================================= */
.srv-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 18px; }
.srv-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rl);
  padding: 30px; transition: all .4s var(--ease); position: relative; overflow: hidden;
}
.srv-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg,var(--sage),var(--gold));
  transform: scaleX(0); transition: transform .4s var(--ease);
}
.srv-card:hover { border-color: rgba(126,184,154,.28); transform: translateY(-4px); box-shadow: 0 24px 56px rgba(0,0,0,.28); }
.srv-card:hover::after { transform: scaleX(1); }
.srv-card.gold-card { border-color: rgba(201,169,110,.28); background: linear-gradient(135deg,rgba(201,169,110,.06),rgba(20,43,30,.9)); }
.srv-icon {
  width: 48px; height: 48px; border-radius: 12px; background: rgba(126,184,154,.1);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--sage);
}
.srv-icon svg { width: 22px; height: 22px; }
.srv-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.srv-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 16px; }
.srv-list { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.srv-list li { font-size: 13px; color: var(--text-3); padding-left: 14px; position: relative; }
.srv-list li::before { content: '→'; position: absolute; left: 0; color: var(--sage); font-size: 11px; }

/* =============================================
   HOW IT WORKS
============================================= */
.how { background: var(--bg-alt); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(250px,1fr)); gap: 20px; }
.step-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rl);
  padding: 28px; transition: all .3s var(--ease);
}
.step-card:hover { border-color: rgba(126,184,154,.28); transform: translateY(-3px); }
.step-n { font-size: 38px; font-weight: 800; color: rgba(126,184,154,.18); letter-spacing: -.03em; line-height: 1; margin-bottom: 12px; }
.step-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 7px; }
.step-card p { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* =============================================
   REGIONS MAP
============================================= */
.reg__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
#crMap { width: 100%; max-width: 520px; cursor: pointer; display: block; }
.cr-land { fill: rgba(126,184,154,.07); stroke: var(--sage); stroke-width: 1.5; }
.cr-sea { fill: rgba(126,184,154,.03); }
.r-dot { fill: var(--sage); transition: all .3s var(--ease); cursor: pointer; }
.r-dot.cap { fill: var(--gold); }
.r-pulse { fill: none; stroke: var(--sage); stroke-width: 1; opacity: 0; }
.r-pulse.cap-p { stroke: var(--gold); }
.region-point { --ox: 0px; --oy: 0px; }
.region-point:hover .r-dot, .region-point.active .r-dot { fill: var(--gold); }
.region-point:hover .r-label, .region-point.active .r-label { fill: var(--gold); }
.r-label { fill: var(--text-2); font-family: var(--font); font-size: 9px; font-weight: 600; pointer-events: none; }
.reg__info { position: sticky; top: 100px; }
.reg-detail { display: none; }
.reg-detail.active { display: block; }
.reg-name { font-size: 26px; font-weight: 600; margin-bottom: 10px; }
.reg-badge {
  display: inline-flex; background: rgba(201,169,110,.1); border: 1px solid var(--border-g);
  border-radius: 100px; padding: 4px 14px; font-size: 11px; font-weight: 700;
  color: var(--gold); letter-spacing: .05em; margin-bottom: 16px;
}
.reg-desc { font-size: 15px; color: var(--text-2); line-height: 1.72; margin-bottom: 22px; }
.reg-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.reg-stats div {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 14px; text-align: center;
}
.reg-stats span { display: block; font-size: 10px; color: var(--text-3); margin-bottom: 4px; letter-spacing: .04em; }
.reg-stats strong { font-size: 17px; font-weight: 700; color: var(--gold); }
.reg-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.reg-tags span {
  background: rgba(126,184,154,.1); border: 1px solid var(--border);
  border-radius: 100px; padding: 4px 13px; font-size: 12px; color: var(--sage);
}
.reg-hint { font-size: 15px; color: var(--text-2); line-height: 1.6; }

/* =============================================
   INVESTORS
============================================= */
.inv { position: relative; overflow: hidden; }
.inv__bg { position: absolute; inset: 0; z-index: 0; }
.inv__bg img { width: 100%; height: 100%; object-fit: cover; }
.inv__ov { position: absolute; inset: 0; background: linear-gradient(to bottom,rgba(9,21,16,.97),rgba(9,21,16,.92)); }
.inv > .container { position: relative; z-index: 1; }
.inv-nums {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 56px;
  padding: 36px 40px; background: rgba(20,43,30,.55); border: 1px solid var(--border);
  border-radius: var(--rl); text-align: center;
}
.inv-n strong { display: block; font-size: 44px; font-weight: 800; color: var(--gold); letter-spacing: -.03em; line-height: 1; margin-bottom: 8px; }
.inv-n span { font-size: 13px; color: var(--text-2); }
.inv-cards { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 18px; margin-bottom: 44px; }
.inv-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rl);
  overflow: hidden; transition: all .4s var(--ease);
}
.inv-card:hover { transform: translateY(-4px); border-color: rgba(126,184,154,.28); box-shadow: 0 24px 56px rgba(0,0,0,.28); }
.inv-card img { width: 100%; height: 175px; object-fit: cover; transition: transform .6s var(--ease); }
.inv-card:hover img { transform: scale(1.06); }
.inv-card__c { padding: 18px 20px; }
.inv-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 7px; }
.inv-card p { font-size: 13px; color: var(--text-2); line-height: 1.55; }
.inv-trust { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.trust-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 22px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r);
}
.trust-em { font-size: 26px; flex-shrink: 0; }
.trust-item strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.trust-item p { font-size: 13px; color: var(--text-2); line-height: 1.5; }

/* =============================================
   CONSTRUCTION
============================================= */
.con { background: var(--bg-alt); }
.con-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 18px; margin-bottom: 44px; }
.con-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rl);
  padding: 26px; transition: all .3s var(--ease);
}
.con-card:hover { border-color: rgba(201,169,110,.28); transform: translateY(-3px); }
.con-n { font-size: 40px; font-weight: 800; color: rgba(201,169,110,.15); line-height: 1; margin-bottom: 12px; letter-spacing: -.03em; }
.con-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 7px; }
.con-card p { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.con-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.con-gal-item { border-radius: var(--rl); overflow: hidden; position: relative; }
.con-gal-item img { width: 100%; height: 220px; object-fit: cover; transition: transform .6s var(--ease); display: block; }
.con-gal-item:hover img { transform: scale(1.06); }
.con-gal-item span {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 14px; background: linear-gradient(to top,rgba(9,21,16,.88),transparent);
  font-size: 12px; color: var(--text); font-weight: 500;
}
.con-promise {
  margin-top: 36px; text-align: center; padding: 36px 32px;
  background: linear-gradient(135deg,rgba(201,169,110,.07),rgba(126,184,154,.07));
  border: 1px solid var(--border-g); border-radius: var(--rl);
}
.con-promise p { font-size: clamp(18px,2vw,24px); font-weight: 300; color: var(--text); line-height: 1.5; }
.con-promise strong { color: var(--gold); font-weight: 600; }

/* =============================================
   LEGAL
============================================= */
.legal__inner { display: grid; grid-template-columns: 1fr 280px; gap: 80px; align-items: center; }
.legal-list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.legal-item {
  display: flex; gap: 14px; align-items: flex-start; padding: 18px 22px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r);
  transition: all .3s var(--ease);
}
.legal-item:hover { border-color: rgba(126,184,154,.28); transform: translateX(4px); }
.legal-ck {
  width: 26px; height: 26px; border-radius: 50%; background: rgba(126,184,154,.12);
  color: var(--sage); display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.legal-item strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.legal-item p { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.legal-shield {
  display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center;
}
.legal-shield svg { width: 160px; height: 180px; filter: drop-shadow(0 0 24px rgba(126,184,154,.18)); }
.legal-shield p { font-size: 14px; color: var(--text-2); line-height: 1.5; font-weight: 500; }

/* =============================================
   CASES
============================================= */
.cases-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(290px,1fr)); gap: 22px; }
.case-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rl);
  overflow: hidden; transition: all .4s var(--ease);
}
.case-card:hover { transform: translateY(-4px); box-shadow: 0 24px 56px rgba(0,0,0,.28); border-color: rgba(201,169,110,.22); }
.case-head {
  display: flex; align-items: center; gap: 11px; padding: 18px 22px;
  border-bottom: 1px solid var(--border); background: rgba(20,43,30,.5);
}
.case-flag { font-size: 22px; }
.case-head > div { flex: 1; }
.case-head strong { display: block; font-size: 14px; font-weight: 600; }
.case-head > div span { font-size: 12px; color: var(--text-3); }
.case-type {
  background: rgba(201,169,110,.1); border: 1px solid var(--border-g);
  border-radius: 100px; padding: 3px 10px; font-size: 11px; color: var(--gold); white-space: nowrap; flex-shrink: 0;
}
.case-body { padding: 18px 22px; }
.case-row { margin-bottom: 12px; }
.case-lbl { display: block; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 3px; }
.case-row p { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.case-result {
  margin-top: 14px; padding: 12px 16px; background: rgba(201,169,110,.08);
  border: 1px solid var(--border-g); border-radius: 8px;
}
.case-result .case-lbl { color: var(--gold); }
.case-result strong { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-top: 3px; }

/* =============================================
   TESTIMONIALS
============================================= */
.testi { background: var(--bg-alt); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(270px,1fr)); gap: 18px; }
.testi-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rl);
  padding: 26px; transition: all .3s var(--ease);
}
.testi-card:hover { transform: translateY(-3px); border-color: rgba(126,184,154,.22); }
.testi-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p { font-size: 14px; color: var(--text-2); line-height: 1.72; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 11px; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(126,184,154,.12);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--sage); flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 14px; font-weight: 600; }
.testi-author span { font-size: 12px; color: var(--text-3); }

/* =============================================
   FAQ
============================================= */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: rgba(126,184,154,.28); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 20px 24px; font-size: 15px; font-weight: 500; color: var(--text); text-align: left;
  transition: color .2s;
}
.faq-q:hover { color: var(--sage); }
.faq-ic {
  width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  color: var(--sage); flex-shrink: 0; transition: transform .3s var(--ease); line-height: 1;
}
.faq-item.open .faq-ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding: 0 24px 20px; font-size: 14px; color: var(--text-2); line-height: 1.75; }

/* =============================================
   FINAL CTA
============================================= */
.fcta { position: relative; padding: clamp(80px,12vw,160px) 0; overflow: hidden; }
.fcta__bg { position: absolute; inset: 0; z-index: 0; }
.fcta__bg img { width: 100%; height: 100%; object-fit: cover; }
.fcta__ov { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(9,21,16,.93) 0%,rgba(9,21,16,.82) 55%,rgba(9,21,16,.6) 100%); }
.fcta__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center; }
.fcta__h2 { font-size: clamp(28px,4vw,54px); font-weight: 300; line-height: 1.18; letter-spacing: -.025em; color: var(--text); margin-bottom: 36px; }
.fcta__h2 em { font-style: normal; color: var(--gold); }
.fcta__note { margin-top: 18px; font-size: 13px; color: var(--text-3); }
.fcta__photo { text-align: center; }
.fcta__photo img { width: 210px; height: 270px; object-fit: cover; object-position: top; border-radius: var(--rl); margin-bottom: 14px; border: 2px solid rgba(201,169,110,.3); filter: brightness(.9) contrast(1.06) saturate(.85); }
.fcta__sig strong { display: block; font-size: 15px; font-weight: 600; }
.fcta__sig span { font-size: 13px; color: var(--text-3); }

/* =============================================
   CONTACT
============================================= */
.cnt__inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.cnt__info h3 { font-size: 22px; font-weight: 600; margin-bottom: 10px; }
.cnt__info > p { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 26px; }
.cnt__links { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.cnt__link {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r);
  font-size: 14px; font-weight: 500; transition: all .3s var(--ease);
}
.cnt__link svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--sage); }
.cnt__link:hover { border-color: var(--sage); transform: translateX(4px); }
.cnt__sp { display: flex; gap: 22px; }
.cnt__sp strong { display: block; font-size: 28px; font-weight: 800; color: var(--gold); letter-spacing: -.025em; }
.cnt__sp span { font-size: 12px; color: var(--text-3); }

/* Form */
.cnt__form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rl); padding: 38px; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-step-title { font-size: 15px; font-weight: 600; color: var(--text-2); margin-bottom: 26px; }
.form-g { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-g label { font-size: 13px; font-weight: 500; color: var(--text-2); }
.form-g input, .form-g select, .form-g textarea {
  background: rgba(9,21,16,.8); border: 1px solid var(--border); border-radius: 9px;
  padding: 13px 16px; font-size: 15px; color: var(--text); font-family: var(--font);
  transition: border-color .2s; outline: none;
}
.form-g input::placeholder, .form-g textarea::placeholder { color: var(--text-3); }
.form-g input:focus, .form-g textarea:focus { border-color: var(--sage); }
.form-g select { appearance: none; cursor: pointer; }
.form-g select option { background: #142B1E; }
.form-interests { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.int-opt {
  display: flex; align-items: center; gap: 11px; padding: 13px 18px;
  background: rgba(9,21,16,.55); border: 1px solid var(--border); border-radius: 9px;
  cursor: pointer; transition: all .2s;
}
.int-opt:hover { border-color: var(--sage); }
.int-opt input { accent-color: var(--gold); }
.int-opt:has(input:checked) { border-color: var(--gold); background: rgba(201,169,110,.07); }
.int-opt span { font-size: 14px; color: var(--text-2); }
.form-nav { display: flex; gap: 10px; justify-content: flex-end; margin-top: 4px; }
.form-prog { display: flex; gap: 6px; margin-bottom: 22px; }
.form-prog-dot { height: 3px; flex: 1; background: var(--border); border-radius: 2px; transition: background .3s; }
.form-prog-dot.active { background: var(--gold); }
.form-success { text-align: center; padding: 16px; }
.form-success-ic {
  width: 62px; height: 62px; border-radius: 50%; background: rgba(126,184,154,.14);
  color: var(--sage); font-size: 30px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.form-success h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--text-2); margin-bottom: 22px; }

/* =============================================
   FOOTER
============================================= */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 48px 0 0; }
.footer__inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 36px; flex-wrap: wrap; margin-bottom: 36px; }
.footer__brand p { font-size: 13px; color: var(--text-3); margin-top: 8px; }
.footer__links, .footer__social { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.footer__links a, .footer__social a { font-size: 13px; color: var(--text-3); transition: color .2s; }
.footer__links a:hover, .footer__social a:hover { color: var(--sage); }
.footer__bottom { border-top: 1px solid var(--border); padding: 18px 0; text-align: center; }
.footer__bottom p { font-size: 12px; color: var(--text-3); }

/* =============================================
   FLOATING ELEMENTS
============================================= */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 50;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.38); transition: all .35s var(--ease);
  opacity: 0; transform: translateY(22px); pointer-events: none;
}
.wa-float.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.wa-float:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 16px 44px rgba(37,211,102,.48); }
.wa-float svg { width: 30px; height: 30px; color: white; }
.wa-pulse {
  position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.38);
  animation: wap 2.2s ease-out infinite;
}
@keyframes wap { 0%{transform:scale(.8);opacity:.8} 100%{transform:scale(1.55);opacity:0} }

.sticky-cta {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(90px);
  z-index: 48; display: flex; align-items: center; gap: 16px;
  background: rgba(9,21,16,.96); backdrop-filter: blur(24px);
  border: 1px solid var(--border-g); border-radius: 100px; padding: 10px 20px;
  transition: transform .4s var(--ease); white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.sticky-cta.show { transform: translateX(-50%) translateY(0); }
.sticky-cta > span { font-size: 13px; color: var(--text-2); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__right { display: none; }
  .about__inner { grid-template-columns: 1fr; }
  .about__photo { max-height: 320px; aspect-ratio: 16/9; object-position: 50% 20%; }
  .inv-nums { grid-template-columns: repeat(2,1fr); }
  .inv-trust { grid-template-columns: 1fr; }
  .reg__inner { grid-template-columns: 1fr; }
  .fcta__inner { grid-template-columns: 1fr; text-align: center; }
  .fcta__photo { display: none; }
  .cnt__inner { grid-template-columns: 1fr; }
  .legal__inner { grid-template-columns: 1fr; }
  .legal-shield { display: none; }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero__stats { flex-direction: column; gap: 16px; }
  .con-gallery { grid-template-columns: 1fr; }
  .inv-nums { gap: 14px; padding: 22px; }
  .inv-n strong { font-size: 34px; }
  .sticky-cta { display: none; }
  .about__sg { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  :root { --px: 18px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { justify-content: center; }
  .cases-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .form-nav { flex-direction: column; }
  .form-nav .btn { justify-content: center; }
  .wa-float { bottom: 20px; right: 20px; }
  .inv-nums { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   LANGUAGE SWITCHER
============================================= */
.lang-sw {
  display: flex; gap: 3px; margin-left: 4px; flex-shrink: 0;
}
.lang-btn {
  background: transparent; border: 1px solid rgba(126,184,154,.22); color: var(--text-3);
  padding: 5px 9px; border-radius: 6px; cursor: pointer; font-size: 11px; font-weight: 700;
  letter-spacing: .06em; transition: all .2s; font-family: var(--font);
}
.lang-btn:hover { border-color: var(--sage); color: var(--sage); }
.lang-btn.active { background: var(--gold); border-color: var(--gold); color: #091510; }
.mob-lang-sw {
  display: flex; gap: 8px; margin-top: 10px;
}
.mob-lang-sw .lang-btn { padding: 8px 18px; font-size: 13px; }
.mob-menu__inner .btn-gold {
  font-size: 17px; padding: 18px 44px;
  box-shadow: 0 4px 24px rgba(201,169,110,.45);
  color: #091510 !important;
}

/* =============================================
   LANGUAGE FADE ANIMATION
============================================= */
[data-i18n] { transition: opacity 0.18s ease; }
.lang-fading [data-i18n] { opacity: 0; }

/* =============================================
   YOUTUBE SLIDER
============================================= */
.yt-section { }
.yt-slider-wrap {
  position: relative; padding: 0; margin-bottom: 36px;
}
.yt-track {
  display: flex; gap: 20px; overflow: hidden;
  scroll-behavior: smooth;
}
.yt-card {
  flex: 0 0 calc(33.333% - 14px); min-width: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--rl); overflow: hidden;
  transition: all .4s var(--ease); cursor: pointer;
}
.yt-card:hover { border-color: rgba(201,169,110,.35); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.yt-thumb {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 16/9; background: #0a1a10;
}
.yt-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--ease);
}
.yt-card:hover .yt-thumb img { transform: scale(1.05); }
.yt-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(9,21,16,.35);
  transition: background .3s;
}
.yt-play::before {
  content: '';
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(201,169,110,.92);
  display: flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23091510'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  background-size: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  transition: transform .3s var(--ease-b);
}
.yt-card:hover .yt-play::before { transform: scale(1.12); }
.yt-card-body { padding: 16px 18px 18px; }
.yt-title {
  font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.45;
  margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.yt-meta { display: flex; align-items: center; gap: 10px; }
.yt-date { font-size: 12px; color: var(--text-3); }
.yt-views { font-size: 12px; color: var(--text-3); }
.yt-views::before { content: '·'; margin-right: 6px; }

.yt-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text); font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .25s var(--ease); z-index: 2;
  font-family: inherit;
}
.yt-btn:hover { background: var(--gold); border-color: var(--gold); color: #091510; }
.yt-btn--prev { left: -52px; }
.yt-btn--next { right: -52px; }
.yt-btn:disabled { opacity: .35; pointer-events: none; }

.yt-loading {
  display: flex; align-items: center; justify-content: center;
  width: 100%; min-height: 180px;
}
.yt-loading-dots { display: flex; gap: 8px; }
.yt-loading-dots span {
  width: 8px; height: 8px; border-radius: 50%; background: var(--sage);
  animation: ytDot 1.2s ease-in-out infinite;
}
.yt-loading-dots span:nth-child(2) { animation-delay: .2s; }
.yt-loading-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes ytDot { 0%,80%,100%{transform:scale(.5);opacity:.4} 40%{transform:scale(1);opacity:1} }

.yt-more { text-align: center; }
.yt-more .btn { display: inline-flex; align-items: center; }

@media (max-width: 900px) {
  .yt-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 580px) {
  .yt-card { flex: 0 0 100%; }
}

/* =============================================
   CARD SLIDERS (cases + testimonials)
============================================= */
.cs-wrap, .ts-wrap {
  position: relative; padding: 0;
}
.slider-vp { overflow: hidden; }
.cs-track, .ts-track {
  display: flex; gap: 20px;
  transition: transform .42s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.cs-track .case-card,
.ts-track .testi-card {
  flex-shrink: 0;
}
/* Hide nav arrows when all cards fit */
.slider-no-nav .yt-btn { display: none; }

/* On narrow screens bring arrows back inside */
@media (max-width: 767px) {
  .yt-slider-wrap, .cs-wrap, .ts-wrap { padding: 0 44px; }
  .yt-btn--prev { left: 0; }
  .yt-btn--next { right: 0; }
}

/* =============================================
   REGIONS — smooth slide-in animation
============================================= */
.reg-detail {
  display: none;
}
.reg-detail.active {
  display: block;
  animation: regSlideIn .38s cubic-bezier(.25,.46,.45,.94) both;
}
@keyframes regSlideIn {
  from { opacity: 0; transform: translateX(22px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* =============================================
   CONTACT SECTION — form alignment
============================================= */
.cnt__inner { align-items: start; }
.cnt__info .sec-tag { margin-bottom: 10px; }
.cnt__info .sec-h { margin-bottom: 16px; font-size: clamp(28px,3.5vw,48px); }

/* =============================================
   HOW IT WORKS — 8-step grid
============================================= */
.steps-grid { grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4,1fr); } }
