:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #5f6975;
  --line: #d9e0e6;
  --surface: #ffffff;
  --soft: #f4f7f8;
  --teal: #05776f;
  --teal-dark: #035c56;
  --coral: #c84f3d;
  --mustard: #d59b2d;
  --green: #3e7f4b;
  --shadow: 0 18px 45px rgba(23, 32, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 72px;
  padding: 0 clamp(18px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(180deg, rgba(12, 17, 23, 0.74), rgba(12, 17, 23, 0.2));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #17202a;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-mark.heawa-brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f8fbfa;
}

.brand-mark.heawa-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.heawa-theme {
  --ink: #07133f;
  --muted: #5c647d;
  --line: #d9dff8;
  --surface: #ffffff;
  --soft: #f6f8ff;
  --teal: #0a1fb8;
  --teal-dark: #06127a;
  --coral: #e31320;
  --mustard: #c79a31;
  --green: #24763a;
  --shadow: 0 18px 45px rgba(7, 19, 63, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 246, 235, 0.88) 0, rgba(246, 248, 255, 0.96) 220px, #f6f8ff 100%);
}

body.heawa-theme .site-header {
  border-bottom: 4px solid #d2a22f;
  background:
    linear-gradient(90deg, rgba(6, 18, 122, 0.98), rgba(10, 31, 184, 0.96) 58%, rgba(227, 19, 32, 0.92));
  box-shadow: 0 12px 28px rgba(7, 19, 63, 0.22);
}

body.heawa-theme .brand-mark.heawa-brand-mark {
  width: 60px;
  height: 60px;
  border: 3px solid #fff;
  background: #fff;
  box-shadow:
    0 0 0 2px #0a1fb8,
    0 10px 24px rgba(0, 0, 0, 0.18);
}

body.heawa-theme .seo-nav a {
  border-radius: 8px;
  padding: 8px 10px;
}

body.heawa-theme .seo-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

body.heawa-theme .header-owner-login {
  border: 2px solid rgba(255, 255, 255, 0.76);
  background: #fff;
  color: #06127a;
}

.top-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 650;
  font-size: 0.94rem;
}

.top-nav a:hover {
  color: #fff;
}

.visitor-counter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.visitor-counter span {
  color: rgba(255, 255, 255, 0.78);
}

.visitor-counter strong {
  min-width: 36px;
  text-align: right;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.header-owner-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.header-owner-login:hover {
  color: var(--teal-dark);
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.icon-button svg,
.hero-search svg,
.ghost-button svg,
.submit-form button svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 112px clamp(20px, 5vw, 72px) 54px;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 15, 18, 0.86) 0%, rgba(9, 15, 18, 0.58) 40%, rgba(9, 15, 18, 0.16) 100%),
    linear-gradient(0deg, rgba(9, 15, 18, 0.7), rgba(9, 15, 18, 0.06) 42%),
    url("assets/hisar-market-hero.png") center / cover;
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mustard);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 7vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 1.02rem;
  letter-spacing: 0;
}

.hero-copy {
  width: min(620px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  line-height: 1.6;
}

.hero-search {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: min(680px, 100%);
  min-height: 64px;
  padding: 8px 8px 8px 18px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  font-size: 1rem;
}

.hero-search button,
.submit-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0 20px;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.hero-search button:hover,
.submit-form button:hover {
  background: var(--teal-dark);
}

.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 750;
  cursor: pointer;
}

.chip.active {
  background: #fff;
  color: var(--ink);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.metrics div {
  min-height: 116px;
  padding: 26px clamp(18px, 4vw, 54px);
  background: #fff;
}

.metrics strong {
  display: block;
  color: var(--coral);
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 650;
}

.directory-section,
.near-me-section,
.verified-band,
.trust-section,
.featured-band,
.latest-offers-section,
.seo-links-section,
.answer-section,
.faq-section,
.plans-section,
.submit-section {
  padding: 74px clamp(18px, 5vw, 72px);
}

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

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

.select-label {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.open-now-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
}

.open-now-toggle svg {
  width: 17px;
  height: 17px;
}

.open-now-toggle.active,
.open-now-toggle[aria-pressed="true"] {
  border-color: rgba(5, 119, 111, 0.5);
  background: #e8f7f3;
  color: var(--teal-dark);
}

select,
.submit-form input,
.submit-form select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
}

.layout {
  display: grid;
  grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.category-panel {
  position: sticky;
  top: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.category-panel h3 {
  margin-bottom: 16px;
}

.category-list {
  display: grid;
  gap: 8px;
}

.category-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 0 12px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.category-button span:last-child {
  color: var(--muted);
  font-size: 0.86rem;
}

.category-button.active,
.category-button:hover {
  background: #e9f4f3;
  color: var(--teal-dark);
}

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

.results-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
  font-weight: 750;
  cursor: pointer;
}

.near-me-section {
  background: #eef8f6;
}

.near-me-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  background: var(--teal);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.near-me-button svg {
  width: 18px;
  height: 18px;
}

.near-me-status {
  margin: -12px 0 22px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.5;
}

.near-me-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.near-me-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(23, 32, 42, 0.05);
}

.near-me-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.25;
}

.near-me-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.near-distance {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  border: 1px solid #c7e4df;
  border-radius: 999px;
  background: #effaf7;
  color: var(--teal-dark);
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 900;
}

.near-me-actions {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
  margin-top: auto;
}

.near-me-actions button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.business-card,
.featured-card {
  display: flex;
  flex-direction: column;
  min-height: 286px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 32, 42, 0.05);
  overflow: hidden;
}

.business-card {
  padding: 18px;
}

.card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.business-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: #fff;
  flex: 0 0 auto;
}

.business-icon svg {
  width: 23px;
  height: 23px;
}

.save-button {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}

.save-button.saved {
  color: var(--coral);
  border-color: rgba(200, 79, 61, 0.36);
  background: #fff1ee;
}

.save-button svg {
  width: 18px;
  height: 18px;
}

.business-card h3,
.featured-card h3 {
  margin: 0 0 8px;
  line-height: 1.2;
}

.business-card-photo {
  display: block;
  overflow: hidden;
  margin: -18px -18px 16px;
}

.business-card-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #eef2f4;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

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

.card-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin: -2px 0 14px;
  border: 3px solid #043f36;
  outline: 2px solid #18b08f;
  border-radius: 999px;
  padding: 7px 11px;
  background: #dff8ed;
  color: #075f4f;
  box-shadow: 0 0 0 4px rgba(223, 248, 237, 0.95), 0 8px 18px rgba(15, 143, 117, 0.2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-verified-badge svg {
  width: 16px;
  height: 16px;
  stroke-width: 3;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 18px;
}

.tag {
  border-radius: 999px;
  padding: 5px 9px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
}

.details-button,
.call-button {
  min-height: 44px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
}

.details-button {
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.call-button {
  display: grid;
  place-items: center;
  background: #e9f4f3;
  color: var(--teal-dark);
}

.call-button svg {
  width: 18px;
  height: 18px;
}

.verified-band {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
}

.trust-section {
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #f8fbfb;
  box-shadow: 0 10px 24px rgba(23, 32, 42, 0.04);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(5, 119, 111, 0.24);
  border-radius: 8px;
  background: #eef8f5;
  color: var(--teal-dark);
}

.trust-icon svg {
  width: 20px;
  height: 20px;
}

.trust-card h3 {
  color: var(--ink);
  font-size: 1.05rem;
}

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

.trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-actions a {
  border: 1px solid rgba(5, 119, 111, 0.24);
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration: none;
}

.verified-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.verified-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  min-height: 220px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--teal);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(23, 32, 42, 0.06);
}

.verified-logo-wrap {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfa;
  overflow: hidden;
}

.verified-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  background: #fff;
}

.verified-card-body {
  min-width: 0;
}

.verified-card .card-verified-badge {
  margin: 0 0 12px;
}

.verified-card h3 {
  margin: 0 0 8px;
  line-height: 1.2;
}

