
:root{
  --bg:#f7fbff;
  --card:#ffffff;
  --ink:#0b1b2a;
  --muted:#5c6b7a;
  --accent:#0a6cff;
  --accent-ink:#ffffff;
  --ring: rgba(10,108,255,.25);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--ink);background:var(--bg);}
.wrap{max-width:1100px;margin:0 auto;padding:0 20px;}

.site-header{position:sticky;top:0;background:rgba(255,255,255,.9);backdrop-filter:saturate(1.2) blur(8px);border-bottom:1px solid #eaf2ff;z-index:40}
.site-header .wrap{display:flex;align-items:center;justify-content:space-between;height:64px}
.brand{display:flex;gap:10px;align-items:center;text-decoration:none;color:var(--ink);font-weight:800}
.logo-dot{width:16px;height:16px;border-radius:50%;background:linear-gradient(180deg,#4fb1ff,#0a6cff)}
.actions .btn{margin-left:10px}

.hero{padding:64px 0 32px;background:linear-gradient(160deg,#eaf4ff, #ffffff 60%);}
.hero-wrap{display:grid;grid-template-columns:1.1fr .9fr;gap:32px;align-items:center}
.hero h1{font-size:40px;line-height:1.05;margin:0 0 10px}
.hero p{font-size:18px;color:var(--muted);margin:0 0 16px}
.cta-row{display:flex;gap:12px;margin:18px 0 8px;flex-wrap:wrap}
.trust{display:flex;gap:16px;list-style:none;padding:0;margin:10px 0 0;color:#1b3a57;font-size:14px;flex-wrap:wrap}

.card{background:var(--card);border:1px solid #eaf2ff;border-radius:14px;box-shadow:0 6px 24px rgba(10,108,255,.08);padding:18px}
.card h3{margin:0 0 10px}
.card form{display:grid;gap:10px}
.card label{display:grid;gap:6px;font-size:14px}
.card input,.card select,.card textarea{padding:12px 12px;border:1px solid #d9e8ff;border-radius:10px;background:#fff;font:inherit;outline:none}
.card input:focus,.card select:focus,.card textarea:focus{border-color:var(--accent);box-shadow:0 0 0 6px var(--ring)}
.card textarea{min-height:110px;resize:vertical}

.btn{display:inline-block;border-radius:12px;padding:12px 18px;border:1px solid transparent;text-decoration:none;font-weight:600;cursor:pointer}
.btn.primary{background:var(--accent);color:var(--accent-ink);}
.btn.ghost{background:transparent;border-color:#cfe3ff;color:#0a3a7d}
.btn.primary:focus,.btn.primary:hover{filter:brightness(.97)}
.btn.ghost:hover{background:#eef6ff}

.services{padding:48px 0 20px}
.services h2,.gallery h2,.contact h2{font-size:28px;margin:0 0 16px}
.grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.service p{color:var(--muted);margin:6px 0 0}

.gallery{padding:36px 0}
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.gallery-item{border-radius:12px;overflow:hidden;border:1px solid #eaf2ff;background:#fff}
.gallery-item img{width:100%;height:100%;object-fit:cover;display:block}

.contact{padding:36px 0 56px}
.contact-wrap{display:grid;grid-template-columns:1.1fr .9fr;gap:24px;align-items:start}
.contact-list{list-style:none;padding:0;margin:12px 0 0;display:grid;gap:6px}
.contact-list a{text-decoration:none;color:var(--accent)}
.tiny{color:#6b7a88;font-size:12px}

.site-footer{border-top:1px solid #eaf2ff;background:#fff}
.footer-wrap{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:18px 20px}
.footer-wrap .brand-row{display:flex;gap:10px;align-items:center}

@media (max-width: 960px){
  .hero-wrap,.contact-wrap{grid-template-columns:1fr}
  .grid{grid-template-columns:repeat(2,1fr)}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 600px){
  .grid{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:1fr}
  .site-header .wrap{height:56px}
  .hero h1{font-size:32px}
}
