:root {
  --ink: #142720;
  --ink2: #1c352b;
  --paper: #f8f8f4;
  --white: #fff;
  --line: #e1e4dc;
  --muted: #66736b;
  --lime: #d6ed67;
  --soft: #edf2de;
  --stone: #e9e9e3;
  --danger: #a74735;
  --radius: 18px;
  --shadow: 0 24px 55px rgba(20, 39, 32, .09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4, p {
  margin: 0;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 6.1rem);
  line-height: 1.01;
  letter-spacing: -.075em;
  font-weight: 750;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.06em;
  font-weight: 750;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.25;
  letter-spacing: -.03em;
  font-weight: 750;
}

.wrap {
  max-width: 1440px;
  margin: auto;
  padding: 0 clamp(22px, 4.5vw, 72px);
}

.eyebrow {
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: .84rem;
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 700;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 3px;
  transition: opacity .18s;
}

.link:hover {
  opacity: .7;
}

/* =========================================================
   2026 ULTRA-MODERN FORM CONTROLS (GLOBAL)
========================================================= */
/* =========================================================
   2026 ULTRA-MODERN FORM CONTROLS (GLOBAL)
========================================================= */
input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="hidden"]),
select,
textarea {
  display: block !important;
  width: 100% !important;
  min-height: 48px;
  padding: 12px 16px;
  border: 1.5px solid #d4ded3;
  border-radius: 12px;
  background: #ffffff;
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink);
  box-sizing: border-box !important;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  outline: none;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="hidden"]):focus,
select:focus,
textarea:focus {
  border-color: #244e39 !important;
  box-shadow: 0 0 0 4px rgba(36, 78, 57, 0.12) !important;
  background: #ffffff !important;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23385244' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 42px !important;
  cursor: pointer;
}

textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* LABELS & FIELD CONTAINERS */
label {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 8px !important;
  width: 100% !important;
  font-size: 0.86rem;
  font-weight: 700;
  color: #1a3327;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  box-sizing: border-box;
}

label > span {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: #1a3327;
}

label > small,
.formHint {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 2px;
}

.panelCard label,
.formCard label {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin-bottom: 16px;
  width: 100% !important;
  box-sizing: border-box;
}

.formGrid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}
@media (max-width: 640px) {
  .formGrid2 {
    grid-template-columns: 1fr;
  }
}

.checkline {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 10px 0 !important;
  color: #314238 !important;
  font-size: .86rem !important;
  font-weight: 500 !important;
  cursor: pointer;
}

.checkline input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  margin: 0 !important;
  border-radius: 5px;
  accent-color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}

.checkCard {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 14px !important;
  background: #ffffff !important;
  padding: 16px 18px !important;
  border-radius: 14px !important;
  border: 1.5px solid #dbe3dc !important;
  margin-bottom: 12px !important;
  cursor: pointer !important;
  transition: all .2s ease;
  box-sizing: border-box;
}
.checkCard:hover {
  border-color: #244e39 !important;
  background: #fbfdfb !important;
}
.checkCard input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  min-height: 20px !important;
  margin: 0 !important;
  border-radius: 6px;
  accent-color: #142720;
  cursor: pointer;
  flex-shrink: 0;
}
.checkCard .checkContent {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.checkCard .checkTitle {
  font-weight: 700;
  color: #142720;
  font-size: 0.92rem;
}
.checkCard .checkDesc {
  font-size: 0.82rem;
  color: #66736b;
  font-weight: 400;
}

/* =========================================================
   BUTTONS
========================================================= */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  background: var(--ink);
  color: #fff;
  padding: 0 24px;
  font-size: .9rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(20, 39, 32, 0.12);
  transition: transform .18s, background .18s, box-shadow .18s;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-2px);
  background: #234735;
  box-shadow: 0 6px 18px rgba(20, 39, 32, 0.22);
  color: #fff;
}

.button.light {
  background: #fff;
  color: var(--ink);
  border-color: #d1dcd0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.button.light:hover {
  background: #f1f4ed;
  border-color: #bdcebc;
}