.verified-card p {
  display: -webkit-box;
  margin-bottom: 16px;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.verified-card-link {
  color: var(--teal-dark);
  font-weight: 850;
}

.featured-band {
  background: #fff;
}

.latest-offers-section {
  background: #f8faf9;
}

.text-link {
  color: var(--teal-dark);
  font-weight: 850;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.featured-card {
  min-height: 248px;
}

.featured-media {
  height: 92px;
  background:
    linear-gradient(135deg, rgba(5, 119, 111, 0.88), rgba(200, 79, 61, 0.82)),
    var(--accent);
  background-position: center;
  background-size: cover;
}

.featured-body {
  padding: 18px;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 5px 9px;
  background: #fff4dc;
  color: #7a520e;
  font-size: 0.78rem;
  font-weight: 850;
}

.featured-badge svg {
  width: 14px;
  height: 14px;
}

.featured-body p {
  color: var(--muted);
  line-height: 1.5;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 32, 42, 0.05);
}

.offer-media {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  background: #e9f4f3;
  color: var(--teal-dark);
  font-size: 3rem;
  font-weight: 900;
}

.offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.offer-body h3 {
  font-size: 1.1rem;
}

.offer-body h3 a {
  color: var(--ink);
}

.offer-body p {
  color: var(--muted);
  line-height: 1.5;
}

.offer-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
}

.offer-price-row strong {
  color: var(--teal-dark);
  font-size: 1.25rem;
}

.offer-price-row span {
  color: var(--muted);
  font-weight: 800;
  text-decoration: line-through;
}

.offers-empty {
  margin-top: 0;
}

.seo-links-section {
  background: #f8faf9;
}

.seo-link-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.seo-link-groups > div,
.business-profile,
.seo-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.seo-link-list {
  display: grid;
  gap: 10px;
}

.seo-link-list a {
  color: var(--teal-dark);
  font-weight: 800;
}

.answer-section {
  background: #fff;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.answer-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #f8fbfb;
}

.answer-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.02rem;
}

.answer-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.seo-header {
  position: sticky;
  background: var(--ink);
}

.seo-nav {
  color: rgba(255, 255, 255, 0.88);
  gap: clamp(10px, 1.5vw, 18px);
  font-size: 0.88rem;
}

.seo-main {
  padding: 64px clamp(18px, 5vw, 72px) 80px;
}

.seo-hero,
.business-profile {
  margin-bottom: 26px;
}

.seo-hero {
  max-width: 820px;
}

.seo-hero h1,
.business-profile h1 {
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}

.business-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.business-logo-strip {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin-bottom: 18px;
  border: 1px solid rgba(5, 119, 111, 0.22);
  border-radius: 8px;
  padding: 12px;
  background: #f3fbf8;
}

.business-logo-strip strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.business-logo-strip .eyebrow {
  margin-bottom: 3px;
}

.business-logo {
  flex: 0 0 auto;
  width: clamp(72px, 10vw, 112px);
  height: clamp(72px, 10vw, 112px);
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
  padding: 8px;
}

.business-logo-top {
  width: clamp(82px, 12vw, 128px);
  height: clamp(82px, 12vw, 128px);
  border: 2px solid #0f8f75;
  box-shadow: 0 8px 22px rgba(15, 143, 117, 0.16);
}

.seo-hero p,
.business-profile p,
.seo-section dd {
  color: var(--muted);
  line-height: 1.6;
}

.heawa-main {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 246, 235, 0.94), rgba(246, 248, 255, 0.64) 260px, rgba(242, 255, 233, 0.38) 100%);
}

.heawa-main::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 64px;
  left: 0;
  right: 0;
  height: 220px;
  background:
    linear-gradient(90deg, rgba(10, 31, 184, 0.12), rgba(227, 19, 32, 0.08), rgba(199, 154, 49, 0.12)),
    linear-gradient(180deg, rgba(255, 161, 82, 0.16), rgba(255, 255, 255, 0.2) 50%, rgba(119, 255, 31, 0.12));
}

.heawa-main .seo-hero {
  max-width: 1040px;
  border-left: 8px solid #0a1fb8;
  border-radius: 8px;
  padding: clamp(24px, 5vw, 44px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 235, 0.9) 48%, rgba(242, 255, 233, 0.86)),
    linear-gradient(90deg, rgba(10, 31, 184, 0.08), rgba(227, 19, 32, 0.05));
  box-shadow: 0 16px 38px rgba(7, 19, 63, 0.1);
}

.heawa-main .seo-hero::after {
  content: "";
  display: block;
  width: min(360px, 100%);
  height: 8px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff9f42, #ffffff 48%, #69c635);
  box-shadow: 0 0 0 1px rgba(10, 31, 184, 0.12);
}

.heawa-main .seo-hero .eyebrow,
.heawa-main .section-heading .eyebrow {
  color: #e31320;
}

.heawa-main .seo-hero h1 {
  color: #06127a;
}

.heawa-main .seo-hero p:not(.eyebrow) {
  color: #25305f;
  font-weight: 760;
}

.heawa-main .seo-hero .muted {
  display: inline-flex;
  width: fit-content;
  border: 2px solid rgba(199, 154, 49, 0.72);
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff7df;
  color: #7b5711;
  font-weight: 950;
}

.heawa-top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.heawa-top-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 2px solid rgba(10, 31, 184, 0.24);
  border-radius: 8px;
  padding: 0 16px;
  background: #fff;
  color: #06127a;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 10px 22px rgba(7, 19, 63, 0.08);
}

.heawa-top-action.primary {
  border-color: #06127a;
  background: linear-gradient(135deg, #0a1fb8, #06127a);
  color: #fff;
}

.heawa-top-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(7, 19, 63, 0.12);
}

.heawa-main .seo-section {
  border-color: rgba(10, 31, 184, 0.18);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(7, 19, 63, 0.06);
}

.heawa-main .seo-section h2,
.heawa-main .membership-step-heading h3,
.heawa-main .rwa-help-panel h3 {
  color: #06127a;
}

.heawa-main .text-link,
.heawa-main .seo-link-list a {
  color: #0a1fb8;
}

.seo-results {
  margin-top: 26px;
}

.seo-card h3 a {
  color: var(--ink);
}

.profile-meta {
  margin-top: 18px;
}

.verified-row {
  margin-top: 16px;
}

.verified-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  border: 3px solid #043f36;
  outline: 2px solid #18b08f;
  padding: 9px 14px;
  background: #dff8ed;
  color: #075f4f;
  box-shadow: 0 0 0 4px rgba(223, 248, 237, 0.95), 0 10px 24px rgba(15, 143, 117, 0.22);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.verified-badge::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0f8f75;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1;
}

.profile-actions {
  margin-top: 18px;
}

.seo-section {
  margin-top: 22px;
}

.content-section p {
  color: var(--muted);
  line-height: 1.7;
}

.seo-tip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.seo-tip-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f8faf9;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 700;
}

.internal-link-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.seo-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.seo-pill-list a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  color: var(--teal-dark);
  font-weight: 850;
}

.business-profile.has-photo {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.business-cover {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  background: #eef2f4;
}

.whatsapp-action {
  background: #1f8f5f !important;
}

.share-action {
  background: var(--ink) !important;
}

.claim-action {
  background: var(--gold) !important;
  color: #17202a !important;
}

.report-action {
  border: 1px solid rgba(200, 79, 61, 0.35) !important;
  background: #fff3ef !important;
  color: #9a3325 !important;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  background: #eef2f4;
}

.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 0;
}

.details-list div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.details-list dt {
  color: var(--muted);
  font-weight: 850;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.details-list dd {
  margin: 6px 0 0;
}

.hours-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #f8fbfb;
}

.hours-list span {
  color: var(--muted);
  font-weight: 850;
}

.hours-list strong {
  color: var(--ink);
  text-align: right;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 32, 42, 0.05);
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eef2f4;
}

.product-body {
  padding: 16px;
}

.product-body h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.12rem;
}

.product-body p {
  color: var(--muted);
  line-height: 1.5;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-top: 12px;
}

