/* =========================
   WorkInArmenia – UI System
   Responsive: mobile/tablet/desktop
   ========================= */

/* ---- Reset ---- */
* { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
:root{
  --bg: #F7F9FC;
  --surface: #FFFFFF;
  --text: #0F172A;
  --muted: #64748B;
  --border: #E5E7EB;

  --primary: #0B1F3B;  /* trust */
  --accent: #F59E0B;   /* construction */
  --accent2:#0EA5E9;   /* optional info */
  --danger:#EF4444;

  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  --shadow-sm: 0 6px 18px rgba(2, 6, 23, 0.10);

  --container: 1200px;
}

/* ---- Typography ---- */
body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
h1,h2,h3{ line-height: 1.2; margin: 0 0 10px; }
p{ margin: 0 0 12px; color: var(--muted); }
small{ color: var(--muted); }

/* ---- Layout ---- */
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}
.section{
  padding: 56px 0;
}
@media (min-width: 900px){
  .section{ padding: 76px 0; }
}

/* ---- Utilities ---- */
.row{ display: flex; gap: 14px; flex-wrap: wrap; }
.grid{
  display: grid;
  gap: 16px;
}
.grid-2{ grid-template-columns: 1fr; }
.grid-3{ grid-template-columns: 1fr; }
.grid-4{ grid-template-columns: 1fr; }
@media (min-width: 700px){
  .grid-2{ grid-template-columns: 1fr 1fr; }
  .grid-3{ grid-template-columns: repeat(3, 1fr); }
  .grid-4{ grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px){
  .grid-3{ gap: 18px; }
  .grid-4{ gap: 18px; }
}
.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: none;
  padding: 18px;
}
.card.shadow{ box-shadow: var(--shadow-sm); border-color: rgba(229,231,235,0.8); }
.badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  background: #fff;
}
.badge strong{ color: var(--text); font-weight: 700; }
.hr{ height: 1px; background: var(--border); border: 0; margin: 18px 0; }

/* ---- Buttons ---- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform .06s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  user-select: none;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: var(--accent);
  color: #111827;
  box-shadow: 0 10px 20px rgba(245,158,11,0.20);
}
.btn-primary:hover{ background: #f3a31a; }
.btn-outline{
  background: transparent;
  border-color: #CBD5E1;
  color: var(--text);
}
.btn-outline:hover{ background: #F1F5F9; }
.btn-dark{
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(11,31,59,0.18);
}
.btn-dark:hover{ background: #0a1b33; }
.btn-full{ width: 100%; }

/* ---- Header / Nav ---- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229,231,235,0.85);
}
.navbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--primary);
}
.brand-mark{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0B1F3B, #0EA5E9);
  color: #fff;
  font-weight: 900;
  letter-spacing: .5px;
}
.nav{
  display: none;
  align-items: center;
  gap: 18px;
}
.nav a{
  font-weight: 700;
  color: #334155;
  font-size: 15px;
}


/* Active menu link */
.nav a.active{
  color: var(--primary);
  position: relative;
}
.nav a.active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-10px;
  height:2px;
  background: var(--accent);
  border-radius: 999px;
}


