: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(2.4rem, 4.2vw, 3.8rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 750;
}

h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 750;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  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"]):not([type="range"]),
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"]):not([type="range"]):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;
}

/* Topbar Quick Search */
.topSearchBox {
  position: relative;
  flex: 1;
  max-width: 280px;
}

.topSearchBox input {
  width: 100% !important;
  min-height: 38px !important;
  height: 38px !important;
  border-radius: 100px !important;
  padding: 0 36px 0 16px !important;
  font-size: 0.84rem !important;
  background: #ffffff !important;
  border: 1px solid var(--line) !important;
  transition: all .2s ease;
}

.topSearchBox input:focus {
  border-color: #234735 !important;
  box-shadow: 0 0 0 3px rgba(35, 71, 53, 0.1) !important;
}

.topSearchIcon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #718096;
  display: flex;
  align-items: center;
}

.topSearchIcon svg {
  width: 15px;
  height: 15px;
}

/* Autocomplete Dropdown */
.searchDropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(20, 39, 32, 0.15);
  z-index: 999;
  overflow: hidden;
  max-height: 420px;
  overflow-y: auto;
}

.searchDropdown.show {
  display: block;
}

.searchDropItem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid #f1f4ed;
  text-decoration: none;
  color: var(--ink);
  transition: background .15s ease;
}

.searchDropItem:last-child {
  border-bottom: none;
}

.searchDropItem:hover,
.searchDropItem.focused {
  background: #f4f7f2;
}

.searchDropImg {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
  background: #f1f5f2;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.searchDropInfo {
  flex: 1;
  min-width: 0;
}

.searchDropTitle {
  font-weight: 750;
  font-size: .88rem;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.searchDropSub {
  font-size: .76rem;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 2px;
}

.searchDropAll {
  display: block;
  padding: 10px;
  text-align: center;
  font-size: .82rem;
  font-weight: 750;
  color: #234735;
  background: #f8faf7;
  border-top: 1px solid var(--line);
}

.searchDropAll:hover {
  background: #edf3e9;
}

.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 minmax(215px, 1fr);
  gap: 12px;
  align-items: stretch;
}

.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: 40px 42px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 390px;
}

.heroLead h1 {
  font-size: clamp(2.0rem, 3.4vw, 3.1rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 580px;
}

.heroLead p {
  color: #c3d0c5;
  max-width: 480px;
  font-size: 1.05rem;
  line-height: 1.5;
  margin-top: 14px;
}

.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: 24px;
  color: white;
  max-width: 440px;
}

.heroPhoto .overlayText h3 {
  font-size: 1.35rem;
  margin: 4px 0 6px;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.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: #ffffff !important;
  border: 1px solid #d4dfce !important;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px !important;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(20, 39, 32, 0.04);
  height: 100%;
  position: relative;
}

.heroSearchHead,
.heroStat .statHeader {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 24px !important;
  min-height: 24px !important;
  margin: 0 0 12px 0 !important;
  padding: 0 !important;
}

.heroSearchHead .eyebrow,
.heroStat .statHeader .eyebrow {
  color: #142720 !important;
  font-size: .74rem !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  margin: 0 !important;
  line-height: 1 !important;
}

.heroSearchSub {
  font-size: .80rem;
  font-weight: 600;
  color: #5f7465;
  margin: 0;
  line-height: 1;
}

.heroKeywordRow {
  width: 100%;
  margin-bottom: 12px;
}

.heroKeywordWrap {
  position: relative;
  width: 100%;
  height: 48px;
}

.heroKeywordIcon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #556b59;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 3;
}

.heroKeywordIcon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

/* Specificity booster to decisively override global input rules */
input.heroKeywordInput,
.heroKeywordWrap input.heroKeywordInput,
input:not([type="checkbox"]):not([type="radio"]):not([type="range"]).heroKeywordInput {
  width: 100% !important;
  height: 48px !important;
  min-height: 48px !important;
  max-height: 48px !important;
  border-radius: 12px !important;
  border: 1.5px solid #cbd7cb !important;
  padding: 0 18px 0 52px !important;
  font-size: .90rem !important;
  font-weight: 600 !important;
  box-sizing: border-box !important;
  background: #fbfdfa !important;
  color: var(--ink) !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02) !important;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease !important;
  font-family: inherit !important;
  line-height: 45px !important;
}