.button.lime {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

.button.lime:hover {
  background: #c3dc51;
}

.button.ghost {
  background: transparent;
  color: var(--ink);
  border-color: #cbd4c9;
  box-shadow: none;
}

.button.ghost:hover {
  background: #edf1e9;
}

.icon {
  width: 18px;
  height: 18px;
  flex: none;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Header */
.topbar {
  position: relative;
  z-index: 20;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.topbar .wrap {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.logo {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -.09em;
  font-weight: 800;
  white-space: nowrap;
}

.logo span {
  color: #9fb839;
}

.nav {
  display: flex;
  align-items: center;
  gap: 31px;
  margin: auto;
  font-size: .87rem;
  font-weight: 640;
}

.nav a:hover, .textlink:hover {
  opacity: .65;
}

.topactions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menuButton {
  display: none;
  background: none;
  border: 0;
  padding: 9px;
  color: var(--ink);
}

.mobileNav {
  display: none;
}

/* Footer */
.footer {
  background: var(--ink);
  color: #edf3e9;
  margin-top: 80px;
}

.footerGrid {
  padding-top: 57px;
  padding-bottom: 45px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 35px;
}

.footer h4 {
  font-size: .82rem;
  margin-bottom: 15px;
  letter-spacing: .05em;
}

.footer a {
  display: block;
  color: #c1cec2;
  font-size: .87rem;
  margin: 9px 0;
  transition: color .18s;
}

.footer a:hover {
  color: #fff;
}

.footer .logo {
  margin-bottom: 16px;
  color: #fff;
}

.footer p {
  max-width: 320px;
  color: #b4c7b8;
  font-size: .88rem;
  line-height: 1.6;
}

.footerBottom {
  border-top: 1px solid #385046;
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 24px;
  color: #93aa99;
  font-size: .75rem;
}

/* Home Bento Grid */
.homeHero {
  padding-top: 20px;
}

.heroGrid {
  display: grid;
  grid-template-columns: 1.38fr .85fr .85fr;
  grid-template-rows: 390px 166px;
  gap: 12px;
}

.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e7e9e3;
}

.tile.dark {
  background: var(--ink);
  color: white;
}

.tile.photo {
  background-size: cover;
  background-position: center;
}

.tile.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 27%, rgba(8, 24, 18, .75) 100%);
}

.heroLead {
  padding: 44px 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.heroLead h1 {
  font-size: clamp(3.5rem, 5.8vw, 6.4rem);
  max-width: 680px;
}

.heroLead p {
  color: #c3d0c5;
  max-width: 400px;
  font-size: 1rem;
}

.orb {
  position: absolute;
  right: -8%;
  top: -19%;
  width: 280px;
  aspect-ratio: 1;
  border: 1px solid #607261;
  border-radius: 50%;
  pointer-events: none;
}

.orb::before, .orb::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid #607261;
  border-radius: 50%;
}

.orb::after {
  inset: 50px;
}

.heroPhoto {
  grid-column: span 2;
}

.heroPhoto .overlayText {
  position: absolute;
  z-index: 1;
  left: 26px;
  bottom: 25px;
  color: white;
  max-width: 300px;
}

.heroPhoto .overlayText h3 {
  font-size: 1.5rem;
  margin: 8px 0 14px;
}

.circleArrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--ink);
  font-size: 1.25rem;
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  transition: transform .18s;
}

a:hover .circleArrow {
  transform: scale(1.08);
}

.heroSearch {
  grid-column: span 2;
  background: #e7eddf;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.heroSearch .left {
  flex: 1;
}

.heroSearch .fieldGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.selectLike {
  border: 1px solid #cbd4c9;
  background: #fff;
  border-radius: 12px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .84rem;
  font-weight: 600;
  min-width: 0;
}

.selectLike select {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  min-height: auto !important;
  padding: 0 !important;
  color: var(--ink);
}

.heroSearch .button {
  align-self: end;
  border-radius: 12px;
  height: 48px;
}

