/* ===========================
   DIJAGA Online — styles.css
   Theme: Blue (dominant) + Orange (accent)
   Mobile-first, calm & professional
   =========================== */

/* ---- Design Tokens ---- */
:root{
  --blue-950:#071a2b;
  --blue-900:#0f2a44;
  --blue-800:#123a5a;
  --blue-700:#1f4fd8;
  --blue-200:#cfe2ff;
  --blue-100:#e8f0ff;

  --orange-600:#f97316;
  --orange-500:#fb923c;

  --gray-950:#0b1220;
  --gray-900:#111827;
  --gray-700:#374151;
  --gray-600:#4b5563;
  --gray-300:#d1d5db;
  --gray-200:#e5e7eb;
  --gray-100:#f3f4f6;

  --white:#ffffff;

  --radius:14px;
  --radius-sm:10px;

  --shadow:0 10px 25px rgba(15, 42, 68, 0.10);
  --shadow-soft:0 6px 18px rgba(15, 42, 68, 0.08);

  --container:1120px;
  --pad:18px;

  --focus:0 0 0 3px rgba(249,115,22,0.35);
}

/* ---- Base Reset ---- */
*{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--gray-900);
  background:var(--white);
  line-height:1.6;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }
button, input, textarea{
  font:inherit;
}
:focus-visible{ outline:none; box-shadow:var(--focus); border-radius:10px; }

/* ---- Layout ---- */
.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 var(--pad);
}

.section{
  padding:56px 0;
}
.section--soft{
  background:var(--blue-100);
}
.section--dark{
  background:linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color:var(--white);
}
.section--dark p, .section--dark li{
  color:rgba(255,255,255,0.85);
}

/* ---- Typography ---- */
h1,h2,h3{
  line-height:1.2;
  margin:0 0 12px;
  letter-spacing:-0.02em;
}
h1{
  font-size:clamp(2rem, 5vw, 3.1rem);
}
h2{
  font-size:clamp(1.55rem, 3.5vw, 2.2rem);
}
h3{
  font-size:1.15rem;
}
p{ margin:0 0 14px; color:var(--gray-700); }
.small{ font-size:0.95rem; color:var(--gray-600); }
.lead{ font-size:1.05rem; color:var(--gray-700); max-width:68ch; }

/* ---- Header / Nav ---- */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,0.92);
  backdrop-filter:saturate(150%) blur(10px);
  border-bottom:1px solid var(--gray-200);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:-0.01em;
}
.brand__mark{
  width:34px; height:34px;
  border-radius:10px;
  background:linear-gradient(135deg, var(--blue-900), var(--blue-700));
  box-shadow:var(--shadow-soft);
}
.nav{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav a{
  padding:8px 10px;
  border-radius:10px;
  color:var(--gray-700);
  text-decoration:none;
}
.nav a:hover{
  background:var(--blue-100);
  color:var(--blue-900);
  text-decoration:none;
}
.nav__cta{
  margin-left:6px;
}

/* ---- Hero ---- */
.hero{
  padding:68px 0 56px;
}
.hero__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:22px;
  align-items:center;
}
.hero__copy p{ color:rgba(255,255,255,0.85); }
.hero__panel{
  border-radius:var(--radius);
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.16);
  padding:18px;
  box-shadow:0 16px 40px rgba(0,0,0,0.18);
}
.hero__badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  font-size:0.92rem;
  border:1px solid rgba(255,255,255,0.16);
  background:rgba(255,255,255,0.06);
  color:rgba(255,255,255,0.9);
}

/* ---- Buttons ---- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid transparent;
  cursor:pointer;
  text-decoration:none;
  font-weight:700;
  white-space:nowrap;
}
.btn--primary{
  background:var(--orange-600);
  color:var(--white);
  box-shadow:0 10px 25px rgba(249,115,22,0.25);
}
.btn--primary:hover{
  background:var(--orange-500);
  text-decoration:none;
}
.btn--secondary{
  background:rgba(255,255,255,0.12);
  border-color:rgba(255,255,255,0.22);
  color:var(--white);
}
.btn--secondary:hover{
  background:rgba(255,255,255,0.18);
  text-decoration:none;
}
.btn--outline{
  background:var(--white);
  border-color:var(--blue-200);
  color:var(--blue-900);
}
.btn--outline:hover{
  background:var(--blue-100);
  text-decoration:none;
}

/* ---- Cards / Grids ---- */
.grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin-top:18px;
}
.card{
  background:var(--white);
  border-radius:var(--radius);
  padding:18px;
  border:1px solid var(--gray-200);
  box-shadow:var(--shadow-soft);
}
.card--accent{
  border-left:4px solid var(--orange-600);
}
.card h3{ margin-bottom:8px; }
.card p{ margin:0; }

.kpi{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.kpi__label{ color:var(--gray-600); font-size:0.95rem; }
.kpi__value{
  font-size:1.45rem;
  font-weight:800;
  color:var(--blue-900);
}
.kpi__value--accent{ color:var(--orange-600); }

/* ---- Lists ---- */
.list{
  margin:12px 0 0;
  padding-left:18px;
  color:var(--gray-700);
}
.list li{ margin:8px 0; }

/* ---- Divider ---- */
.hr{
  height:1px;
  background:var(--gray-200);
  border:0;
  margin:22px 0;
}

/* ---- Trust / Callouts ---- */
.callout{
  border-radius:var(--radius);
  padding:16px 18px;
  background:var(--blue-100);
  border:1px solid var(--blue-200);
}
.callout--warn{
  background:rgba(249,115,22,0.10);
  border-color:rgba(249,115,22,0.35);
}
.callout strong{ color:var(--blue-900); }

/* ---- FAQ (simple) ---- */
.faq{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-top:14px;
}
.faq__item{
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--radius);
  padding:14px 16px;
  box-shadow:var(--shadow-soft);
}
.faq__q{
  font-weight:800;
  color:var(--blue-900);
  margin:0 0 8px;
}
.faq__a{
  margin:0;
}

/* ---- Contact ---- */
.contact{
  padding:64px 0;
}
.contact .lead{ color:rgba(255,255,255,0.85); }
.contact__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.contact__meta{
  margin-top:14px;
  font-size:0.95rem;
  color:rgba(255,255,255,0.75);
}
.contact__meta a{
  color:rgba(255,255,255,0.9);
  text-decoration:underline;
}
.contact__meta a:hover{
  color:var(--orange-500);
}

/* ---- Footer ---- */
.site-footer{
  background:var(--blue-950);
  color:rgba(255,255,255,0.85);
  padding:26px 0;
}
.footer__inner{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.site-footer a{ color:rgba(255,255,255,0.9); }
.site-footer a:hover{ color:var(--orange-500); }

/* ---- Utilities ---- */
.m0{ margin:0 !important; }
.mt8{ margin-top:8px !important; }
.mt12{ margin-top:12px !important; }
.mt16{ margin-top:16px !important; }
.mt20{ margin-top:20px !important; }
.max-70{ max-width:70ch; }

/* ---- Responsive ---- */
@media (min-width: 860px){
  .hero__grid{
    grid-template-columns: 1.25fr 0.75fr;
    gap:26px;
  }
  .grid{
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.grid--2{
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__inner{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
  }
}