input.heroKeywordInput:hover {
  border-color: #8da490 !important;
}

input.heroKeywordInput:focus {
  outline: none !important;
  background: #ffffff !important;
  border-color: #142720 !important;
  box-shadow: 0 0 0 3px rgba(20, 39, 32, 0.10) !important;
}

input.heroKeywordInput::placeholder {
  color: #8a998c !important;
  font-weight: 500 !important;
}

.heroKeywordWrap .searchDropdown {
  min-width: 320px;
  max-width: 480px;
}

.heroFilterRow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 10px;
  align-items: center;
  width: 100%;
}

.heroFilterRow label.selectLike {
  height: 48px !important;
  min-height: 48px !important;
  max-height: 48px !important;
  background: #fbfdfa !important;
  border: 1.5px solid #cbd7cb !important;
  border-radius: 12px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  position: relative !important;
  box-sizing: border-box !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
  transition: border-color .15s ease, box-shadow .15s ease !important;
}

.heroFilterRow label.selectLike:hover {
  border-color: #8da490 !important;
}

.heroFilterRow label.selectLike:focus-within {
  border-color: #142720 !important;
  box-shadow: 0 0 0 3px rgba(20, 39, 32, 0.10) !important;
  background: #ffffff !important;
}

.heroFilterRow label.selectLike select {
  width: 100% !important;
  height: 45px !important;
  min-height: 45px !important;
  max-height: 45px !important;
  border: 0 !important;
  outline: none !important;
  background: transparent !important;
  background-image: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  padding: 0 32px 0 14px !important;
  color: var(--ink) !important;
  font-family: inherit !important;
  font-size: .86rem !important;
  font-weight: 650 !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  overflow: hidden !important;
  margin: 0 !important;
}

.heroFilterRow label.selectLike .selectArrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #556b59;
  transition: transform .18s ease;
  z-index: 2;
}

.heroFilterRow label.selectLike .selectArrow svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.2;
}

.heroFilterRow label.selectLike:focus-within .selectArrow {
  transform: translateY(-50%) rotate(180deg);
  color: #142720;
}

.heroSearchBtn {
  height: 48px !important;
  min-height: 48px !important;
  max-height: 48px !important;
  line-height: 46px !important;
  border-radius: 12px !important;
  padding: 0 22px !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  font-family: inherit !important;
  font-size: .88rem !important;
  font-weight: 750 !important;
  background: var(--ink) !important;
  color: #ffffff !important;
  border: 1.5px solid var(--ink) !important;
  box-shadow: 0 2px 8px rgba(20, 39, 32, 0.15) !important;
  cursor: pointer !important;
  transition: background .18s ease, transform .15s ease, box-shadow .18s ease !important;
}

.heroSearchBtn svg {
  width: 15px !important;
  height: 15px !important;
  stroke-width: 2.2 !important;
  transition: transform .15s ease !important;
}

.heroSearchBtn:hover {
  background: #203f2e !important;
  border-color: #203f2e !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 16px rgba(20, 39, 32, 0.22) !important;
}

.heroSearchBtn:hover svg {
  transform: translate(2px, -2px) !important;
}

.heroSearchBtn:active {
  transform: translateY(0) !important;
}

.heroStat {
  background: var(--lime) !important;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px !important;
  border: 1px solid rgba(20, 39, 32, 0.06);
  box-sizing: border-box;
  height: 100%;
  position: relative;
}

.heroStat .statBadge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  background: rgba(20, 39, 32, 0.10) !important;
  padding: 3px 8px !important;
  border-radius: 100px !important;
  font-size: .70rem !important;
  font-weight: 750 !important;
  color: #142720 !important;
  line-height: 1 !important;
}

.heroStat .statDot {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: #142720 !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
}

.heroStat .statBody {
  margin: 4px 0 6px;
}

.heroStat .statNumber {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #142720;
  font-variant-numeric: tabular-nums;
}

.heroStat .statPlus {
  font-size: 1.8rem;
  font-weight: 800;
  margin-left: 2px;
  color: #142720;
}

