:root{
  --navy: #0B1B33;
  --navy-2: #0F2340;
  --navy-3: #142c50;
  --gold: #D4AF37;
  --gold-2: #e8c766;
  --graphite: #2A2F36;
  --gray: #F4F6F8;    
  --white: #FFFFFF;
  --ink-muted: rgba(244,246,248,.72);
  --ink-muted-dark: rgba(42,47,54,.66);
  --line: rgba(212,175,55,.22);
  --shadow: 0 20px 60px rgba(11,27,51,.18);
  --radius: 4px;
  --ease: cubic-bezier(.16,.8,.24,1);
  --maxw: 1240px;
  --font-display: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{
  scroll-behavior:smooth;
  overscroll-behavior:none;
  background:var(--navy);
}

/* Mobil'da bosganda chiqadigan havo rang (ko'k) tap-highlight effektini o'chirish */
html, body, a, button, input, textarea, select, .btn, .brand, .team-card, .svc-more, .nav-toggle, .lang-switch button, .back-to-top, [role="button"]{
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
button, a, .team-card, .svc-more{
  -webkit-user-select: none;
  user-select: none;
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  font-family:var(--font-body);
  background:var(--white);
  color:var(--graphite);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  min-height:100vh;
  overscroll-behavior:none;
}

img{ max-width:100%; display:block; }
h1,h2,h3,h4,p,span,a,li{ overflow-wrap:break-word; word-break:break-word; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input,textarea,select{ font-family:inherit; }

::selection{ background:var(--gold); color:var(--navy); }

:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
}

.container{
  width:100%;
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 32px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--gold);
  margin-bottom:16px;
}
.eyebrow::before{
  content:"";
  width:28px; height:1px;
  background:var(--gold);
}

h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:800;
  line-height:1.15;
  margin:0;
  letter-spacing:-.01em;
}

.section{ padding:112px 0; position:relative; }
.section--tight{ padding:88px 0; }
.section--navy{ background:var(--navy); color:var(--white); }
.section--gray{ background:var(--gray); }

.section-head{
  max-width:680px;
  margin-bottom:56px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-title{ font-size:clamp(28px,3.4vw,42px); }
.section-sub{
  margin-top:16px;
  font-size:17px;
  color:var(--ink-muted-dark);
}
.section--navy .section-sub{ color:var(--ink-muted); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:16px 30px;
  font-weight:700;
  font-size:15px;
  border-radius:2px;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s, border-color .25s;
  white-space:nowrap;
}
.btn-gold{
  background:var(--gold);
  color:var(--navy);
}
.btn-gold:hover{
  background:var(--gold-2);
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(212,175,55,.35);
}
.btn-outline{
  background:transparent;
  border-color:rgba(255,255,255,.35);
  color:var(--white);
}
.btn-outline:hover{
  border-color:var(--gold);
  color:var(--gold);
  transform:translateY(-2px);
}
.btn-dark-outline{
  background:transparent;
  border-color:rgba(11,27,51,.25);
  color:var(--navy);
}
.btn-dark-outline:hover{
  border-color:var(--navy);
  background:var(--navy);
  color:var(--white);
}
.btn-block{ width:100%; }
.btn[disabled]{ opacity:.6; cursor:progress; }

/* ---------------- Header ---------------- */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  padding:22px 0;
  transition:padding .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.site-header.is-scrolled{
  padding:12px 0;
  background:rgba(11,27,51,.94);
  backdrop-filter:blur(10px);
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}
.brand-mark{
  height:48px;
  width:auto;
  object-fit:contain;
  flex-shrink:0;
}

.main-nav{ display:flex; }
.main-nav ul{ display:flex; align-items:center; gap:38px; }
.main-nav a{
  font-size:14.5px;
  font-weight:600;
  color:rgba(255,255,255,.82);
  position:relative;
  padding:6px 0;
  transition:color .25s;
}
.main-nav a::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:0; height:2px;
  background:var(--gold);
  transition:width .3s var(--ease);
}
.main-nav a:hover, .main-nav a.is-active{ color:var(--white); }
.main-nav a:hover::after, .main-nav a.is-active::after{ width:100%; }

.header-actions{ display:flex; align-items:center; gap:18px; }