.price-row strong {
  color: var(--teal-dark);
  font-size: 1.25rem;
}

.price-row span {
  color: var(--muted);
  font-weight: 800;
  text-decoration: line-through;
}

.product-share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.product-share-row button,
.product-share-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(5, 119, 111, 0.28);
  border-radius: 8px;
  padding: 0 11px;
  background: #eef8f5;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 850;
  cursor: pointer;
  text-decoration: none;
}

.product-share-row a {
  border-color: rgba(37, 211, 102, 0.55);
  background: #effbf4;
  color: #166b34;
}

.product-preview-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: start;
}

.product-preview-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4f7f7;
  color: var(--muted);
  font-weight: 850;
}

.product-preview-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.product-preview-body h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.product-preview-body p {
  color: var(--muted);
  line-height: 1.65;
}

.share-options-backdrop {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(12, 17, 23, 0.46);
}

.share-options-panel {
  width: min(430px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(12, 17, 23, 0.28);
}

.share-options-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.share-options-top strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.share-options-top button {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 1.25rem;
  cursor: pointer;
}

.share-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.share-options-grid a,
.share-options-grid button,
.share-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(5, 119, 111, 0.26);
  border-radius: 8px;
  padding: 0 12px;
  background: #eef8f5;
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.share-more-button {
  width: 100%;
  margin-top: 8px;
  background: var(--teal);
  color: #fff;
}

.share-options-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.out-of-stock-pill {
  border: 1px solid #d9a3a3;
  background: #fff4f4;
  color: #9f2f2f;
}

.cod-stock-note {
  color: #9f2f2f;
  font-size: 0.9rem;
  font-weight: 850;
}

.cod-order-form {
  display: grid;
  gap: 9px;
  margin-top: 14px;
  border: 1px solid rgba(5, 119, 111, 0.2);
  border-radius: 8px;
  padding: 12px;
  background: #f8fbfa;
}

.cod-order-form strong {
  color: var(--teal-dark);
  font-size: 0.92rem;
}

.cod-minimum-note {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
}

.cod-live-total {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 10px;
  align-items: center;
  border: 1px solid rgba(5, 119, 111, 0.18);
  border-radius: 8px;
  padding: 10px;
  background: #fff;
}

.cod-live-total span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.cod-live-total strong {
  color: var(--teal-dark);
  font-size: 1rem;
}

.cod-live-total small {
  grid-column: 1 / -1;
  color: var(--teal-dark);
  font-weight: 850;
}

.cod-live-total small.below-minimum {
  color: var(--coral);
}

.cod-order-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.cod-order-form input,
.cod-order-form select,
.cod-order-form textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  background: #fff;
  color: var(--ink);
}

.cod-order-form textarea {
  resize: vertical;
}

.cod-order-form button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.cod-status-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 18px;
}

.cod-status-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.cod-status-form input,
.cod-status-form button {
  min-height: 44px;
  border-radius: 8px;
  font: inherit;
}

.cod-status-form input {
  border: 1px solid var(--line);
  padding: 0 12px;
}

.cod-status-form button,
.cod-status-actions a {
  border: 0;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
}

.cod-status-form button {
  padding: 0 18px;
}

.cod-status-result {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.cod-status-topline,
.cod-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.cod-status-result h2 {
  margin: 16px 0 6px;
}

.cod-status-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.cod-status-details div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #f9fbfb;
}

.cod-status-details .wide {
  grid-column: 1 / -1;
}

.cod-status-details dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.cod-status-details dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 850;
}

.cod-status-note {
  color: var(--teal-dark);
  font-weight: 850;
}

.cod-cancellation-form {
  display: grid;
  gap: 10px;
  margin: 16px 0;
  border: 1px solid rgba(200, 79, 61, 0.25);
  border-radius: 8px;
  padding: 14px;
  background: #fff9f7;
}

.cod-cancellation-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.cod-cancellation-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  resize: vertical;
}

.cod-cancellation-form button {
  width: fit-content;
  min-height: 40px;
  border: 1px solid rgba(200, 79, 61, 0.42);
  border-radius: 8px;
  padding: 0 14px;
  background: #fff1ee;
  color: var(--coral);
  font-weight: 900;
  cursor: pointer;
}

.cod-cancellation-box,
.cod-cancellation-alert {
  border: 1px solid rgba(200, 79, 61, 0.28);
  border-radius: 8px;
  padding: 12px;
  background: #fff9f7;
  color: #9f2f2f;
}

.cod-cancellation-box p,
.cod-cancellation-alert p {
  margin: 6px 0 0;
}

.cod-filter-panel {
  display: grid;
  gap: 12px;
  margin: 16px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f9fbfb;
}

.cod-filter-counts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cod-filter-counts button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 11px;
  background: #fff;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.cod-filter-counts button.active {
  border-color: var(--teal);
  background: #e9f4f3;
  color: var(--teal-dark);
}

.cod-filter-counts span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  min-height: 22px;
  margin-left: 5px;
  border-radius: 999px;
  background: rgba(5, 119, 111, 0.12);
  color: var(--teal-dark);
  font-size: 0.78rem;
}

.cod-filter-panel label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.cod-filter-panel input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
}

.cod-status-actions {
  justify-content: flex-start;
}

.cod-status-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border-radius: 8px;
  padding: 0 14px;
}

.cod-status-actions a:last-child {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.review-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.review-header h2 {
  margin: 0 0 6px;
}

.review-header p {
  color: var(--muted);
}

.review-success,
.review-error {
  border-radius: 999px;
  padding: 7px 11px;
  font-weight: 850;
}

.review-success {
  background: #e9f4f3;
  color: var(--teal-dark);
}

.review-error {
  width: fit-content;
  margin-bottom: 10px;
  background: #fff1ee;
  color: var(--coral);
}

.review-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #f9fbfb;
}

.review-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.review-form-grid .wide {
  grid-column: 1 / -1;
}

.review-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 11px;
  background: #fff;
  color: var(--ink);
}

.review-form textarea {
  resize: vertical;
}

.membership-progress {
  display: grid;
  gap: 9px;
  border: 1px solid rgba(5, 119, 111, 0.22);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}

.membership-progress > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.membership-progress span {
  color: var(--muted);
}

.membership-progress-track {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: #dde9e7;
}

.membership-progress-track span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
  transition: width 0.2s ease;
}

.membership-step {
  display: grid;
  gap: 14px;
}

.membership-step[hidden] {
  display: none;
}

.membership-step-heading {
  display: grid;
  gap: 4px;
}

.membership-step-heading h3,
.membership-step-heading p {
  margin: 0;
}

.membership-step-heading h3 {
  color: var(--ink);
  font-size: 1.05rem;
}

.membership-step-heading p {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
}

.membership-step-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.membership-review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.membership-review-list div {
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px;
  background: #fff;
}

.membership-review-list .wide {
  grid-column: 1 / -1;
}

.membership-review-list dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.membership-review-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
  overflow-wrap: anywhere;
  line-height: 1.4;
}

.review-photo-preview {
  width: 118px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.review-photo-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-photo-preview + span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.review-signature-preview {
  width: min(260px, 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.review-signature-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.membership-download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(5, 119, 111, 0.24);
  border-radius: 8px;
  padding: 14px;
  background: #eef8f5;
}

.membership-download-card p {
  margin: 0;
  color: var(--teal-dark);
  font-weight: 850;
  line-height: 1.45;
}

.membership-download-card button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  background: var(--teal);
  color: #fff;
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
}

.membership-confirmation-card {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(5, 119, 111, 0.28);
  border-radius: 8px;
  padding: 18px;
  background: #eef8f5;
}

.membership-confirmation-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.35rem;
}

.confirmation-status-row,
.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.confirmation-check,
.confirmation-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 12px;
  font-weight: 900;
}

.confirmation-check {
  background: var(--teal);
  color: #fff;
}

.confirmation-status {
  border: 1px solid rgba(213, 155, 45, 0.48);
  background: #fff4dc;
  color: #7a520e;
}