.heroStat .statTitle {
  font-size: .88rem;
  font-weight: 750;
  color: #142720;
  margin-top: 3px;
}

.heroStat .statDesc {
  font-size: .78rem;
  font-weight: 550;
  color: #244030;
  line-height: 1.42;
  margin: 0;
}

/* 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: 14px;
}

.sectorCard {
  min-height: 180px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 22px;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform .22s cubic-bezier(.2, 0, 0, 1), box-shadow .22s;
}

.sectorCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 24, 18, 0.35) 0%, rgba(12, 24, 18, 0.78) 60%, rgba(12, 24, 18, 0.94) 100%);
  z-index: 1;
  transition: opacity .2s;
}

.sectorCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.sectorCard:hover::before {
  background: linear-gradient(180deg, rgba(12, 24, 18, 0.2) 0%, rgba(12, 24, 18, 0.70) 55%, rgba(12, 24, 18, 0.90) 100%);
}

.sectorCard .sectorTop,
.sectorCard .sectorBottom {
  position: relative;
  z-index: 2;
}

.sectorCard .sectorTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sectorCard .symbol {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  color: #fff;
}

.sectorCard .corner {
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
  font-size: .95rem;
  transition: transform .18s;
}

.sectorCard:hover .corner {
  transform: translate(2px, -2px);
  background: var(--lime);
  color: var(--ink);
}

.sectorCard h3 {
  color: #fff;
  font-size: 1.14rem;
  line-height: 1.25;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.sectorCard .itemBadge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.22);
  border: 1px solid rgba(74, 222, 128, 0.35);
  padding: 3px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.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;
  overflow: hidden;
  background-color: #0f1c17;
  display: block;
}

.opImage .cardCoverImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .35s cubic-bezier(.2, 0, 0, 1);
}

.opCard:hover .cardCoverImg {
  transform: scale(1.06);
}

.opImage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 55%, rgba(0, 0, 0, .45));
  pointer-events: none;
  z-index: 1;
}

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

.opImage .circleArrow {
  right: 14px;
  bottom: 14px;
  z-index: 2;
}

.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.4fr 1fr 1fr;
  gap: 16px;
}

.guideCard {
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: transform .22s cubic-bezier(.2, 0, 0, 1), box-shadow .22s;
  text-decoration: none;
}

.guideCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.guideCard .guidePic {
  height: 180px;
  position: relative;
  overflow: hidden;
  background-color: #0f1c17;
  display: block;
}

.guideCard .guidePic .cardCoverImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .35s cubic-bezier(.2, 0, 0, 1);
}

.guideCard:hover .cardCoverImg {
  transform: scale(1.06);
}

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

.guideCard.featured {
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  min-height: 300px;
}

.guideCard.featured .featuredOverlay {
  position: relative;
  z-index: 2;
  padding: 30px;
  background: linear-gradient(180deg, rgba(12, 24, 18, 0.15) 0%, rgba(12, 24, 18, 0.82) 55%, rgba(12, 24, 18, 0.96) 100%);
  width: 100%;
  box-sizing: border-box;
  transition: background .2s;
}

.guideCard.featured:hover .featuredOverlay {
  background: linear-gradient(180deg, rgba(12, 24, 18, 0.1) 0%, rgba(12, 24, 18, 0.74) 50%, rgba(12, 24, 18, 0.92) 100%);
}

.guideCard h3 {
  font-size: 1.15rem;
  line-height: 1.35;
  margin: 8px 0 10px;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.guideCard.featured h3 {
  font-size: 1.65rem;
  line-height: 1.25;
  color: white;
  margin: 10px 0 12px;
  max-width: 480px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* 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: 18px;
  padding: 18px 20px;
  position: sticky;
  top: 16px;
  box-shadow: 0 8px 30px rgba(20, 39, 32, 0.05);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.applyAside::-webkit-scrollbar {
  width: 4px;
}

.applyAside::-webkit-scrollbar-track {
  background: transparent;
}

.applyAside::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 10px;
}

.applyAside h3 {
  margin: 10px 0 4px;
  font-size: 1.22rem;
  line-height: 1.3;
}

.applyAside p {
  font-size: .8rem;
  color: var(--muted);
  margin: 0 0 10px;
  line-height: 1.4;
}

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

.applyAside .button {
  width: 100%;
  margin: 12px 0 6px;
  padding: 12px 18px;
  font-size: .95rem;
}

.applyAside .subLink {
  font-size: .76rem;
  text-decoration: underline;
  margin-top: 10px;
  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;
}

.formCard .button,
.formCard button[type="submit"] {
  display: flex !important;
  width: 100% !important;
  min-height: 52px !important;
  margin-top: 24px !important;
  justify-content: center !important;
  align-items: center !important;
  font-size: 1rem !important;
  font-weight: 750 !important;
  border-radius: 14px !important;
  box-shadow: 0 4px 14px rgba(20, 39, 32, 0.16) !important;
}

.checkline {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  font-size: .88rem !important;
  line-height: 1.5 !important;
  color: #374151 !important;
  cursor: pointer !important;
  margin-top: 18px !important;
  margin-bottom: 8px !important;
}

.checkline input[type="checkbox"] {
  width: 20px !important;
  min-width: 20px !important;
  height: 20px !important;
  min-height: 20px !important;
  margin-top: 2px !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  accent-color: #234735 !important;
}

.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;
  }
}

/* Monetization & Advertising Slots */
.adSlot {
  position: relative;
  background: #f4f6f0;
  border: 1px dashed #c0cebe;
  border-radius: 16px;
  overflow: hidden;
  box-sizing: border-box;
}