.heroStat {
  background: var(--lime);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.heroStat strong {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -.08em;
}

.heroStat p {
  font-size: .86rem;
  font-weight: 640;
  max-width: 170px;
}

/* Sections & Cards */
.section {
  padding-top: 84px;
}

.sectionHeader {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.sectionHeader .eyebrow {
  margin-bottom: 13px;
  color: #67796a;
}

.sectorGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.sectorCard {
  min-height: 155px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  padding: 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform .18s, border-color .18s;
}

.sectorCard:hover {
  transform: translateY(-3px);
  border-color: #a1b099;
}

.sectorCard .symbol {
  font-size: 2.1rem;
  font-weight: 300;
  line-height: 1;
}

.sectorCard .corner {
  position: absolute;
  right: 15px;
  top: 14px;
  font-size: 1.2rem;
}

.sectorCard h3 {
  font-size: 1.14rem;
}

.sectorCard span:last-child {
  color: var(--muted);
  font-size: .78rem;
}

.opGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.opCard {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  overflow: hidden;
  transition: transform .18s, box-shadow .18s;
}

.opCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.opImage {
  height: 235px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #e2e6de;
}

.opImage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 65%, rgba(0, 0, 0, .28));
}

.opImage .badge {
  position: absolute;
  z-index: 1;
  top: 15px;
  left: 15px;
}

.opImage .circleArrow {
  right: 14px;
  bottom: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 30px;
  background: #fff;
  padding: 7px 12px;
  font-size: .7rem;
  font-weight: 750;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

.badge .check {
  color: #47835f;
  font-weight: bold;
}

.badge.sponsor {
  background: var(--lime);
  color: var(--ink);
}

.opBody {
  padding: 18px 20px 19px;
}

.opBody .row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.opBody h3 {
  font-size: 1.3rem;
}

.opBody .category {
  font-size: .78rem;
  color: var(--muted);
  white-space: nowrap;
  font-weight: 600;
}

.opBody p {
  font-size: .82rem;
  color: var(--muted);
  margin: 6px 0 19px;
  line-height: 1.5;
}

.opFacts {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.opFacts b {
  display: block;
  font-size: .93rem;
}

.opFacts span {
  display: block;
  color: var(--muted);
  font-size: .7rem;
}

.manifest {
  margin-top: 85px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  min-height: 385px;
  background: #ecf0df;
}

.manifest .copy {
  padding: 50px;
}

.manifest h2 {
  max-width: 560px;
  margin: 13px 0 19px;
}

.manifest p {
  max-width: 470px;
  color: #566a5b;
}

.manifest .photoBlock {
  background-size: cover;
  background-position: center;
}

.guideGrid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 14px;
}

.guideCard {
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  transition: transform .18s, box-shadow .18s;
}

.guideCard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.guideCard .guidePic {
  height: 150px;
  background-size: cover;
  background-position: center;
  background-color: #e5e9e1;
}

.guideCard .copy {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.guideCard.featured {
  background: var(--ink);
  color: white;
  padding: 28px;
}

.guideCard h3 {
  font-size: 1.35rem;
  margin: 12px 0;
}

.guideCard.featured h3 {
  font-size: 2rem;
  max-width: 360px;
}

/* Listings & Filters */
.pageIntro {
  padding: 56px 0 35px;
}

.pageIntro h1 {
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  max-width: 800px;
  margin: 10px 0 12px;
}

.pageIntro p {
  color: var(--muted);
  max-width: 700px;
  font-size: 1.05rem;
}

.filterBar {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  gap: 9px;
  margin-bottom: 28px;
}

.listingWrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
}

.filterPanel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  height: max-content;
  position: sticky;
  top: 20px;
}

.filterPanel h3 {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.resultTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.resultTop strong {
  font-size: 1rem;
}

.empty {
  padding: 55px 20px;
  text-align: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  grid-column: 1 / -1;
}

/* Detail Page */
.breadcrumb {
  font-size: .78rem;
  color: #718178;
  padding: 27px 0 16px;
}

.detailGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
}

