:root{
  --ui-primary:#1976d2;
  --ui-accent:#00c896;
  --ui-ink:#0f172a;
  --ui-soft:#f6f8fb;
}

html{scroll-behavior:smooth;}

body{
  font-size:16px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color:var(--ui-ink);
  background:#fff;
}

.navbar-brand{
  font-weight:800;
  letter-spacing:.2px;
}

.badge-soft{
  background:rgba(25,118,210,.1);
  color:var(--ui-primary);
  border:1px solid rgba(25,118,210,.18);
}

.hero{
  position:relative;
  border-radius:1.5rem;
  overflow:hidden;
  background:linear-gradient(120deg, rgba(15,23,42,.72), rgba(25,118,210,.50));
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url("../img/hero.png");
  background-size:cover;
  background-position:center;
  opacity:.55;
  transform:scale(1.02);
}

.hero > .hero-inner{
  position:relative;
  padding:4.2rem 2.2rem;
}

.hero h1{
  font-weight:800;
  line-height:1.1;
}

.hero .lead{
  max-width:56ch;
}

.section{
  padding:4rem 0;
}

.section-alt{
  background:var(--ui-soft);
}

.card-elevated{
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 14px 34px rgba(15,23,42,.08);
  border-radius:1.25rem;
}

.icon-pill{
  width:44px;
  height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(0,200,150,.12);
  color:#0a7f63;
  border:1px solid rgba(0,200,150,.2);
}

.kpi{
  text-align:center;
  padding:1.2rem;
  border-radius:1.25rem;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
}
.kpi .value{
  font-weight:900;
  font-size:2rem;
}

.gallery-img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:1.25rem;
  border:1px solid rgba(15,23,42,.08);
}

.testimonial{
  height:100%;
}

.faq .accordion-button{
  font-weight:700;
}

footer{
  background:#0b1220;
  color:#dbeafe;
}
footer a{color:#dbeafe;}
footer a:hover{color:#fff;}

.mini-muted{opacity:.85;}

.cookie-banner{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:1080;
  background:rgba(11,18,32,.96);
  color:#e2e8f0;
  backdrop-filter: blur(8px);
  border-top:1px solid rgba(226,232,240,.18);
}
.cookie-banner .btn{
  border-radius:999px;
}

/* Small utility */
.text-gradient{
  background:linear-gradient(90deg, #ffffff, #bfe3ff);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* Improve focus */
:focus-visible{
  outline:3px solid rgba(0,200,150,.45);
  outline-offset:2px;
}
