/* Css/howitworks.css */

:root{
  --bg: #06080d;
  --panel: rgba(10, 14, 20, 0.85);
  --panel2: rgba(10, 14, 20, 0.70);
  --text: #e9eef5;
  --muted: rgba(233, 238, 245, 0.75);
  --gold: rgb(206, 174, 16);
  --blue: #1da8ff;
  --shadow: 0 12px 22px -14px rgba(0,0,0,0.75);
}

.hiw-hero{
  width: 1200px;
  margin: 0 auto;
  padding: 52px 0 26px 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.72), rgba(0,0,0,0.92));
  border-bottom: 1px solid rgba(206,174,16,0.25);
  box-shadow: var(--shadow);
}

.hiw-hero-inner{
  width: 1100px;
  margin: 0 auto;
  color: var(--text);
  text-align: center;
}

.hiw-hero h1{
  margin: 0;
  font-size: 52px;
  letter-spacing: 0.5px;
}

.hiw-subtitle{
  margin: 10px auto 18px auto;
  max-width: 900px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hiw-hero-callout{
  width: 900px;
  margin: 18px auto 0 auto;
  padding: 18px 18px;
  background: var(--panel);
  border: 1.5px solid rgba(206,174,16,0.55);
  border-radius: 14px;
  box-shadow: 0 10px 18px -10px rgba(0,0,0,0.65),
              0 0 18px rgba(29,168,255,0.12);
}

.hiw-callout-title{
  color: var(--text);
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;font-size: 18px;
}

.hiw-callout-text{
  color: var(--muted);
  line-height: 1.55;
  font-size: 18px;
}

.hiw-section{
  width: 1200px;
  margin: 0 auto;
  background: #000;
  padding: 26px 0 46px 0;
}

.hiw-container{
  width: 1100px;
  margin: 0 auto;
  color: var(--text);
}

.hiw-steps{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.hiw-card{
  background: var(--panel2);
  border: 1.5px solid rgba(206,174,16,0.35);
  border-radius: 14px;
  padding: 18px 18px 14px 18px;
  box-shadow: var(--shadow);
}

.hiw-step{
  display: inline-block;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(233,238,245,0.85);
  background: rgba(29,168,255,0.12);
  border: 1px solid rgba(29,168,255,0.35);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.hiw-card h2{
  margin: 6px 0 8px 0;
  font-size: 22px;
}

.hiw-card p{
  margin: 0 0 10px 0;
  color: var(--muted);
  line-height: 1.55;
}

.hiw-card ul{
  margin: 0 0 0 18px;
  padding: 0;
  color: rgba(233,238,245,0.88);
}

.hiw-card li{
  margin: 8px 0;
  line-height: 1.4;
}

.hiw-benefits{
  margin-top: 26px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(206,174,16,0.18);
}

.hiw-benefits h2{
  margin: 0 0 8px 0;
  font-size: 26px;
}

.hiw-benefits p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.hiw-pill-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hiw-pill{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.9);
  border: 1px solid rgba(206,174,16,0.30);
  color: rgba(233,238,245,0.9);
  font-size: 14px;
}

.hiw-cta{
  margin-top: 26px;
  text-align: center;
  padding: 24px 18px;
  background: var(--panel);
  border: 1.5px solid rgba(206,174,16,0.55);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.hiw-cta h2{
  margin: 0 0 6px 0;
  font-size: 28px;
}

.hiw-cta p{
  margin: 0 0 16px 0;
  color: var(--muted);
}

.hiw-cta-buttons{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hiw-btn{
  display: inline-block;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  background: rgba(206,174,16,0.92);
  color: #0b1220;
  border: 1px solid rgba(206,174,16,0.92);
  box-shadow: 0 10px 18px -12px rgba(0,0,0,0.65);
}

.hiw-btn:hover{
  filter: brightness(1.06);
}

.hiw-btn-outline{
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(206,174,16,0.65);
}

.hiw-footer{
  width: 1200px;
  margin: 0 auto;
  background: #0b1220;
  border-top: 1px solid rgba(206,174,16,0.20);
  color: rgba(233,238,245,0.85);
}

.hiw-footer-inner{
  width: 1100px;
  margin: 0 auto;
  padding: 22px 0;
}

.hiw-footer-brand{
  font-weight: 800;
  font-size: 16px;
  color: rgba(233,238,245,0.95);
}

.hiw-footer-text{
  margin-top: 6px;
  color: rgba(233,238,245,0.70);
}

.hiw-footer-links{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.hiw-footer-col a{
  display: block;
  color: rgba(233,238,245,0.78);
  text-decoration: none;
  margin: 6px 0;
}

.hiw-footer-col a:hover{
  color: rgba(233,238,245,0.95);
}

.hiw-footer-head{
  font-weight: 800;
  color: rgba(233,238,245,0.92);
  margin-bottom: 6px;
}

.hiw-footer-small{
  margin-top: 6px;
  font-size: 13px;
  color: rgba(233,238,245,0.65);
}

.hiw-footer-bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(233,238,245,0.65);
}

.hiw-footer-bottom a{
  color: rgba(233,238,245,0.72);
  text-decoration: none;
}

.hiw-footer-bottom a:hover{
  color: rgba(233,238,245,0.95);
}

.hiw-footer-dot{
  margin: 0 8px;
  opacity: 0.7;
}

/* Responsive-ish for smaller widths (optional) */
@media (max-width: 1200px){
  .hiw-steps{
    grid-template-columns: 1fr;
  }
  .hiw-hero-inner,
  .hiw-container,
  .hiw-footer-inner{
    width: 92%;
  }
  .hiw-hero-callout{
    width: 92%;
  }
}