.detailHero {
  height: 390px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  background-color: var(--ink);
}

.detailHero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .6), transparent 60%);
}

.detailHero h1 {
  position: absolute;
  bottom: 32px;
  left: 34px;
  color: white;
  z-index: 1;
  font-size: 3.2rem;
}

.detailTabs {
  display: flex;
  gap: 27px;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  overflow: auto;
  white-space: nowrap;
  font-size: .86rem;
  font-weight: 700;
}

.detailTabs a.active, .detailTabs a:hover {
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
}

.detailInfo {
  padding: 34px 0;
}

.detailInfo h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.detailInfo p {
  max-width: 770px;
  color: #5f6d63;
  line-height: 1.7;
}

.metricGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 25px 0;
}

.metric {
  background: #eef2e7;
  border-radius: 12px;
  padding: 18px;
}

.metric span {
  display: block;
  font-size: .72rem;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.metric b {
  font-size: 1.13rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.chip {
  background: #eaf0e4;
  border-radius: 100px;
  padding: 8px 14px;
  font-size: .78rem;
  font-weight: 650;
  color: #2b4538;
}

/* Packages Card List */
.packagesSection {
  margin: 35px 0;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.packageCard {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  transition: border-color .18s;
}

.packageCard:hover {
  border-color: #8fa593;
}

.packageCard .headerRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.packageCard .headerRow h3 {
  font-size: 1.25rem;
}

.packageCard .priceTag {
  background: var(--soft);
  color: var(--ink);
  font-weight: 750;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: .88rem;
}

.packageCard .metaRow {
  display: flex;
  gap: 20px;
  font-size: .84rem;
  color: var(--muted);
  margin-top: 12px;
  border-top: 1px solid #f0f2eb;
  padding-top: 12px;
}

.metaNotice {
  padding: 16px 20px;
  border-radius: 12px;
  margin: 24px 0;
  font-size: .84rem;
  line-height: 1.5;
}

.metaNotice.verified {
  background: #eaf4e6;
  border: 1px solid #b7dbae;
  color: #24522d;
}

.metaNotice.compiled {
  background: #fbf5df;
  border: 1px solid #ebd79e;
  color: #695116;
}

.metaNotice strong {
  display: block;
  font-size: .9rem;
  margin-bottom: 4px;
}

.applyAside {
  align-self: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  position: sticky;
  top: 20px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.04);
}

.applyAside h3 {
  margin: 19px 0 8px;
  font-size: 1.5rem;
}

.applyAside p {
  font-size: .82rem;
  color: var(--muted);
}

.applyAside .pair {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
  font-size: .82rem;
  gap: 10px;
}

.applyAside .button {
  width: 100%;
  margin: 21px 0 10px;
}

.applyAside .subLink {
  font-size: .78rem;
  text-decoration: underline;
  margin-top: 20px;
  display: block;
  text-align: center;
  color: var(--muted);
}

.applyAside .subLink:hover {
  color: var(--ink);
}

/* =========================================================
   FORMS & APPLICATION PAGES
========================================================= */
.formPage {
  max-width: 1080px;
  margin: auto;
  padding: 50px 24px;
}

.formLayout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 42px;
}

.formSide {
  padding: 20px 0;
}

.formSide h1 {
  font-size: 3.6rem;
  margin: 12px 0 18px;
}

.formSide p {
  color: var(--muted);
  line-height: 1.6;
}

.infoCard {
  background: #e9efdf;
  border-radius: 15px;
  padding: 22px;
  margin-top: 25px;
}

.formCard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px;
  box-shadow: 0 6px 25px rgba(20, 39, 32, 0.04);
}

.formCard h2 {
  font-size: 1.7rem;
  margin: 7px 0 20px;
}

.formCard .fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.formCard label.full {
  grid-column: span 2;
}

.notice {
  padding: 14px 18px;
  background: #eaf4e4;
  border: 1px solid #c6debd;
  border-radius: 10px;
  font-size: .88rem;
  margin: 17px 0;
}