.lang-switch{ position:relative; }
.lang-switch button{
  display:flex; align-items:center; gap:6px;
  background:transparent; border:1px solid rgba(255,255,255,.25);
  color:var(--white); font-weight:700; font-size:13px;
  padding:8px 12px; border-radius:2px;
  transition:border-color .25s;
}
.lang-switch button:hover{ border-color:var(--gold); }
.lang-switch svg{ width:12px; height:12px; transition:transform .25s; }
.lang-switch[data-open="true"] svg{ transform:rotate(180deg); }
.lang-menu{
  position:absolute; top:calc(100% + 10px); right:0;
  background:var(--white);
  border-radius:4px;
  box-shadow:var(--shadow);
  min-width:132px;
  overflow:hidden;
  opacity:0; visibility:hidden; transform:translateY(-6px);
  transition:opacity .2s, transform .2s, visibility .2s;
}
.lang-switch[data-open="true"] .lang-menu{ opacity:1; visibility:visible; transform:translateY(0); }
.lang-menu button{
  width:100%; text-align:left; border:none; background:none;
  color:var(--graphite); padding:11px 16px; font-size:13.5px; font-weight:600;
  border-radius:0;
}
.lang-menu button:hover{ background:var(--gray); color:var(--navy); }
.lang-menu button.is-active{ color:var(--gold); }

.nav-toggle{
  display:none;
  width:26px; height:20px;
  position:relative;
  background:none; border:none;
  flex-shrink:0;
}
.nav-toggle span{
  position:absolute; left:0; right:0; height:2px; background:var(--white);
  transition:transform .3s var(--ease), opacity .2s, top .3s var(--ease);
}
.nav-toggle span:nth-child(1){ top:0; }
.nav-toggle span:nth-child(2){ top:9px; }
.nav-toggle span:nth-child(3){ top:18px; }
.nav-toggle.is-open span:nth-child(1){ top:9px; transform:rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; }
.nav-toggle.is-open span:nth-child(3){ top:9px; transform:rotate(-45deg); }

/* ---------------- Hero ---------------- */
.hero{
  position:relative;
  background:var(--navy);
  padding-top:220px;
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0;
  background:
    linear-gradient(100deg, var(--navy) 0%, var(--navy) 38%, rgba(11,27,51,.55) 62%, rgba(11,27,51,.15) 100%),
    url("amulet_city.jpeg") center/cover no-repeat;
}
.hero-bg::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(0deg, var(--navy) 0%, transparent 26%);
}
.hero-content{
  position:relative;
  z-index:2;
  max-width:640px;
  padding-bottom:96px;
}
.hero-content h1{
  font-size:clamp(34px,4.6vw,58px);
  color:var(--white);
  text-transform:uppercase;
}
.hero-content h1 .accent{ color:var(--gold); }
.hero-content p{
  margin-top:22px;
  font-size:18px;
  color:var(--ink-muted);
  max-width:480px;
}
.hero-cta{ margin-top:38px; display:flex; gap:18px; flex-wrap:wrap; }


.hero-info-card{
  position:absolute;
  z-index:3;
  top:112px;
  right:6%;
  width:min(30%, 360px);
  min-height:420px;
  background:var(--white);
  border-radius:28px;
  box-shadow:0 30px 70px rgba(6,14,28,.35);
  padding:34px 30px 28px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-decoration:none;
  cursor:pointer;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
  animation:heroInfoSlideIn 1.1s cubic-bezier(.19,1.28,.32,1) 2s both;
}
.hero-info-card:hover{
  box-shadow:0 38px 84px rgba(6,14,28,.42);
}
@keyframes heroInfoSlideIn{
  from{ opacity:0; transform:translateX(120px); }
  to{ opacity:1; transform:translateX(0); }
}
.hero-info-eyebrow{
  position:absolute;
  top:24px;
  right:30px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--ink-muted-dark);
}
.hero-info-index{
  font-family:var(--font-display);
  font-size:44px;
  font-weight:800;
  color:var(--gold);
  line-height:1;
  margin-bottom:18px;
  transition:opacity .35s var(--ease), transform .35s var(--ease);
}
.hero-info-body{
  transition:opacity .35s var(--ease), transform .35s var(--ease);
}
.hero-info-body h3{
  margin:0 0 12px;
  font-size:22px;
  line-height:1.25;
  font-weight:700;
  color:var(--navy);
}
.hero-info-body p{
  margin:0;
  font-size:14.5px;
  line-height:1.6;
  color:var(--ink-muted-dark);
}
.hero-info-progress{
  margin-top:26px;
  width:100%;
  height:3px;
  background:rgba(11,27,51,.1);
  border-radius:2px;
  overflow:hidden;
  flex-shrink:0;
}
.hero-info-progress span{
  display:block;
  height:100%;
  width:0%;
  background:var(--gold);
}
.hero-info-progress span.is-running{
  animation:heroInfoProgress 10s linear forwards;
}
@keyframes heroInfoProgress{
  from{ width:0%; }
  to{ width:100%; }
}
.hero-info-card.is-fading .hero-info-index,
.hero-info-card.is-fading .hero-info-body{
  opacity:0;
  transform:translateY(6px);
}
@media (max-width:1180px){
  .hero-info-card{ right:4%; width:min(34%, 320px); min-height:380px; }
}
@media (max-width:900px){
  .hero-info-card{
    position:relative;
    z-index:2;
    top:auto; right:auto;
    width:calc(100% - 48px);
    max-width:480px;
    margin:32px auto 0;
    min-height:0;
  }
  .hero-info-eyebrow{ top:22px; right:26px; }
}
@media (max-width:640px){
  .hero-info-card{ width:calc(100% - 32px); padding:28px 22px 24px; border-radius:22px; }
  .hero-info-index{ font-size:36px; }
  .hero-info-body h3{ font-size:19px; }
}

