/* Zamoricocraft LLC — minimal, fast, responsive styles */
:root{
  --brand-blue:#003366;
  --brand-orange:#FF9900;
  --bg-soft:#F5F7FA;
  --text:#0b1220;
  --muted:#556070;
  --radius:16px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}

body{
  color: var(--text);
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.site-header nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .7rem 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:.6rem;
  text-decoration:none;
}
.brand-mark{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background:
    radial-gradient(120% 120% at 20% 20%, #1e6bb8 0%, var(--brand-blue) 40%, #001a33 100%);
  position:relative;
  box-shadow: 0 8px 20px rgba(0,51,102,.25);
}
.brand-mark::after{
  content:"";
  position:absolute;
  inset: 9px 8px 8px 9px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,.55);
}
.brand-name{
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--brand-blue);
  font-size: 1.05rem;
}

.nav-links{
  display:flex;
  gap:.25rem;
  align-items:center;
  margin:0;
}

.nav-links a{
  border-radius: 999px;
  padding: .45rem .8rem;
  color: var(--text);
  text-decoration:none;
  font-weight: 600;
  opacity: .9;
}
.nav-links a:hover{ background: rgba(0,51,102,.06); opacity: 1; }
.nav-links a.active{
  background: rgba(0,51,102,.10);
  color: var(--brand-blue);
}

.nav-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,.04);
  padding: 10px;
}
.nav-toggle span{
  display:block;
  height:2px;
  margin: 5px 0;
  background: var(--brand-blue);
  border-radius: 2px;
}

/* Layout helpers */
.container{ max-width: 1120px; margin: 0 auto; padding: 0 1rem; }
.section{ padding: 3.25rem 0; }
.section.soft{ background: var(--bg-soft); }
.card{
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
}
.grid{
  display:grid;
  gap: 1rem;
}
.grid.cols-3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.cols-2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }

.hero{
  position:relative;
  overflow:hidden;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(120deg, rgba(0,51,102,.92), rgba(0,51,102,.72)),
              url("../images/hero-placeholder.svg") center/cover no-repeat;
  color: #fff;
  box-shadow: var(--shadow);
}
.hero .inner{
  padding: 3.25rem 1.75rem;
}
.hero h1 {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.hero p {
  color: rgba(255,255,255,0.92);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding: .75rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.18);
  transition: transform .06s ease;
  user-select:none;
  cursor:pointer;
}
.btn:active{ transform: translateY(1px); }
.btn.primary{
  background: var(--brand-orange);
  color: #1d1400;
  border-color: rgba(0,0,0,.08);
}
.btn.ghost{
  background: rgba(255,255,255,.10);
  color: #fff;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
}

.feature{
  padding: 1.25rem;
}
.feature .icon{
  width: 46px; height: 46px;
  border-radius: 14px;
  background: rgba(0,51,102,.08);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: .8rem;
}
.feature h3{ margin: 0 0 .25rem; }
.feature p{ margin: 0; color: var(--muted); }

.kpi{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 1.25rem;
  gap: 1rem;
}
.kpi strong{
  color: var(--brand-blue);
  font-size: 1.25rem;
}
.muted{ color: var(--muted); }

.info-box{
  padding: 1.25rem;
  border-left: 5px solid var(--brand-orange);
  background: rgba(255,153,0,.10);
}

.form-card{ padding: 1.25rem; }
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.form-grid .full{ grid-column: 1 / -1; }

.map{
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 26px rgba(0,0,0,.06);
}

.site-footer{
  margin-top: 2rem;
  padding: 2.25rem 0 1rem;
  background: #0a1630;
  color: rgba(255,255,255,.85);
}
.site-footer a{ color: #fff; text-decoration:none; opacity: .92; }
.site-footer a:hover{ opacity: 1; text-decoration: underline; }
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand{ font-weight: 900; font-size: 1.1rem; }
.footer-title{ font-weight: 900; margin-bottom: .4rem; }
.footer-tagline{ color: rgba(255,255,255,.70); }
.footer-bottom{
  padding-top: 1rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 1rem;
  flex-wrap:wrap;
  font-size: .95rem;
}
.to-top{ opacity:.9; }

.notice{
  border-radius: var(--radius);
  padding: .9rem 1rem;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
}
.notice.success{
  border-left: 5px solid #1f8a3b;
  background: rgba(31,138,59,.08);
}
.notice.warn{
  border-left: 5px solid #a86b00;
  background: rgba(255,153,0,.10);
}

@media (max-width: 960px){
  .grid.cols-3{ grid-template-columns: 1fr; }
  .grid.cols-2{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .nav-links{
    position:absolute;
    right: 1rem;
    top: 70px;
    width: min(92vw, 340px);
    display:none;
    flex-direction:column;
    align-items:stretch;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0,0,0,.10);
    padding: .5rem;
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding: .7rem .9rem; }
}