.confirmation-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.confirmation-summary div,
.confirmation-next-steps {
  border: 1px solid rgba(5, 119, 111, 0.16);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}

.confirmation-summary dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.confirmation-summary dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.confirmation-next-steps {
  color: var(--ink);
  line-height: 1.5;
}

.confirmation-next-steps strong {
  display: block;
  margin-bottom: 8px;
}

.confirmation-next-steps ol {
  margin: 0;
  padding-left: 20px;
}

.confirmation-actions button,
.confirmation-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 16px;
  font-weight: 850;
  text-decoration: none;
}

.confirmation-actions button {
  border: 0;
  background: var(--teal);
  color: #fff;
  cursor: pointer;
}

.confirmation-actions a {
  border: 1px solid rgba(5, 119, 111, 0.24);
  background: #fff;
  color: var(--teal-dark);
}

.rwa-help-section {
  display: grid;
  gap: 16px;
}

.rwa-help-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.rwa-help-buttons button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  background: #fff;
  color: var(--teal-dark);
  font-weight: 900;
  cursor: pointer;
  text-align: center;
}

.rwa-help-buttons button.active,
.rwa-help-buttons button[aria-selected="true"] {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

.rwa-help-panels {
  display: grid;
  gap: 12px;
}

.rwa-help-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: start;
  border: 1px solid rgba(5, 119, 111, 0.18);
  border-radius: 8px;
  padding: 16px;
  background: #fbfcfc;
}

.rwa-help-panel[hidden] {
  display: none;
}

.rwa-help-panel h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.15rem;
}

.rwa-help-panel p,
.rwa-help-panel li {
  color: var(--muted);
  font-weight: 780;
  line-height: 1.55;
}

.rwa-help-panel ul,
.rwa-help-panel ol {
  margin: 12px 0 0;
  padding-left: 20px;
}

.rwa-help-screenshot {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(18, 46, 52, 0.08);
}

.rwa-help-screenshot strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.screen-bar {
  display: flex;
  gap: 5px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 9px;
}

.screen-bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d59b2d;
}

.screen-bar span:nth-child(2) {
  background: var(--teal);
}

.screen-bar span:nth-child(3) {
  background: #e66d4f;
}

.screen-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #e4ecea;
  border-radius: 8px;
  padding: 9px 10px;
  background: #f8fbfa;
}

.screen-row span,
.rwa-help-screenshot label {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
}

.screen-row b {
  color: var(--ink);
  font-size: 0.86rem;
  text-align: right;
}

.screen-pill {
  border: 1px solid rgba(5, 119, 111, 0.28);
  border-radius: 999px;
  padding: 4px 8px;
  background: #eef8f5;
  color: var(--teal-dark) !important;
}

.screen-pill.gold {
  border-color: rgba(213, 155, 45, 0.36);
  background: #fff8e8;
  color: #7a520e !important;
}

.form-shot label {
  display: grid;
  gap: 5px;
  border: 1px solid #e4ecea;
  border-radius: 8px;
  padding: 9px 10px;
  background: #f8fbfa;
}

.form-shot label span {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
}

.form-shot button {
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

.screen-docs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.screen-docs span {
  border: 1px solid rgba(213, 155, 45, 0.32);
  border-radius: 8px;
  padding: 9px 7px;
  background: #fff8e8;
  color: #7a520e;
  font-size: 0.75rem;
  font-weight: 900;
  text-align: center;
}

.rwa-members-section .review-header {
  align-items: flex-start;
}

.rwa-members-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.rwa-members-section button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  background: #fff;
  color: var(--teal-dark);
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
}

.rwa-members-section button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.rwa-members-list {
  margin-top: 16px;
}

.rwa-privacy-note {
  margin: 14px 0 0;
  border: 1px solid rgba(5, 119, 111, 0.22);
  border-radius: 8px;
  padding: 11px 12px;
  background: #eef8f5;
  color: var(--teal-dark);
  font-weight: 850;
  line-height: 1.45;
}

.rwa-member-name-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rwa-member-name-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.rwa-status-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin-top: 14px;
}

.rwa-status-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.rwa-status-form input {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 11px;
  background: #fff;
  color: var(--ink);
  text-transform: uppercase;
}

.rwa-status-form button {
  min-height: 44px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  padding: 0 18px;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.rwa-status-result {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.rwa-status-result div {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(5, 119, 111, 0.2);
  border-radius: 8px;
  padding: 12px;
  background: #fbfcfc;
}

.rwa-status-result strong {
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.rwa-status-result span {
  color: var(--ink);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.rwa-status-note {
  margin: 14px 0 0;
  border: 1px solid rgba(213, 155, 45, 0.36);
  border-radius: 8px;
  padding: 11px 12px;
  background: #fff8e8;
  color: #7a520e;
  font-weight: 850;
  line-height: 1.45;
}

.heawa-main .rwa-help-buttons button {
  border-color: rgba(10, 31, 184, 0.2);
  background: #fff;
  color: #06127a;
}

.heawa-main .rwa-help-buttons button.active,
.heawa-main .rwa-help-buttons button[aria-selected="true"],
.heawa-main .rwa-status-form button,
.heawa-main .review-form button,
.heawa-main .confirmation-actions button,
.heawa-main .membership-download-card button {
  background: linear-gradient(135deg, #0a1fb8, #06127a);
  color: #fff;
}

.heawa-main .rwa-help-panel,
.heawa-main .rwa-status-result div,
.heawa-main .payment-instruction-grid div,
.heawa-main .step-payment-note,
.heawa-main .membership-progress,
.heawa-main .passport-photo-field,
.heawa-main .terms-check,
.heawa-main .membership-confirmation-card {
  border-color: rgba(10, 31, 184, 0.2);
  background: #fbfcff;
}

.heawa-main .rwa-help-screenshot,
.heawa-main .membership-review-list div,
.heawa-main .confirmation-summary div,
.heawa-main .confirmation-next-steps,
.heawa-main .payment-qr-card,
.heawa-main .payment-bank-details {
  border-color: rgba(199, 154, 49, 0.28);
}

.heawa-main .screen-bar span {
  background: #e31320;
}

.heawa-main .screen-bar span:nth-child(2) {
  background: #0a1fb8;
}

.heawa-main .screen-bar span:nth-child(3) {
  background: #c79a31;
}

.heawa-main .screen-pill,
.heawa-main .rwa-privacy-note,
.heawa-main .step-payment-note,
.heawa-main .membership-download-card {
  border-color: rgba(10, 31, 184, 0.22);
  background: #eef1ff;
  color: #06127a !important;
}

.heawa-main .screen-pill.gold,
.heawa-main .rwa-status-note,
.heawa-main .payment-note,
.heawa-main .confirmation-status {
  border-color: rgba(199, 154, 49, 0.44);
  background: #fff7df;
  color: #7b5711 !important;
}

.heawa-main .rwa-member-name-list li {
  border-left: 4px solid #0a1fb8;
}

.heawa-main .rwa-status-result strong,
.heawa-main .payment-instruction-grid strong,
.heawa-main .step-payment-note strong,
.heawa-main .payment-qr-card,
.heawa-main .payment-bank-details strong,
.heawa-main .membership-progress > div:first-child {
  color: #06127a;
}

.heawa-main .membership-progress-track {
  background: #e2e7ff;
}

.heawa-main .membership-progress-track span {
  background: linear-gradient(90deg, #0a1fb8, #e31320, #c79a31);
}

.heawa-main .review-form {
  border-color: rgba(10, 31, 184, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 255, 0.94));
  box-shadow: 0 14px 34px rgba(7, 19, 63, 0.08);
}

.heawa-main .review-form input,
.heawa-main .review-form select,
.heawa-main .review-form textarea,
.heawa-main .rwa-status-form input {
  border-color: rgba(10, 31, 184, 0.22);
}

.heawa-main .review-form input:focus,
.heawa-main .review-form select:focus,
.heawa-main .review-form textarea:focus,
.heawa-main .rwa-status-form input:focus {
  border-color: #0a1fb8;
  box-shadow: 0 0 0 3px rgba(10, 31, 184, 0.12);
  outline: 0;
}

.heawa-main .review-form .secondary-button,
.heawa-main .photo-adjust-controls button,
.heawa-main .rwa-members-section button,
.heawa-main .confirmation-actions a {
  border: 1px solid rgba(10, 31, 184, 0.24);
  background: #fff;
  color: #06127a;
}

.heawa-main .member-update-section .secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(10, 31, 184, 0.24);
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
  color: #06127a;
  font-weight: 900;
}

.heawa-main .field-help {
  border-color: rgba(10, 31, 184, 0.24);
  background: #eef1ff;
  color: #06127a;
}

.heawa-main .review-success,
.heawa-main .confirmation-check {
  background: #1f7a35;
  color: #fff;
}

.heawa-main .review-error {
  background: #fff0f1;
  color: #b40e19;
}

.payment-instruction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.payment-instruction-grid div,
.step-payment-note {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(5, 119, 111, 0.18);
  border-radius: 8px;
  padding: 12px;
  background: #fbfcfc;
}

.payment-instruction-grid strong,
.step-payment-note strong {
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.payment-instruction-grid span,
.step-payment-note span {
  color: var(--ink);
  font-weight: 820;
  line-height: 1.45;
}

.payment-note {
  margin: 14px 0 0;
  border: 1px solid rgba(213, 155, 45, 0.36);
  border-radius: 8px;
  padding: 11px 12px;
  background: #fff8e8;
  color: #7a520e;
  font-weight: 850;
  line-height: 1.45;
}

.payment-details-panel {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.payment-qr-card,
.payment-bank-details {
  border: 1px solid rgba(5, 119, 111, 0.18);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}

.payment-qr-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-weight: 900;
}

.payment-qr-card img {
  width: 148px;
  height: 148px;
  object-fit: contain;
}

.payment-bank-details strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-weight: 900;
}

.payment-bank-details p {
  margin: 0;
  color: var(--ink);
  font-weight: 820;
  line-height: 1.55;
}

.step-payment-note {
  margin-bottom: 14px;
  background: #eef8f5;
}

.field-help {
  display: none;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(5, 119, 111, 0.22);
  border-radius: 8px;
  padding: 7px 9px;
  background: #eef8f5;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
}

.review-form label:focus-within .field-help,
.signature-field:focus-within .field-help {
  display: block;
}

.review-form button {
  justify-self: start;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  background: var(--teal);
  color: #fff;
  font-weight: 850;
  cursor: pointer;
}

.signature-field {
  display: grid;
  gap: 10px;
}

.signature-pad-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  touch-action: none;
}

.signature-pad-wrap canvas {
  display: block;
  width: 100%;
  height: 190px;
  cursor: crosshair;
}

.membership-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.review-form .secondary-button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--teal-dark);
}

.passport-photo-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 148px;
  align-items: start;
  gap: 14px;
  border: 1px solid rgba(5, 119, 111, 0.24);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}

