:root{--green:#0fa958}
*{box-sizing:border-box}
html,body{height:100%}
body{margin:0;font-family:Inter,Montserrat,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:#0b0d10;background:#fff}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block;height:auto}
.container{max-width:1200px;margin:0 auto;padding:0 24px}

.site-header{position:sticky;top:0;background:#fff;border-bottom:1px solid #e5e7eb;z-index:10}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:10px 0;gap:16px}
.brand{display:flex;align-items:center;gap:12px}.brand img{height:28px}
.menu{list-style:none;display:flex;gap:6px;margin:0;padding:0;flex-wrap:wrap}
.menu a{display:inline-block;padding:8px 12px;border-radius:10px}
.menu .current-menu-item>a{background:#e6f9f0;border:1px solid #b3f0d3}

.section{padding:42px 0}
.grid{display:grid;gap:24px}
.grid-3{grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}
.card{background:#fff;border:1px solid #e5e7eb;border-radius:14px;box-shadow:0 6px 18px rgba(0,0,0,.05);padding:18px}
.notice{background:#ecfdf5;border:1px solid #a7f3d0;color:#064e3b;padding:12px;border-radius:10px}

.hero-rotator{position:relative;height:50vh;min-height:420px;max-height:640px;background:#f8fafc;overflow:hidden}
.hr-track{position:relative;width:100%;height:100%}
.hr-slide{position:absolute;inset:0;opacity:0;transition:opacity .35s}
.hr-slide.is-active{opacity:1;z-index:2}
.hr-slide img{width:100%;height:100%;object-fit:cover;object-position:center}
.hr-prev,.hr-next{position:absolute;top:50%;transform:translateY(-50%);border:0;background:rgba(0,0,0,.42);color:#fff;width:38px;height:38px;border-radius:50%;cursor:pointer}
.hr-prev{left:10px}.hr-next{right:10px}
.hr-dots{position:absolute;bottom:12px;left:50%;transform:translateX(-50%);display:flex;gap:8px}
.hr-dot{width:10px;height:10px;border-radius:50%;border:0;background:rgba(255,255,255,.7)}
.hr-dot[aria-selected="true"]{background:var(--green)}

.table{width:100%;border-collapse:collapse}
.table th,.table td{padding:10px;border-bottom:1px solid #e5e7eb;text-align:left}

.btn{display:inline-block;padding:10px 16px;border-radius:10px;border:1px solid #d1d5db;background:#111827;color:#fff;cursor:pointer}
.btn.secondary{background:#fff;color:#111827}
form .row{display:grid;gap:12px;grid-template-columns:repeat(2,1fr)}
form .row .full{grid-column:1/-1}
input,textarea{width:100%;padding:10px;border:1px solid #d1d5db;border-radius:10px}

.modal{position:fixed;inset:0;display:none;align-items:center;justify-content:center;background:rgba(0,0,0,.5);z-index:50}
.modal.is-open{display:flex}
.modal-card{background:#fff;border-radius:14px;padding:20px;max-width:520px;width:92%}

.site-footer{margin-top:48px;background:#f8fafc;border-top:1px solid #e5e7eb}
.footer-inner{padding:24px 0}
