:root{
--bg:#dbeafe;      /* slightly darker sky blue */
--card:#f8fbff;   /* soft off-white card */
  --text:#0f172a;
  --muted:#475569;
  --brand:#2563eb;
  --brand2:#22c55e;
  --stroke:rgba(15,23,42,.12);
  --shadow:0 12px 30px rgba(15,23,42,.10);
  --radius:16px;
  --max:1200px;
  --pad:20px;
}

*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Arial,sans-serif;
  background:
    radial-gradient(1200px 800px at 10% -10%, rgba(37,99,235,.12), transparent 60%),
    radial-gradient(900px 700px at 90% 0%, rgba(34,197,94,.10), transparent 55%),
    var(--bg);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 var(--pad);
}

.small{font-size:.95rem;color:var(--muted)}

.fullband{
  width:100%;
  padding:70px 0;
}
.fullband.tight{padding:46px 0}
.fullband.alt{
  background:rgba(15,23,42,.03);
  border-top:1px solid var(--stroke);
  border-bottom:1px solid var(--stroke);
}

/* ---------- HEADER ---------- */

header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(246,248,252,.85);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--stroke);
}

.logo-img{
  height:60px;
  width:auto;
  display:block;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.logo{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-weight:900;
}

.logo .mark{
  width:34px;
  height:34px;
  border-radius:10px;
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  box-shadow:var(--shadow);
}

.navlinks{
  display:flex;
  gap:18px;
  align-items:center;
}

.navlinks a{
  padding:10px 12px;
  border-radius:12px;
  font-weight:700;
  color:var(--muted);
}

.navlinks a:hover,
.navlinks a.active{
  background:rgba(15,23,42,.05);
  color:var(--text);
}

.nav-cta{
  display:flex;
  gap:10px;
  align-items:center;
}

/* ---------- BUTTONS ---------- */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.9rem 1.1rem;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:#fff;
  color:var(--text);
  font-weight:750;
  box-shadow:var(--shadow);
  cursor:pointer;
}

.btn:hover{transform:translateY(-1px)}

.btn.primary{
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  border-color:transparent;
  color:#fff;
}

.btn.ghost{
  background:transparent;
  box-shadow:none;
}

.btn.block{width:100%}

/* ---------- HAMBURGER ---------- */

.hamburger{
  display:none;
  width:46px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:#fff;
  box-shadow:var(--shadow);
  cursor:pointer;
  padding:10px;
}

.hamburger span{
  display:block;
  height:3px;
  background:var(--text);
  margin:6px 0;
  border-radius:999px;
}

/* ---------- HERO ---------- */

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
}

.hero-card{
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  background:linear-gradient(180deg,#fff,#f9fafb);
  box-shadow:var(--shadow);
}

.hero-left{padding:26px}

.h1{
  font-size:2.6rem;
  line-height:1.1;
  margin:12px 0;
}

.sub{
  font-size:1.05rem;
  color:var(--muted);
  max-width:65ch;
  line-height:1.6;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}

.kpis{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:22px;
}

.kpi{
  border:1px solid var(--stroke);
  border-radius:14px;
  padding:12px;
  background:rgba(15,23,42,.03);
}

.kpi b{display:block;font-size:1.05rem}
.kpi span{color:var(--muted);font-size:.9rem}

.hero-right{
  display:flex;
  flex-direction:column;
  gap:14px;
  padding:18px;
}

.panel{
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:14px;
  background:rgba(15,23,42,.03);
}

/* ---------- CARDS & GRIDS ---------- */

.section{padding:34px 0}

.grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.card{
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  background:var(--card);
  padding:18px;
  box-shadow:var(--shadow);
}

.card h3{margin:0 0 8px}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.list{
  padding-left:18px;
  color:var(--muted);
  line-height:1.7;
}

/* ---------- SERVICE ROWS ---------- */

.service-rows{display:grid;gap:28px}

.service-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  background:var(--card);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.service-copy{padding:26px}

.service-copy p{
  color:var(--muted);
  line-height:1.6;
}

.service-actions{
  display:flex;
  gap:10px;
  margin-top:18px;
  flex-wrap:wrap;
}

.service-img{
  width:100%;
  height:100%;
  min-height:300px;
  object-fit:cover;
  background:#e5e7eb;
}

/* Alternate image/text */
.service-row:nth-child(even) .service-copy{order:2}
.service-row:nth-child(even) .service-img{order:1}

/* ---------- FORMS ---------- */

.form{display:grid;gap:12px}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

input,textarea,select{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:#fff;
  color:var(--text);
}

textarea{min-height:120px}

label{font-size:.9rem;color:var(--muted)}

.notice{
  border:1px dashed rgba(15,23,42,.25);
  background:rgba(15,23,42,.03);
  padding:14px;
  border-radius:14px;
  color:var(--muted);
}

/* ---------- FOOTER ---------- */

.footer{
  padding:40px 0;
  color:var(--muted);
}

.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  border-top:1px solid var(--stroke);
  padding-top:20px;
}

/* ---------- MOBILE ---------- */

@media (max-width:900px){
  .hero-grid,
  .service-row,
  .grid3,
  .split,
  .kpis,
  .form-row{
    grid-template-columns:1fr;
  }

  .navlinks{display:none}
  .hamburger{display:block}

  .navlinks.open{
    display:flex;
    flex-direction:column;
    gap:8px;
    position:absolute;
    left:0;
    right:0;
    top:64px;
    background:#f8fafc;
    border-bottom:1px solid var(--stroke);
    padding:14px var(--pad);
  }
}
/* ---------- ANIMATIONS (scroll reveal) ---------- */
.reveal{
  opacity:0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.in{
  opacity:1;
  transform: translateY(0);
}

/* Respect people who prefer reduced motion */
@media (prefers-reduced-motion: reduce){
  .reveal{transition:none; transform:none; opacity:1}
}

/* Subtle hover polish */
.card:hover, .panel:hover, .service-row:hover{
  transform: translateY(-2px);
}
.card, .panel, .service-row{
  transition: transform .2s ease;
}