.passport-photo-field label {
  order: 1;
}

.passport-photo-editor {
  order: 2;
  display: grid;
  gap: 10px;
  justify-items: end;
}

.passport-photo-preview {
  display: grid;
  place-items: center;
  overflow: hidden;
  justify-self: end;
  width: 138px;
  aspect-ratio: 3 / 4;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #f8fbfa;
  color: var(--muted);
  font-weight: 900;
}

.passport-photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-adjust-controls {
  display: grid;
  gap: 8px;
  width: min(260px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #fbfcfc;
}

.photo-adjust-controls label {
  display: grid;
  gap: 6px;
  color: var(--muted) !important;
  font-size: 0.78rem;
  font-weight: 900;
}

.photo-adjust-controls select,
.photo-adjust-controls input[type="range"] {
  width: 100%;
}

.photo-adjust-controls select {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 10px;
  background: #fff;
  color: var(--ink);
  font-weight: 850;
}

.photo-adjust-controls button {
  justify-self: stretch;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--teal-dark);
  font-weight: 850;
  cursor: pointer;
}

.terms-check {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  border: 1px solid rgba(5, 119, 111, 0.24);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  color: var(--ink) !important;
  line-height: 1.5;
}

.terms-check input {
  width: auto;
  min-height: auto;
  margin-top: 3px;
}

.terms-check .field-help {
  grid-column: 1 / -1;
}

.review-login-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.review-login-card p,
.review-note {
  color: var(--muted);
  font-weight: 800;
}

.review-login-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  padding: 0 14px;
  background: var(--ink);
  color: #fff;
  font-weight: 850;
  white-space: nowrap;
}

.review-honeypot {
  position: absolute;
  left: -9999px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.review-card-top strong {
  color: var(--ink);
}

.review-card-top span {
  color: #d59b2d;
  letter-spacing: 1px;
}

.review-card p {
  color: var(--muted);
  line-height: 1.55;
}

.review-card time {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.heawa-main .payment-instruction-grid div,
.heawa-main .step-payment-note,
.heawa-main .passport-photo-field,
.heawa-main .terms-check,
.heawa-main .membership-progress,
.heawa-main .membership-confirmation-card {
  border-color: rgba(10, 31, 184, 0.2);
  background: #fbfcff;
}

.heawa-main .field-help,
.heawa-main .step-payment-note,
.heawa-main .membership-download-card,
.heawa-main .rwa-privacy-note {
  border-color: rgba(10, 31, 184, 0.22);
  background: #eef1ff;
  color: #06127a;
}

.heawa-main .photo-adjust-controls,
.heawa-main .passport-photo-preview,
.heawa-main .signature-pad-wrap,
.heawa-main .review-photo-preview,
.heawa-main .review-signature-preview {
  border-color: rgba(10, 31, 184, 0.22);
  background: #fff;
}

.heawa-main .photo-adjust-controls button,
.heawa-main .review-form .secondary-button,
.heawa-main .rwa-members-section button,
.heawa-main .confirmation-actions a {
  border-color: rgba(10, 31, 184, 0.24);
  background: #fff;
  color: #06127a;
}

.heawa-main .photo-adjust-controls select {
  border-color: rgba(10, 31, 184, 0.22);
}

.heawa-main .review-form button:not(.secondary-button),
.heawa-main .rwa-status-form button,
.heawa-main .confirmation-actions button,
.heawa-main .membership-download-card button {
  background: linear-gradient(135deg, #0a1fb8, #06127a);
  color: #fff;
}

.heawa-main .review-success,
.heawa-main .confirmation-check {
  background: #1f7a35;
  color: #fff;
}

.heawa-main .review-error {
  background: #fff0f1;
  color: #b40e19;
}

.plans-section {
  background: #f8faf9;
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.faq-card {
  display: grid;
  gap: 10px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfa;
  padding: 18px;
}

.faq-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.35;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.faq-card a {
  color: var(--teal-dark);
  font-weight: 850;
}

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

.plan-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 32, 42, 0.05);
}

.featured-plan {
  border-color: rgba(213, 155, 45, 0.58);
  background: linear-gradient(180deg, #fffaf0, #ffffff 58%);
}

.plan-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  margin-bottom: 16px;
  background: #e9f4f3;
  color: var(--teal-dark);
}

.featured-plan .plan-icon {
  background: #fff0d3;
  color: #8c5e12;
}

.plan-icon svg {
  width: 23px;
  height: 23px;
}

.plan-kicker {
  margin-bottom: 8px;
  color: var(--coral);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.plan-card h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.plan-card p,
.plan-card li {
  color: var(--muted);
  line-height: 1.55;
}

.plan-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 19px;
}

.submit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 520px);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  background: #eef5f3;
}

.submit-copy p:last-child {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.05rem;
}

.submit-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.plan-picker {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.plan-picker legend {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.submit-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.plan-option {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  min-height: 78px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  cursor: pointer;
}

.plan-option:has(input:checked) {
  border-color: rgba(5, 119, 111, 0.5);
  background: #eef8f7;
}

.plan-option input {
  margin-top: 3px;
  accent-color: var(--teal);
}

.plan-option strong,
.plan-option small {
  display: block;
}

.plan-option strong {
  color: var(--ink);
}

.plan-option small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.35;
}

.submit-form button,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 750;
}