.adSlot .adTag {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #718375;
}

.adSlot.sidebarAd {
  margin-top: 20px;
  padding: 24px 20px 20px;
  text-align: left;
}

.adSlot.sidebarAd strong {
  display: block;
  font-size: .98rem;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 6px;
}

.adSlot.sidebarAd p {
  font-size: .83rem;
  line-height: 1.5;
  color: #556b59;
  margin: 0 0 14px;
}

.adSlot.sidebarAd .adBtn {
  display: inline-block;
  font-size: .84rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .15s;
}

.adSlot.sidebarAd .adBtn:hover {
  opacity: .8;
}

.adSlot.horizontalAd {
  margin: 32px 0;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #eef3e8;
  border: 1px solid #d0ded0;
}

.adSlot.horizontalAd h4 {
  font-size: 1.05rem;
  margin: 0 0 4px;
  color: var(--ink);
}

.adSlot.horizontalAd p {
  font-size: .86rem;
  color: #556b59;
  margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .nav {
    gap: 16px;
  }

  .heroGrid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 390px auto auto;
  }

  .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: 992px) and (min-width: 781px) {
  .heroFilterRow {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .heroFilterRow .heroSearchBtn {
    grid-column: span 2;
    width: 100%;
  }
}

@media (max-width: 780px) {
  h1 {
    letter-spacing: -0.025em;
  }

  .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: 340px;
    padding: 28px;
  }

  .heroLead h1 {
    font-size: 2.3rem;
  }

  .heroPhoto {
    height: 320px;
  }

  .heroSearch {
    display: flex;
    flex-direction: column;
    padding: 18px;
  }

  .heroFilterRow {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .heroFilterRow .heroSearchBtn {
    grid-column: span 1;
    width: 100%;
  }

  .heroKeywordWrap .searchDropdown {
    min-width: 100%;
    max-width: 100%;
  }

  .heroStat {
    display: flex;
    flex-direction: column;
    padding: 20px;
    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: 2rem;
  }

  .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%;
  }
}

/* =========================================================
   2026 ULTRA-MODERN COMPONENTS: BRAND DETAIL & SEARCH
========================================================= */

/* Brand Detail Hero Logo Badge */
.brandHeroWrapper {
  position: relative;
  margin-bottom: 36px;
}

.brandLogoBadge {
  position: absolute;
  bottom: -24px;
  left: 32px;
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: #ffffff;
  border: 3px solid #ffffff;
  box-shadow: 0 10px 25px rgba(20, 39, 32, 0.12);
  object-fit: cover;
  z-index: 5;
}

/* Sıkça Sorulan Sorular FAQ Accordion */
.faqSection {
  margin-top: 45px;
  border-top: 1.5px solid var(--line);
  padding-top: 32px;
}

