:root {
  --ink: #172521;
  --muted: #63716c;
  --line: #dfe7e3;
  --paper: #ffffff;
  --soft: #f3f7f5;
  --green: #167052;
  --green-dark: #0f4938;
  --green-pale: #e0f2ea;
  --lime: #cbea81;
  --orange: #d8713d;
  --orange-pale: #fff0e7;
  --blue-pale: #e9f2ff;
  --red: #a83c3c;
  --shadow: 0 14px 40px rgba(18, 50, 40, .09);
  --radius: 18px;
  --radius-small: 10px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.16; letter-spacing: -.025em; }
h1 { font-size: clamp(2.25rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); }
h3 { font-size: 1.15rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid #ccd8d3;
  border-radius: var(--radius-small);
  background: #fff;
  color: var(--ink);
  padding: .78rem .9rem;
  outline: none;
  transition: border .2s, box-shadow .2s;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 112, 82, .13);
}
label { display: block; font-size: .86rem; font-weight: 750; margin-bottom: .38rem; }
small { color: var(--muted); }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.container.narrow { max-width: 980px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.skip-link {
  position: fixed;
  top: -60px;
  left: 1rem;
  z-index: 100;
  padding: .7rem 1rem;
  background: var(--lime);
  color: var(--ink);
}
.skip-link:focus { top: .5rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(223, 231, 227, .9);
  backdrop-filter: blur(12px);
}
.header-row { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; font-size: 1.1rem; letter-spacing: -.02em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px 11px 11px 3px;
  background: var(--green);
  color: white;
  font-size: .77rem;
  font-weight: 900;
}
.main-nav { display: flex; align-items: center; gap: 1.45rem; font-size: .9rem; font-weight: 680; }
.main-nav > a:not(.button), .link-button {
  position: relative;
  color: #46544f;
  background: transparent;
  border: 0;
  padding: .7rem 0;
  cursor: pointer;
}
.main-nav > a.active:not(.button), .main-nav > a:hover:not(.button), .link-button:hover { color: var(--green); }
.main-nav > a.active:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--green);
}
.nav-form { margin: 0; }
.menu-button { display: none; border: 0; background: transparent; padding: .5rem; }
.menu-button span:not(.sr-only) { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 44px;
  padding: .68rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 9px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 7px 18px rgba(15, 73, 56, .14); }