.business-dialog {
  width: min(560px, calc(100vw - 28px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.business-dialog::backdrop {
  background: rgba(16, 22, 29, 0.58);
}

.dialog-card {
  padding: 24px;
}

.dialog-photo {
  display: block;
  width: 100%;
  max-height: 260px;
  margin-bottom: 18px;
  border-radius: 8px;
  object-fit: cover;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.dialog-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.dialog-actions a,
.dialog-actions button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 8px;
  padding: 0 14px;
  border: 0;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.dialog-actions .worker-offer-button,
.worker-offer-button {
  background: #f97316;
  color: #fff;
  border: 2px solid #ea580c;
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.24);
}

.dialog-actions .worker-offer-button:hover,
.worker-offer-button:hover {
  background: #ea580c;
  color: #fff;
}

.listing-card .worker-offer-button {
  width: 100%;
  justify-content: center;
  min-height: 48px;
  font-size: 0.98rem;
}

.phone-display {
  margin: 16px 0 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--soft);
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 850;
}

.empty-state {
  min-height: 180px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 1060px) {
  .business-grid,
  .verified-grid,
  .offers-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-preview-grid {
    grid-template-columns: 1fr;
  }

  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .site-header {
    gap: 12px;
    padding-inline: clamp(14px, 3vw, 30px);
  }

  .top-nav {
    gap: 12px;
    font-size: 0.84rem;
  }

  .header-owner-login {
    padding: 0 10px;
    font-size: 0.82rem;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 66px;
  }

  .top-nav {
    position: absolute;
    top: 66px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border-radius: 8px;
    background: rgba(23, 32, 42, 0.96);
  }

  .top-nav.open {
    display: flex;
  }

  .top-nav a {
    padding: 13px;
  }

  .header-owner-login {
    min-height: 40px;
    padding: 0 11px;
    font-size: 0.82rem;
  }

  .visitor-counter {
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.8rem;
  }

  .visitor-counter span {
    display: none;
  }

  .seo-header .header-owner-login {
    font-size: 0;
  }

  .seo-header .header-owner-login::after {
    content: "Owner Login";
    font-size: 0.82rem;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .hero {
    min-height: 82vh;
    padding-top: 96px;
  }

  .hero-search {
    grid-template-columns: 20px minmax(0, 1fr);
    padding: 14px;
  }

  .hero-search button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .review-login-card {
    align-items: stretch;
    flex-direction: column;
  }

  .membership-review-list {
    grid-template-columns: 1fr;
  }

  .membership-progress > div:first-child,
  .membership-step-actions,
  .membership-download-card {
    align-items: stretch;
    flex-direction: column;
  }

  .membership-step-actions button,
  .membership-download-card button {
    width: 100%;
  }

  .rwa-help-buttons,
  .rwa-help-panel,
  .screen-docs {
    grid-template-columns: 1fr;
  }

  .heawa-top-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .heawa-top-action {
    width: 100%;
    min-height: 50px;
  }

  .heawa-main .rwa-members-section .review-header {
    align-items: stretch;
    flex-direction: column;
  }

  .heawa-main .rwa-members-section button {
    width: 100%;
    white-space: normal;
  }

  .metrics,
  .layout,
  .seo-link-groups,
  .seo-tip-grid,
  .answer-grid,
  .trust-grid,
  .internal-link-section,
  .product-grid,
  .product-preview-grid,
  .business-profile.has-photo,
  .review-form-grid,
  .rwa-status-form,
  .rwa-status-result,
  .near-me-grid,
  .faq-grid,
  .plans-grid,
  .submit-section {
    grid-template-columns: 1fr;
  }

  .plan-picker {
    grid-template-columns: 1fr;
  }

  .category-panel {
    position: static;
  }

  .category-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 86vh;
    padding-left: 16px;
    padding-right: 16px;
  }

  .quick-filters {
    gap: 8px;
  }

  .chip {
    min-height: 36px;
    padding-inline: 12px;
    font-size: 0.88rem;
  }

  .metrics {
    display: block;
  }

  .directory-section,
  .near-me-section,
  .verified-band,
  .trust-section,
  .featured-band,
  .latest-offers-section,
  .seo-links-section,
  .answer-section,
  .faq-section,
  .plans-section,
  .submit-section {
    padding: 54px 16px;
  }

  .business-grid,
  .verified-grid,
  .featured-grid,
  .offers-grid,
  .near-me-grid,
  .seo-link-groups,
  .answer-grid,
  .trust-grid,
  .details-list,
  .hours-list,
  .gallery-grid,
  .review-grid,
  .faq-grid,
  .plans-grid,
  .submit-form,
  .category-list {
    grid-template-columns: 1fr;
  }

  .cod-status-form,
  .cod-status-details {
    grid-template-columns: 1fr;
  }

  .toolbar {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .brand {
    font-size: 1rem;
  }

  .business-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .passport-photo-field {
    grid-template-columns: 1fr;
  }

  .passport-photo-field label {
    order: 2;
  }

  .passport-photo-editor {
    order: 1;
    justify-self: center;
    justify-items: center;
    width: 100%;
  }

  .passport-photo-preview {
    width: min(138px, 46vw);
  }

  .photo-adjust-controls {
    width: 100%;
  }

  .confirmation-summary {
    grid-template-columns: 1fr;
  }

  .payment-instruction-grid {
    grid-template-columns: 1fr;
  }

  .payment-details-panel {
    grid-template-columns: 1fr;
  }

  .verified-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

.verified-logo-wrap {
    width: 64px;
    height: 64px;
  }
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #101820;
  color: #fff;
}

.site-footer div,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.site-footer a {
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}

.legal-page {
  display: grid;
  gap: 20px;
}

.legal-hero h1 {
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.legal-hero p {
  max-width: 820px;
}

.legal-content {
  max-width: 920px;
}

.legal-content h2 {
  margin-top: 24px;
  color: var(--ink);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-content ul {
  padding-left: 20px;
}

.contact-admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
  gap: 22px;
  align-items: start;
}

.contact-admin-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-admin-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.contact-admin-message,
.contact-admin-form .form-status,
.contact-admin-actions {
  grid-column: 1 / -1;
}

.contact-admin-form input,
.contact-admin-form select,
.contact-admin-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
}

.contact-admin-form textarea {
  resize: vertical;
}

.contact-admin-form button {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  background: var(--teal);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.contact-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-admin-actions .secondary-button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.contact-admin-form .form-status {
  border-radius: 8px;
  padding: 12px 14px;
}

.contact-admin-form .form-status.success {
  background: #eefaf1;
  color: var(--green);
}

.contact-admin-form .form-status.error {
  display: grid;
  gap: 4px;
  background: #fff3ef;
  color: var(--coral);
}

.contact-admin-form .form-status p {
  margin: 0;
}

.contact-admin-help {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfa;
  padding: 18px;
}

.contact-admin-help h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.1rem;
}

.contact-admin-help ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.contact-admin-help p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.5;
}

.city-section {
  padding: 72px clamp(18px, 5vw, 72px);
  background: #f8fbfa;
}

.city-grid {
  display: grid;
  gap: 18px;
}

.city-copy,
.city-landmark-card,
.city-info-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.city-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.45fr);
  gap: 22px;
  align-items: start;
  padding: 22px;
}

.city-copy h3,
.city-landmark-card h3,
.city-info-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
}

.city-copy p,
.city-landmark-card p,
.city-info-card p {
  color: var(--muted);
  line-height: 1.65;
}

.city-summary-points {
  display: grid;
  gap: 10px;
}

.city-summary-points span,
.city-summary-points a {
  border: 1px solid #c7e4df;
  border-radius: 999px;
  background: #effaf7;
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 850;
  padding: 9px 12px;
  text-align: center;
  text-decoration: none;
}