.faqSection h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.faqList {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.faqItem {
  border: 1.5px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faqItem.open {
  border-color: #234735;
  box-shadow: 0 4px 18px rgba(35, 71, 53, 0.06);
}

.faqQuestion {
  padding: 16px 22px;
  font-weight: 750;
  font-size: .95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  color: var(--ink);
  background: #ffffff;
}

.faqQuestion svg {
  width: 18px;
  height: 18px;
  color: #718096;
  transition: transform .25s ease, color .2s ease;
  flex-shrink: 0;
}

.faqItem.open .faqQuestion svg {
  transform: rotate(180deg);
  color: #234735;
}

.faqAnswer {
  padding: 0 22px 18px;
  color: #4b5563;
  font-size: .91rem;
  line-height: 1.65;
  display: none;
}

.faqItem.open .faqAnswer {
  display: block;
}

/* Dossier / Bilgi Kiti Download Lead Magnet */
.dossierCard {
  background: linear-gradient(135deg, #142720 0%, #1c3b2d 100%);
  border-radius: 14px;
  padding: 14px 16px;
  color: #ffffff;
  margin-top: 14px;
  box-shadow: 0 6px 20px rgba(20, 39, 32, 0.12);
  position: relative;
  overflow: hidden;
}

.dossierCard .dossierTag {
  background: var(--lime);
  color: var(--ink);
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 2px 8px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 6px;
}

.dossierCard h4 {
  font-size: 1.05rem;
  color: #ffffff;
  margin: 2px 0 4px;
  line-height: 1.3;
}

.dossierCard p {
  font-size: .78rem;
  color: #d1fae5;
  line-height: 1.4;
  margin-bottom: 10px;
}

/* Social Share Bar */
.shareBar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.shareLabel {
  font-size: .84rem;
  font-weight: 750;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-right: 4px;
}

.shareBtn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}

.shareBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.shareBtn.whatsapp {
  background: #25D366;
  color: #ffffff;
  border-color: #25D366;
}

.shareBtn.whatsapp:hover {
  background: #1ebc59;
}

/* Embedded Brand ROI Calculator Widget */
.brandRoiWidget {
  background: #ffffff;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  margin-top: 35px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.03);
}

.brandRoiWidget h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.brandRoiDisplay {
  background: #f8faf7;
  border: 1px solid #dce5d9;
  border-radius: 14px;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
  text-align: center;
}

.brandRoiDisplay .roiVal {
  font-size: 1.35rem;
  font-weight: 850;
  color: #234735;
  margin-top: 3px;
}

.brandRoiDisplay .roiSub {
  font-size: .74rem;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 700;
}

/* Quick City Filter Pills on /firsatlar */
.cityPillsBar {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin: 18px 0 24px;
  -webkit-overflow-scrolling: touch;
}

.cityPill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: #ffffff;
  font-size: .84rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
  transition: all .18s ease;
}

.cityPill:hover,
.cityPill.active {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

.cityPill .pillCount {
  font-size: .72rem;
  padding: 1px 6px;
  border-radius: 100px;
  background: #e9eee6;
  color: var(--ink);
}

.cityPill:hover .pillCount,
.cityPill.active .pillCount {
  background: var(--lime);
  color: var(--ink);
}

/* Sorting selector */
.sortSelectWrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sortSelectWrap select {
  min-height: 38px !important;
  height: 38px !important;
  border-radius: 10px !important;
  padding: 0 28px 0 12px !important;
  font-size: .84rem !important;
  font-weight: 600 !important;
  border: 1px solid var(--line) !important;
}
/* ==========================================================
   FRANCHISE INVESTMENT CALCULATOR (PREMIUM FINTECH AESTHETICS)
   ========================================================== */

.calcPage {
  padding-top: 36px;
  padding-bottom: 80px;
}

.calcHero {
  max-width: 820px;
  margin-bottom: 32px;
}

.calcHeroBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--ink);
  color: var(--lime);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.calcHeroBadge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  display: inline-block;
  box-shadow: 0 0 8px rgba(197, 239, 99, 0.6);
}

.calcHero h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 14px;
}

.calcHero p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #556b59;
  max-width: 720px;
}