.button-primary { background: var(--lime); color: #193021; }
.button-primary:hover { background: #d6f394; }
.button-dark { background: var(--green-dark); color: #fff; }
.button-light { background: #fff; color: var(--green-dark); }
.button-outline { background: #fff; border-color: #bfcfc8; color: var(--green-dark); }
.button-success { background: var(--green); color: #fff; }
.button-danger { background: #9f3b3b; color: #fff; }
.button-large { min-height: 52px; padding: .9rem 1.35rem; }
.button-small { min-height: 38px; padding: .5rem .85rem; font-size: .85rem; }
.button-block { width: 100%; }
.text-link { color: var(--green); font-weight: 800; border-bottom: 1px solid rgba(22, 112, 82, .3); }
.back-link { display: inline-block; color: var(--muted); font-size: .9rem; font-weight: 700; margin-bottom: 1.5rem; }

.flash { padding: .8rem 0; font-weight: 700; font-size: .93rem; }
.flash-success { background: #dff4e9; color: #145d43; }
.flash-error { background: #fde4e4; color: #8d3030; }
.flash-info { background: var(--blue-pale); color: #315980; }

.eyebrow {
  display: inline-block;
  margin-bottom: .65rem;
  color: var(--green);
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--lime); }
.hero {
  overflow: hidden;
  padding: 5.4rem 0 4.8rem;
  background:
    radial-gradient(circle at 78% 10%, rgba(203, 234, 129, .12), transparent 22rem),
    var(--green-dark);
  color: #fff;
}
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 5rem; align-items: center; }
.hero h1 { margin-bottom: 1.4rem; font-size: clamp(2.7rem, 5vw, 4.7rem); }
.hero h1 em { color: var(--lime); font-style: normal; }
.hero-copy > p { max-width: 660px; color: #d2e2dc; font-size: 1.13rem; }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 2rem; }
.hero .text-link { color: #fff; border-color: rgba(255,255,255,.35); }
.trust-line { display: flex; gap: 1.4rem; margin: 1.7rem 0 0; font-size: .82rem !important; color: #b9cec6 !important; }
.hero-panel {
  position: relative;
  padding: 2rem;
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(2, 26, 19, .28);
}
.hero-panel::before {
  content: "";
  position: absolute;
  width: 55px;
  height: 55px;
  top: -18px;
  right: -18px;
  border-radius: 50%;
  background: var(--lime);
  opacity: .85;
}
.panel-label { color: var(--green); font-size: .74rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.hero-panel h2 { font-size: 1.55rem; margin: .35rem 0 1.3rem; }
.hero-search { display: grid; gap: 1rem; }
.input-icon { position: relative; }
.input-icon span { position: absolute; left: .9rem; top: .65rem; color: var(--muted); font-size: 1.3rem; }
.input-icon input { padding-left: 2.5rem; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }

.stats-band { border-bottom: 1px solid var(--line); background: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid > div { padding: 1.45rem 2rem; border-right: 1px solid var(--line); text-align: center; }
.stats-grid > div:first-child { border-left: 1px solid var(--line); }
.stats-grid strong { display: block; color: var(--green); font-size: 1.75rem; }
.stats-grid span { color: var(--muted); font-size: .78rem; }

.section { padding: 4.5rem 0; }
.section-muted { background: var(--soft); }
.section-heading { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; margin-bottom: 2rem; }
.section-heading h2 { margin: 0; }
.section-heading .eyebrow { margin-bottom: .35rem; }
.section-heading.align-end { align-items: flex-end; }
.center-heading { max-width: 650px; margin: 0 auto 3rem; text-align: center; }
.center-heading h2 { margin-bottom: .7rem; }
.center-heading p { color: var(--muted); }
.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.complaint-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .2s, box-shadow .2s, border .2s;
}
.complaint-card:hover { transform: translateY(-3px); border-color: #bdd0c7; box-shadow: var(--shadow); }
.card-topline { display: flex; justify-content: space-between; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.category { color: var(--green); font-size: .77rem; font-weight: 850; }
.status {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: .25rem .55rem;
  border-radius: 99px;
  font-size: .67rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.status-waiting_reply { color: #a54b24; background: var(--orange-pale); }
.status-answered { color: #315b85; background: var(--blue-pale); }
.status-resolved { color: #126042; background: var(--green-pale); }
.complaint-card h3 { margin: 0 0 .8rem; font-size: 1.16rem; }
.complaint-card h3 a:hover { color: var(--green); }
.company-line { color: #4f5d58; font-size: .83rem; margin-bottom: 1rem; }
.card-meta { display: flex; flex-wrap: wrap; gap: .55rem 1rem; margin-top: auto; padding-top: .9rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .72rem; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.steps-grid article { position: relative; padding: 1.5rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step-number { position: absolute; right: 1rem; top: .8rem; color: #d7e2dd; font-size: 2.8rem; font-weight: 900; }
.step-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 1.25rem; border-radius: 14px; background: var(--green-pale); font-size: 1.35rem; }
.steps-grid h3 { margin-bottom: .5rem; }
.steps-grid p { color: var(--muted); font-size: .88rem; margin: 0; }
.rights-callout, .rights-hero { overflow: hidden; background: var(--green); color: #fff; }
.rights-callout-grid, .rights-hero-grid { display: grid; grid-template-columns: 1fr 250px; align-items: center; min-height: 340px; }
.rights-callout-grid > div:first-child { max-width: 700px; padding: 3.5rem 0; }
.rights-callout h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
.rights-callout p { color: #d4e7df; max-width: 630px; }
.rights-symbol { justify-self: center; color: var(--lime); font-family: Georgia, serif; font-size: 11rem; line-height: 1; opacity: .85; transform: rotate(-4deg); }

.page-header, .dashboard-header { padding: 3.4rem 0 2.8rem; background: var(--soft); border-bottom: 1px solid var(--line); }
.page-header h1, .dashboard-header h1 { margin-bottom: .65rem; font-size: clamp(2.25rem, 4vw, 3.6rem); }
.page-header p, .dashboard-header p { color: var(--muted); max-width: 720px; }
.title-action { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.filter-bar, .filter-panel {
  display: flex;
  align-items: flex-end;
  gap: .85rem;
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(20, 55, 44, .05);
}
.filter-panel > div:not(.filter-grow) { min-width: 155px; }
.filter-grow { flex: 1; min-width: 210px; }
.inline-filters { display: flex; align-items: center; gap: .6rem; }
.inline-filters select { width: 190px; }
.result-line { margin-bottom: 1.2rem; color: var(--muted); font-size: .88rem; }
.result-line strong { color: var(--ink); }
.empty-state { padding: 4rem 1rem; border: 1px dashed #bdcbc5; border-radius: var(--radius); text-align: center; background: #fff; }
.empty-state > span { display: grid; place-items: center; width: 60px; height: 60px; margin: 0 auto 1rem; border-radius: 50%; background: var(--green-pale); color: var(--green); font-size: 1.7rem; }
.empty-state h1, .empty-state h2 { margin-bottom: .5rem; font-size: 1.6rem; }
.empty-state p { color: var(--muted); }

.company-list { display: grid; gap: .85rem; }
.company-card { display: flex; align-items: center; gap: 1.2rem; padding: 1.2rem; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.company-card:hover { border-color: #b9ccc3; box-shadow: 0 8px 28px rgba(18, 50, 40, .07); }
.company-avatar {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: var(--green-dark);
  color: var(--lime);
  font-weight: 900;
}
.company-avatar-large { width: 90px; height: 90px; border-radius: 24px; font-size: 1.45rem; }
.company-avatar-small { width: 42px; height: 42px; border-radius: 11px; font-size: .75rem; }
.company-avatar-tiny { width: 35px; height: 35px; border-radius: 9px; font-size: .63rem; }
.company-card-body { flex: 1; }
.company-card h2 { margin: 0 0 .25rem; font-size: 1.2rem; }
.company-card h2 a:hover { color: var(--green); }
.company-card p, .company-card span { margin: 0; color: var(--muted); font-size: .82rem; }
.company-profile { padding: 2.5rem 0 2.2rem; background: var(--green-dark); color: #fff; }
.company-profile .back-link { color: #bcd0c8; }
.profile-row { display: flex; align-items: center; gap: 1.5rem; }
.profile-copy { flex: 1; }
.profile-copy h1 { font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: .5rem; }
.profile-copy p { color: #c8dad3; margin: 0; }
.public-contacts { display: flex; flex-wrap: wrap; gap: .5rem 1rem; margin-top: .8rem; }
.public-contacts a { color: var(--lime); font-size: .78rem; font-weight: 750; }
.profile-stat { min-width: 125px; padding: 1rem; border-left: 1px solid rgba(255,255,255,.2); text-align: center; }
.profile-stat strong { display: block; color: var(--lime); font-size: 2rem; }
.profile-stat span { color: #bcd0c8; font-size: .75rem; }

.form-page { padding: 3rem 0 5rem; background: var(--soft); }
.form-container { max-width: 780px; }
.form-heading { margin-bottom: 2rem; }
.form-heading h1 { margin-bottom: .6rem; font-size: clamp(2.2rem, 5vw, 3.7rem); }
.form-heading p { color: var(--muted); }
.main-form { display: grid; gap: 1.2rem; }
.main-form fieldset {
  margin: 0;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.main-form legend { padding: 0 .5rem; font-size: 1.12rem; font-weight: 850; }
.main-form legend span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: .4rem;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  font-size: .8rem;
}
.field + .field { margin-top: 1rem; }
.field small, .field-help { display: block; margin-top: .35rem; color: var(--muted); font-size: .76rem; }
.validation-box { margin-bottom: 1.2rem; padding: 1rem 1.2rem; border-left: 4px solid var(--red); border-radius: 8px; background: #fde9e9; color: #7a3030; }
.validation-box ul { margin: .5rem 0 0; padding-left: 1.2rem; }
.entity-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: .65rem; }
.entity-option { display: flex; align-items: center; gap: .75rem; margin: 0; padding: .75rem; border: 1px solid var(--line); border-radius: 11px; cursor: pointer; }
.entity-option:hover { border-color: var(--green); }
.entity-option input { width: 18px; height: 18px; accent-color: var(--green); }
.entity-option > span:last-child { display: grid; font-size: .84rem; }
.entity-option small { font-weight: 500; }
.privacy-note, .info-disclaimer { display: flex; gap: .8rem; padding: 1rem; border-radius: 11px; background: var(--blue-pale); color: #315777; font-size: .82rem; }
.privacy-note p, .info-disclaimer p { margin: 0; }

.detail-header { padding: 2.8rem 0; background: var(--soft); border-bottom: 1px solid var(--line); }
.detail-container { max-width: 920px; }
.detail-topline { display: flex; gap: 1rem; align-items: center; margin-bottom: 1rem; }
.detail-header h1 { max-width: 900px; margin-bottom: 1rem; font-size: clamp(2rem, 4.5vw, 3.5rem); }
.detail-meta { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; color: var(--muted); font-size: .82rem; }
.detail-section { background: #f8faf9; }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 315px; gap: 2rem; align-items: start; }
.detail-main { min-width: 0; }
.content-card, .sidebar-card, .support-section {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.content-label { display: block; margin-bottom: .8rem; color: var(--muted); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.complaint-text { white-space: pre-line; font-size: 1.03rem; line-height: 1.75; }
.involved-list { display: grid; gap: .6rem; margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.involved-list > strong { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.involved-list a { display: flex; align-items: center; gap: .7rem; padding: .55rem; border-radius: 9px; }
.involved-list a:hover { background: var(--soft); }
.involved-list a > span:nth-child(2) { display: grid; flex: 1; font-size: .88rem; font-weight: 750; }
.involved-list small { font-weight: 500; }
.involved-list b { color: var(--green); }
.conversation { padding: 3rem 0; }
.response-count { padding: .35rem .7rem; border-radius: 99px; background: var(--soft); color: var(--muted); font-size: .75rem; font-weight: 800; }
.waiting-card { display: flex; gap: 1rem; padding: 1.2rem; border: 1px dashed #bdcbc5; border-radius: 12px; background: #fff; }
.waiting-card > span { font-size: 1.5rem; }
.waiting-card h3 { margin: 0 0 .25rem; }
.waiting-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.response-card, .reply-card { padding: 1.4rem; border-radius: 14px; }
.response-card { margin-top: 1rem; background: var(--green-dark); color: #fff; }
.reply-card { position: relative; margin: .6rem 0 0 2.4rem; border: 1px solid var(--line); background: #fff; }
.reply-card::before { content: "↳"; position: absolute; left: -1.8rem; top: 1rem; color: var(--muted); font-size: 1.3rem; }
.response-heading { display: flex; gap: .75rem; align-items: center; margin-bottom: 1rem; }
.response-heading > div { display: grid; }
.response-heading a { color: var(--lime); }
.response-heading small { color: #b9cec6; }
.reply-card .response-heading small { color: var(--muted); }
.person-avatar { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--orange-pale); color: var(--orange); font-weight: 900; }
.response-card p, .reply-card p { margin: 0; white-space: pre-line; }
.reply-form { margin: .5rem 0 1.5rem 2.4rem; padding: 1rem; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.reply-form textarea { min-height: 100px; margin-bottom: .7rem; }
.response-area { margin-bottom: 2rem; }
.response-area h2 { font-size: 1.65rem; }
.response-area > p { color: var(--muted); }
.compact-form { gap: .7rem; }
.responding-as { padding: .7rem; background: var(--soft); border-radius: 8px; font-size: .85rem; }
.support-section { margin-bottom: 2rem; background: #f0f8f4; border-color: #c9ded5; }
.support-heading { display: flex; gap: 1rem; }
.support-icon { display: grid; place-items: center; flex: 0 0 54px; height: 54px; border-radius: 15px; background: #fff; font-size: 1.5rem; }
.support-heading h2 { margin-bottom: .4rem; font-size: 1.65rem; }
.support-heading p { color: var(--muted); font-size: .85rem; }
.support-progress { margin: 1rem 0; padding: 1rem; border-radius: 11px; background: #fff; font-size: .83rem; }
.support-progress strong { color: var(--green); font-size: 1.2rem; }
.progress-track { height: 8px; margin: .6rem 0; overflow: hidden; border-radius: 99px; background: #dce8e2; }
.progress-track span { display: block; height: 100%; border-radius: inherit; background: var(--green); }
.support-form { display: grid; gap: .8rem; }
.support-choices { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.support-choices label { display: flex; gap: .6rem; align-items: flex-start; margin: 0; padding: .75rem; border: 1px solid #c5d8cf; border-radius: 10px; background: #fff; cursor: pointer; }
.support-choices input { width: 17px; margin-top: .2rem; accent-color: var(--green); }
.support-choices span { display: grid; font-size: .78rem; }
.support-form > label span { font-weight: 500; color: var(--muted); }
.community-stories { margin-top: 1.3rem; padding-top: 1.2rem; border-top: 1px solid #c9ded5; }
.community-stories h3 { font-size: .95rem; }
.community-stories article { padding: .8rem; border-radius: 9px; background: #fff; }
.community-stories article + article { margin-top: .55rem; }
.community-stories article > div { display: flex; justify-content: space-between; gap: .7rem; font-size: .75rem; }
.community-stories article span { color: var(--muted); }
.community-stories article p { margin: .45rem 0 0; color: #46554f; font-size: .8rem; white-space: pre-line; }
.report-box { padding: 1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }
.report-box summary { cursor: pointer; font-weight: 750; }
.report-box form { display: grid; gap: .6rem; margin-top: 1rem; }
.detail-sidebar { position: sticky; top: 92px; display: grid; gap: 1rem; }
.sidebar-card h2 { margin: .7rem 0 1rem; font-size: 1.2rem; }
.status-timeline { list-style: none; margin: 0 0 1.2rem; padding: 0; }
.status-timeline li { position: relative; display: flex; gap: .7rem; padding-bottom: 1rem; color: #86918d; }
.status-timeline li:not(:last-child)::after { content: ""; position: absolute; left: 13px; top: 28px; width: 2px; height: calc(100% - 24px); background: #dce3e0; }
.status-timeline li > span { z-index: 1; display: grid; place-items: center; flex: 0 0 28px; height: 28px; border-radius: 50%; background: #e7ecea; font-size: .7rem; font-weight: 900; }
.status-timeline li.done { color: var(--ink); }
.status-timeline li.done > span { background: var(--green); color: #fff; }
.status-timeline li > div { display: grid; font-size: .82rem; }
.status-timeline small { font-size: .7rem; }
.rights-mini { background: #fffef4; }
.rights-mini > a { display: grid; gap: .3rem; margin-bottom: .8rem; padding: .8rem; border-radius: 9px; background: #fff; font-size: .8rem; }
.rights-mini > a span { color: var(--muted); }
.rights-mini > a b { color: var(--green); }
.rights-mini > p { color: var(--muted); font-size: .68rem; margin: 0; }

.rights-hero { padding: 2rem 0; }
.rights-hero-grid { min-height: 250px; }
.rights-hero h1 { margin-bottom: .5rem; }
.rights-hero p { max-width: 700px; color: #d2e3dc; font-size: 1.08rem; }
.rights-hero .rights-symbol { font-size: 8rem; }
.rights-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 2.5rem; align-items: start; }
.category-nav { position: sticky; top: 92px; display: grid; gap: .25rem; }
.category-nav h2 { font-size: 1rem; margin-bottom: .7rem; }
.category-nav a { display: flex; gap: .6rem; padding: .65rem .75rem; border-radius: 8px; color: var(--muted); font-size: .82rem; font-weight: 700; }
.category-nav a:hover, .category-nav a.selected { background: var(--green-pale); color: var(--green-dark); }
.articles-list { display: grid; gap: 1rem; margin-top: 1rem; }
.rights-article { padding: 1.7rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.rights-article h2 { margin: .6rem 0; font-size: 1.55rem; }
.article-summary { color: var(--green); font-weight: 700; }
.article-content { margin-bottom: 1.2rem; color: #46554f; }
.guidance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.guidance-grid > div { padding: 1rem; border-radius: 10px; background: var(--soft); }
.guidance-grid h3 { font-size: .85rem; margin-bottom: .45rem; }
.guidance-grid p { margin: 0; color: var(--muted); font-size: .8rem; }

.auth-page { min-height: 75vh; padding: 4rem 0; background: var(--green-dark); }
.auth-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 5rem; align-items: start; max-width: 1050px; }
.auth-layout-small { grid-template-columns: 1fr 1fr; max-width: 900px; align-items: center; }
.auth-intro { padding-top: 2rem; color: #fff; }
.auth-intro h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
.auth-intro > p { color: #c2d6ce; }
.auth-intro a { color: var(--lime); font-weight: 800; }
.auth-intro ul { display: grid; gap: .8rem; padding: 0; margin: 2rem 0; list-style: none; }
.auth-intro li { display: flex; align-items: center; gap: .7rem; color: #d5e4df; }
.auth-intro li span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--lime); color: var(--green-dark); font-size: .7rem; font-weight: 900; }
.auth-card { padding: 2rem; border-radius: 22px; background: #fff; box-shadow: 0 24px 70px rgba(1, 23, 17, .3); }
.auth-card h2 { margin-bottom: .4rem; }
.auth-card > p { color: var(--muted); font-size: .88rem; }
.account-type { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.account-type label { margin: 0; cursor: pointer; }
.account-type input { position: absolute; opacity: 0; pointer-events: none; }
.account-type label > span { display: grid; height: 100%; padding: .85rem; border: 1px solid var(--line); border-radius: 10px; font-size: .9rem; }
.account-type label > span > span { font-size: 1.3rem; }
.account-type small { font-weight: 500; }
.account-type input:checked + span { border-color: var(--green); background: var(--green-pale); box-shadow: 0 0 0 1px var(--green); }
.company-fields { display: none; }
.company-fields.visible { display: block; }
.company-fields legend { color: var(--green); font-size: .85rem; }
.form-terms { color: var(--muted); text-align: center; font-size: .7rem; }
.demo-box { display: grid; gap: .2rem; margin-top: 1.2rem; padding: .9rem; border-radius: 9px; background: var(--soft); font-size: .75rem; color: var(--muted); }
.demo-box strong { color: var(--ink); }
.auth-switch { margin: 1rem 0 0 !important; text-align: center; }
.auth-switch a { color: var(--green); font-weight: 800; }

.company-summary-grid { margin-bottom: 3rem; }
.dashboard-list { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); }
.dashboard-item { display: grid; grid-template-columns: 150px 1fr auto auto; gap: 1rem; align-items: center; padding: 1rem 1.2rem; background: #fff; border-bottom: 1px solid var(--line); }
.dashboard-item:last-child { border: 0; }
.dashboard-item:hover { background: var(--soft); }
.dashboard-item h3 { margin: 0 0 .25rem; font-size: 1rem; }
.dashboard-item p, .dashboard-item > span:nth-last-child(2) { margin: 0; color: var(--muted); font-size: .75rem; }
.dashboard-item b { color: var(--green); }
.moderation-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 2rem; align-items: start; }
.reports-list { display: grid; gap: 1rem; }
.report-card { padding: 1.2rem; border: 1px solid var(--line); border-radius: 13px; }
.report-card h3 { margin-bottom: .6rem; }
.report-card > p { font-size: .85rem; color: #4b5954; }
.report-actions { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.report-actions form { display: flex; gap: .5rem; }
.notification-list { display: grid; gap: .7rem; }
.notification-list > div { display: grid; gap: .2rem; padding: .7rem; border-radius: 8px; background: var(--soft); font-size: .75rem; }
.notification-list .status { margin-bottom: .2rem; }
.notification-list a { color: var(--green); font-weight: 700; }
.message-page { min-height: 60vh; padding: 6rem 0; background: var(--soft); }
.message-page .empty-state { max-width: 650px; margin: 0 auto; }

.site-footer { padding: 3.5rem 0 1.2rem; background: #10231d; color: #c3d2cd; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 4rem; }
.brand-light { color: #fff; margin-bottom: 1rem; }
.footer-grid p { max-width: 390px; color: #94aaa2; font-size: .82rem; }
.footer-grid h2 { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: .5rem; }
.footer-grid a:not(.brand) { font-size: .82rem; }
.footer-grid a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 2.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.1); color: #718980; font-size: .7rem; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-copy { max-width: 760px; }
  .hero-panel { max-width: 700px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-panel { display: grid; grid-template-columns: 1fr 1fr; }
  .filter-panel .filter-grow { grid-column: 1 / -1; }
  .filter-panel > div:not(.filter-grow) { min-width: 0; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; grid-row: 1; grid-template-columns: 1fr 1fr; }
  .auth-layout { gap: 2.5rem; }
  .moderation-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 15px; }
  .container { width: min(calc(100% - 1.25rem), var(--container)); }
  .header-row { min-height: 64px; }
  .menu-button { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    padding: .75rem 1rem 1rem;
    align-items: stretch;
    flex-direction: column;
    gap: .15rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav > a:not(.button), .link-button { display: block; width: 100%; text-align: left; padding: .75rem; }
  .main-nav > a.active:not(.button)::after { display: none; }
  .hero { padding: 3.5rem 0; }
  .hero h1 { font-size: 2.65rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-panel { padding: 1.25rem; }
  .hero-panel::before { display: none; }
  .trust-line { flex-wrap: wrap; gap: .4rem 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid > div { padding: 1rem .5rem; border-bottom: 1px solid var(--line); }
  .stats-grid strong { font-size: 1.4rem; }
  .section { padding: 3.2rem 0; }
  .section-heading, .title-action { align-items: flex-start; flex-direction: column; }
  .cards-grid, .steps-grid { grid-template-columns: 1fr; }
  .complaint-card { min-height: 230px; }
  .rights-callout-grid, .rights-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .rights-symbol { display: none; }
  .filter-bar, .filter-panel { display: grid; grid-template-columns: 1fr; align-items: stretch; }
  .filter-panel .filter-grow { grid-column: auto; }
  .filter-bar .button, .filter-panel .button { width: 100%; }
  .inline-filters { display: grid; width: 100%; grid-template-columns: 1fr; }
  .inline-filters select { width: 100%; }
  .company-card { align-items: flex-start; flex-wrap: wrap; }
  .company-card .button { width: 100%; }
  .company-card-body { min-width: calc(100% - 80px); }
  .profile-row { align-items: flex-start; flex-wrap: wrap; }
  .profile-copy { min-width: calc(100% - 115px); }
  .profile-stat { width: 100%; border-left: 0; border-top: 1px solid rgba(255,255,255,.2); }
  .entity-options { grid-template-columns: 1fr; }
  .main-form fieldset { padding: 1.15rem; }
  .detail-header { padding: 2rem 0; }
  .detail-sidebar { grid-template-columns: 1fr; }
  .reply-card, .reply-form { margin-left: 1.2rem; }
  .support-heading { align-items: flex-start; }
  .support-choices { grid-template-columns: 1fr; }
  .rights-layout { grid-template-columns: 1fr; }
  .category-nav { position: static; display: flex; overflow-x: auto; padding-bottom: .5rem; }
  .category-nav h2 { display: none; }
  .category-nav a { flex: 0 0 auto; }
  .guidance-grid { grid-template-columns: 1fr; }
  .auth-page { padding: 2.5rem 0; }
  .auth-layout, .auth-layout-small { grid-template-columns: 1fr; gap: 1.5rem; }
  .auth-intro { padding-top: 0; }
  .auth-intro h1 { font-size: 2.5rem; }
  .auth-card { padding: 1.25rem; }
  .account-type { grid-template-columns: 1fr; }
  .dashboard-item { grid-template-columns: 1fr auto; }
  .dashboard-item .status { grid-column: 1; }
  .dashboard-item > div { grid-column: 1 / -1; }
  .dashboard-item > span:nth-last-child(2) { grid-column: 1; }
  .dashboard-item b { grid-column: 2; grid-row: 1 / span 3; }
  .report-actions { align-items: stretch; flex-direction: column; }
  .report-actions form { display: grid; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: .3rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}