/* stat strip */
.stat-strip{
  position:relative;
  z-index:2;
  background:var(--navy-2);
  border-top:1px solid rgba(212,175,55,.18);
}
.stat-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
}
.stat-item{
  display:flex;
  align-items:center;
  gap:16px;
  padding:34px 28px;
  border-right:1px solid rgba(255,255,255,.08);
}
.stat-item:last-child{ border-right:none; }
.stat-item svg{ width:40px; height:40px; color:var(--gold); flex-shrink:0; }
.stat-num{
  font-family:var(--font-display);
  font-size:clamp(26px,2.6vw,34px);
  font-weight:800;
  color:var(--white);
  line-height:1;
}
.stat-label{
  margin-top:6px;
  font-size:13px;
  color:var(--ink-muted);
}

/* ---------------- Advantages ---------------- */
.adv-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}
.adv-card{
  background:var(--white);
  border:1px solid rgba(11,27,51,.08);
  padding:34px 26px;
  border-radius:4px;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.adv-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
  border-color:transparent;
}
.adv-icon{
  width:52px; height:52px;
  display:flex; align-items:center; justify-content:center;
  background:var(--navy);
  border-radius:4px;
  margin-bottom:22px;
}
.adv-icon svg{ width:26px; height:26px; color:var(--gold); }
.adv-card h3{ font-size:18px; margin-bottom:10px; }
.adv-card p{ font-size:14.5px; color:var(--ink-muted-dark); margin:0; }

/* ---------------- Services ---------------- */
.svc-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.svc-card{
  position:relative;
  background:var(--white);
  border-radius:4px;
  padding:26px 22px 22px;
  box-shadow:0 2px 18px rgba(11,27,51,.06);
  border:1px solid rgba(11,27,51,.06);
  border-top:3px solid var(--gold);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
  display:flex; flex-direction:column;
}
.svc-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
.svc-num{ font-size:13px; font-weight:800; color:var(--gold); letter-spacing:.08em; margin-bottom:14px; }
.svc-card h3{ font-size:17.5px; margin-bottom:10px; line-height:1.3; }
.svc-card p{ font-size:14px; color:var(--ink-muted-dark); flex:1; margin:0 0 18px; }
.svc-more{
  display:inline-flex; align-items:center; gap:8px;
  font-size:14px; font-weight:700; color:var(--navy);
  border:none; background:none; padding:0; align-self:flex-start;
}
.svc-more svg{ width:16px; height:16px; transition:transform .25s; }
.svc-more:hover svg{ transform:translateX(4px); }

/* ---------------- Industries ---------------- */
.ind-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
}
.ind-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  border-radius:4px;
  padding:26px 20px;
  text-align:center;
  transition:background .3s, border-color .3s, transform .3s var(--ease);
  cursor:pointer;
  width:100%;
  font-family:inherit;
  position:relative;
}
.ind-card:hover{
  background:rgba(212,175,55,.08);
  border-color:var(--gold);
  transform:translateY(-4px);
}
.ind-card--more{
  border-color:rgba(212,175,55,.45);
  background:linear-gradient(145deg,rgba(212,175,55,.13),rgba(255,255,255,.04));
}
.ind-card svg{ width:30px; height:30px; color:var(--gold); margin:0 auto 14px; }
.ind-card span{ display:block; font-size:13px; font-weight:600; line-height:1.4; color:var(--white); }
.ind-card-count{
  display:inline-block;
  margin-top:10px;
  font-style:normal;
  font-size:11.5px;
  font-weight:600;
  letter-spacing:.03em;
  color:var(--gold);
  opacity:.85;
}