.nav a:hover{ color: var(--primary); }
.nav-right{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Language pills */
.lang{
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
}
.lang a{
  font-weight: 800;
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #334155;
}
.lang a.active{
  background: #F1F5F9;
  color: var(--primary);
}

/* Mobile menu button */
.burger{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}
.burger span{
  width: 18px; height: 2px; background: #334155; display: block; position: relative;
}
.burger span::before,
.burger span::after{
  content:"";
  position: absolute;
  left: 0;
  width: 18px; height: 2px; background: #334155;
}
.burger span::before{ top: -6px; }
.burger span::after{ top: 6px; }

/* Mobile dropdown */
.mobile-nav{
  display: none;
  padding-bottom: 14px;
}
.mobile-nav.open{ display: block; }
.mobile-nav .card{
  padding: 14px;
}
.mobile-nav a{
  display: block;
  padding: 12px 10px;
  border-radius: 12px;
  font-weight: 800;
  color: #334155;
}





.mobile-nav a:hover{ background: #F1F5F9; }
.mobile-nav .row{ margin-top: 10px; }



/* Mobile active */
.mobile-nav a.active{
  background: #F1F5F9;
  color: var(--primary);
}

/* Desktop nav visible */
@media (min-width: 900px){
  .nav{ display: flex; }
  .burger{ display: none; }
  .mobile-nav{ display: none !important; }
}

/* ---- Hero ---- */
.hero{
  background: radial-gradient(1200px 500px at 15% 20%, rgba(14,165,233,0.16), transparent 60%),
              radial-gradient(900px 400px at 80% 10%, rgba(245,158,11,0.14), transparent 55%),
              #fff;
  border-bottom: 1px solid rgba(229,231,235,0.9);
}
.hero-wrap{
  padding: 44px 0 24px;
}
@media (min-width: 900px){
  .hero-wrap{ padding: 72px 0 46px; }
}
.hero-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
@media (min-width: 900px){
  .hero-grid{ grid-template-columns: 1.05fr 0.95fr; gap: 26px; }
}
.hero h1{
  font-size: 34px;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
}
@media (min-width: 900px){
  .hero h1{ font-size: 52px; }
}
.hero-lead{
  font-size: 16px;
  max-width: 58ch;
}
@media (min-width: 900px){
  .hero-lead{ font-size: 18px; }
}
.hero-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.hero-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.hero-media{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(229,231,235,0.95);
  box-shadow: var(--shadow);
  background: #0b1f3b;
  min-height: 240px;
}
.hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Steps ---- */
.step{
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.step-num{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #F1F5F9;
  border: 1px solid #E5E7EB;
  font-weight: 900;
  color: var(--primary);
}

/* ---- Lists ---- */
.list{
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}
.list li{ margin: 6px 0; }

/* ---- Forms ---- */
.form-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 700px){
  .form-card{ padding: 22px; }

}
.field{
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
.label{
  font-weight: 800;
  font-size: 13px;
  color: #334155;
}
.input, select, textarea{
  width: 100%;
  border: 1px solid #CBD5E1;
  border-radius: 12px;
  padding: 12px 12px;
  background: #fff;
  outline: none;
}
textarea{ min-height: 110px; resize: vertical; }
.input:focus, select:focus, textarea:focus{
  border-color: rgba(14,165,233,0.55);
  box-shadow: 0 0 0 4px rgba(14,165,233,0.12);
}
.help{
  font-size: 12px;
  color: var(--muted);
}
.form-grid{
  display: grid;
  gap: 14px;
}
@media (min-width: 700px){
  .form-grid{ grid-template-columns: 1fr 1fr; }
}

.upload{
  border: 1px dashed #CBD5E1;
  background: #F8FAFC;
  border-radius: 14px;
  padding: 12px;
}

/* ---- FAQ ---- */
.faq-item{
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 16px;
  padding: 14px;
}
.faq-q{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 900;
  color: #0f172a;
}
.faq-a{
  margin-top: 10px;
  color: var(--muted);
  display: none;
}
.faq-item.open .faq-a{ display: block; }

/* ---- Footer ---- */
.site-footer{
  background: var(--primary);
  color: #fff;
}
.footer-top{
  padding: 44px 0;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 900px){
  .footer-grid{ grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
}
.footer-title{
  font-weight: 900;
  margin: 0 0 10px;
}
.footer-link{
  color: rgba(255,255,255,0.82);
  display: inline-block;
  margin: 6px 0;
}
.footer-link:hover{ color: #fff; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.18);
  padding: 16px 0;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}

/* ---- Page header ---- */
.page-head{
  padding: 26px 0 14px;
}
.page-title{
  font-size: 26px;
  margin-bottom: 8px;
}
@media (min-width: 900px){
  .page-title{ font-size: 34px; }
}
.page-sub{
  max-width: 75ch;
}

/* ---- Tiny helpers ---- */
.kpi{
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.kpi b{
  font-size: 22px;
  color: var(--text);
}
.kpi span{
  font-size: 13px;
  color: var(--muted);
}
.mobile-nav { display: none; }
.mobile-nav.open { display: block; }
.upload-preview img{
  width: 100%;
  max-width: 260px;
  border-radius: 12px;
  border: 1px solid rgba(2,6,23,0.10);
}








@media(max-width :700px){
    .btb001{
        display: none;
    }
    .hero{
        padding: 20px;
    }
}