.city-summary-points a:hover,
.city-summary-points a:focus-visible {
  border-color: var(--teal);
  background: #e4f6f2;
}

.city-floating-points {
  position: sticky;
  z-index: 7;
  top: 158px;
  justify-self: end;
  align-self: start;
  width: min(260px, 100%);
  margin: -6px 0 2px auto;
  border: 1px solid rgba(217, 224, 230, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(23, 32, 42, 0.1);
  padding: 10px;
  backdrop-filter: blur(12px);
}

.city-topic-nav {
  position: sticky;
  z-index: 8;
  top: 84px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border: 1px solid rgba(217, 224, 230, 0.9);
  border-radius: 8px;
  background: rgba(248, 251, 250, 0.96);
  box-shadow: 0 12px 28px rgba(23, 32, 42, 0.1);
  padding: 10px;
  backdrop-filter: blur(12px);
}

.city-topic-nav a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  padding: 10px 14px;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.city-topic-nav a:hover,
.city-topic-nav a:focus-visible {
  border-color: var(--teal);
  color: var(--teal-dark);
  transform: translateY(-1px);
}

.city-group {
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  scroll-margin-top: 158px;
}

.city-group-header {
  max-width: 820px;
}

.city-group-header h3 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

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

.city-card-grid.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.city-card-grid.single-column {
  grid-template-columns: minmax(0, 1fr);
}

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

.city-market-card {
  display: grid;
  gap: 10px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fbfa);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(23, 32, 42, 0.05);
}

.city-market-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
}

.city-market-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.city-market-card a {
  width: fit-content;
  margin-top: 4px;
  border-bottom: 2px solid rgba(5, 119, 111, 0.25);
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: none;
}

.city-market-card a:hover,
.city-market-card a:focus-visible {
  border-bottom-color: var(--teal);
}

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

.city-gallery-card {
  display: grid;
  gap: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(23, 32, 42, 0.05);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.city-gallery-card:hover,
.city-gallery-card:focus-visible {
  border-color: rgba(5, 119, 111, 0.45);
  box-shadow: 0 14px 30px rgba(23, 32, 42, 0.12);
  transform: translateY(-2px);
}

.city-gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e9f4f3;
}

.city-gallery-card span {
  padding: 0 14px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.35;
}

.city-gallery-card small {
  min-height: 40px;
  padding: 0 14px 14px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.35;
}

.city-info-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px;
  background: #fffdf7;
}

.city-info-card-wide {
  grid-column: 1 / -1;
}

.city-info-card a {
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration: none;
}

.city-landmark-card {
  display: grid;
  grid-template-rows: 260px 1fr;
}

.city-landmark-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-landmark-card div {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.city-landmark-card small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
}

@media (max-width: 980px) {
  .city-copy,
  .city-card-grid,
  .city-market-grid,
  .city-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .city-copy {
    grid-template-columns: 1fr;
  }

  .city-summary-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
  }

  .city-floating-points {
    position: static;
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 720px) {
  .site-footer {
    align-items: start;
    flex-direction: column;
  }

  .site-footer div,
  .site-footer nav {
    align-items: start;
    flex-direction: column;
  }

  .city-grid {
    grid-template-columns: 1fr;
  }

  .city-copy,
  .city-card-grid,
  .contact-admin-layout,
  .contact-admin-form,
  .city-market-grid,
  .city-gallery-grid,
  .city-card-grid.two-column {
    grid-template-columns: 1fr;
  }

  .city-summary-points {
    grid-template-columns: 1fr;
  }

  .city-topic-nav {
    top: 78px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 8px;
    scrollbar-width: thin;
  }

  .city-topic-nav a {
    flex: 0 0 auto;
    text-align: center;
  }

  .city-group {
    scroll-margin-top: 150px;
  }

  .city-landmark-card {
    grid-template-rows: 220px 1fr;
  }
}

.chatbot-widget {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 80;
  display: grid;
  justify-items: end;
  gap: 10px;
  font-size: 0.94rem;
}

.chatbot-toggle {
  min-width: 76px;
  min-height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  color: #fff;
  background: #05776f;
  box-shadow: 0 16px 36px rgba(3, 92, 86, 0.3);
  cursor: pointer;
  font-weight: 850;
}

.chatbot-toggle:focus-visible,
.chatbot-close:focus-visible,
.chatbot-form button:focus-visible,
.chatbot-quick button:focus-visible,
.chatbot-actions a:focus-visible {
  outline: 3px solid rgba(213, 155, 45, 0.55);
  outline-offset: 2px;
}

.chatbot-panel {
  width: min(380px, calc(100vw - 28px));
  max-height: min(640px, calc(100vh - 104px));
  display: grid;
  grid-template-rows: auto minmax(180px, 1fr) auto auto;
  overflow: hidden;
  border: 1px solid rgba(5, 119, 111, 0.22);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(23, 32, 42, 0.22);
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  color: #fff;
  background: linear-gradient(135deg, #035c56, #05776f);
}

.chatbot-header div {
  display: grid;
  gap: 3px;
}

.chatbot-header strong {
  font-size: 1rem;
}

.chatbot-header span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
}

.chatbot-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
}

.chatbot-log {
  display: grid;
  gap: 10px;
  align-content: start;
  overflow-y: auto;
  padding: 14px;
  background: #f4f7f8;
}

.chatbot-message {
  display: grid;
  gap: 7px;
  max-width: 92%;
  padding: 11px 12px;
  border-radius: 14px;
  line-height: 1.38;
}

.chatbot-message p {
  margin: 0;
  color: inherit;
}

.chatbot-message.user {
  justify-self: end;
  color: #fff;
  background: #05776f;
}

.chatbot-message.bot {
  justify-self: start;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #d9e0e6;
}

.chatbot-actions,
.chatbot-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.classifieds-hero {
  background:
    linear-gradient(135deg, rgba(5, 119, 111, 0.92), rgba(23, 32, 42, 0.9)),
    url("assets/hisar-market-hero.png") center / cover;
}

.classified-card {
  overflow: hidden;
}

.classified-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.classified-detail {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(280px, 1.15fr);
  gap: 22px;
  align-items: start;
}

.classified-detail img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.classified-price {
  display: block;
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 1.45rem;
}

.classifieds-filter-form {
  margin-bottom: 18px;
}

@media (max-width: 760px) {
  .classified-detail {
    grid-template-columns: 1fr;
  }
}

.chatbot-actions a,
.chatbot-quick button {
  border: 1px solid rgba(5, 119, 111, 0.22);
  border-radius: 999px;
  color: #035c56;
  background: #eaf7f4;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
  padding: 7px 10px;
}

.chatbot-quick {
  padding: 10px 12px;
  background: #fff;
  border-top: 1px solid #d9e0e6;
}

.chatbot-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #d9e0e6;
  background: #fff;
}

.chatbot-form input {
  width: 100%;
  min-height: 42px;
  border: 1px solid #cbd5dc;
  border-radius: 999px;
  padding: 0 13px;
}

.chatbot-form button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #c84f3d;
  cursor: pointer;
  font-weight: 850;
  padding: 0 16px;
}

@media (max-width: 720px) {
  .chatbot-widget {
    right: 12px;
    bottom: 12px;
  }

  .chatbot-panel {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 92px);
    border-radius: 14px;
  }
}

/* ============================================================
   RESUME BUILDER + PUBLIC RESUME VIEW
   ============================================================ */

/* --- Resume builder (editor form) --- */
.resume-builder-form { max-width: 760px; }

.resume-section-edit {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  margin: 20px 0;
  background: var(--soft);
}
.resume-section-edit h3 {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 1.05rem;
}
.resume-row {
  border-left: 3px solid var(--teal);
  padding: 10px 12px;
  margin-bottom: 10px;
  background: var(--surface);
  border-radius: 6px;
}
.add-row-btn {
  background: transparent;
  border: 1px dashed var(--teal);
  color: var(--teal-dark);
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 4px;
}
.add-row-btn:hover { background: rgba(5, 119, 111, 0.08); }
.remove-row-btn {
  background: transparent;
  border: none;
  color: var(--coral);
  cursor: pointer;
  font-size: 0.82rem;
  padding: 4px 0;
  text-decoration: underline;
}
.resume-publish-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--mustard);
  background: #fff8e8;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 20px 0;
  font-weight: 700;
  color: #7a520e;
}
.resume-publish-toggle input { width: auto; min-height: auto; }