/* ---------------- Industry modal (client list) ---------------- */
.ind-modal-count{
  color:var(--ink-muted-dark);
  font-size:14px;
  margin:2px 0 0;
}
.ind-modal-table-wrap{
  max-height:340px;
  overflow-y:auto;
  border:1px solid var(--line, rgba(11,26,45,.1));
  border-radius:6px;
}
.ind-modal-table{
  width:100%;
  border-collapse:collapse;
  font-size:13.5px;
}
.ind-modal-table thead th{
  position:sticky;
  top:0;
  text-align:left;
  background:var(--navy);
  color:var(--white);
  padding:10px 14px;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.ind-modal-table tbody td{
  padding:9px 14px;
  border-bottom:1px solid rgba(11,26,45,.08);
  color:var(--ink-muted-dark);
  vertical-align:top;
}
.ind-modal-table tbody tr:last-child td{ border-bottom:none; }
.ind-modal-table tbody tr:hover{ background:rgba(212,175,55,.06); }
.ind-modal-year{
  width:70px;
  white-space:nowrap;
  font-weight:700;
  color:var(--navy);
}
.ind-modal-dir{
  font-size:12.5px;
  color:var(--ink-muted-dark);
  font-style:italic;
  white-space:nowrap;
}
.other-industries-modal-box{ max-width:720px; }
.other-industries-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-top:24px;
}
.other-industry-item{
  display:grid;
  grid-template-columns:42px minmax(0,1fr) 30px;
  align-items:center;
  gap:12px;
  width:100%;
  min-height:70px;
  padding:12px 14px;
  border:1px solid rgba(11,27,51,.1);
  border-radius:6px;
  background:var(--white);
  color:var(--navy);
  text-align:left;
  font-family:inherit;
  cursor:pointer;
  transition:border-color .25s,background .25s,transform .25s;
}
.other-industry-item:hover{ border-color:var(--gold); background:rgba(212,175,55,.06); transform:translateY(-2px); }
.other-industry-icon{ width:42px; height:42px; display:grid; place-items:center; border-radius:50%; background:var(--navy); color:var(--gold); }
.other-industry-icon svg{ width:21px; height:21px; }
.other-industry-name{ font-size:13px; font-weight:700; line-height:1.35; }
.other-industry-count{ display:grid; place-items:center; width:28px; height:28px; border-radius:50%; background:var(--gold); color:var(--navy); font-size:12px; font-weight:800; }

/* ---------------- About ---------------- */
.about-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}
.about-media{ position:relative; }
.about-media img{ border-radius:4px; box-shadow:var(--shadow); }
.about-badge{
  position:absolute;
  bottom:-24px; left:-24px;
  background:var(--navy);
  color:var(--white);
  padding:22px 26px;
  border-radius:4px;
  box-shadow:var(--shadow);
  border-left:3px solid var(--gold);
}
.about-badge strong{ display:block; font-size:26px; color:var(--gold); font-family:var(--font-display); }
.about-badge span{ font-size:12.5px; color:var(--ink-muted); }

.values-list{ display:grid; gap:22px; margin-top:8px; }
.value-item{ display:flex; gap:16px; }
.value-item .num{
  font-family:var(--font-display); font-weight:800; color:var(--gold);
  font-size:15px; min-width:34px;
}
.value-item h4{ font-size:15.5px; margin-bottom:4px; }
.value-item p{ font-size:14px; color:var(--ink-muted-dark); margin:0; }

