:root {
  --ink: #0d1f2d;
  --ink-2: #183345;
  --muted: #607180;
  --line: #dbe3e8;
  --soft: #f3f6f8;
  --white: #ffffff;
  --brand: #ea7a23;
  --brand-dark: #c85b0a;
  --green: #138a58;
  --danger: #b83a3a;
  --warning: #9a6a10;
  --shadow: 0 22px 60px rgba(9, 30, 45, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.4rem, 6vw, 5.3rem); }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
h3 { font-size: 1.2rem; }
p { color: var(--muted); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  font-weight: 800;
  transition: 180ms ease;
}
.button:hover { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateY(-1px); }
.button--ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.52); }
.button--ghost:hover { background: var(--white); border-color: var(--white); color: var(--ink); }
.button--light { background: var(--white); border-color: var(--white); color: var(--ink); }
.button--light:hover { background: #fff7ef; color: var(--ink); }
.button--outline { background: transparent; border-color: var(--line); color: var(--ink); }
.button--outline:hover { background: var(--soft); border-color: var(--ink); color: var(--ink); }
.button--small { min-height: 40px; padding: 8px 15px; font-size: .9rem; }
.button--full { width: 100%; }

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow--light { color: #ffc48d; }

.top-strip { background: #071925; color: #cdd8df; font-size: .83rem; }
.top-strip__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.top-strip__links { display: flex; gap: 18px; }
.top-strip a:hover { color: var(--white); }

.navbar { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.96); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(219,227,232,.8); }
.navbar__inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; }
.brand__mark {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 12px; background: var(--ink); color: var(--white); font-size: .95rem;
  box-shadow: inset 0 -5px 0 rgba(234,122,35,.35);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; font-size: 1.02rem; }
.brand__text small { margin-top: 5px; color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu > a:not(.button) { position: relative; font-size: .94rem; font-weight: 800; color: #365064; }
.nav-menu > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--brand); transition: 180ms ease; }
.nav-menu > a:not(.button):hover::after, .nav-menu > a.is-active::after { right: 0; }
.nav-toggle { display: none; border: 1px solid var(--line); background: var(--white); border-radius: 10px; padding: 9px 12px; font-weight: 800; }

.hero {
  min-height: 610px;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  color: var(--white);
}
.hero__inner { padding-block: 86px; }
.hero__content { max-width: 790px; }
.hero h1 { max-width: 780px; margin-bottom: 22px; }
.hero p { max-width: 670px; color: #d9e2e7; font-size: clamp(1rem, 2vw, 1.22rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.section { padding: 92px 0; }
.section--soft { background: var(--soft); }
.section--dark { background: #081d2a; color: var(--white); }
.section--dark p { color: #bdcbd4; }
.section--stats { padding: 0; background: #0a2535; color: var(--white); }
.section--cta { padding-top: 0; }
.section-heading { max-width: 760px; text-align: center; margin-bottom: 42px; }
.section-heading p { max-width: 680px; margin-inline: auto; }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-grid > div { min-height: 116px; padding: 25px 28px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,.1); }
.stat-grid > div:last-child { border-right: 0; }
.stat-grid strong { color: #ffc18b; font-size: 1.15rem; }
.stat-grid span { margin-top: 3px; color: #c9d6dd; font-size: .88rem; }

.card-grid { display: grid; gap: 22px; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.service-card, .feature-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: 180ms ease;
}
.service-card:hover, .feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.service-card__number { display: inline-flex; margin-bottom: 34px; color: var(--brand-dark); font-weight: 900; font-size: .8rem; letter-spacing: .12em; }
.service-card h3, .feature-card h3 { margin-bottom: 12px; }
.service-card a { color: var(--brand-dark); font-weight: 900; }
.feature-card { min-height: 210px; }

.split { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 70px; align-items: center; }
.split--reverse { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); }
.split--reverse .split__media { order: 2; }
.split__media { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; min-height: 520px; height: 100%; object-fit: cover; }
.split__content p { font-size: 1.03rem; }
.steps { display: grid; gap: 20px; margin-top: 30px; }
.step { display: grid; grid-template-columns: 46px 1fr; gap: 15px; align-items: start; }
.step > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--brand); color: var(--white); font-weight: 900; }
.step h3 { margin-bottom: 4px; color: var(--white); }
.step p { margin-bottom: 0; font-size: .95rem; }
.check-list { padding: 0; margin: 28px 0 30px; list-style: none; display: grid; gap: 11px; }
.check-list li { position: relative; padding-left: 30px; font-weight: 750; color: #294255; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 900; }

.cta-panel { padding: 50px; border-radius: 26px; background: linear-gradient(120deg, #113a50, #0a2535); color: var(--white); display: flex; align-items: center; justify-content: space-between; gap: 36px; box-shadow: var(--shadow); }
.cta-panel h2 { margin-bottom: 10px; }
.cta-panel p { color: #c8d7df; max-width: 730px; margin-bottom: 0; }

.compliance-box { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: center; padding: 45px; border: 1px solid #f1d2b6; border-radius: 22px; background: #fff8f2; }
.compliance-box h2 { font-size: clamp(1.7rem, 3vw, 2.7rem); margin-bottom: 0; }
.compliance-box p { margin-bottom: 0; }

.service-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.service-detail { display: grid; grid-template-columns: 100px 1fr; gap: 22px; padding: 38px 0; border-bottom: 1px solid var(--line); }
.service-detail__index { color: var(--brand-dark); font-weight: 900; letter-spacing: .13em; }
.service-detail h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); margin-bottom: 14px; }
.service-detail ul { display: flex; flex-wrap: wrap; gap: 8px 20px; padding: 0; margin: 22px 0 0; list-style: none; }
.service-detail li { color: #405a6c; font-size: .92rem; font-weight: 800; }
.service-detail li::before { content: "— "; color: var(--brand-dark); }

.form-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 48px; align-items: start; }
.form-layout__main > p { max-width: 760px; }
.form-layout__aside { display: grid; gap: 18px; position: sticky; top: 110px; }
.panel { border-radius: var(--radius); background: var(--white); }
.panel--form { padding: 32px; border: 1px solid var(--line); box-shadow: 0 16px 45px rgba(8, 29, 42, .08); }
.info-card { padding: 25px; border-radius: var(--radius-sm); background: var(--soft); border: 1px solid var(--line); }
.info-card h3 { margin-bottom: 12px; }
.info-card ol { margin: 0; padding-left: 20px; color: var(--muted); }
.info-card li + li { margin-top: 8px; }
.info-card--warning { background: #fff8ed; border-color: #ecd3aa; }

.lead-form { display: grid; gap: 18px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-grid__wide { grid-column: 1 / -1; }
.lead-form label, .admin-login label, .admin-settings label { display: grid; gap: 7px; }
.lead-form label > span, .admin-login label > span, .admin-settings label > span { color: #334c5f; font-size: .83rem; font-weight: 850; }
.lead-form input, .lead-form select, .lead-form textarea,
.admin-login input, .admin-settings input, .admin-settings textarea {
  width: 100%;
  border: 1px solid #cfd9df;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition: 160ms ease;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus,
.admin-login input:focus, .admin-settings input:focus, .admin-settings textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(234,122,35,.12); }
.lead-form textarea, .admin-settings textarea { resize: vertical; }
.form-note { margin: -5px 0 0; font-size: .78rem; text-align: center; }
.form-status { display: none; padding: 10px 12px; border-radius: 9px; font-size: .9rem; font-weight: 800; }
.form-status.is-visible { display: block; }
.form-status.is-error { background: #fff0f0; color: var(--danger); border: 1px solid #f2c5c5; }
.form-status.is-success { background: #eefbf5; color: #0f754c; border: 1px solid #b9ead3; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 55px; align-items: start; }
.contact-card { padding: 32px; border-radius: var(--radius); background: #0b2636; color: var(--white); }
.contact-card p { color: #c2d0d8; }
.contact-line { display: grid; grid-template-columns: 95px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.11); }
.contact-line strong { color: #ffbd80; }
.contact-line a:hover { color: #ffbd80; }
.contact-image { margin-top: 26px; border-radius: 14px; overflow: hidden; }
.contact-image img { width: 100%; height: 260px; object-fit: cover; }

.prose { max-width: 820px; }
.prose h2 { margin-top: 34px; font-size: 1.8rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 1.02rem; }
.thank-you-card { max-width: 780px; text-align: center; padding: 50px; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.thank-you-card__mark { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 22px; border-radius: 50%; background: #eaf8f1; color: var(--green); font-size: 2rem; font-weight: 900; }
.thank-you-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }

.site-footer { background: #061722; color: var(--white); padding-top: 65px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .9fr 1.1fr; gap: 45px; }
.brand--footer .brand__mark { background: var(--brand); }
.brand--footer .brand__text small { color: #9eb0bc; }
.footer-copy { max-width: 360px; margin-top: 18px; color: #9fb0bb; }
.site-footer h3 { margin-bottom: 14px; font-size: 1rem; }
.site-footer a, .site-footer p { display: block; color: #9fb0bb; font-size: .91rem; }
.site-footer a + a { margin-top: 8px; }
.site-footer a:hover { color: var(--white); }
.footer-bottom { min-height: 72px; margin-top: 50px; border-top: 1px solid rgba(255,255,255,.09); display: flex; align-items: center; justify-content: space-between; gap: 18px; color: #7f929f; font-size: .82rem; }

.floating-actions { position: fixed; z-index: 60; right: 18px; bottom: 18px; display: grid; gap: 10px; }
.float-button { min-width: 94px; min-height: 45px; display: grid; place-items: center; padding: 9px 14px; border-radius: 999px; background: var(--brand); color: var(--white); font-size: .83rem; font-weight: 900; box-shadow: 0 12px 30px rgba(7, 25, 37, .22); }
.float-button--wa { background: #148f57; }

.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 22px; }
.modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(3, 15, 23, .75); backdrop-filter: blur(6px); }
.modal__dialog { position: relative; z-index: 1; width: min(100%, 680px); max-height: min(92vh, 900px); overflow: auto; padding: 34px; border-radius: 22px; background: var(--white); box-shadow: 0 28px 90px rgba(0,0,0,.34); }
.modal__dialog h2 { margin-bottom: 8px; font-size: 2rem; }
.modal__dialog > p { margin-bottom: 22px; }
.modal__close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--ink); font-size: 1.5rem; line-height: 1; }

/* Admin */
.admin-body { min-height: 100vh; background: #edf2f5; }
.admin-login-shell { min-height: 100vh; display: grid; place-items: center; padding: 30px; }
.admin-login { width: min(100%, 430px); display: grid; gap: 17px; padding: 36px; border-radius: 20px; background: var(--white); box-shadow: var(--shadow); }
.brand--admin { margin-bottom: 10px; }
.admin-login h1 { margin: 0; font-size: 2rem; }
.admin-login__back { text-align: center; color: var(--muted); font-size: .85rem; font-weight: 700; }
.admin-alert { margin: 0 auto 18px; width: min(calc(100% - 40px), 1220px); padding: 14px 16px; border-radius: 10px; font-size: .9rem; }
.admin-alert--error { background: #fff0f0; color: var(--danger); border: 1px solid #efc0c0; }
.admin-alert--success { background: #edf9f3; color: #0d734a; border: 1px solid #b8e3cf; }
.admin-alert--warning { background: #fff8e9; color: #7d5810; border: 1px solid #ebd19e; }
.admin-login .admin-alert { width: 100%; margin: 0; }
.admin-header { min-height: 72px; padding: 12px 26px; background: #071925; color: var(--white); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.admin-header__brand { display: flex; align-items: center; gap: 12px; }
.admin-header__brand .brand__mark { background: var(--brand); }
.admin-header__brand div { display: flex; flex-direction: column; line-height: 1.1; }
.admin-header__brand small { margin-top: 5px; color: #9eb0bc; }
.admin-header__actions { display: flex; align-items: center; gap: 10px; }
.admin-header__actions form { margin: 0; }
.admin-header .button--outline { color: var(--white); border-color: #436070; }
.admin-shell { width: min(calc(100% - 40px), 1220px); margin: 30px auto 70px; }
.admin-summary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.admin-summary > div { padding: 22px; border-radius: 14px; background: var(--white); border: 1px solid #dce5ea; }
.admin-summary span { display: block; color: var(--muted); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.admin-summary strong { display: block; margin-top: 6px; font-size: 1.4rem; }
.admin-settings { display: grid; gap: 22px; }
.admin-card { padding: 28px; border-radius: 18px; background: var(--white); border: 1px solid #dce5ea; box-shadow: 0 10px 30px rgba(12,38,53,.04); }
.admin-card__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.admin-card__head h2 { margin: 0; font-size: 1.65rem; }
.admin-card__head .eyebrow { margin-bottom: 7px; }
.admin-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.admin-form-grid__wide { grid-column: 1 / -1; }
.toggle-row { display: flex; flex-wrap: wrap; gap: 18px; margin: 0 0 22px; }
.toggle { display: inline-flex !important; grid-template-columns: none !important; align-items: center; gap: 9px !important; cursor: pointer; }
.toggle input { position: absolute; opacity: 0; pointer-events: none; }
.toggle > span { width: 44px; height: 24px; position: relative; border-radius: 999px; background: #cbd6dd; transition: .2s ease; }
.toggle > span::after { content: ""; width: 18px; height: 18px; position: absolute; top: 3px; left: 3px; border-radius: 50%; background: var(--white); box-shadow: 0 1px 4px rgba(0,0,0,.2); transition: .2s ease; }
.toggle input:checked + span { background: var(--green); }
.toggle input:checked + span::after { transform: translateX(20px); }
.toggle b { font-size: .9rem; }
.admin-help { margin: 15px 0 0; font-size: .85rem; }
.admin-savebar { position: sticky; bottom: 16px; z-index: 5; display: flex; justify-content: flex-end; padding: 12px; border: 1px solid #dce5ea; border-radius: 14px; background: rgba(255,255,255,.94); backdrop-filter: blur(10px); box-shadow: 0 12px 35px rgba(8,29,42,.08); }
.admin-card--leads { margin-top: 24px; }
.table-wrap { overflow-x: auto; border: 1px solid #e2e8ec; border-radius: 12px; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 1040px; font-size: .84rem; }
.admin-table th, .admin-table td { padding: 12px 13px; border-bottom: 1px solid #e6ecef; text-align: left; vertical-align: top; }
.admin-table th { background: #f4f7f9; color: #496071; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; }
.admin-table tbody tr:last-child td { border-bottom: 0; }

@media (max-width: 980px) {
  .top-strip__inner > span { display: none; }
  .top-strip__inner { justify-content: flex-end; }
  .nav-toggle { display: inline-flex; }
  .nav-menu { display: none; position: absolute; left: 20px; right: 20px; top: calc(100% + 8px); padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 15px; }
  .nav-menu.is-open { display: flex; }
  .nav-menu .button { width: 100%; }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .split, .split--reverse { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split__media { order: 0; }
  .split__media img { min-height: 420px; }
  .form-layout, .contact-grid { grid-template-columns: 1fr; }
  .form-layout__aside { position: static; grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-summary { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .top-strip__links { width: 100%; justify-content: center; flex-wrap: wrap; gap: 8px 14px; padding-block: 7px; }
  .navbar__inner { min-height: 68px; }
  .brand__mark { width: 40px; height: 40px; }
  .hero { min-height: 540px; }
  .hero__inner { padding-block: 60px; }
  .hero h1 { font-size: clamp(2.3rem, 12vw, 3.7rem); }
  .section { padding: 66px 0; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid > div { min-height: 105px; padding: 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .card-grid--3 { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .split__media img { min-height: 320px; }
  .cta-panel { padding: 34px 25px; flex-direction: column; align-items: flex-start; }
  .compliance-box { grid-template-columns: 1fr; gap: 20px; padding: 28px; }
  .service-detail { grid-template-columns: 1fr; gap: 5px; }
  .service-detail ul { display: grid; }
  .form-grid, .admin-form-grid { grid-template-columns: 1fr; }
  .form-grid__wide, .admin-form-grid__wide { grid-column: auto; }
  .panel--form { padding: 22px; }
  .form-layout__aside { grid-template-columns: 1fr; }
  .contact-card { padding: 24px; }
  .contact-line { grid-template-columns: 1fr; gap: 4px; }
  .thank-you-card { padding: 34px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { align-items: flex-start; justify-content: center; flex-direction: column; padding-block: 20px; }
  .modal { padding: 10px; }
  .modal__dialog { padding: 27px 18px 22px; border-radius: 17px; }
  .modal__dialog h2 { font-size: 1.65rem; padding-right: 32px; }
  .floating-actions { right: 10px; bottom: 10px; }
  .float-button { min-width: 80px; }
  .admin-header { align-items: flex-start; flex-direction: column; padding: 15px; }
  .admin-header__actions { width: 100%; }
  .admin-header__actions > * { flex: 1; }
  .admin-header__actions form .button, .admin-header__actions > a { width: 100%; }
  .admin-shell { width: min(calc(100% - 24px), 1220px); margin-top: 18px; }
  .admin-summary { grid-template-columns: 1fr 1fr; gap: 10px; }
  .admin-summary > div { padding: 15px; }
  .admin-card { padding: 20px 16px; }
  .admin-card__head { align-items: flex-start; flex-direction: column; }
  .admin-savebar .button { width: 100%; }
  .admin-alert { width: min(calc(100% - 24px), 1220px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
\n.hero { position: relative; isolation: isolate; background-color: #081d2a; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(4,20,30,.92) 0%, rgba(4,20,30,.78) 48%, rgba(4,20,30,.48) 100%); }
.hero__crumbs { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:16px; color:#c9d6dd; font-size:.86rem; font-weight:700; }
.hero__crumbs a { color:#ffc18b; }
.hero--compact { min-height: 430px; }
.notice { padding: 14px 16px; border-radius: 10px; margin-bottom: 20px; font-size: .92rem; font-weight: 750; }
.notice--error { color: var(--danger); background:#fff0f0; border:1px solid #efc0c0; }
.notice--success { color:#0d734a; background:#edf9f3; border:1px solid #b8e3cf; }
.notice--info { color:#365064; background:#eef5f9; border:1px solid #cadce7; }
.faq-list { display:grid; gap:12px; max-width:900px; }
.faq-item { padding:20px 22px; border:1px solid var(--line); border-radius:14px; background:#fff; }
.faq-item h3 { margin-bottom:8px; }
.faq-item p { margin-bottom:0; }
.admin-tabs { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:20px; }
.admin-tabs a { padding:9px 14px; border:1px solid #dce5ea; border-radius:999px; background:#fff; font-weight:800; font-size:.85rem; }
.admin-tabs a.is-active { background:#071925; color:#fff; border-color:#071925; }
.code-field { min-height:140px; font-family:ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size:.8rem; }
.setup-note { margin-top:16px; padding:12px 14px; border-radius:10px; background:#fff8e9; color:#7d5810; border:1px solid #ebd19e; font-size:.86rem; }
.lead-source { white-space:nowrap; }
@media (max-width:700px){ .hero--compact{min-height:390px;} }