/* Preset Bar */
.calcPresetBar {
  background: #ffffff;
  border: 1.5px solid #dbe4d9;
  border-radius: 20px;
  padding: 18px 22px;
  margin-bottom: 32px;
  box-shadow: 0 4px 18px rgba(20, 39, 32, 0.03);
}

.calcPresetHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #edf2eb;
}

.calcPresetTitle {
  font-size: .84rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.calcPresetHint {
  font-size: .82rem;
  color: #6b826f;
  font-weight: 500;
}

.calcPresetList {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.calcPreset {
  padding: 9px 18px;
  border-radius: 100px;
  border: 1.5px solid #d4ded3;
  background: #f7faf6;
  color: var(--ink);
  font-family: inherit;
  font-size: .86rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
}

.calcPreset:hover {
  border-color: #8fa892;
  background: #edf3ec;
  transform: translateY(-1px);
}

.calcPreset.active {
  background: var(--ink) !important;
  color: #ffffff !important;
  border-color: var(--ink) !important;
  box-shadow: 0 4px 12px rgba(20, 39, 32, 0.15);
}

.calcBrandPickerWrap {
  margin-left: auto;
  min-width: 260px;
}

.calcBrandSelect {
  width: 100%;
  height: 42px;
  padding: 0 32px 0 14px;
  border-radius: 100px;
  border: 1.5px solid #d4ded3;
  font-family: inherit;
  font-size: .86rem;
  font-weight: 650;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .18s ease;
  outline: none;
}

.calcBrandSelect:hover {
  border-color: #8fa892;
}

.calcBrandSelect:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(20, 39, 32, 0.08);
}

/* Calculator Grid */
.calcGrid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 28px;
  align-items: start;
}

/* Parameter Box (Left) */
.calcInputCard {
  background: #ffffff;
  border: 1.5px solid #dbe4d9;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(20, 39, 32, 0.03);
}

.calcSectionGroup {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #edf2eb;
}

.calcSectionGroup:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

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

.calcGroupTitle {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.calcGroupBadge {
  font-size: .74rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  background: #f0f5ee;
  color: #4a634e;
}

/* Parameter Rows */
.calcParamItem {
  margin-bottom: 20px;
}

.calcParamItem:last-child {
  margin-bottom: 0;
}

.calcParamHeader {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}

.calcParamLabel {
  font-weight: 750;
  font-size: .90rem;
  color: var(--ink);
}

.calcParamSub {
  display: block;
  font-weight: 400;
  font-size: .78rem;
  color: #7a8e7e;
  margin-top: 2px;
}

.calcParamValue {
  font-size: 1.05rem;
  font-weight: 850;
  color: var(--ink);
  background: #f2f7ef;
  border: 1px solid #dce8d8;
  padding: 4px 12px;
  border-radius: 8px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

/* 2-Column Row with equal heights */
.calcRow2Col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

/* Custom Range Slider */
.calcSliderWrap {
  position: relative;
  width: 100%;
  margin: 10px 0 4px;
}

input[type="range"].calcSlider {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: block !important;
  width: 100% !important;
  height: 8px !important;
  min-height: 8px !important;
  max-height: 8px !important;
  padding: 0 !important;
  margin: 12px 0 6px !important;
  border: none !important;
  border-radius: 100px !important;
  background: #d8e5d6;
  outline: none !important;
  cursor: pointer !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1) !important;
  box-sizing: border-box !important;
}

input[type="range"].calcSlider:focus {
  border: none !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1) !important;
  outline: none !important;
}

/* Chrome / Safari / Edge Thumb */
input[type="range"].calcSlider::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  background: #142720 !important;
  border: 3px solid #c5ef63 !important;
  box-shadow: 0 2px 8px rgba(20, 39, 32, 0.35) !important;
  cursor: grab !important;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease !important;
}

input[type="range"].calcSlider::-webkit-slider-thumb:hover {
  transform: scale(1.2) !important;
  background: #203f2e !important;
  box-shadow: 0 4px 14px rgba(20, 39, 32, 0.45) !important;
}

input[type="range"].calcSlider::-webkit-slider-thumb:active {
  cursor: grabbing !important;
  transform: scale(1.1) !important;
  background: #0a1813 !important;
}

