:root{
  --bg: #081226;
  --panel: rgba(255,255,255,0.06);
  --panel-2: rgba(255,255,255,0.08);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --muted-2: rgba(255,255,255,0.55);
  --border: rgba(255,255,255,0.12);

  --brand: #3aa6ff;
  --brand-2: #10b981;
  --accent: #7c3aed;

  --shadow: 0 16px 40px rgba(0,0,0,0.28);
  --shadow-soft: 0 10px 26px rgba(0,0,0,0.22);

  --radius: 18px;
  --radius-sm: 12px;

  --max: 1120px;
  --header-h: 70px;

  --focus: 0 0 0 3px rgba(58,166,255,0.35);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 70% 0%, rgba(124,58,237,0.18), transparent 55%),
              radial-gradient(900px 600px at 20% 10%, rgba(58,166,255,0.18), transparent 55%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a{ color: inherit; text-decoration: none; }
a.link{ color: rgba(58,166,255,0.95); text-decoration: underline; text-underline-offset: 3px; }
a.link:hover{ color: #78c2ff; }

.ltr{ direction: ltr; unicode-bidi: plaintext; }
.small{ font-size: 0.95rem; }
.muted{ color: var(--muted); }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.skip-link{
  position: absolute;
  left: 12px;
  top: 10px;
  background: #fff;
  color: #000;
  padding: 10px 12px;
  border-radius: 10px;
  transform: translateY(-140%);
  transition: transform .2s ease;
  z-index: 9999;
}
.skip-link:focus{ transform: translateY(0); outline: none; box-shadow: 0 0 0 3px rgba(0,0,0,0.25); }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,18,38,0.66);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo-mark{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: radial-gradient(12px 12px at 30% 30%, rgba(255,255,255,0.35), transparent 60%),
              linear-gradient(135deg, rgba(58,166,255,1), rgba(16,185,129,1));
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

.nav-toggle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle:focus{ outline: none; box-shadow: var(--focus); }
.nav-toggle-lines{
  width: 18px;
  height: 12px;
  display: inline-block;
  position: relative;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background: rgba(255,255,255,0.82);
  border-radius: 2px;
}
.nav-toggle-lines::before{ top: 0; }
.nav-toggle-lines::after{ bottom: 0; }
.nav-toggle-lines{
  background: rgba(255,255,255,0.82);
  height:2px;
  border-radius: 2px;
  margin-top: 5px;
}

.nav{
  position: absolute;
  left: 0;
  right: 0;
  top: var(--header-h);
  background: rgba(8,18,38,0.86);
  border-bottom: 1px solid var(--border);
  display: none;
  flex-direction: column;
  padding: 14px 18px 18px;
  gap: 10px;
}
.nav.is-open{ display: flex; }
.nav-link{
  padding: 10px 10px;
  border-radius: 12px;
  color: rgba(255,255,255,0.85);
}
.nav-link:hover{
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.95);
}
.nav-actions{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 6px;
}

.lang-switch{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  padding: 8px 10px;
  border-radius: 999px;
}
.lang-btn{
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 10px;
}
.lang-btn.is-active{
  color: #081226;
  background: rgba(255,255,255,0.90);
}
.lang-btn:focus{ outline: none; box-shadow: var(--focus); }
.lang-sep{ color: rgba(255,255,255,0.45); }

/* Desktop nav */
@media (min-width: 980px){
  .nav-toggle{ display:none; }
  .nav{
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: transparent;
    border: none;
    gap: 8px;
  }
  .nav-actions{
    grid-template-columns: auto auto;
    align-items: center;
    margin: 0 0 0 10px;
  }
}

/* Sections */
.section{ padding: 72px 0; scroll-margin-top: calc(var(--header-h) + 16px); }
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section-head{ max-width: 760px; margin-bottom: 22px; }
.section-title{
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.section-sub{ margin: 0; color: var(--muted); }

/* Hero */
.hero{
  padding: 34px 0 54px;
  position: relative;
  overflow: hidden;
}
.hero-bg{
  position:absolute;
  inset: 0;
  pointer-events: none;
}
.hero-blob{
  position:absolute;
  right: -240px;
  top: -120px;
  width: 900px;
  height: auto;
  color: rgba(255,255,255,0.9);
  filter: blur(0px);
  opacity: 0.8;
}
.hero-inner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 980px){
  .hero{ padding: 54px 0 64px; }
  .hero-inner{
    grid-template-columns: 1.25fr 0.75fr;
    align-items: start;
    gap: 22px;
  }
}

.kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.78);
  margin: 0 0 10px;
  font-weight: 600;
}
.hero-title{
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.hero-sub{
  margin: 0 0 18px;
  color: rgba(255,255,255,0.80);
  max-width: 62ch;
}
.hero-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.badge{
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.86);
  font-weight: 600;
  font-size: 0.9rem;
}
.hero-contact{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255,255,255,0.84);
  margin-top: 6px;
}
.mini-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}
.mini-link:hover{ background: rgba(255,255,255,0.05); }