.partners-strip{
  margin-top:64px;
  padding-top:44px;
  border-top:1px solid rgba(11,27,51,.1);
}
.partners-label{ font-size:13px; color:var(--ink-muted-dark); letter-spacing:.1em; text-transform:uppercase; margin-bottom:24px; font-weight:700; }
.partners-row{ display:flex; flex-wrap:wrap; gap:40px; align-items:center; }
.partner-badge{
  display:flex; align-items:center; gap:10px;
  font-weight:800; color:var(--graphite); opacity:.55;
  font-size:15px; transition:opacity .25s;
}
.partner-badge:hover{ opacity:1; }
.partner-badge svg{ width:22px; height:22px; color:var(--navy); flex-shrink:0; }
.license-docs-row{ margin-top:32px; display:flex; flex-wrap:wrap; gap:28px; }
.license-doc{ display:flex; align-items:center; gap:14px; max-width:280px; }
.license-doc img{ max-width:110px; width:100%; border-radius:8px; box-shadow:0 6px 18px rgba(0,0,0,.15); display:block; transition:transform .2s ease; cursor:pointer; }
.license-doc img:hover{ transform:scale(1.05); }
.license-doc-caption{ font-size:12.5px; color:var(--ink-muted-dark); line-height:1.4; }

/* ---------------- Team (bugalter/auditor xodimlari) ---------------- */
.team-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
}
.team-card{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(11,27,51,.08);
  border-radius:6px;
  overflow:hidden;
  cursor:pointer;
  text-align:left;
  padding:0;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.team-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
  border-color:transparent;
}
.team-photo{
  position:relative;
  width:100%;
  aspect-ratio:4/5;
  overflow:hidden;
  background:var(--navy-2);
}
.team-photo img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .5s var(--ease);
}
.team-card:hover .team-photo img{ transform:scale(1.06); }
.team-photo-overlay{
  position:absolute; inset:auto 0 0 0;
  background:linear-gradient(0deg, rgba(11,27,51,.88) 0%, transparent 100%);
  padding:26px 16px 14px;
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition:opacity .3s;
}
.team-card:hover .team-photo-overlay{ opacity:1; }
.team-photo-overlay span{
  color:var(--gold); font-size:13px; font-weight:700;
  display:inline-flex; align-items:center; gap:6px;
}
.team-body{ padding:18px 18px 22px; }
.team-body h4{ font-size:15.5px; margin-bottom:4px; line-height:1.35; }
.team-body p{ margin:0; font-size:13px; color:var(--ink-muted-dark); }
.team-patronymic{
  display:block;
}

/* ---------------- Contact ---------------- */
.contact-wrap{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:60px;
}
.contact-info-card{
  background:var(--navy);
  color:var(--white);
  border-radius:6px;
  padding:44px 38px;
}
.contact-info-card h3{ font-size:22px; margin-bottom:14px; }
.contact-info-card p{ font-size:14.5px; color:var(--ink-muted); margin:0 0 30px; }
.contact-line{ display:flex; gap:14px; margin-bottom:24px; align-items:flex-start; }
.contact-line svg{ width:20px; height:20px; color:var(--gold); flex-shrink:0; margin-top:2px; }
.contact-line strong{ display:block; font-size:14.5px; }
.contact-line span{ font-size:13.5px; color:var(--ink-muted); }
.contact-socials{ display:flex; gap:12px; margin-top:32px; }
.contact-socials a{
  width:38px; height:38px; border-radius:50%;
  border:1px solid rgba(255,255,255,.22);
  display:flex; align-items:center; justify-content:center;
  transition:border-color .25s, background .25s;
}
.contact-socials a:hover{ background:var(--gold); border-color:var(--gold); color:var(--navy); }
.contact-socials svg{ width:16px; height:16px; }
.contact-info-card .questionnaire-box--contact{
  grid-template-columns:42px minmax(0,1fr);
  margin:34px 0 0;
  padding:20px;
  background:rgba(255,255,255,.06);
  border-color:rgba(212,175,55,.38);
}
.contact-info-card .questionnaire-icon{
  width:42px;
  height:42px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(212,175,55,.3);
}
.contact-info-card .questionnaire-box h4{color:var(--white);}
.contact-info-card .questionnaire-box p{
  margin:7px 0 13px;
  color:var(--ink-muted);
  line-height:1.55;
}
.contact-info-card .questionnaire-download{color:var(--gold);}