/* Firefox Thumb */
input[type="range"].calcSlider::-moz-range-thumb {
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  background: #142720 !important;
  border: 3px solid #c5ef63 !important;
  box-shadow: 0 2px 8px rgba(20, 39, 32, 0.35) !important;
  cursor: grab !important;
  transition: transform .15s ease, box-shadow .15s ease !important;
}

input[type="range"].calcSlider::-moz-range-thumb:hover {
  transform: scale(1.2) !important;
}

/* Firefox Track */
input[type="range"].calcSlider::-moz-range-track {
  height: 8px !important;
  border-radius: 100px !important;
  background: #d8e5d6 !important;
  border: none !important;
}

.calcSliderLimits {
  display: flex;
  justify-content: space-between;
  font-size: .74rem;
  font-weight: 600;
  color: #7b917f;
  margin-top: 4px;
}

/* Results Card (Right) */
.calcResultsCard {
  position: sticky;
  top: 90px;
  background: #0d1e17;
  color: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 44px rgba(13, 30, 23, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.calcResultsCard::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(197, 239, 99, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

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

.calcResultsEyebrow {
  color: var(--lime);
  font-size: .74rem;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.calcLiveBadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(197, 239, 99, 0.12);
  color: var(--lime);
  font-size: .70rem;
  font-weight: 700;
}

.calcLiveBadge .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.calcResultsTitle {
  font-size: 1.55rem;
  font-weight: 850;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.015em;
}

/* Main Hero Metric Box */
.calcHeroMetricBox {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 16px;
}

.calcHeroMetricLabel {
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9cb5a5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calcHeroMetricValue {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--lime);
  letter-spacing: -0.03em;
  margin: 6px 0 8px;
  font-variant-numeric: tabular-nums;
}

.calcMarginBadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(197, 239, 99, 0.15);
  color: #d8f595;
  font-size: .80rem;
  font-weight: 700;
}

/* Metric Subgrid (ROI + Payback) */
.calcMetricsGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.calcMetricTile {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px 16px;
}

.calcMetricTile .label {
  font-size: .76rem;
  color: #9cb5a5;
  display: block;
}

.calcMetricTile .val {
  font-size: 1.45rem;
  font-weight: 850;
  color: #ffffff;
  display: block;
  margin: 4px 0 2px;
  font-variant-numeric: tabular-nums;
}

.calcMetricTile .val.lime {
  color: var(--lime);
}

.calcMetricTile .sub {
  font-size: .72rem;
  color: #768f7f;
}

/* Ledger Breakdown Table */
.calcBreakdown {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 16px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: .86rem;
}

.calcBreakdownRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #c9d8ce;
}

.calcBreakdownRow.total {
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  padding-top: 10px;
  margin-top: 2px;
  color: #ffffff;
  font-weight: 750;
}

.calcBreakdownRow strong {
  color: #ffffff;
  font-variant-numeric: tabular-nums;
}

.calcBreakdownRow .green {
  color: var(--lime);
}

.calcBreakdownRow .red {
  color: #fca5a5;
}

/* Buttons in Card */
.calcBtnCta {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 750;
  font-size: .90rem;
  border-radius: 12px;
  border: 1px solid var(--lime);
  box-shadow: 0 4px 14px rgba(197, 239, 99, 0.25);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  margin-bottom: 10px;
  text-decoration: none;
  box-sizing: border-box;
}

.calcBtnCta:hover {
  background: #d4f878;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(197, 239, 99, 0.35);
}

.calcBtnDownload {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #d1dfd6;
  font-weight: 650;
  font-size: .85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.calcBtnDownload:hover {
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
}

/* Financial Note / Disclaimer */
.calcDisclaimer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: .75rem;
  line-height: 1.45;
  color: #728779;
}

.calcDisclaimer strong {
  color: #9cb5a5;
  font-weight: 650;
}

/* Responsive */
@media (max-width: 960px) {
  .calcGrid {
    grid-template-columns: 1fr;
  }

  .calcResultsCard {
    position: static;
  }

  .calcBrandPickerWrap {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .calcRow2Col {
    grid-template-columns: 1fr;
  }

  .calcPresetBar {
    padding: 16px;
  }

  .calcInputCard {
    padding: 20px;
  }

  .calcHeroMetricValue {
    font-size: 2.0rem;
  }
}