/* Cards */
.card{
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.045));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.card-muted{
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.035));
}
.card-glow{
  position: relative;
  overflow: hidden;
}
.card-glow::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(500px 220px at 30% 0%, rgba(58,166,255,0.22), transparent 60%),
              radial-gradient(420px 200px at 80% 10%, rgba(16,185,129,0.18), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}
.card-glow > *{ position: relative; }

.card-h{
  margin: 0 0 8px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.card-p{ margin: 0; color: var(--muted); }
.lead{ margin: 0; color: rgba(255,255,255,0.82); }

.divider{
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 14px 0;
}

.avatar{
  width: 240px;    
  height: 240px;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);

  margin: 0 auto 16px;  
  display: block;
}

.avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-title{
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.card-sub{
  color: rgba(255,255,255,0.78);
  margin-top: 4px;
}

.icon-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.icon-list .icon{ margin-inline-end: 8px; }
.icon-list li{ color: rgba(255,255,255,0.82); }
.card-actions{ display: grid; gap: 10px; margin-top: 14px; }

/* Grids */
.grid{ display: grid; gap: 14px; }
.grid.two{ grid-template-columns: 1fr; }
.grid.three{ grid-template-columns: 1fr; }
.grid.gap-sm{ gap: 10px; }

@media (min-width: 860px){
  .grid.two{ grid-template-columns: 1fr 1fr; }
  .grid.three{ grid-template-columns: repeat(3, 1fr); }
}
.cards.three{ gap: 14px; }

.service-card{
  transition: transform .15s ease, background .15s ease;
}
.service-card:hover{
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.045));
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.92);
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  user-select: none;
}
.btn:hover{
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}
.btn:focus{ outline: none; box-shadow: var(--focus); }
.btn:active{ transform: translateY(0); }

.btn-primary{
  border-color: rgba(58,166,255,0.45);
  background: linear-gradient(135deg, rgba(58,166,255,0.95), rgba(16,185,129,0.90));
  color: #081226;
}
.btn-primary:hover{
  background: linear-gradient(135deg, rgba(58,166,255,1), rgba(16,185,129,0.95));
}
.btn-ghost{
  background: rgba(255,255,255,0.03);
}
.btn-sm{ padding: 10px 12px; border-radius: 12px; }
.btn-block{ width: 100%; }
.btn-row{ display: flex; flex-wrap: wrap; gap: 10px; }
.btn-col{ display: grid; gap: 10px; }

.note{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.74);
  background: rgba(255,255,255,0.03);
}

.hint{
  margin: 10px 0 0;
  color: var(--muted-2);
  font-size: 0.95rem;
}

