*{box-sizing:border-box}html{scroll-behavior:smooth}html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;color:#111;background:#fff}img{max-width:100%;height:auto;display:block}
:root{--brand:#0a8f5b;--brand-2:#0fb678;--dark:#0a0a0a;--light:#f7faf9;--muted:#6b7280;--radius:14px;--shadow:0 10px 30px rgba(0,0,0,.08)}
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 16px}
.header{position:sticky;top:0;z-index:40;background:#fff;border-bottom:1px solid #eee}
.header .row{display:flex;align-items:center;justify-content:space-between;padding:12px 0}
.logo{display:flex;align-items:center;gap:10px;text-decoration:none;color:inherit}
.logo img{width:38px;height:38px;border-radius:8px}
.nav{display:flex;gap:14px;flex-wrap:wrap}
.nav a{color:#111;text-decoration:none;font-weight:600;padding:8px 10px;border-radius:8px}
.nav a:hover{background:#f3f4f6}
.hero{position:relative;overflow:hidden}
.hero .inner{display:grid;gap:16px;grid-template-columns:1fr;align-items:center;padding:18px 0}
.hero h1{font-size:28px;line-height:1.15;margin:0}
.hero p{color:var(--muted);margin:6px 0 0}
.hero .media{border-radius:16px;overflow:hidden;box-shadow:var(--shadow)}
.badges{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}
.badge{background:var(--light);color:#0f5132;border:1px solid #d1fae5;padding:6px 10px;border-radius:999px;font-size:12px}
.section{padding:36px 0}
.section h2{font-size:22px;margin:0 0 14px}
.grid{display:grid;gap:14px}
.grid.cols-2{grid-template-columns:1fr}
.grid.cols-3{grid-template-columns:1fr}
.card{background:#fff;border:1px solid #eee;border-radius:16px;overflow:hidden;box-shadow:var(--shadow)}
.card .body{padding:14px}
.card h3{font-size:18px;margin:0 0 6px}
.list{margin:0;padding:0;list-style:none;display:grid;gap:8px}
.list li{display:flex;gap:8px;align-items:flex-start}
.kv{display:grid;gap:6px}
.kv .k{font-size:12px;color:#6b7280}
.kv .v{font-weight:600}
.btn{display:inline-flex;align-items:center;gap:8px;background:var(--brand);color:#fff;border:none;padding:10px 14px;border-radius:10px;font-weight:700;text-decoration:none;box-shadow:var(--shadow)}
.btn:hover{background:var(--brand-2)}
.btn.outline{background:#fff;color:var(--brand);border:2px solid var(--brand)}
.footer{border-top:1px solid #eee;background:#fff;padding:18px 0;color:#374151;margin-top:20px}
.footer .row{display:flex;flex-direction:column;gap:8px}
.footer a{color:#111}
.services{grid-template-columns:1fr 1fr}
.gallery{grid-template-columns:1fr}
.gallery .pair{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.table{width:100%;border-collapse:collapse}
.table td{border-bottom:1px solid #eee;padding:8px}
.form{display:grid;gap:10px}
.input{display:grid;gap:6px}
.input input,.input textarea,.input select{width:100%;padding:12px 12px;border:1px solid #e5e7eb;border-radius:10px}
.input label{font-weight:600}
.notice{padding:12px;border-radius:12px;background:#ecfeff;border:1px solid #a5f3fc}

/* Floating CTA */
.floating-cta{position:fixed;right:12px;bottom:12px;z-index:60;display:grid;gap:8px}
.floating-cta a{width:52px;height:52px;border-radius:999px;background:#fff;display:flex;align-items:center;justify-content:center;border:1px solid #e5e7eb;box-shadow:var(--shadow)}
.floating-cta img{width:28px;height:28px}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* Larger screens */
@media(min-width:768px){
  .hero .inner{grid-template-columns:1.1fr .9fr;padding:28px 0}
  .hero h1{font-size:42px}
  .grid.cols-2{grid-template-columns:1fr 1fr}
  .grid.cols-3{grid-template-columns:repeat(3,1fr)}
  .services{grid-template-columns:repeat(4,1fr)}
  .gallery{grid-template-columns:repeat(2,1fr)}
  .footer .row{flex-direction:row;align-items:center;justify-content:space-between}
}
