
:root{
  --bg:#06131f;
  --bg2:#081a29;
  --surface:#0b2030;
  --surface2:#10283a;
  --surface3:#132f44;
  --text:#f4f8fb;
  --muted:#a7b7c5;
  --line:rgba(255,255,255,.10);
  --line2:rgba(255,255,255,.16);
  --brand:#45d6b4;
  --brand2:#69a8ff;
  --brand3:#a8f4e2;
  --shadow:0 24px 80px rgba(0,0,0,.24);
  --radius:22px;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Tahoma,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 84% -8%,rgba(69,214,180,.16),transparent 34%),
    radial-gradient(circle at -6% 28%,rgba(105,168,255,.12),transparent 30%),
    linear-gradient(180deg,var(--bg),#05111b 55%,#06131f);
  line-height:1.85;
}
a{color:inherit;text-decoration:none}
button,input,textarea{font:inherit}
.wrap{width:min(var(--max),calc(100% - 38px));margin-inline:auto}
.muted{color:var(--muted)}
.ltr{direction:ltr;unicode-bidi:embed}
.topbar{
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.025);
  color:#c7d4dd;
  font-size:12px;
}
.topbar .wrap{
  min-height:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(6,19,31,.88);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}
.nav{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:max-content;
}
.brand-mark{
  width:44px;height:44px;border-radius:13px;
  display:grid;place-items:center;
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:#04131c;font-weight:900;font-size:20px;
  box-shadow:0 8px 25px rgba(69,214,180,.18);
}
.brand strong{display:block;font-size:18px;line-height:1.25}
.brand small{display:block;color:var(--muted);font-size:11px;margin-top:2px}
.nav-links{display:flex;align-items:center;gap:23px;font-size:13px;color:#d9e4eb}
.nav-links a{transition:.2s ease}
.nav-links a:hover{color:var(--brand3)}
.nav-legal{
  display:flex;align-items:center;gap:10px;padding-right:20px;margin-right:2px;border-right:1px solid var(--line)
}
.nav-legal a{
  padding:8px 11px;border-radius:10px;border:1px solid var(--line);background:rgba(255,255,255,.03)
}
.nav-legal a:hover{border-color:rgba(69,214,180,.35);background:rgba(69,214,180,.07)}
.hero{padding:104px 0 78px}
.hero-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:54px;align-items:center}
.eyebrow{
  display:inline-flex;align-items:center;gap:9px;
  padding:7px 12px;border-radius:999px;
  border:1px solid rgba(69,214,180,.28);
  background:rgba(69,214,180,.07);
  color:#b3f5e7;font-size:12px;font-weight:700;
}
.eyebrow i{width:7px;height:7px;border-radius:50%;background:var(--brand);box-shadow:0 0 0 5px rgba(69,214,180,.08)}
.hero h1{
  font-size:clamp(42px,6.4vw,76px);
  line-height:1.13;
  letter-spacing:-2px;
  margin:20px 0 20px;
}
.hero h1 .accent{
  background:linear-gradient(90deg,var(--brand3),#c7e1ff);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.hero-copy{font-size:18px;color:#c4d1da;max-width:760px;margin:0 0 30px}
.actions{display:flex;flex-wrap:wrap;gap:12px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  min-height:46px;padding:10px 19px;border-radius:12px;
  border:1px solid var(--line2);background:rgba(255,255,255,.035);
  color:#edf5f9;font-weight:800;font-size:13px;
  transition:.2s ease;
}
.btn:hover{transform:translateY(-2px);border-color:rgba(69,214,180,.35)}
.btn.primary{border:0;color:#04151a;background:linear-gradient(135deg,var(--brand),#9cead7)}
.btn.soft{background:rgba(105,168,255,.08);border-color:rgba(105,168,255,.25)}
.hero-card{
  position:relative;overflow:hidden;
  background:linear-gradient(155deg,rgba(16,40,58,.96),rgba(8,27,40,.96));
  border:1px solid var(--line);
  border-radius:26px;
  padding:30px;
  box-shadow:var(--shadow);
}
.hero-card:before{
  content:"";position:absolute;inset:auto -80px -95px auto;width:220px;height:220px;border-radius:50%;
  background:radial-gradient(circle,rgba(69,214,180,.18),transparent 70%);
}
.hero-card .kicker{color:var(--brand);font-size:12px;font-weight:800}
.hero-card h2{font-size:27px;line-height:1.35;margin:8px 0 4px}
.hero-card .en{color:#d7e5ec;font-weight:800;margin-bottom:18px}
.fact-list{border-top:1px solid var(--line);position:relative;z-index:1}
.fact{display:grid;grid-template-columns:126px 1fr;gap:14px;padding:14px 0;border-bottom:1px solid var(--line);font-size:13px}
.fact span:first-child{color:var(--muted)}
.fact strong{font-weight:700}
.trust-strip{padding:0 0 30px}
.trust-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1px;
  border:1px solid var(--line);border-radius:18px;overflow:hidden;background:var(--line);
}
.trust-item{background:rgba(8,26,41,.94);padding:20px}
.trust-item b{display:block;font-size:15px;margin-bottom:2px}
.trust-item span{color:var(--muted);font-size:12px}
.section{padding:82px 0}
.section.alt{background:rgba(255,255,255,.018);border-top:1px solid rgba(255,255,255,.035);border-bottom:1px solid rgba(255,255,255,.035)}
.section-head{max-width:780px;margin-bottom:34px}
.section-head .overline{color:var(--brand);font-weight:800;font-size:12px}
.section-head h2{font-size:clamp(30px,4vw,43px);line-height:1.3;margin:7px 0 9px}
.section-head p{margin:0;color:var(--muted);font-size:15px}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{
  padding:26px;border:1px solid var(--line);border-radius:20px;
  background:linear-gradient(160deg,rgba(16,40,58,.72),rgba(8,27,40,.78));
  transition:.2s ease;
}
.card:hover{transform:translateY(-3px);border-color:rgba(69,214,180,.28)}
.card-icon{
  width:42px;height:42px;border-radius:12px;display:grid;place-items:center;
  background:rgba(69,214,180,.09);border:1px solid rgba(69,214,180,.16);color:var(--brand);font-weight:900
}
.card h3{font-size:19px;margin:16px 0 8px}
.card p{margin:0;color:var(--muted);font-size:13px}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.panel{
  border:1px solid var(--line);border-radius:22px;padding:28px;
  background:linear-gradient(155deg,rgba(11,32,48,.88),rgba(8,24,37,.88));
}
.panel h3{margin:0 0 9px;font-size:21px}
.panel p{margin:0;color:var(--muted);font-size:14px}
.checks{display:grid;gap:10px;margin-top:19px}
.check{display:flex;align-items:flex-start;gap:10px;color:#d9e5ec;font-size:13px}
.check i{
  width:21px;height:21px;min-width:21px;border-radius:7px;display:grid;place-items:center;
  background:rgba(69,214,180,.09);color:var(--brand);font-style:normal;font-weight:900
}
.legal-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.legal-card{
  position:relative;overflow:hidden;
  border:1px solid var(--line);border-radius:22px;padding:29px;
  background:linear-gradient(150deg,rgba(16,40,58,.92),rgba(8,27,40,.92));
}
.legal-card:after{
  content:"";position:absolute;left:-50px;bottom:-65px;width:160px;height:160px;border-radius:50%;
  background:radial-gradient(circle,rgba(105,168,255,.12),transparent 70%);
}
.legal-card .tag{display:inline-block;color:#b9d6ff;background:rgba(105,168,255,.08);border:1px solid rgba(105,168,255,.18);padding:5px 9px;border-radius:999px;font-size:11px}
.legal-card h3{font-size:23px;margin:12px 0 7px}
.legal-card p{color:var(--muted);font-size:13px;margin:0 0 18px}
.text-link{display:inline-flex;align-items:center;gap:7px;color:var(--brand3);font-weight:800;font-size:13px;position:relative;z-index:1}
.contact-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:20px}
.contact-card{
  border:1px solid var(--line);border-radius:22px;padding:28px;background:rgba(11,32,48,.72)
}
.contact-card h3{margin:0 0 8px;font-size:22px}
.contact-card p{margin:0;color:var(--muted);font-size:13px}
.contact-list{margin-top:19px}
.contact-row{display:grid;grid-template-columns:112px 1fr;gap:15px;padding:13px 0;border-bottom:1px solid var(--line);font-size:13px}
.contact-row:last-child{border-bottom:0}
.contact-row span:first-child{color:var(--muted)}
.contact-row a{color:#c9f7ec}
.site-footer{border-top:1px solid var(--line);background:rgba(2,11,18,.45)}
.footer-main{padding:35px 0 28px;display:grid;grid-template-columns:1.2fr .8fr .8fr;gap:26px}
.footer-title{font-size:17px;font-weight:900;margin-bottom:7px}
.footer-text{color:var(--muted);font-size:12px;max-width:480px}
.footer-col b{display:block;font-size:12px;margin-bottom:9px;color:#dce6ed}
.footer-links{display:grid;gap:6px;color:var(--muted);font-size:12px}
.footer-links a:hover{color:var(--brand3)}
.footer-bottom{border-top:1px solid var(--line);padding:16px 0 20px;color:#8295a4;font-size:11px}
.footer-bottom .wrap{display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap}

/* Legal pages */
.legal-hero{padding:66px 0 35px}
.legal-hero .overline{color:var(--brand);font-weight:800;font-size:12px}
.legal-hero h1{font-size:clamp(34px,5vw,50px);line-height:1.25;margin:7px 0 9px}
.legal-hero p{max-width:760px;color:var(--muted);margin:0}
.legal-layout{display:grid;grid-template-columns:260px 1fr;gap:28px;padding:20px 0 80px;align-items:start}
.toc{
  position:sticky;top:106px;border:1px solid var(--line);border-radius:18px;
  padding:18px;background:rgba(10,29,43,.78)
}
.toc b{display:block;font-size:13px;margin-bottom:10px}
.toc a{display:block;color:var(--muted);font-size:12px;padding:7px 8px;border-radius:8px}
.toc a:hover{background:rgba(255,255,255,.035);color:var(--brand3)}
.legal-content{
  border:1px solid var(--line);border-radius:22px;padding:34px;
  background:linear-gradient(160deg,rgba(11,32,48,.78),rgba(7,23,35,.82))
}
.notice{
  padding:18px;border-radius:14px;border:1px solid rgba(69,214,180,.18);
  background:rgba(69,214,180,.055);color:#d6ebe6;font-size:13px;margin-bottom:27px
}
.legal-content section{padding:0;margin:0 0 33px}
.legal-content section:last-child{margin-bottom:0}
.legal-content h2{font-size:21px;margin:0 0 9px;scroll-margin-top:110px}
.legal-content p,.legal-content li{color:#c1ced8;font-size:13px}
.legal-content ul{padding-right:20px}
.legal-content a{color:#aef4e4;text-decoration:underline;text-underline-offset:3px}
.page-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:20px}
.breadcrumb{color:#8295a4;font-size:11px;margin-top:5px}

@media(max-width:980px){
  .hero-grid,.contact-grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr 1fr}
  .trust-grid{grid-template-columns:1fr 1fr}
  .legal-layout{grid-template-columns:1fr}
  .toc{position:static}
  .footer-main{grid-template-columns:1fr 1fr}
}
@media(max-width:760px){
  .topbar{display:none}
  .nav{min-height:70px}
  .nav-links{display:none}
  .hero{padding:68px 0 52px}
  .hero h1{letter-spacing:-.8px}
  .cards,.two-col,.legal-grid,.trust-grid,.footer-main{grid-template-columns:1fr}
  .fact,.contact-row{grid-template-columns:1fr;gap:2px}
  .section{padding:62px 0}
  .legal-content{padding:22px}
  .legal-hero{padding-top:46px}
}


/* Brand logo + language switch */
.brand-logo{
  width:58px;
  height:58px;
  object-fit:contain;
  display:block;
  flex:0 0 auto;
}
.header-actions{
  display:flex;
  align-items:center;
  gap:18px;
}
.lang-switch{
  display:flex;
  align-items:center;
  gap:5px;
  padding:5px;
  border:1px solid var(--line);
  border-radius:12px;
  background:rgba(255,255,255,.035);
  flex:0 0 auto;
}
.lang-switch a,
.lang-switch span{
  min-width:39px;
  height:30px;
  padding:0 9px;
  display:grid;
  place-items:center;
  border-radius:8px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.2px;
}
.lang-switch .active{
  background:linear-gradient(135deg,var(--brand),#9cead7);
  color:#04151a;
}
.lang-switch a:hover{
  background:rgba(255,255,255,.06);
  color:var(--brand3);
}
html[dir="ltr"] body{font-family:Arial,Helvetica,sans-serif}
html[dir="ltr"] .hero h1{letter-spacing:-2.4px}
html[dir="ltr"] .legal-content ul{padding-left:20px;padding-right:0}
html[dir="ltr"] .nav-legal{
  padding-left:20px;
  margin-left:2px;
  padding-right:0;
  margin-right:0;
  border-left:1px solid var(--line);
  border-right:0;
}
@media(max-width:760px){
  .brand-logo{width:48px;height:48px}
  .brand strong{font-size:15px}
  .brand small{font-size:10px}
  .header-actions{gap:8px}
  .lang-switch{padding:4px}
  .lang-switch a,.lang-switch span{min-width:34px;height:28px;padding:0 7px}
}