/* Lists */
.checklist{
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}
.checklist li{
  position: relative;
  padding-inline-start: 28px;
  color: rgba(255,255,255,0.82);
}
.checklist li::before{
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(16,185,129,0.16);
  border: 1px solid rgba(16,185,129,0.25);
  color: rgba(255,255,255,0.92);
  font-weight: 800;
}

/* Stats */
.stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.stat{
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}
.stat-num{
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.15rem;
}
.stat-label{ color: var(--muted); font-size: 0.95rem; }

/* Callouts */
.callouts{ display:grid; gap: 10px; margin-top: 14px; }
.callout{
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
}
.callout-title{ font-weight: 750; margin-bottom: 4px; }
.callout-body{ color: var(--muted); }

/* Tags */
.tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag{
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.84);
  font-weight: 600;
}

/* Table */
.table-wrap{ overflow: auto; border-radius: 14px; border: 1px solid rgba(255,255,255,0.10); }
.table{ width: 100%; border-collapse: collapse; min-width: 420px; background: rgba(0,0,0,0.08); }
.table th, .table td{ padding: 12px 12px; border-bottom: 1px solid rgba(255,255,255,0.10); }
.table th{ text-align: start; color: rgba(255,255,255,0.86); background: rgba(255,255,255,0.03); }
.table td{ color: rgba(255,255,255,0.78); }

/* Map */
.map-frame{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.15);
  margin: 12px 0;
  box-shadow: var(--shadow-soft);
}
.map-frame iframe{
  width: 100%;
  height: 300px;
  border: 0;
}

/* Forms */
.label{
  display: inline-block;
  font-weight: 650;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.84);
}
.input, .textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  padding: 12px 12px;
  color: rgba(255,255,255,0.92);
  font: inherit;
}
.input::placeholder, .textarea::placeholder{ color: rgba(255,255,255,0.45); }
.input:focus, .textarea:focus{ outline: none; box-shadow: var(--focus); border-color: rgba(58,166,255,0.45); }
.form-row{ margin-bottom: 12px; }
.form-actions{ display:flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }

.field-error{
  margin-top: 6px;
  color: rgba(255,120,120,0.95);
  font-size: 0.92rem;
  min-height: 1.2em;
}
.input.is-invalid, .textarea.is-invalid{
  border-color: rgba(255,120,120,0.55);
  box-shadow: 0 0 0 3px rgba(255,120,120,0.20);
}

.mini-title{ margin: 0 0 10px; color: rgba(255,255,255,0.86); }

/* Accordion */
.accordion{ display: grid; gap: 10px; }
.acc-item{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  overflow: hidden;
}
.acc-btn{
  width: 100%;
  text-align: start;
  padding: 14px 14px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.92);
  font-weight: 750;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.acc-btn:focus{ outline: none; box-shadow: var(--focus); }
.acc-icon{
  width: 28px;
  height: 28px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 900;
}
.acc-panel{
  padding: 0 14px 14px;
  color: rgba(255,255,255,0.78);
}
.acc-panel p{ margin: 0; }

/* Footer */
.footer{
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.12);
}
.footer-inner{
  display: grid;
  gap: 12px;
}
.footer-title{ font-weight: 900; letter-spacing: -0.02em; }
.footer-sub{ color: rgba(255,255,255,0.78); }
.footer-links{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.footer-link{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
}
.footer-link:hover{ background: rgba(255,255,255,0.04); }
.footer-note{ color: rgba(255,255,255,0.62); font-size: 0.95rem; }
.footer-copy{ color: rgba(255,255,255,0.55); font-size: 0.92rem; }

/* Toast */
.toast{
  position: fixed;
  bottom: 18px;
  inset-inline: 18px;
  z-index: 120;
}
.toast-inner{
  max-width: 720px;
  margin: 0 auto;
  background: rgba(8,18,38,0.86);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
}
.toast-msg{ color: rgba(255,255,255,0.90); }
.toast-close{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.90);
  font-size: 20px;
  cursor: pointer;
}
.toast-close:focus{ outline: none; box-shadow: var(--focus); }