.notice.error {
  background: #fff0e8;
  border-color: #edc6b0;
  color: #833b27;
}

/* Compare Grid */
.compareGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 50px;
}

.compareCol {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.03);
}

.compareCol .opImage {
  height: 180px;
}

.compareCol .content {
  padding: 22px;
}

.compareRow {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: .86rem;
}

.compareRow span {
  display: block;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .08em;
  margin-bottom: 3px;
  font-weight: 700;
}

/* Article */
.article {
  max-width: 850px;
  margin: 20px auto 50px;
  padding: 0 24px;
}

.article h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  margin: 12px 0 20px;
}

.article .heroImg {
  height: 410px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  margin: 28px 0;
  background-color: var(--ink);
}

.article p {
  margin: 18px 0;
  color: #3c4e41;
  font-size: 1.1rem;
  line-height: 1.75;
}

.article h2 {
  font-size: 2rem;
  margin-top: 38px;
  margin-bottom: 12px;
}

.article ul {
  padding-left: 24px;
  color: #3c4e41;
  font-size: 1.05rem;
  line-height: 1.75;
}

.article li {
  margin-bottom: 8px;
}

/* =========================================================
   PANELS (MODERN SAAS COCKPIT)
========================================================= */
.panelShell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: calc(100vh - 76px);
}

.panelSide {
  background: var(--ink);
  color: #d8e5d7;
  padding: 28px 14px;
}

.panelSide .label {
  font-size: .65rem;
  letter-spacing: .15em;
  color: #8ea597;
  text-transform: uppercase;
  margin: 0 15px 14px;
}

.panelSide a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 550;
  margin: 3px 0;
  transition: background .18s, color .18s;
}

.panelSide a:hover, .panelSide a.active {
  background: #2b493b;
  color: #fff;
}

.panelSide .sideBottom {
  margin-top: 38px;
  border-top: 1px solid #2a4537;
  padding-top: 18px;
}

.panelMain {
  padding: 38px clamp(20px, 3.5vw, 56px) 60px;
  background: #fbfbf9;
}

.panelTitle {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.panelTitle h1 {
  font-size: 2.3rem;
  letter-spacing: -.055em;
  margin: 6px 0;
}

.panelTitle p {
  font-size: .9rem;
  color: var(--muted);
}

.statGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 22px 0;
}

