:root{
  --bg:#ffffff;
  --surface:#ffffff;
  --surface2:#f6f7fb;
  --text:#0f172a;
  --muted:#475569;
  --brand:#dc2626;   /* red */
  --brand2:#1d4ed8;  /* blue */
  --border: rgba(2,6,23,.10);
  --shadow: 0 12px 30px rgba(2,6,23,.10);
  --radius: 18px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfe 70%, #ffffff 100%);
  line-height:1.6;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}

.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.section{padding:64px 0}
.card{
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.topbar{
  position:sticky; top:0; z-index:1000;
  background: rgba(255,255,255,.96);
  border-bottom:1px solid var(--border);
  backdrop-filter: blur(10px);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  height:86px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:900; letter-spacing:.2px;
}
.brand img{height:42px; width:auto}

.topbar .brand img{height:56px}
.brand span{font-size:18px}
.navlinks{display:flex; gap:10px; align-items:center}
.navlinks a{
  padding:10px 12px;
  border-radius:12px;
  color:var(--muted);
  font-weight:750;
}
.navlinks a.active, .navlinks a:hover{
  background: rgba(2,6,23,.05);
  color: var(--text);
}
.cta{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  font-weight:900;
  border:1px solid rgba(2,6,23,.10);
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:white;
  box-shadow: 0 10px 22px rgba(2,6,23,.12);
  white-space:nowrap;
}
.cta.secondary{
  background: #ffffff;
  color: var(--text);
  border:1px solid rgba(2,6,23,.14);
  box-shadow:none;
}

.menuBtn{
  display:none;
  border:1px solid rgba(2,6,23,.14);
  background: rgba(2,6,23,.04);
  color: var(--text);
  padding:10px 12px;
  border-radius:12px;
  font-weight:900;
}

.hero{
  position:relative;
  isolation:isolate;
  min-height:520px;
  display:flex;
  align-items:center;
  overflow:hidden;
}
/* Blur-up hero background: low-res loads instantly, then full-res fades in */
.hero::before,
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  z-index:-1;
  transition:opacity .6s ease;
}
.hero::before{
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.58), rgba(0,0,0,.55)),
    url('../img/hero.jpg');
  opacity:0;
}
.hero::after{
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.58), rgba(0,0,0,.55)),
    url('../img/blur/hero.jpg');
  opacity:.92;
  filter:blur(18px);
  transform:scale(1.06);
}
.hero.is-loaded::before{ opacity:.92; }
.hero.is-loaded::after{ opacity:0; }
.hero::after{
  pointer-events:none;
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.55) 55%, rgba(255,255,255,.30) 100%);
}
.heroContent{
  position:relative;
  padding: 82px 0;
}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(2,6,23,.12);
  background: rgba(255,255,255,.7);
  color: var(--muted);
  font-weight:800;
}
.kicker strong{color:var(--text)}
h1{
  margin:18px 0 10px;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height:1.06;
  letter-spacing:-.8px;
}
.lead{
  color: var(--muted);
  font-size: clamp(16px, 2.1vw, 19px);
  max-width: 62ch;
}
.heroActions{
  margin-top:22px;
  display:flex; gap:12px; flex-wrap:wrap;
}
.heroBadges{
  margin-top:18px;
  display:flex; gap:10px; flex-wrap:wrap;
}
.badge{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(2,6,23,.12);
  background: rgba(255,255,255,.7);
  color: var(--muted);
  font-weight:800;
}

.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.grid2{display:grid; grid-template-columns: repeat(2, 1fr); gap:18px}
@media (max-width: 920px){
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .navlinks{display:none}
  .menuBtn{display:inline-flex}

  .topbar .brand img{height:48px}
}
.feature{
  padding:18px;
}
.feature h3{margin:6px 0 6px; font-size:18px}
.feature p{margin:0; color:var(--muted)}
.icon{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  background: rgba(2,6,23,.04);
  border:1px solid rgba(2,6,23,.10);
}

.split{
  display:grid; grid-template-columns: 1.1fr .9fr; gap:20px; align-items:stretch;
}
@media (max-width: 920px){ .split{grid-template-columns:1fr} }
.split .box{padding:22px}
h2{margin:0 0 12px; font-size:30px; letter-spacing:-.35px}
p{margin:0 0 12px}
.list{
  margin:0; padding-left:18px; color:var(--muted)
}
.list li{margin:8px 0}

.galleryGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 920px){
  .galleryGrid{grid-template-columns:1fr}
}
.thumb{
  overflow:hidden;
  border-radius: 16px;
  border:1px solid var(--border);
  background: var(--surface2);
}
.thumb img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
  transition: transform .25s ease, filter .35s ease, opacity .35s ease;
  }
.thumb:hover img{transform: scale(1.03)}
.caption{
  padding:10px 12px;
  color:var(--muted);
  font-size:14px;
}

.footer{
  padding:44px 0;
  border-top:1px solid var(--border);
  color: var(--muted);
  background: #ffffff;
}
.footerGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
}
@media (max-width: 920px){ .footerGrid{grid-template-columns:1fr} }
.small{font-size:14px}
hr.sep{border:none; border-top:1px solid var(--border); margin:18px 0}
.pill{
  display:inline-flex; gap:10px; align-items:center;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: var(--surface2);
}
.notice{
  color:var(--muted);
  font-size:14px;
}

.mobileNav{
  display:none;
  padding: 0 0 18px;
}
.mobileNav.open{display:block}
.mobileNav a{
  display:block;
  padding:12px 0;
  color:var(--muted);
  font-weight:850;
  border-bottom:1px solid var(--border);
}
.mobileNav a:last-child{border-bottom:none}

.heroBox{
  display:inline-block;
  padding:22px 22px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(2,6,23,.12);
  box-shadow: 0 18px 40px rgba(2,6,23,.14);
  backdrop-filter: blur(8px);
  max-width: 860px;
}
.heroBox h1{ color: #0f172a; text-shadow: 0 1px 0 rgba(255,255,255,.65); }
.heroBox .lead{ color: #334155; }
.heroBox .kicker{ background: rgba(255,255,255,.92); }
.heroBox .badge{ background: rgba(255,255,255,.92); }


/* Lazy-loading + blur-up images */
img.blur-up{
  filter: blur(14px);
  transform: scale(1.05);
  opacity: .92;
  will-change: filter, transform, opacity;
  transition: filter .35s ease, transform .35s ease, opacity .35s ease;
}
img.blur-up.is-loaded{
  filter: blur(0);
  transform: none;
  opacity: 1;
}


.trustStrip{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:14px 0 0;
}
.trustStrip span{
  display:inline-flex;
  align-items:center;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(2,6,23,.12);
  background:rgba(255,255,255,.86);
  color:var(--text);
  font-weight:800;
  font-size:14px;
}
.infoNote{
  padding:14px 16px;
  border-radius:16px;
  border:1px solid var(--border);
  background:var(--surface2);
  color:var(--muted);
}
@media (max-width: 920px){
  .trustStrip span{width:100%; justify-content:center; text-align:center}
}
