*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: #0f172a; background: #ffffff; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
@media (max-width: 760px) { .container { padding: 0 16px; } }
.muted { color: #64748b; font-size: 14px; }

.top-strip { background: #0b4b78; color: #e2e8f0; }
.top-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 20px; }
.top-links { display: flex; align-items: center; gap: 16px; font-size: 14px; flex-wrap: wrap; }
.top-links a { color: #e2e8f0; }
.top-links a { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.top-links a:hover { color: #ffffff; }
.top-text { color: #ffffff; text-shadow: 0 1px 0 rgba(2,6,23,0.35); }
.top-icon { width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; color: #84cc16; }
.top-icon svg { width: 18px; height: 18px; display: block; }
.top-social { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.topbar { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); border-bottom: 1px solid #e2e8f0; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 20px; }
.brand-wrap { display: inline-flex; align-items: center; gap: 10px; min-width: 220px; }
.brand-wrap.has-logo-img { min-width: 0; gap: 0; }
.brand-logo { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; }
.brand-logo svg { width: 40px; height: 40px; display: block; }
.brand-wrap.has-logo-img .brand-logo { width: auto; height: 44px; }
.brand-img { width: auto; height: 42px; max-width: 280px; display: block; object-fit: contain; }
@media (max-width: 760px) { .brand-img { max-width: 200px; height: 38px; } }
.brand-text { display: grid; line-height: 1.1; }
.brand-name { font-weight: 900; letter-spacing: -0.02em; }
.brand-tagline { font-size: 12px; font-weight: 700; color: #0b4b78; }
.nav-wrap { display: flex; align-items: center; gap: 10px; }
.nav { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.nav a.link { font-size: 14px; color: #65a30d; padding: 8px 8px; border-radius: 10px; font-weight: 600; }
.nav a.link:hover { color: #0f172a; background: transparent; }
.nav a.link.active { color: #0f172a; }

.nav details.nav-dd { position: relative; }
.nav details.nav-dd > summary.link { font-size: 14px; color: #65a30d; padding: 8px 8px; border-radius: 10px; font-weight: 600; cursor: pointer; list-style: none; user-select: none; }
.nav details.nav-dd > summary.link:hover { color: #0f172a; background: transparent; }
.nav details.nav-dd > summary.link.active { color: #0f172a; }
.nav details.nav-dd > summary::-webkit-details-marker { display: none; }
.nav details.nav-dd > summary::marker { content: ""; }
.nav-dd-menu { display: none; position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px; background: #ffffff; border: 1px solid rgba(226,232,240,0.9); border-radius: 14px; padding: 8px; box-shadow: 0 18px 44px rgba(2,6,23,0.14); z-index: 60; }
.nav details.nav-dd[open] > .nav-dd-menu { display: grid; gap: 6px; }
.nav-dd-menu a.link { display: block; padding: 10px 12px; border-radius: 12px; color: #0f172a; }
.nav-dd-menu a.link:hover { background: rgba(2,6,23,0.06); }
.nav-dd-menu a.link.active { background: #84cc16; color: #0b1220; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; border: 0; background: #84cc16; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 10px 22px rgba(2,6,23,0.12); }
.nav-toggle-icon { width: 18px; height: 2px; background: #ffffff; display: block; position: relative; border-radius: 999px; }
.nav-toggle-icon::before, .nav-toggle-icon::after { content: ""; position: absolute; left: 0; right: 0; height: 2px; background: #ffffff; border-radius: 999px; }
.nav-toggle-icon::before { top: -6px; }
.nav-toggle-icon::after { top: 6px; }
.nav-backdrop { display: none; }
body.nav-open { overflow: hidden; }

@media (max-width: 980px) {
  .topbar .container { gap: 10px; }
  .nav-toggle { display: inline-flex; }
  .nav { display: none; }
  .topbar .container { position: relative; }
  body.nav-open .nav-backdrop { display: block; position: fixed; inset: 0; background: transparent; z-index: 40; }
  body.nav-open .nav { display: flex; position: absolute; top: calc(100% + 10px); left: 0; right: 0; background: #ffffff; z-index: 45; padding: 10px; flex-direction: column; flex-wrap: nowrap; align-items: stretch; gap: 6px; box-shadow: 0 22px 60px rgba(2,6,23,0.18); border: 1px solid rgba(226,232,240,0.9); border-radius: 14px; }
  body.nav-open .nav a.link { padding: 14px 14px; border-radius: 12px; color: #0f172a; }
  body.nav-open .nav a.link:hover { background: rgba(2,6,23,0.06); }
  body.nav-open .nav a.link.active { background: #84cc16; color: #0b1220; }
  body.nav-open .nav .btn { width: 100%; justify-content: center; margin-top: 6px; }
  body.nav-open .nav details.nav-dd { width: 100%; }
  body.nav-open .nav details.nav-dd > summary.link { width: 100%; padding: 14px 14px; border-radius: 12px; color: #0f172a; }
  body.nav-open .nav details.nav-dd > summary.link:hover { background: rgba(2,6,23,0.06); }
  body.nav-open .nav details.nav-dd > summary.link.active { background: #84cc16; color: #0b1220; }
  body.nav-open .nav-dd-menu { position: static; min-width: 0; border: 0; box-shadow: none; padding: 2px 0 6px 10px; }
  body.nav-open .nav-dd-menu a.link { padding: 12px 14px; }
}

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid #cbd5e1; background: #ffffff; padding: 10px 14px; border-radius: 12px; cursor: pointer; text-decoration: none; font-weight: 600; box-sizing: border-box; }
.btn.primary { background: #0f172a; color: #ffffff; border-color: #0f172a; }
.btn.light { background: #ffffff; color: #0f172a; }
.btn.danger { background: #b91c1c; color: #ffffff; border-color: #b91c1c; }
.btn.cta { background: #84cc16; color: #0b1220; border-color: #84cc16; }
.btn.cta:hover { filter: brightness(0.95); }
.btn.small { padding: 8px 10px; border-radius: 10px; font-size: 14px; font-weight: 600; }

.doc-preview { width: 100%; height: 420px; border: 1px solid rgba(226,232,240,0.9); border-radius: 12px; background: #f8fafc; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.doc-preview-link { width: 100%; height: 100%; display: block; }
.doc-preview img { width: 100%; height: 100%; object-fit: contain; display: block; background: #ffffff; }
.doc-pdf-box { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 6px; padding: 18px; text-align: center; }
.doc-pdf-title { font-weight: 900; letter-spacing: -0.02em; }

.doc-modal { position: fixed; inset: 0; z-index: 220; display: none; }
.doc-modal.open { display: block; }
.doc-modal-backdrop { position: absolute; inset: 0; background: rgba(15,23,42,0.62); }
.doc-modal-panel { position: relative; margin: 36px auto; width: min(980px, calc(100% - 32px)); max-height: calc(100vh - 72px); background: #ffffff; border-radius: 16px; border: 1px solid rgba(226,232,240,0.9); box-shadow: 0 24px 70px rgba(2,6,23,0.28); display: flex; flex-direction: column; overflow: hidden; }
.doc-modal-title { padding: 14px 48px 10px 16px; font-weight: 900; letter-spacing: -0.02em; border-bottom: 1px solid rgba(226,232,240,0.9); }
.doc-modal-close { position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; border-radius: 10px; border: 1px solid rgba(226,232,240,0.9); background: #ffffff; cursor: pointer; font-size: 22px; line-height: 1; display: inline-flex; align-items: center; justify-content: center; }
.doc-modal-body { padding: 0; flex: 1; overflow: auto; background: #0b1220; }
.doc-modal-body iframe { width: 100%; height: calc(100vh - 160px); border: 0; background: #ffffff; display: block; }
.doc-modal-body img { width: 100%; height: auto; display: block; background: #ffffff; }

.section { padding: 56px 0; }
.section.gray { background: #f8fafc; border-top: 1px solid #eef2f7; border-bottom: 1px solid #eef2f7; }
.section:not(.about-section)[style*="background-image:url(/assets/lines"] { background-image: none !important; }
.kicker { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #64748b; font-weight: 700; }
.h1 { font-size: 44px; line-height: 1.1; letter-spacing: -0.03em; margin: 10px 0 12px; font-weight: 900; }
.h2 { font-size: 30px; line-height: 1.2; letter-spacing: -0.02em; margin: 10px 0 12px; }
.lead { font-size: 16px; line-height: 1.7; color: #334155; margin: 0 0 18px; }

.home-districts { text-align: center; }
.review-band { text-align: center; }
.review-actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 14px; }
@media (max-width: 980px) { .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 760px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card { border: 1px solid #eef2f7; border-radius: 16px; padding: 14px; background: #ffffff; box-shadow: 0 10px 22px rgba(2,6,23,0.06); }
.review-meta { font-size: 12px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; color: #65a30d; }
.review-text { margin-top: 10px; color: #334155; line-height: 1.7; font-size: 15px; }
.review-name { margin-top: 10px; font-weight: 900; color: #0f172a; }
.district-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 16px; }
.district-pill { flex: 0 0 calc((100% - 50px) / 6); }
@media (max-width: 980px) { .district-pill { flex-basis: calc((100% - 20px) / 3); } }
@media (max-width: 520px) { .district-pill { flex-basis: calc((100% - 10px) / 2); } }
.district-pill { display: block; padding: 12px 12px; border: 1px solid #e2e8f0; border-radius: 14px; background: #ffffff; font-weight: 800; color: #0f172a; box-shadow: 0 8px 18px rgba(2,6,23,0.05); }
.district-pill:hover { background: #84cc16; border-color: #84cc16; color: #0b1220; box-shadow: 0 14px 30px rgba(132,204,22,0.18); }

.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 980px) { .grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 760px) { .grid.two, .grid.three, .grid.four { grid-template-columns: 1fr; } .h1 { font-size: 34px; } }

.card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 18px; }
.card.soft { background: #ffffff; border-color: #eef2f7; box-shadow: 0 10px 35px rgba(2,6,23,0.06); }
.monitor-hero { border: 0; padding: 14px 16px; color: #ffffff; background: #14b8a6; box-shadow: 0 10px 24px rgba(2,6,23,0.12); }
.monitor-hero .muted { color: rgba(255,255,255,0.86); }
.monitor-kicker { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 800; color: rgba(230,237,242,0.72); margin-bottom: 6px; }
.monitor-filter { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin: 0; }
.monitor-input { min-width: 240px; width: auto; max-width: 420px; height: 38px; line-height: 38px; padding: 0 12px; background: rgba(255,255,255,0.95); border-color: rgba(255,255,255,0.22); }
.monitor-select { width: auto; height: 38px; line-height: 38px; padding: 0 12px; border: 1px solid rgba(255,255,255,0.22); border-radius: 12px; background: rgba(255,255,255,0.95); font-size: 14px; }
.monitor-check { display: inline-flex; align-items: center; justify-content: flex-start; gap: 8px; height: 38px; line-height: 38px; padding: 0 12px; min-width: 150px; margin: 0; box-sizing: border-box; border: 1px solid rgba(255,255,255,0.22); border-radius: 12px; background: rgba(255,255,255,0.95); white-space: nowrap; }
.monitor-check input[type="checkbox"] { width: 16px; height: 16px; margin: 0; padding: 0; flex: 0 0 auto; }
.monitor-check .muted { color: #334155; }
.monitor-check span { white-space: nowrap; }
.monitor-filter .btn { height: 38px; line-height: 38px; padding: 0 14px; box-sizing: border-box; }
.monitor-subnav { display: flex; gap: 6px; flex-wrap: nowrap; overflow: hidden; padding: 10px 12px; border-radius: 16px; border: 1px solid #e5eaee; background: #ffffff; box-shadow: 0 8px 22px rgba(2,6,23,0.06); }
.tab-link { display: inline-flex; align-items: center; gap: 6px; height: 34px; padding: 0 10px; border-radius: 12px; box-sizing: border-box; border: 1px solid #99f6e4; background: #f0fdfa; color: #0f766e; text-decoration: none; font-weight: 800; font-size: 13px; letter-spacing: -0.01em; white-space: nowrap; flex: 0 0 auto; }
.tab-link::before { width: 8px; height: 8px; box-shadow: 0 0 0 3px rgba(20,184,166,0.14); }
.tab-link::before { content: ""; width: 9px; height: 9px; border-radius: 999px; background: #14b8a6; box-shadow: 0 0 0 4px rgba(20,184,166,0.14); }
.tab-link:hover { background: #ccfbf1; border-color: #5eead4; }
.tab-link.active { background: #14b8a6; border-color: #14b8a6; color: #ffffff; box-shadow: 0 10px 18px rgba(20,184,166,0.20); }
.tab-link.active::before { background: #ffffff; box-shadow: 0 0 0 4px rgba(255,255,255,0.14); }
.monitor-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
@media (max-width: 980px) { .monitor-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .monitor-stats { grid-template-columns: 1fr; } }
.monitor-stat { position: relative; overflow: hidden; padding: 14px 14px; border-radius: 16px; border: 1px solid #e5eaee; background: #ffffff; box-shadow: 0 8px 22px rgba(2,6,23,0.05); }
.monitor-stat::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(20,184,166,0.10) 0%, rgba(20,184,166,0.00) 55%); opacity: 1; }
.monitor-stat > * { position: relative; z-index: 1; }
.monitor-stat .label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #64748b; font-weight: 800; }
.monitor-stat .value { margin-top: 6px; font-size: 26px; font-weight: 900; letter-spacing: -0.02em; color: #0f172a; }
.monitor-stat .hint { margin-top: 6px; font-size: 12px; color: #64748b; font-weight: 600; }
.monitor-cardhead { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.monitor-title { font-size: 18px; font-weight: 900; letter-spacing: -0.01em; color: #0f172a; }
.monitor-title::after { content: ""; display: block; width: 38px; height: 4px; border-radius: 999px; margin-top: 8px; background: #14b8a6; }
.monitor-cardhead .muted { font-size: 13px; }
.monitor-hero .btn.light { background: rgba(255,255,255,0.94); border-color: rgba(255,255,255,0.18); }
.monitor-hero .btn.primary { background: #0f766e; border-color: #0f766e; color: #ffffff; box-shadow: 0 10px 18px rgba(15,118,110,0.22); }
.monitor-hero .btn.primary:hover { background: #0b5f59; border-color: #0b5f59; }
@media (max-width: 760px) {
  .monitor-input { min-width: 0; max-width: none; width: 100%; }
  .monitor-filter { width: 100%; }
  .monitor-select { width: 100%; }
  .monitor-check { width: 100%; justify-content: flex-start; }
  .monitor-subnav { gap: 8px; }
}
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 999px; font-size: 13px; font-weight: 700; border: 1px solid #e2e8f0; background: #ffffff; color: #0f172a; }
.badge.dark { background: #0f172a; border-color: #0f172a; color: #ffffff; }

.hero { padding: 56px 0 34px; background: #eef6ff; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 22px; align-items: start; }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-panel { background: rgba(255,255,255,0.92); border: 1px solid #e2e8f0; border-radius: 22px; padding: 26px; box-shadow: 0 25px 60px rgba(2,6,23,0.08); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.hero-media { display: flex; justify-content: flex-end; }
.hero-photo-wrap { position: relative; width: 100%; }
.hero-photo { width: 100%; height: auto; display: block; border-radius: 26px; box-shadow: 0 30px 70px rgba(2,6,23,0.14); }
.hero-photo.placeholder { height: 420px; background: rgba(2,6,23,0.06); }
.hero-badge { position: absolute; left: 18%; top: 52%; transform: translate(-50%, -50%) rotate(-12deg); width: 180px; height: 180px; border-radius: 999px; background: #083a60; color: #e2e8f0; display: flex; align-items: center; justify-content: center; padding: 18px; text-align: center; box-shadow: 0 18px 40px rgba(2,6,23,0.25); transform-origin: center; will-change: transform; animation: heroBadgeSpin 600ms ease-out 1 both; }
.hero-badge-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.hero-badge-top { font-weight: 900; font-size: 14px; }
.hero-badge-sub { font-size: 12px; opacity: 0.85; }
.hero-badge-price { font-weight: 900; color: #84cc16; line-height: 1.05; letter-spacing: -0.01em; }
.hero-badge-price span { display: inline-block; }
@keyframes heroBadgeSpin {
  from { transform: translate(-50%, -50%) rotate(-360deg); }
  to { transform: translate(-50%, -50%) rotate(-12deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-badge { animation: none; }
}
@media (min-width: 981px) {
  .hero-badge { left: -62px; top: 54%; transform: translate(0, -50%) rotate(-12deg); animation-name: heroBadgeSpinWide; }
}
@keyframes heroBadgeSpinWide {
  from { transform: translate(0, -50%) rotate(-360deg); }
  to { transform: translate(0, -50%) rotate(-12deg); }
}
@media (max-width: 760px) {
  .section { padding: 44px 0; }
  .hero { padding: 44px 0 22px; }
  .hero-grid { display: flex; flex-direction: column; }
  .hero-media { order: 1; justify-content: center; }
  .hero-panel { order: 2; }
  .hero-panel { padding: 18px; border-radius: 18px; }
  .hero-photo { border-radius: 18px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-badge { left: 14px; top: auto; bottom: 14px; transform: rotate(-12deg); width: 132px; height: 132px; padding: 12px; animation-name: heroBadgeSpinMobile; }
  .hero-badge-inner { gap: 4px; }
  .hero-badge-top { font-size: 14px; }
  .hero-badge-sub { font-size: 12px; }
  .hero-badge-price { font-size: 17px; }
}
@keyframes heroBadgeSpinMobile {
  from { transform: rotate(-360deg); }
  to { transform: rotate(-12deg); }
}

@media (min-width: 761px) {
  .hero-badge-top { font-size: 18px; }
  .hero-badge-sub { font-size: 13px; }
  .hero-badge-price { font-size: 22px; }
}
@media (max-width: 420px) {
  .hero-badge { width: 122px; height: 122px; padding: 11px; }
  .hero-badge-price { font-size: 12px; }
}

.promo { display: grid; grid-template-columns: 220px 1fr; gap: 16px; align-items: center; }
@media (max-width: 760px) { .promo { grid-template-columns: 1fr; } }
.promo .price { font-size: 18px; font-weight: 800; color: #0f172a; }

.list { margin: 14px 0 0; padding-left: 18px; color: #334155; line-height: 1.7; }
.kicker.green { color: #65a30d; }
.kicker.center, .h2.center { text-align: center; }

.page-hero { position: relative; background-size: cover; background-position: center; background-repeat: no-repeat; padding: 56px 0; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(2,6,23,0.45); }
.page-hero .container { position: relative; }
.page-hero-box { max-width: 560px; width: 100%; margin: 0 auto; background: rgba(11,18,32,0.55); border: 1px solid rgba(255,255,255,0.18); border-radius: 16px; padding: 22px 22px; text-align: center; backdrop-filter: blur(6px); }
.page-hero-title { font-size: 38px; font-weight: 900; letter-spacing: -0.02em; color: #ffffff; }
.page-hero-sub { margin-top: 8px; color: rgba(255,255,255,0.82); font-size: 16px; }
@media (max-width: 760px) { .page-hero-title { font-size: 30px; } }

.page-full img { max-width: 100%; height: auto; }
.page-full iframe { max-width: 100%; width: 100%; }
.page-full svg { max-width: 100%; height: auto; }
.page-full pre { max-width: 100%; overflow: auto; }
.page-full table { max-width: 100%; width: 100%; }
@media (max-width: 760px) { .page-full table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; } }

.contact-page-section { background-repeat: no-repeat; background-position: left bottom; background-size: 520px auto; }
@media (max-width: 980px) { .contact-page-section { background-size: 360px auto; } }
@media (max-width: 640px) { .contact-page-section { background: none !important; } }
.contact-page-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 28px; align-items: center; }
@media (max-width: 980px) { .contact-page-grid { grid-template-columns: 1fr; } }
.contact-page-left { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.contact-page-right { max-width: 720px; }
.contact-channel-list { margin-top: 16px; display: grid; gap: 14px; }
.contact-channel { display: grid; grid-template-columns: 44px 1fr; gap: 12px; align-items: start; }
.contact-channel-icon { width: 44px; height: 44px; border-radius: 8px; background: #84cc16; color: #0b1220; display: inline-flex; align-items: center; justify-content: center; }
.contact-channel-icon svg { width: 22px; height: 22px; display: block; }
.contact-channel-title { font-weight: 900; color: #0f172a; }
.contact-channel-text { margin-top: 4px; color: #64748b; font-size: 13px; line-height: 1.5; }

.contact-form-hero { position: relative; background-size: cover; background-position: center; background-repeat: no-repeat; padding: 70px 0; }
.contact-form-overlay { position: absolute; inset: 0; background: rgba(2,6,23,0.55); }
.contact-form-inner { position: relative; }
.contact-form-card { max-width: 760px; margin: 18px auto 0; background: rgba(255,255,255,0.94); border: 1px solid rgba(226,232,240,0.9); border-radius: 12px; padding: 18px; box-shadow: 0 24px 60px rgba(2,6,23,0.18); }
.social-row { margin-top: 22px; }
.social-row-icons { display: flex; justify-content: center; gap: 10px; }
.social-circle { width: 34px; height: 34px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: #0b4b78; color: #ffffff; font-weight: 900; }
.social-circle:nth-child(2) { background: #111827; }
.social-circle:nth-child(3) { background: #b91c1c; }

.guide-section { background: #eef6ff; }
.guide-grid { margin-top: 22px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 1100px) { .guide-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 900px) { .guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .guide-grid { grid-template-columns: 1fr; } }
.guide-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 14px; overflow: hidden; box-shadow: 0 18px 40px rgba(2,6,23,0.06); padding: 16px; display: flex; flex-direction: column; gap: 10px; min-height: 0; position: relative; }
.guide-img { height: 190px; border-radius: 12px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: #f8fafc; border: 1px solid #e2e8f0; padding: 8px; box-sizing: border-box; }
.guide-img svg { width: 172px; height: 172px; display: block; }
.guide-img img { width: 172px; height: 172px; display: block; object-fit: contain; background: #ffffff; border-radius: 12px; padding: 6px; box-sizing: border-box; filter: contrast(1.05) saturate(0.95); image-rendering: -webkit-optimize-contrast; }
@media (max-width: 760px) {
  .guide-card { min-height: 0; }
  .guide-img { height: 168px; padding: 8px; }
  .guide-img svg { width: 148px; height: 148px; }
  .guide-img img { width: 148px; height: 148px; }
}
.guide-title { margin-top: 2px; font-weight: 900; color: #0f172a; text-align: center; line-height: 1.2; }
.guide-link { display: block; font-size: 12px; color: #0f766e; text-align: center; text-decoration: none; font-weight: 700; }
.guide-link:hover { text-decoration: underline; }
.guide-card .btn.small { width: 100%; justify-content: center; margin-top: auto; }

.crumbs { display: flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.9); }
.crumbs a { color: rgba(255,255,255,0.9); text-decoration: none; font-weight: 800; }
.crumbs a:hover { text-decoration: underline; }
.crumbs .sep { opacity: 0.65; }

.pest-figure { width: 100%; display: flex; justify-content: center; margin: 0 0 12px; }
.pest-figure img { width: 260px; height: 260px; object-fit: contain; display: block; }
@media (max-width: 760px) { .pest-figure img { width: 190px; height: 190px; } }

.services-section { background: #eef6ff; }
.service-grid { margin-top: 22px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 1100px) { .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .service-grid { grid-template-columns: 1fr; } }
.service-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 14px; overflow: hidden; box-shadow: 0 18px 40px rgba(2,6,23,0.06); display: flex; flex-direction: column; min-height: 420px; transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.service-head { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-bottom: 1px solid #eef2f7; background: linear-gradient(180deg, rgba(238,246,255,0.75), rgba(255,255,255,0)); }
.service-head-icon { width: 38px; height: 38px; border-radius: 12px; background: linear-gradient(135deg, rgba(132,204,22,0.22), rgba(11,75,120,0.14)); color: #0b4b78; border: 1px solid rgba(11,75,120,0.16); display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 10px 22px rgba(2,6,23,0.08); flex: 0 0 38px; }
.service-head-icon svg { width: 20px; height: 20px; }
.service-head-title { font-weight: 900; color: #0f172a; }
.service-img { height: 170px; background: #f1f5f9; position: relative; overflow: hidden; }
.service-img::after { content: ""; position: absolute; inset: 0; pointer-events: none; border: 1px solid rgba(226,232,240,0.85); box-sizing: border-box; background: linear-gradient(to top, rgba(2,6,23,0.08), rgba(2,6,23,0)); }
.service-photo { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.98) contrast(1.04); transform: none; transition: transform 220ms ease, filter 220ms ease; }
.service-photo.placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, rgba(2,6,23,0.06), rgba(2,6,23,0.02)); }
.service-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.service-desc { margin: 0; color: #64748b; font-size: 14px; line-height: 1.6; text-align: center; }
.service-body .btn { margin-top: auto; }
@media (hover: hover) and (pointer: fine) {
  .service-card:hover { transform: translateY(-3px); box-shadow: 0 24px 60px rgba(2,6,23,0.10); border-color: rgba(11,75,120,0.22); }
  .service-card:hover .service-photo { transform: scale(1.03); filter: saturate(1.02) contrast(1.06); }
}
@media (max-width: 760px) {
  .services-section .h2.center { font-size: 24px; }
  .service-card { min-height: 0; }
  .service-img { height: 140px; }
  .service-body { padding: 12px 14px 14px; }
  .service-desc { font-size: 13px; }
  .service-body .btn { width: 100%; justify-content: center; }
}

.about-section { background-repeat: no-repeat; background-position: left bottom; background-size: 520px auto; }
@media (max-width: 980px) { .about-section { background-size: 360px auto; } }
@media (max-width: 640px) { .about-section { background: none !important; } }
.about-stats { margin-top: 26px; }

.values-section { padding: 64px 0; background: linear-gradient(90deg, #6fbf58 0%, #2aa0d6 100%); }
.values-grid { display: grid; grid-template-columns: 1.05fr 1.15fr; gap: 22px; align-items: center; }
@media (max-width: 980px) { .values-grid { grid-template-columns: 1fr; } }
.values-title { color: #ffffff; font-size: 34px; line-height: 1.15; font-weight: 900; letter-spacing: -0.02em; margin-top: 10px; }
.values-sub { margin-top: 10px; color: rgba(255,255,255,0.78); font-weight: 700; }
.values-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 980px) { .values-cards { grid-template-columns: 1fr; } }
.values-card { background: #ffffff; border-radius: 10px; padding: 22px; box-shadow: 0 18px 40px rgba(2,6,23,0.12); border: 1px solid rgba(226,232,240,0.9); }
.values-icon { width: 44px; height: 44px; border-radius: 6px; background: #84cc16; margin: 0 auto 12px; }
.values-card-title { text-align: center; font-weight: 900; color: #0f172a; margin-bottom: 10px; }
.values-card-text { text-align: center; color: #64748b; font-size: 13px; line-height: 1.6; }

.content-cards-section { background: #eef6ff; padding-top: 22px; }
.content-grid { margin-top: 8px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 1100px) { .content-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .content-grid { grid-template-columns: 1fr; } }
.content-card { background: linear-gradient(180deg, #0b2f6b 0%, #081f45 100%); border-radius: 16px; box-shadow: 0 22px 50px rgba(2,6,23,0.10); overflow: hidden; display: flex; flex-direction: column; min-height: 360px; border: 1px solid rgba(255,255,255,0.10); transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.content-thumb { position: relative; margin: 14px 14px 0; border-radius: 12px; overflow: hidden; background: rgba(255,255,255,0.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); }
.content-thumb img { width: 100%; height: 150px; object-fit: cover; display: block; filter: saturate(0.98) contrast(1.06); transform: scale(1.001); transition: transform 220ms ease, filter 220ms ease; }
.content-thumb.placeholder { height: 150px; }
.content-thumb-label { position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 12px; color: #ffffff; font-weight: 900; letter-spacing: 0.04em; text-transform: uppercase; font-size: 11px; background: linear-gradient(to top, rgba(2,6,23,0.72), rgba(2,6,23,0)); }
.content-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.content-title { color: #ffffff; font-weight: 500; font-size: 20px; line-height: 1.2; letter-spacing: -0.02em; }
.content-actions { margin-top: auto; }
.btn.readmore { background: linear-gradient(135deg, #2b74ff 0%, #1d4ed8 100%); border-color: rgba(255,255,255,0.18); color: #ffffff; min-width: 150px; box-shadow: 0 12px 24px rgba(2,6,23,0.16); }
.btn.readmore:hover { filter: brightness(0.98); }
@media (hover: hover) and (pointer: fine) {
  .content-card:hover { transform: translateY(-3px); box-shadow: 0 28px 70px rgba(2,6,23,0.14); border-color: rgba(132,204,22,0.24); }
  .content-card:hover .content-thumb img { transform: scale(1.04); filter: saturate(1.02) contrast(1.08); }
}
@media (max-width: 760px) {
  .content-cards-section { padding-top: 10px; }
  .content-card { min-height: 0; }
  .content-thumb img { height: 130px; }
  .content-body { padding: 14px 14px 16px; gap: 12px; }
  .content-title { font-size: 18px; }
  .btn.readmore { width: 100%; justify-content: center; min-width: 0; }
}

.contact-section { background-color: #0b1220; background-size: cover; background-position: center; background-repeat: no-repeat; padding: 64px 0; }
.contact-overlay { background: linear-gradient(to bottom, rgba(2,6,23,0.35), rgba(2,6,23,0.68)); padding: 64px 0; }
.contact-panel { margin: 22px auto 0; max-width: 980px; background: #ffffff; border-radius: 10px; border: 1px solid rgba(226,232,240,0.9); box-shadow: 0 24px 60px rgba(2,6,23,0.18); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: hidden; }
@media (max-width: 980px) { .contact-panel { grid-template-columns: 1fr; } }
.contact-item { padding: 18px 18px 20px; display: grid; justify-items: center; text-align: center; gap: 10px; }
.contact-item + .contact-item { border-left: 1px solid #eef2f7; }
@media (max-width: 980px) { .contact-item + .contact-item { border-left: 0; border-top: 1px solid #eef2f7; } }
.contact-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(132,204,22,0.12); color: #65a30d; display: inline-flex; align-items: center; justify-content: center; }
.contact-icon svg { width: 26px; height: 26px; }
.contact-title { font-weight: 900; color: #0f172a; }
.contact-text { color: #64748b; font-size: 13px; line-height: 1.5; max-width: 260px; }
.contact-note { margin-top: 18px; text-align: center; color: rgba(255,255,255,0.72); font-size: 14px; line-height: 1.7; }
@media (max-width: 760px) {
  .contact-section { padding: 52px 0; }
  .contact-overlay { padding: 52px 0; }
  .contact-panel { border-radius: 16px; }
  .contact-item { padding: 14px 14px 16px; gap: 8px; }
  .contact-icon { width: 50px; height: 50px; border-radius: 16px; }
  .contact-title { font-size: 15px; }
  .contact-text { font-size: 13px; }
  .contact-item .btn.small { width: 100%; justify-content: center; }
  .contact-note { font-size: 13px; padding: 0 8px; }
}

.stats-bar { margin-top: 22px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; background: #ffffff; border-radius: 16px; border: 1px solid #eef2f7; overflow: hidden; }
@media (max-width: 980px) { .stats-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.stats-item { padding: 16px 14px; text-align: center; }
.stats-item:not(:nth-child(1)):not(:nth-child(3)) { border-left: 1px solid #eef2f7; }
@media (max-width: 980px) { .stats-item { border-left: 0 !important; } .stats-item:nth-child(2), .stats-item:nth-child(4) { border-left: 1px solid #eef2f7 !important; } .stats-item:nth-child(3), .stats-item:nth-child(4) { border-top: 1px solid #eef2f7; } }
.stats-item .num { font-size: 28px; font-weight: 900; color: #84cc16; letter-spacing: -0.02em; }
.stats-item .lbl { margin-top: 6px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #64748b; font-weight: 800; }

.about { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 28px; align-items: center; }
@media (max-width: 980px) { .about { grid-template-columns: 1fr; } }
.about-left { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
.about-avatar { width: 320px; height: 320px; border-radius: 999px; background: radial-gradient(circle at 35% 25%, rgba(132,204,22,0.22), transparent 55%), radial-gradient(circle at 70% 70%, rgba(11,75,120,0.18), transparent 55%), #f1f5f9; border: 8px solid #ffffff; box-shadow: 0 25px 60px rgba(2,6,23,0.12); background-size: cover; background-position: center; background-repeat: no-repeat; }
@media (max-width: 760px) { .about-avatar { width: 260px; height: 260px; } }
.about-caption { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 900; color: #65a30d; }
.about-right { max-width: 720px; }
.about-right .lead { text-align: justify; }
.about-lead { display: flex; gap: 12px; align-items: flex-start; margin: 10px 0 16px; color: #64748b; font-size: 14px; line-height: 1.6; }
.about-accent { width: 3px; height: 46px; background: #84cc16; border-radius: 999px; margin-top: 4px; flex: 0 0 auto; }
.about-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 6px; }
@media (max-width: 760px) { .about-list { grid-template-columns: 1fr; } }
.about-actions { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.about-play { width: 42px; height: 42px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: rgba(132,204,22,0.18); border: 2px solid rgba(132,204,22,0.85); color: #65a30d; }
.about-play svg { width: 18px; height: 18px; margin-left: 2px; }

.policy { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; align-items: center; }
@media (max-width: 980px) { .policy { grid-template-columns: 1fr; } }
.policy-left .lead { text-align: justify; }
.policy-right { position: relative; }
.policy-items { margin-top: 18px; display: grid; gap: 14px; }
.policy-item { display: grid; grid-template-columns: 54px 1fr; gap: 14px; align-items: start; }
.policy-icon { width: 54px; height: 54px; border-radius: 12px; background: #84cc16; color: #ffffff; display: inline-flex; align-items: center; justify-content: center; }
.policy-icon svg { width: 26px; height: 26px; }
.policy-title { font-weight: 900; color: #0f172a; margin-top: 2px; }
.policy-text { margin-top: 4px; color: #64748b; font-size: 14px; line-height: 1.55; text-align: justify; }

.policy-visual { position: relative; min-height: 470px; }
@media (max-width: 980px) { .policy-visual { min-height: 420px; } }
.policy-blob { position: absolute; width: min(620px, 95%); left: 6%; bottom: -10px; transform: none; z-index: 1; }
.policy-blob img { width: 100%; height: auto; display: block; }
.policy-person { position: absolute; right: 0; bottom: 0; width: min(520px, 92%); height: auto; display: block; filter: drop-shadow(0 24px 40px rgba(2,6,23,0.18)); z-index: 2; }
.policy-person.placeholder { position: absolute; right: 0; bottom: 0; width: min(520px, 92%); height: 380px; border-radius: 18px; background: rgba(2,6,23,0.06); z-index: 2; }
.policy-visual::before { content: ""; position: absolute; inset: 0; pointer-events: none; }
.policy-callout { position: absolute; z-index: 3; left: 28%; top: 56%; transform: translate(-50%, -50%); width: 220px; box-sizing: border-box; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; background: #083a60; color: #e2e8f0; border-radius: 10px; padding: 18px 18px 16px; box-shadow: 0 18px 40px rgba(2,6,23,0.22); text-align: center; }
@media (max-width: 980px) { .policy-blob { left: 2%; width: min(600px, 98%); } .policy-person { width: min(480px, 92%); } .policy-callout { left: 34%; top: 54%; } }
.policy-callout .dot { width: 20px; height: 20px; border-radius: 999px; background: #84cc16; margin: 0 auto; }
.callout-title { font-size: 15px; font-weight: 400; letter-spacing: 0.02em; margin: 0; }
.callout-phone { font-size: 22px; font-weight: 400; line-height: 1.15; margin: 0; color: #84cc16; }
.callout-hours { font-size: 14px; font-weight: 400; color: rgba(226,232,240,0.78); line-height: 1.35; }
@media (max-width: 760px) {
  .policy-visual { min-height: 320px; }
  .policy-blob { left: 50%; bottom: 0; transform: translateX(-50%); width: min(352px, 100%); }
  .policy-person { width: min(360px, 88%); right: 50%; transform: translateX(50%); }
  .policy-callout { display: none; }
  .policy-callout .dot { width: 16px; height: 16px; margin-bottom: 8px; }
  .callout-title { font-size: 14px; margin-bottom: 6px; }
  .callout-phone { font-size: 18px; margin-bottom: 8px; }
  .callout-hours { font-size: 12px; }
}
@media (max-width: 420px) {
  .policy-person { width: min(320px, 90%); }
  .policy-callout { width: min(182px, calc(100% - 24px)); }
}
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 18px; }
@media (max-width: 980px) { .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.stat { padding: 14px 14px; border-radius: 16px; border: 1px solid #e2e8f0; background: #ffffff; }
.stat .num { font-size: 22px; font-weight: 900; letter-spacing: -0.02em; }
.stat .lbl { margin-top: 6px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #64748b; font-weight: 700; }

.icon { width: 38px; height: 38px; border-radius: 14px; background: #0f172a; color: #ffffff; display: inline-flex; align-items: center; justify-content: center; }
.icon svg { width: 20px; height: 20px; }

.form-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 18px; }
input, textarea, select { width: 100%; box-sizing: border-box; padding: 10px 12px; border: 1px solid #cbd5e1; border-radius: 12px; background: #ffffff; font-size: 14px; }
textarea { min-height: 110px; resize: vertical; }
label { display: block; font-size: 13px; color: #334155; margin-bottom: 6px; font-weight: 600; }
.field { margin-bottom: 12px; }

.alert { border-radius: 14px; padding: 12px 14px; border: 1px solid; margin-bottom: 12px; }
.alert.error { background: #fef2f2; border-color: #fecaca; color: #7f1d1d; }
.alert.success { background: #ecfdf5; border-color: #a7f3d0; color: #065f46; }
.table-wrap { width: 100%; overflow: auto; border-radius: 14px; border: 1px solid #99f6e4; }
.table { width: 100%; border-collapse: collapse; background: #ffffff; }
.table th, .table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid #eef2f7; vertical-align: top; font-size: 14px; }
.table th { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: #0f766e; background: #f0fdfa; border-bottom-color: #99f6e4; }
.table tr:hover td { background: rgba(2,6,23,0.02); }
.pill { display: inline-flex; align-items: center; justify-content: center; padding: 4px 9px; border-radius: 999px; font-size: 12px; font-weight: 800; border: 1px solid; }
.pill.ok { background: #ecfdf5; border-color: #a7f3d0; color: #065f46; }
.pill.danger { background: #fef2f2; border-color: #fecaca; color: #7f1d1d; }
.pill.muted { background: #f1f5f9; border-color: #e2e8f0; color: #475569; }
.pill.warn { background: #fffbeb; border-color: #fcd34d; color: #92400e; }
.grid2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (max-width: 760px) { .grid2 { grid-template-columns: 1fr; } }

.admin-body { background: #f8fafc; }
.admin-shell { min-height: 100vh; display: flex; }
.admin-backdrop { display: none; }
.admin-sidebar { width: 260px; background: #0f172a; color: #e2e8f0; padding: 14px 12px; box-sizing: border-box; border-right: 1px solid rgba(226,232,240,0.10); position: sticky; top: 0; height: 100vh; overflow: auto; }
.admin-brand { display: grid; gap: 2px; padding: 10px 12px; border-radius: 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(226,232,240,0.12); }
.admin-brand-name { font-weight: 900; letter-spacing: -0.02em; }
.admin-brand-sub { font-size: 12px; font-weight: 800; color: rgba(226,232,240,0.75); letter-spacing: 0.08em; text-transform: uppercase; }
.admin-menu { display: grid; gap: 6px; margin-top: 12px; }
.admin-menu-link { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 12px; border-radius: 12px; color: rgba(226,232,240,0.92); font-weight: 800; border: 1px solid transparent; background: transparent; cursor: pointer; width: 100%; box-sizing: border-box; text-align: left; }
.admin-menu-link:hover { background: rgba(255,255,255,0.07); border-color: rgba(226,232,240,0.12); color: #ffffff; }
.admin-menu-link.active { background: #84cc16; border-color: #84cc16; color: #0b1220; }
.admin-menu-link.danger { background: rgba(185,28,28,0.16); border-color: rgba(248,113,113,0.22); color: #fecaca; }
.admin-menu-link.danger:hover { background: rgba(185,28,28,0.22); border-color: rgba(248,113,113,0.30); color: #ffffff; }
.admin-menu-sep { height: 1px; margin: 12px 8px 0; background: rgba(226,232,240,0.12); }
.admin-logout-form { margin: 0; }
.admin-main { min-width: 0; flex: 1; display: flex; flex-direction: column; }
.admin-header { position: sticky; top: 0; z-index: 30; background: rgba(248,250,252,0.92); backdrop-filter: blur(8px); border-bottom: 1px solid #e2e8f0; padding: 12px 16px; display: flex; align-items: center; gap: 12px; }
.admin-header-title { font-weight: 900; letter-spacing: -0.02em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin-header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.admin-nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 0; background: #84cc16; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 10px 22px rgba(2,6,23,0.12); }
.admin-content { padding: 18px 0 28px; }

@media (max-width: 980px) {
  .admin-shell { display: block; }
  .admin-nav-toggle { display: inline-flex; }
  .admin-sidebar { position: fixed; left: 0; top: 0; bottom: 0; z-index: 60; width: min(280px, 88vw); transform: translateX(-105%); transition: transform 180ms ease; border-right-color: rgba(226,232,240,0.14); }
  body.admin-nav-open .admin-sidebar { transform: translateX(0); }
  body.admin-nav-open .admin-backdrop { display: block; position: fixed; inset: 0; z-index: 55; background: rgba(2,6,23,0.35); }
  .admin-header-actions .btn { padding: 8px 10px; border-radius: 10px; }
}

.alignright { float: right; margin-left: 1rem; }
.alignleft { float: left; margin-right: 1rem; }
.aligncenter { clear: both; display: block; margin-inline: auto; }
.hide { display: none !important; }
.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); height: 1px; overflow: hidden; position: absolute !important; width: 1px; word-wrap: normal !important; }
.screen-reader-text:focus { background-color: #eee; clip: auto !important; clip-path: none; color: #333; display: block; font-size: 1rem; height: auto; left: 5px; line-height: normal; padding: 12px 24px; text-decoration: none; top: 5px; width: auto; z-index: 100000; }

.site-footer { border-top: 1px solid #0b1d2a; background: radial-gradient(1200px 500px at 20% 0%, rgba(34,197,94,0.18), transparent 60%), radial-gradient(900px 500px at 80% 0%, rgba(59,130,246,0.18), transparent 60%), #083a60; background-size: cover; background-position: center; background-repeat: no-repeat; color: #e2e8f0; padding: 34px 0 18px; }
.site-footer .muted { color: #94a3b8; }
.footer-main { display: grid; grid-template-columns: 1.25fr 1fr 320px; gap: 22px; align-items: start; }
@media (max-width: 980px) { .footer-main { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-brand-img { height: 48px; width: auto; max-width: 320px; object-fit: contain; display: block; }
@media (max-width: 760px) { .footer-brand-img { height: 44px; max-width: 260px; } }
.footer-logo { width: 44px; height: 44px; border-radius: 999px; background: rgba(132,204,22,0.95); border: 2px solid rgba(255,255,255,0.18); box-shadow: 0 12px 28px rgba(2,6,23,0.25); }
.footer-title { font-weight: 800; letter-spacing: -0.01em; margin-bottom: 8px; }
.footer-subtitle { margin-top: -6px; font-size: 13px; color: #b6c7d6; font-weight: 700; }
.footer-text { margin: 0 0 14px; color: #d0dde8; font-size: 14px; line-height: 1.7; max-width: 520px; }
.footer-cta { display: flex; gap: 10px; flex-wrap: wrap; margin: 0 0 14px; }
.site-footer .btn.light { background: rgba(255,255,255,0.92); border-color: rgba(255,255,255,0.18); }
.site-footer .btn.light:hover { background: rgba(255,255,255,0.98); }
.site-footer .btn.cta { box-shadow: 0 12px 26px rgba(2,6,23,0.22); }
.site-footer .btn.cta:hover { filter: brightness(0.96); }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn { width: 34px; height: 34px; border-radius: 999px; background: rgba(132,204,22,0.95); color: #062c47; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 10px 22px rgba(2,6,23,0.25); }
.social-btn.small { width: 26px; height: 26px; box-shadow: none; }
.social-btn.small svg { width: 14px; height: 14px; }
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { filter: brightness(0.96); }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 760px) { .footer-cols { grid-template-columns: 1fr 1fr; gap: 14px; } }
@media (max-width: 420px) { .footer-cols { grid-template-columns: 1fr; } }
.footer-col-title { font-weight: 800; color: #ffffff; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: #d6e3ef; font-size: 14px; }
.footer-links a:hover { color: #ffffff; }
.footer-map { border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,0.14); background: rgba(2,6,23,0.18); }
.footer-map iframe { width: 100%; height: 200px; border: 0; display: block; }
.footer-bottom { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(226,232,240,0.12); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
@media (max-width: 760px) {
  .site-footer { padding: 26px 0 16px; }
  .footer-text { font-size: 13px; }
  .footer-brand-img { height: 40px; max-width: 240px; }
  .footer-map iframe { height: 160px; }
}