/* --- Public resume view (standalone page) --- */
.resume-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 820px;
  margin: 16px auto 0;
  padding: 0 16px;
}
.resume-toolbar button {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.92rem;
}
.resume-toolbar button:hover { background: var(--teal-dark); }

.resume-document {
  max-width: 820px;
  margin: 16px auto 48px;
  background: #fff;
  padding: 48px 56px;
  box-shadow: var(--shadow);
  border-radius: 4px;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.65;
}

.resume-header { border-bottom: 3px solid var(--teal); padding-bottom: 20px; margin-bottom: 28px; }
.resume-name { font-size: 2.1rem; font-weight: 900; margin: 0 0 4px; color: var(--ink); letter-spacing: -0.5px; }
.resume-headline { font-size: 1.15rem; color: var(--teal-dark); font-weight: 700; margin: 0 0 10px; }
.resume-contact { display: flex; flex-wrap: wrap; gap: 6px 20px; color: var(--muted); font-size: 0.9rem; margin: 0; }

.resume-section { margin-bottom: 26px; }
.resume-section h2 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal-dark);
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  margin: 0 0 12px;
  font-weight: 900;
}

.resume-skill-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.resume-chip {
  background: rgba(5, 119, 111, 0.1);
  color: var(--teal-dark);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
}

.resume-entry { margin-bottom: 16px; }
.resume-entry:last-child { margin-bottom: 0; }
.resume-entry-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.resume-entry-head strong { font-size: 1.05rem; }
.resume-period { color: var(--muted); font-size: 0.85rem; font-weight: 700; white-space: nowrap; }
.resume-org { color: var(--teal-dark); font-weight: 700; margin: 2px 0 4px; }

.resume-footer { margin-top: 36px; padding-top: 16px; border-top: 1px solid var(--line); text-align: center; }
.resume-footer p { font-size: 0.82rem; color: var(--muted); margin: 0; }
.resume-footer a { color: var(--teal-dark); font-weight: 700; }

.resume-not-found { text-align: center; padding: 60px 20px; }

/* --- Print rules (PDF via browser print) --- */
@media print {
  @page { margin: 12mm; }
  body { background: #fff !important; }
  .resume-toolbar, .no-print, .site-header, .menu-toggle, .resume-footer { display: none !important; }
  .resume-document {
    box-shadow: none;
    margin: 0;
    max-width: 100%;
    padding: 0;
    border-radius: 0;
  }
  .resume-section { page-break-inside: avoid; }
  .resume-entry { page-break-inside: avoid; }
  a { color: var(--ink) !important; text-decoration: none !important; }
}

@media (max-width: 640px) {
  .visitor-counter {
    min-width: 54px;
    padding: 0 8px;
    font-size: 0.75rem;
  }

  .resume-document { padding: 28px 20px; margin: 8px 8px 32px; }
  .resume-name { font-size: 1.6rem; }
  .resume-headline { font-size: 1rem; }
  .resume-entry-head { flex-direction: column; }
}

/* ============================================================
   JOB DETAIL PAGE (beautiful layout + JobPosting SEO)
   ============================================================ */
.job-detail-section { padding: 0; }
.job-detail-main {
  background: var(--surface);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.job-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  padding: 28px 32px 20px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
}
.job-detail-header .eyebrow { color: rgba(255,255,255,0.85); }
.job-detail-title { color: #fff; margin: 4px 0 10px; font-size: 1.7rem; font-weight: 900; }
.job-detail-meta { display: flex; flex-wrap: wrap; gap: 6px 22px; font-size: 0.95rem; }
.job-detail-meta span { color: rgba(255,255,255,0.92); }

.job-detail-actions { display: flex; gap: 10px; flex-shrink: 0; }
.job-action-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 9px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
}
.job-action-btn:hover { background: rgba(255,255,255,0.28); }
.job-action-btn.whatsapp { background: #25d366; border-color: #25d366; color: #fff; }
.job-action-btn.whatsapp:hover { background: #1ebe57; }
.job-action-btn.block { display: block; width: 100%; text-align: center; margin-bottom: 8px; }

.job-detail-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  padding: 32px;
}

.job-description-area h3 {
  color: var(--ink);
  font-size: 1.1rem;
  margin: 0 0 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--teal);
  display: inline-block;
}
.job-description-area h3:not(:first-child) { margin-top: 28px; }
.job-description-text { color: var(--ink); line-height: 1.75; font-size: 0.98rem; }

.job-requirements-list { list-style: none; padding: 0; margin: 0; }
.job-requirements-list li {
  position: relative;
  padding: 6px 0 6px 26px;
  color: var(--ink);
  line-height: 1.6;
}
.job-requirements-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.job-apply-box {
  margin-top: 28px;
  padding: 20px;
  background: var(--soft);
  border-radius: 10px;
  border: 1px solid var(--line);
}
.job-apply-btn {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
}
.job-apply-btn:hover { background: var(--teal-dark); }

.job-company-card {
  background: var(--soft);
  border-radius: 10px;
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 16px;
}
.job-company-card h4 { margin: 0 0 4px; color: var(--teal-dark); font-size: 1.15rem; }
.job-info-rows { margin: 18px 0; }
.job-info-rows > div {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.job-info-rows > div:last-child { border-bottom: none; }
.job-info-rows span { color: var(--muted); }
.job-info-rows strong { color: var(--ink); }
.job-company-actions { margin-top: 16px; }

/* Responsive: stack sidebar under content on mobile */
@media (max-width: 760px) {
  .job-detail-header { padding: 20px; }
  .job-detail-title { font-size: 1.35rem; }
  .job-detail-body { grid-template-columns: 1fr; padding: 20px; gap: 24px; }
  .job-company-card { position: static; }
}

/* Print: clean layout for download */
@media print {
  .job-detail-actions, .job-company-actions, .no-print, .site-header, .menu-toggle { display: none !important; }
  .job-detail-main { box-shadow: none; border-radius: 0; }
  .job-detail-header { background: var(--teal-dark) !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .job-company-card { background: #fff !important; }
  a { color: var(--ink) !important; text-decoration: none !important; }
}

/* ============================================================
   JOBS PAGE SEO CONTENT (how-it-works, FAQ, keyword chips)
   ============================================================ */
.jobs-seo-content { max-width: 880px; }
.jobs-seo-content h3 {
  color: var(--ink);
  font-size: 1.15rem;
  margin: 28px 0 12px;
}
.jobs-seo-content h3:first-of-type { margin-top: 8px; }

.jobs-seo-grid { margin-bottom: 8px; }

.jobs-steps {
  margin: 8px 0 0;
  padding-left: 20px;
  line-height: 1.8;
  color: var(--ink);
}
.jobs-steps li { padding: 2px 0; }

.jobs-bullets {
  margin: 8px 0;
  padding-left: 20px;
  line-height: 1.8;
  color: var(--ink);
}
.jobs-bullets li { padding: 2px 0; }

.job-keyword-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 4px;
}
.job-keyword-chips span {
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--teal-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.jobs-faq { margin-top: 8px; }
.jobs-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 8px;
  background: var(--surface);
  overflow: hidden;
}
.jobs-faq summary {
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 800;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.jobs-faq summary::-webkit-details-marker { display: none; }
.jobs-faq summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--teal);
  flex-shrink: 0;
}
.jobs-faq details[open] summary::after { content: "−"; }
.jobs-faq details[open] summary { border-bottom: 1px solid var(--line); }
.jobs-faq details p {
  margin: 0;
  padding: 14px 18px;
  color: var(--muted);
  line-height: 1.7;
}