/* Ishonch bildirgan kompaniyalar — 5 talik avtomatik karusel */
.trusted-companies{
  margin-top:42px;
  padding:10px 0 0;
  overflow:hidden;
}
.trusted-heading{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:22px;text-align:center;margin-bottom:24px}
.trusted-line{height:1px;background:linear-gradient(90deg,transparent,rgba(212,175,55,.62))}
.trusted-line:last-child{background:linear-gradient(90deg,rgba(212,175,55,.62),transparent)}
.trusted-kicker{display:block;color:var(--gold);font-size:11px;font-weight:800;letter-spacing:.18em;text-transform:uppercase;margin-bottom:4px}
.trusted-heading h3{margin:0;color:#fff;font-size:20px}
.trusted-stage{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:32px;min-height:130px;opacity:1;transform:translateY(0);transition:opacity .22s,transform .22s}
.trusted-stage.is-changing{opacity:0;transform:translateY(8px)}
.trusted-card{min-width:0;padding:8px 4px;text-align:center;transition:transform .25s}
.trusted-card:hover{transform:translateY(-4px)}
.trusted-logo{height:82px;display:grid;place-items:center;margin-bottom:10px;padding:0;background:transparent}
.trusted-logo img{display:block;max-width:100%;max-height:78px;object-fit:contain;background:transparent}
.trusted-card--no-logo{display:flex;align-items:center;justify-content:center;min-height:115px}
.trusted-card strong{display:block;color:#fff;font-size:12px;line-height:1.35;min-height:33px;font-weight:700}
.trusted-controls{display:flex;align-items:center;justify-content:center;gap:14px;margin-top:20px}
.trusted-arrow{width:34px;height:34px;padding:0;border:1px solid rgba(212,175,55,.4);border-radius:50%;background:transparent;color:var(--gold);font-size:24px;line-height:1}
.trusted-arrow:hover{background:var(--gold);color:var(--navy)}
.trusted-dots{display:flex;align-items:center;gap:7px}
.trusted-dot{width:7px;height:7px;padding:0;border-radius:50%;background:rgba(255,255,255,.3);transition:.25s}
.trusted-dot.active{width:25px;border-radius:10px;background:var(--gold)}

.form-card{
  background:var(--white);
  border-radius:6px;
  padding:44px 40px;
  box-shadow:0 2px 30px rgba(11,27,51,.08);
  border:1px solid rgba(11,27,51,.06);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.field{ margin-bottom:20px; }
.field label{ display:block; font-size:13px; font-weight:700; margin-bottom:8px; color:var(--graphite); }
.field input, .field select, .field textarea{
  width:100%;
  border:1px solid rgba(11,27,51,.16);
  border-radius:3px;
  padding:13px 15px;
  font-size:14.5px;
  background:var(--gray);
  color:var(--graphite);
  transition:border-color .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color:var(--gold);
  background:var(--white);
}
.field textarea{ resize:vertical; min-height:110px; }
.field.has-error input, .field.has-error select, .field.has-error textarea{ border-color:#c0392b; }
.field-error{ display:none; font-size:12.5px; color:#c0392b; margin-top:6px; }
.field.has-error .field-error{ display:block; }
.form-note{ font-size:12.5px; color:var(--ink-muted-dark); margin-top:14px; }
.form-success{
  display:none;
  align-items:center; gap:14px;
  background:rgba(212,175,55,.1);
  border:1px solid rgba(212,175,55,.4);
  padding:18px 20px; border-radius:4px;
  margin-bottom:20px; font-size:14px; color:var(--navy); font-weight:600;
}
.form-success.is-visible{ display:flex; }
.form-success svg{ width:22px; height:22px; color:var(--gold); flex-shrink:0; }

/* ---------------- Modal (services & team) ---------------- */
.modal-overlay{
  position:fixed; inset:0; z-index:2000;
  background:rgba(11,27,51,.72);
  backdrop-filter:blur(4px);
  display:flex; align-items:center; justify-content:center;
  padding:24px;
  opacity:0; visibility:hidden;
  transition:opacity .3s, visibility .3s;
}
.modal-overlay.is-open{ opacity:1; visibility:visible; }
.modal-box{
  background:var(--white);
  border-radius:6px;
  max-width:640px; width:100%;
  max-height:86vh; overflow-y:auto;
  padding:44px;
  transform:translateY(20px) scale(.98);
  transition:transform .35s var(--ease);
  position:relative;
}
.modal-overlay.is-open .modal-box{ transform:translateY(0) scale(1); }
.modal-close{
  position:absolute; top:18px; right:18px;
  width:36px; height:36px; border-radius:50%;
  background:var(--gray); border:none;
  display:flex; align-items:center; justify-content:center;
}
.modal-close svg{ width:16px; height:16px; }
.license-modal-box{ max-width:820px; width:auto; padding:40px 0 0; overflow:visible; max-height:none; background:transparent; }
.license-modal-box img{ display:block; max-height:80vh; width:auto; max-width:100%; margin:0 auto; border-radius:8px; }
.license-modal-box .modal-close{ background:var(--white); box-shadow:0 4px 14px rgba(0,0,0,.25); top:0; right:0; }
.modal-eyebrow{ color:var(--gold); font-weight:800; font-size:12.5px; letter-spacing:.1em; text-transform:uppercase; margin-bottom:10px; }
.modal-box h3{ font-size:24px; margin-bottom:16px; }
.modal-section{ margin-top:22px; }
.modal-section h4{ font-size:14px; text-transform:uppercase; letter-spacing:.06em; color:var(--navy); margin-bottom:12px; }
.modal-steps{ display:grid; gap:10px; }
.modal-steps li{ display:flex; gap:12px; font-size:14px; color:var(--ink-muted-dark); }
.modal-steps b{ color:var(--gold); }
.modal-faq details{ border-bottom:1px solid rgba(11,27,51,.08); padding:12px 0; }
.modal-faq summary{ cursor:pointer; font-weight:700; font-size:14.5px; list-style:none; display:flex; justify-content:space-between; align-items:center; }
.modal-faq summary::-webkit-details-marker{ display:none; }
.modal-faq summary::after{ content:"+"; font-size:20px; color:var(--gold); }
.modal-faq details[open] summary::after{ content:"–"; }
.modal-faq p{ margin:10px 0 0; font-size:13.5px; color:var(--ink-muted-dark); }

/* team modal specific */
.team-modal-head{ display:flex; gap:22px; align-items:flex-start; }
.team-modal-photo{ width:112px; height:140px; border-radius:6px; overflow:hidden; flex-shrink:0; box-shadow:var(--shadow); }
.team-modal-photo img{ width:100%; height:100%; object-fit:cover; }
.team-modal-info h3{ margin-bottom:4px; line-height:1.3; }
.team-modal-role{ color:var(--gold); font-weight:700; font-size:13.5px; margin-bottom:10px; }
.team-modal-bio{ font-size:14px; color:var(--ink-muted-dark); margin:0; line-height:1.65; }
.team-modal-bio strong{ color:var(--navy); font-weight:800; }
.team-modal-bio .bio-paragraph-break{ display:block; height:12px; }
.diploma-frame{
  border:1px solid rgba(11,27,51,.1);
  border-radius:6px;
  overflow:hidden;
  background:var(--gray);
}
.diploma-frame img{ width:100%; display:block; }
.cert-list{ display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.cert-chip{
  font-size:12.5px; font-weight:700; color:var(--navy);
  background:rgba(212,175,55,.12); border:1px solid rgba(212,175,55,.3);
  padding:6px 12px; border-radius:20px;
}
.doc-thumb-grid{ display:flex; flex-wrap:wrap; gap:12px; margin-top:10px; }
.doc-thumb{ width:84px; text-align:center; cursor:pointer; }
.doc-thumb img{ width:84px; height:84px; object-fit:cover; border-radius:8px; box-shadow:0 4px 12px rgba(0,0,0,.15); display:block; transition:transform .2s ease; }
.doc-thumb img:hover{ transform:scale(1.06); }
.doc-thumb span{ display:block; font-size:11px; color:var(--ink-muted-dark); margin-top:6px; line-height:1.3; }
.doc-thumb-empty{ font-size:13px; color:var(--ink-muted-dark); font-style:italic; }

/* ---------------- Footer ---------------- */
.site-footer{ background:var(--graphite); color:rgba(255,255,255,.7); padding:70px 0 26px; }
.footer-grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px;
  padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand p{ font-size:13.5px; margin-top:16px; max-width:280px; }
.footer-col h4{ font-size:13.5px; color:var(--white); text-transform:uppercase; letter-spacing:.08em; margin-bottom:18px; }
.footer-col ul{ display:grid; gap:11px; }
.footer-col a{ font-size:13.5px; transition:color .25s; }
.footer-col a:hover{ color:var(--gold); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:24px; font-size:12.5px; flex-wrap:wrap; gap:12px;
}

.back-to-top{
  position:fixed; right:28px; bottom:28px; z-index:900;
  width:48px; height:48px; border-radius:50%;
  background:var(--navy); color:var(--gold);
  border:1px solid rgba(212,175,55,.4);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transform:translateY(10px);
  transition:opacity .3s, transform .3s, visibility .3s, background .25s;
  box-shadow:0 10px 24px rgba(11,27,51,.3);
}
.back-to-top.is-visible{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover{ background:var(--gold); color:var(--navy); }
.back-to-top svg{ width:18px; height:18px; }

/* reveal animation */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ transition-delay:calc(var(--i,0) * 90ms); }

/* toast */
.toast-region{ position:fixed; top:24px; right:24px; z-index:3000; display:grid; gap:10px; }
.toast{
  background:var(--navy); color:var(--white); padding:14px 20px; border-radius:4px;
  border-left:3px solid var(--gold); font-size:13.5px; box-shadow:var(--shadow);
  transform:translateX(120%); transition:transform .4s var(--ease);
}
.toast.is-visible{ transform:translateX(0); }

/* ================= Responsive ================= */
@media (max-width:1080px){
  .adv-grid, .svc-grid, .ind-grid, .team-grid{ grid-template-columns:repeat(2,1fr); }
  .about-wrap{ grid-template-columns:1fr; }
  .contact-wrap{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .trusted-stage{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media (max-width:860px){
  .main-nav{
    position:fixed; top:0; right:0; height:100vh; width:min(320px,84vw);
    background:var(--navy);
    padding:110px 32px 40px;
    overflow-y:auto;
    transform:translateX(100%);
    transition:transform .4s var(--ease);
    box-shadow:-20px 0 50px rgba(0,0,0,.3);
    z-index:1001;
  }
  .main-nav.is-open{ transform:translateX(0); }
  .main-nav ul{ flex-direction:column; align-items:flex-start; gap:26px; }
  .nav-toggle{ display:block; }
  .stat-grid{ grid-template-columns:repeat(2,1fr); }
  .stat-item{ border-bottom:1px solid rgba(255,255,255,.08); padding:26px 18px; }
  .hero{ padding-top:170px; }
  .hero-content{ max-width:100%; }
  .partners-row{ gap:22px 32px; }
}
@media (max-width:640px){
  .container{ padding:0 20px; }
  .section{ padding:64px 0; }
  .section-head{ margin-bottom:40px; }
  .adv-grid, .svc-grid, .ind-grid, .footer-grid{ grid-template-columns:1fr; }
  .team-grid{ grid-template-columns:repeat(2,1fr); gap:16px; }
  .team-body{ padding:14px 12px 16px; }
  .team-body h4{ font-size:14px; }
  .team-body p{ font-size:12px; }
  .form-row{ grid-template-columns:1fr; }
  .other-industries-list{ grid-template-columns:1fr; }
  .about-badge{ position:static; margin-top:-32px; margin-left:16px; width:fit-content; }
  .hero-cta{ flex-direction:column; align-items:stretch; }
  .hero-cta .btn{ width:100%; }
  .modal-box{ padding:28px 20px; max-height:88vh; }
  .team-modal-head{ flex-direction:column; align-items:center; text-align:center; }
  .team-modal-photo{ width:120px; height:150px; }
  .contact-info-card, .form-card{ padding:32px 22px; }
  .site-header{ padding:16px 0; }
  .header-actions{ gap:10px; }
  .brand-mark{ height:40px; width:auto; }
  .lang-switch button{ padding:7px 9px; font-size:12px; }
  .partners-row{ gap:18px 24px; }
  .partner-badge{ font-size:13px; }
  .partner-badge svg{ width:18px; height:18px; }
  .stat-item{ gap:12px; padding:22px 16px; }
  .stat-item svg{ width:32px; height:32px; }
  .trusted-companies{margin-top:28px;padding:8px 0 0}
  .trusted-heading{grid-template-columns:1fr;gap:5px;margin-bottom:18px}
  .trusted-line{display:none}
  .trusted-heading h3{font-size:18px}
  .trusted-stage{grid-template-columns:repeat(2,minmax(0,1fr));min-height:154px;gap:10px}
}
@media (max-width:420px){
  .container{ padding:0 16px; }
  .hero-content h1{ font-size:30px; }
  .hero-content p{ font-size:15.5px; }
  .team-grid{ grid-template-columns:1fr; }
  .stat-grid{ grid-template-columns:1fr; }
  .stat-item{ border-right:none; }
  .section-title{ font-size:24px; }
  .section-sub{ font-size:15px; }
  .trusted-stage{grid-template-columns:1fr}
  .trusted-card{max-width:260px;width:100%;margin:auto}
}