.stat {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.stat span {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat strong {
  display: block;
  font-size: 2rem;
  margin: 8px 0 4px;
  letter-spacing: -.06em;
}

.stat small {
  font-size: .74rem;
  color: #4c8456;
  font-weight: 600;
}

.panelColumns {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.panelCard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 4px 18px rgba(20, 39, 32, 0.03);
}

.panelCard h3 {
  font-size: 1.15rem;
  margin-bottom: 18px;
  color: var(--ink);
}

.table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: .84rem;
}

.table th {
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #718175;
  padding: 12px 10px;
  border-bottom: 1.5px solid var(--line);
  background: #fafbf9;
}

.table td {
  padding: 16px 10px;
  border-bottom: 1px solid #edf0e9;
  vertical-align: middle;
}

.table tr:hover td {
  background: #fcfdfa;
}

.table tr:last-child td {
  border-bottom: 0;
}

.status {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 99px;
  background: #eaf4e6;
  color: #24522d;
  font-size: .72rem;
  font-weight: 750;
  white-space: nowrap;
}

.status.wait {
  background: #fbf5df;
  color: #7d5e16;
}

.status.gray {
  background: #eff1ec;
  color: #5a685e;
}

.status.danger {
  background: #fee2e2;
  color: #991b1b;
}

.miniBars {
  height: 152px;
  display: flex;
  align-items: end;
  gap: 13px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
}

.miniBars i {
  flex: 1;
  background: #82ae89;
  border-radius: 6px 6px 0 0;
  transition: opacity .18s;
}

.miniBars i:hover {
  opacity: .8;
}

.miniBars i:nth-child(even) {
  background: #d2e7b7;
}

.rowBetween {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.panelList {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.panelList .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 16px 18px;
  background: #f7f9f5;
  border: 1px solid #e7ece4;
  border-radius: 12px;
  font-size: .86rem;
}

.panelList .item span {
  color: var(--muted);
}

.settingsGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.settingsGrid .panelCard p {
  color: var(--muted);
  font-size: .86rem;
  margin-top: 8px;
  line-height: 1.55;
}

.demoMessage {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--ink);
  color: white;
  padding: 14px 22px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 999;
  font-size: .84rem;
  max-width: 360px;
  animation: slideIn .2s ease-out;
}

@keyframes slideIn {
  from { transform: translateY(12px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 1100px) {
  .nav { gap: 16px; }
  .heroGrid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 390px 180px 165px;
  }
  .heroLead { grid-column: span 1; }
  .heroPhoto { grid-column: span 1; }
  .heroSearch { grid-column: span 2; }
  .heroStat { grid-column: span 2; flex-direction: row; align-items: center; }
  .heroStat p { max-width: none; }
  .opGrid { grid-template-columns: repeat(2, 1fr); }
  .statGrid { grid-template-columns: repeat(2, 1fr); }
  .settingsGrid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  h1 { letter-spacing: -.06em; }
  .topbar .wrap { height: 66px; }
  .nav, .topactions { display: none; }
  .menuButton { display: block; margin-left: auto; }
  .mobileNav.show {
    display: flex;
    flex-direction: column;
    padding: 14px 23px 22px;
    gap: 14px;
    border-top: 1px solid var(--line);
    background: var(--paper);
  }
  .mobileNav a {
    font-size: .95rem;
    font-weight: 650;
  }
  .heroGrid { display: block; }
  .heroGrid .tile { margin-bottom: 12px; }
  .heroLead { min-height: 390px; padding: 32px; }
  .heroLead h1 { font-size: 3.5rem; }
  .heroPhoto { height: 320px; }
  .heroSearch { display: block; padding: 22px; }
  .heroSearch .fieldGrid { grid-template-columns: 1fr; }
  .heroSearch .button { width: 100%; margin-top: 12px; }
  .heroStat { display: flex; min-height: 125px; }
  .sectorGrid, .opGrid, .guideGrid { grid-template-columns: repeat(2, 1fr); }
  .section { padding-top: 62px; }
  .manifest { grid-template-columns: 1fr; }
  .manifest .copy { padding: 30px; }
  .manifest .photoBlock { height: 260px; }
  .listingWrap, .detailGrid, .formLayout, .panelColumns { grid-template-columns: 1fr; }
  .filterPanel { position: static; }
  .detailHero { height: 320px; }
  .applyAside { position: static; }
  .panelShell { grid-template-columns: 1fr; }
  .panelSide { display: flex; gap: 5px; overflow: auto; padding: 10px; }
  .panelSide .label, .panelSide .sideBottom { display: none; }
  .panelSide a { white-space: nowrap; }
  .panelMain { padding: 25px 20px; }
  .footerGrid { grid-template-columns: repeat(2, 1fr); }
  .compareGrid { grid-template-columns: 1fr; }
  .pageIntro { padding: 38px 0 28px; }
  .filterBar { flex-wrap: wrap; }
  .filterBar > * { min-width: calc(50% - 8px); }
}

@media (max-width: 520px) {
  .heroLead h1 { font-size: 2.8rem; }
  .heroPhoto { height: 260px; }
  .sectorGrid, .opGrid, .guideGrid, .statGrid, .settingsGrid, .metricGrid { grid-template-columns: 1fr; }
  .guideCard.featured { min-height: 250px; }
  .formCard .fields { grid-template-columns: 1fr; }
  .formCard label.full { grid-column: auto; }
  .sectionHeader { align-items: start; flex-direction: column; }
  .footerGrid { grid-template-columns: 1fr; }
  .footerBottom { display: block; }
  .filterBar > * { min-width: 100%; }
  .detailHero h1 { font-size: 2.3rem; }
  .panelTitle { flex-direction: column; }
  .panelTitle .button { width: 100%; }
}
