:root {
  --navy: #062a4f;
  --navy-dark: #031b34;
  --yellow: #ffc928;
  --yellow-dark: #e4ad00;
  --green: #24a148;
  --bg: #f6f8fb;
  --text: #102033;
  --muted: #475467;
  --line: #dce3ec;
  --white: #ffffff;
  --shadow: 0 14px 35px rgba(6, 42, 79, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.section {
  padding: 56px 0;
}

.section--tight {
  padding: 34px 0;
}

.section__heading {
  margin: 0 0 20px;
  text-align: center;
}

.section__heading h2,
.section__heading h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  line-height: 1.1;
}

.section__heading p {
  margin: 8px auto 0;
  max-width: 740px;
  color: var(--muted);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--navy-dark);
  box-shadow: 0 10px 22px rgba(3, 27, 52, 0.18);
}

.button--accent {
  background: var(--yellow);
  color: var(--navy-dark);
}

.button--accent:hover {
  background: var(--yellow-dark);
}

.button--whatsapp {
  background: #087a49;
  color: #fff;
}

.button--whatsapp:hover {
  background: #06643c;
  color: #fff;
}

.button--whatsapp img {
  flex: 0 0 18px;
}

.button--light {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
}

.button--ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line);
}

.button--wide {
  width: 100%;
}

.button--disabled,
.button--disabled:hover {
  background: #eef2f6;
  color: #7c8798;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

.eyebrow {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.site-top {
  background: var(--white);
  border-bottom: 1px solid #eef2f6;
}

.site-top__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 235px;
}

.brand__mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}

.brand__name {
  display: block;
  color: var(--navy-dark);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 950;
  line-height: 1;
}

.brand__slogan {
  display: block;
  margin-top: 5px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 650;
}

.top-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.top-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.site-nav {
  background: var(--navy-dark);
  color: var(--white);
}

.site-nav__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255, 255, 255, 0.11);
}

.account-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 14px;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--navy-dark);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
}

.hero {
  position: relative;
  min-height: 440px;
  background:
    linear-gradient(90deg, rgba(3, 27, 52, 0.9) 0%, rgba(3, 27, 52, 0.72) 45%, rgba(3, 27, 52, 0.45) 100%),
    url("/images/hero-construction-bucharest.png") center / cover no-repeat;
  color: var(--white);
}

.hero__inner {
  min-height: 440px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 54px;
  align-items: center;
  padding: 34px 0;
}

.hero__content {
  display: grid;
}

.hero h1 {
  margin: 0;
  max-width: 660px;
  font-size: clamp(2.15rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--yellow);
}

.hero__intro {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  font-weight: 650;
}

.hero__bullets {
  display: grid;
  gap: 11px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
  font-size: 1rem;
  font-weight: 850;
}

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

.check-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.8rem;
}

.form-panel,
.content-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-panel {
  padding: 24px;
  color: var(--text);
}

.form-panel h2,
.form-panel h3 {
  margin: 0 0 16px;
  color: var(--navy);
  text-align: center;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.request-form {
  display: grid;
  gap: 12px;
}

.form-intro {
  margin: -4px 0 16px;
  color: var(--muted);
  line-height: 1.55;
  text-align: center;
}

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

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid #d6dfea;
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  padding: 10px 12px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.field textarea {
  min-height: 108px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(6, 42, 79, 0.12);
}

.field--full {
  grid-column: 1 / -1;
}

.form-message {
  display: none;
  margin: 2px 0 0;
  color: #b42318;
  font-size: 0.86rem;
  font-weight: 750;
}

.form-message.is-visible {
  display: block;
}

.form-message.is-success {
  color: #156d33;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: center;
}

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

.category-card {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 14px 10px;
  text-align: center;
  color: var(--navy);
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.category-card:hover {
  transform: translateY(-2px);
  border-color: rgba(6, 42, 79, 0.45);
  box-shadow: 0 12px 24px rgba(6, 42, 79, 0.11);
}

.category-card__icon {
  height: 44px;
  color: var(--navy);
}

.category-card__name {
  font-weight: 900;
  line-height: 1.12;
}

.category-card__subtitle {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.partner-band {
  background: #eef8f3;
  border: 1px solid #d7eee3;
  border-radius: 8px;
  padding: 24px;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.company-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.category-directory {
  display: grid;
  gap: 30px;
}

.company-list {
  display: grid;
  gap: 14px;
}

.company-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
  height: 100%;
  min-height: 548px;
  box-shadow: 0 8px 18px rgba(6, 42, 79, 0.07);
}

.company-card--compact {
  min-height: 430px;
}

.company-card--horizontal {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 190px;
  align-items: stretch;
  gap: 20px;
  min-height: 0;
  height: auto;
  padding: 18px;
}

.company-card__media {
  display: block;
  flex: 0 0 138px;
  height: 138px;
  overflow: hidden;
  border-radius: 6px;
  background: #eef2f6;
}

.company-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.company-card:hover .company-card__media img {
  transform: scale(1.04);
}

.company-card__content {
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-width: 0;
}

.company-card__badge,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 5px;
  background: #e8f5ee;
  color: #156d33;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.badge--public {
  background: #eef4ff;
  color: var(--navy);
}

.company-logo {
  display: grid;
  place-items: center;
  min-height: 58px;
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 950;
  text-align: center;
  line-height: 1.05;
}

.company-logo img {
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
}

.company-logo span {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  margin-top: 4px;
  text-transform: uppercase;
}

.company-card__title {
  display: grid;
  gap: 5px;
}

.company-card__category {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.company-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.06rem;
  min-height: 2.55em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.company-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.9rem;
  min-height: 5.8em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 850;
}

.stars {
  color: var(--yellow-dark);
  letter-spacing: 0;
}

.rating--public {
  color: var(--muted);
  font-weight: 750;
}

.company-card__meta {
  display: grid;
  gap: 7px;
  min-height: 48px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.company-card__actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.company-card__actions .button {
  min-height: 42px;
}

.company-card--horizontal .company-card__media {
  flex: none;
  height: 100%;
  min-height: 176px;
}

.company-card--horizontal .company-logo {
  justify-items: start;
  place-items: start;
  min-height: 0;
  text-align: left;
  font-size: 1.28rem;
}

.company-card--horizontal h3 {
  min-height: 0;
  font-size: 1.22rem;
}

.company-card--horizontal p {
  min-height: 0;
  -webkit-line-clamp: 2;
}

.company-card--horizontal .company-card__meta {
  grid-template-columns: minmax(0, 1.2fr) minmax(160px, 0.8fr);
  min-height: 0;
}

.company-card--horizontal .company-card__actions {
  align-content: center;
  margin-top: 0;
}

.company-card--horizontal .company-card__actions .button {
  min-height: 48px;
}

.verified-section {
  background: var(--white);
  border-top: 1px solid #eef2f6;
  border-bottom: 1px solid #eef2f6;
}

.filters {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(160px, 1fr)) 120px;
  gap: 12px;
  margin: 20px 0 16px;
}

.filters input,
.filters select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  background: var(--white);
}

.company-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.company-table th,
.company-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #edf1f5;
  text-align: left;
  vertical-align: middle;
  font-size: 0.9rem;
}

.company-table th {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}

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

.company-name-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 900;
}

.mini-logo {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  font-weight: 950;
  background: #f8fbff;
}

.verification-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #156d33;
  font-size: 0.86rem;
  font-weight: 800;
}

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

.cta-strip {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  align-items: center;
  border: 1px solid #e4eaf2;
  border-radius: 8px;
  background: var(--white);
  padding: 20px;
}

.cta-strip__icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #eaf1f7;
  color: var(--navy);
}

.cta-strip h3 {
  margin: 0 0 6px;
  color: var(--navy);
}

.cta-strip p {
  margin: 0 0 12px;
  color: var(--muted);
}

.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 36px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 14px;
}

.footer-grid p,
.footer-grid li {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-grid a,
.footer-bottom a,
.footer-link-button {
  color: var(--white);
  font-weight: 800;
}

.footer-credit {
  margin-top: 16px;
}

.footer-link-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.anpc-image-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--white);
  padding: 6px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.anpc-image-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.anpc-image-link img {
  width: auto;
  height: 42px;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.legal-content {
  display: grid;
  gap: 10px;
}

.legal-content h2 {
  margin: 22px 0 2px;
  color: var(--navy);
  font-size: 1.28rem;
}

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

.legal-content ul {
  margin: 0;
  padding-left: 22px;
}

.legal-content a {
  color: var(--navy);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content .button {
  color: var(--navy);
  text-decoration: none;
}

.site-trust-bar {
  border-top: 1px solid #dfe7f0;
  border-bottom: 1px solid #dfe7f0;
  background: #f8fbff;
}

.site-trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  min-height: 58px;
  color: var(--navy);
  font-size: 0.88rem;
}

.site-trust-bar__inner strong {
  margin-right: 4px;
  font-weight: 950;
}

.site-trust-bar__inner a {
  color: var(--navy);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.eeat-panel {
  display: grid;
  gap: 16px;
  border: 1px solid #d9e5f2;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
  padding: 20px;
  box-shadow: 0 12px 28px rgba(6, 42, 79, 0.08);
}

.eeat-panel--compact {
  margin: 0 0 20px;
}

.eeat-panel__header h2 {
  margin: 3px 0 0;
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1.22;
}

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

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

.eeat-panel__facts div {
  display: grid;
  align-content: center;
  gap: 5px;
  min-height: 74px;
  border: 1px solid #dfe7f0;
  border-radius: 7px;
  background: var(--white);
  padding: 12px;
}

.eeat-panel__facts span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.eeat-panel__facts strong,
.eeat-panel__facts time {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.3;
}

.eeat-panel__note {
  border-left: 4px solid var(--yellow);
  padding-left: 12px;
  color: var(--navy) !important;
  font-weight: 800;
}

.eeat-panel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.eeat-panel__links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid #cad7e5;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  padding: 0 12px;
  font-size: 0.82rem;
  font-weight: 850;
}

.eeat-panel + .article-grid,
.eeat-panel + .filters,
.eeat-panel + .category-list {
  margin-top: 18px;
}

.article-meta {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.answer-box {
  display: grid;
  gap: 8px;
  border: 1px solid #f0c24b;
  border-left: 5px solid var(--yellow);
  border-radius: 8px;
  background: #fff9e6;
  padding: 16px;
}

.answer-box strong {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.answer-box p {
  margin: 0;
  color: var(--text);
  font-weight: 750;
}

.faq-section {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.faq-section h2 {
  margin: 0 0 4px;
  color: var(--navy);
}

.faq-section details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
  padding: 14px 16px;
}

.faq-section summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
}

.faq-section details p {
  margin: 10px 0 0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.legal-table th,
.legal-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px;
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}

.legal-table th {
  background: #eef4ff;
  color: var(--navy);
  font-size: 0.82rem;
  text-transform: uppercase;
}

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

.cookie-consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  width: min(720px, calc(100% - 40px));
}

.cookie-consent__panel,
.cookie-modal__panel {
  border: 1px solid rgba(220, 227, 236, 0.9);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 22px 60px rgba(3, 27, 52, 0.24);
}

.cookie-consent__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  max-height: calc(100dvh - 24px);
  overflow-y: auto;
  padding: 20px;
}

.cookie-consent h2,
.cookie-modal h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.24rem;
}

.cookie-consent p,
.cookie-modal p {
  margin: 0;
  color: #27364a;
  line-height: 1.55;
}

.cookie-consent__actions,
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.cookie-consent__actions .button,
.cookie-modal__actions .button {
  min-height: 42px;
}

.cookie-modal[hidden],
.cookie-consent[hidden] {
  display: none;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 20px;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 27, 52, 0.58);
}

.cookie-modal__panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  padding: 26px;
}

.cookie-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.cookie-options {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.cookie-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

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

.cookie-option strong {
  color: var(--navy);
}

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

.cookie-option input {
  width: 22px;
  height: 22px;
  accent-color: var(--navy);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--navy);
  font-weight: 800;
}

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 54px 0;
}

.page-hero h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
}

.page-hero p {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.content-panel {
  padding: 24px;
}

.content-panel h2,
.content-panel h3 {
  color: var(--navy);
}

.content-panel p,
.article-content p {
  color: #374151;
  line-height: 1.75;
}

.company-profile {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: start;
}

.profile-panel {
  display: grid;
  gap: 26px;
}

.company-profile--wide {
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 30px;
}

.profile-copy {
  display: grid;
  gap: 14px;
}

.profile-copy h2 {
  margin: 0;
  font-size: 1.65rem;
}

.profile-copy p {
  margin: 0;
}

.profile-note {
  border-left: 4px solid var(--yellow);
  padding-left: 12px;
  color: var(--muted) !important;
  font-size: 0.92rem;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.profile-logo {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfd;
}

.profile-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfd;
}

.profile-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.profile-photo figcaption {
  padding: 10px 12px;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}

.tag-list,
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.tag-list li,
.service-list li {
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 6px 10px;
  background: #f8fbff;
  color: var(--navy);
  font-weight: 750;
  font-size: 0.86rem;
}

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

.profile-section-grid h2 {
  margin: 0;
}

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

.profile-facts div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
  padding: 14px;
}

.profile-facts span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.profile-facts strong {
  color: var(--navy);
  line-height: 1.35;
}

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

.article-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
}

.article-card h3 {
  margin: 0;
  color: var(--navy);
}

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

.article-content {
  max-width: 820px;
}

.admin-panel {
  display: none;
}

.admin-panel.is-visible {
  display: block;
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 16px;
}

.admin-notifications-table pre {
  max-width: 420px;
  margin: 0;
  white-space: pre-wrap;
  color: #374151;
  font-family: inherit;
  line-height: 1.45;
}

.hidden-by-filter {
  display: none !important;
}

.load-more-hidden {
  display: none !important;
}

@media (max-width: 1120px) {
  .category-grid,
  .company-grid--five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .company-card--horizontal {
    grid-template-columns: 180px minmax(0, 1fr) 160px;
  }

  .category-card--list {
    grid-template-columns: 230px minmax(0, 1fr) 160px;
  }

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

@media (max-width: 860px) {
  .site-top__inner {
    min-height: 72px;
  }

  .top-contact {
    display: none;
  }

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

  .site-nav__inner {
    min-height: 0;
  }

  .nav-links,
  .account-link {
    display: none;
  }

  .site-nav.is-open .nav-links,
  .site-nav.is-open .account-link {
    display: grid;
  }

  .site-nav.is-open .site-nav__inner {
    align-items: stretch;
    padding: 8px 0;
  }

  .site-nav.is-open .nav-links {
    width: 100%;
    gap: 0;
  }

  .site-nav.is-open .nav-links a,
  .site-nav.is-open .account-link {
    min-height: 42px;
    padding: 0 12px;
  }

  .hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 38px 0;
  }

  .hero__content {
    display: contents;
  }

  .hero h1 {
    order: 1;
  }

  .hero__form {
    order: 2;
  }

  .hero__intro {
    order: 3;
    margin-bottom: 0;
  }

  .hero__bullets {
    order: 4;
  }

  .form-grid,
  .dual-cta,
  .content-grid,
  .company-profile,
  .company-profile--wide,
  .profile-section-grid,
  .eeat-panel__facts,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .company-card--horizontal {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .category-card--list {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .category-card--list > img {
    height: 180px;
  }

  .category-card--list .category-card__cta {
    grid-column: 2;
    justify-self: start;
    min-width: 170px;
  }

  .company-card--horizontal .company-card__actions {
    grid-column: 1 / -1;
  }

  .company-card--horizontal .company-card__media {
    min-height: 150px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__slogan {
    font-size: 0.76rem;
  }

  .hero h1 {
    font-size: 2.32rem;
  }

  .form-panel {
    padding: 18px;
  }

  .site-trust-bar__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 14px 0;
  }

  .eeat-panel {
    padding: 16px;
  }

  .category-grid,
  .company-grid,
  .company-grid--five,
  .article-grid,
  .profile-facts,
  .filters {
    grid-template-columns: 1fr;
  }

  .company-card--horizontal {
    grid-template-columns: 1fr;
  }

  .category-card--list {
    grid-template-columns: 1fr;
    gap: 15px;
    min-height: 0;
    padding: 14px;
  }

  .category-card--list > img {
    height: 220px;
  }

  .category-card--list .category-card__content {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
  }

  .category-card--list .category-card__icon {
    width: 54px;
    height: 54px;
  }

  .category-card--list .category-card__name {
    font-size: 1.28rem;
  }

  .category-card--list .category-card__cta {
    grid-column: 1;
    width: 100%;
  }

  .company-card--horizontal .company-card__media {
    min-height: 210px;
  }

  .company-card--horizontal .company-logo {
    font-size: 1.12rem;
  }

  .company-card--horizontal .company-card__meta {
    grid-template-columns: 1fr;
  }

  .partner-band {
    padding: 16px;
  }

  .cta-strip {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-badges {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-consent {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .cookie-consent__panel {
    grid-template-columns: 1fr;
  }

  .cookie-consent__actions,
  .cookie-modal__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .cookie-modal {
    align-items: end;
    padding: 12px;
  }

  .cookie-modal__panel {
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    padding: 22px 16px 16px;
  }

  .cookie-option {
    grid-template-columns: 1fr;
  }

  .legal-table {
    display: block;
    overflow-x: auto;
  }

  .admin-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Marketplace mockup redesign */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #062a4f 0%, #031b34 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(3, 27, 52, 0.22);
}

.site-header__inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.site-header .brand {
  min-width: 0;
  color: var(--white);
}

.site-header .brand__mark {
  width: 54px;
  height: 54px;
}

.site-header .brand__name {
  color: var(--white);
  font-size: 1.35rem;
  line-height: 0.96;
}

.site-header .brand__name span,
.site-header .brand__name br + * {
  color: var(--yellow);
}

.site-header .brand__slogan {
  display: none;
}

.site-header .nav-links {
  justify-content: center;
  gap: 3px;
}

.site-header .nav-links a {
  min-height: 76px;
  padding: 0 13px;
  border-bottom: 3px solid transparent;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 850;
  text-transform: none;
  white-space: nowrap;
}

.site-header .nav-links a:hover,
.site-header .nav-links a:focus-visible,
.site-header .nav-links a[aria-current="page"],
.site-header .nav-links a.is-active {
  background: transparent;
  border-bottom-color: var(--yellow);
  color: var(--white);
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 17px;
  margin-left: 5px;
  padding: 0 5px;
  border-radius: 3px;
  background: var(--yellow);
  color: var(--navy-dark);
  font-size: 0.62rem;
  font-weight: 950;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  white-space: nowrap;
}

.location-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 850;
}

.location-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 201, 40, 0.16);
}

.button--ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.button--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-header .menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  min-height: 445px;
  overflow: hidden;
  background: #062a4f;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 27, 52, 0.82) 0%, rgba(3, 27, 52, 0.68) 52%, rgba(3, 27, 52, 0.36) 100%);
  pointer-events: none;
}

.hero__media {
  position: absolute;
  z-index: 0;
  inset: 0;
}

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

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: 445px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 46px 0 28px;
}

.hero__content {
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero h1 {
  max-width: 950px;
  font-size: clamp(2.7rem, 4.8vw, 4.45rem);
  line-height: 1.08;
  text-wrap: balance;
}

.hero__intro {
  max-width: 780px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.88);
}

.hero__bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 18px;
}

.check-icon {
  width: 23px;
  height: 23px;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy-dark);
  font-size: 0.56rem;
  font-weight: 950;
}

.hero-search {
  width: min(930px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 54px rgba(3, 27, 52, 0.34);
}

.search-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--navy-dark);
}

.search-tabs button {
  min-height: 58px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.search-tabs button:last-child {
  border-right: 0;
}

.search-tabs button.is-active {
  margin: 10px;
  min-height: 38px;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--navy-dark);
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1.7fr) minmax(160px, 1fr) minmax(160px, 1fr) 118px;
  gap: 14px;
  align-items: end;
  padding: 16px 20px 20px;
}

.search-panel label {
  display: grid;
  gap: 7px;
  color: var(--navy-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.search-panel input,
.search-panel select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #ccd6e2;
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
  padding: 0 12px;
  outline: none;
}

.hero__stats {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero__stats span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(3, 27, 52, 0.45);
  padding: 7px 12px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

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

.sitemap-html > section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.sitemap-html h2 {
  margin-bottom: 14px;
}

.sitemap-html ul {
  display: grid;
  gap: 8px;
}

.sitemap-html a {
  color: var(--navy);
  font-weight: 750;
}

.sitemap-html a:hover,
.sitemap-html a:focus-visible {
  text-decoration: underline;
}

.sitemap-html__guides {
  grid-column: 1 / -1;
}

.sitemap-html__guides ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 28px;
}

.section--home-categories {
  padding: 30px 0 20px;
  background: #f4f7fb;
}

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

.category-card {
  position: relative;
  min-height: 220px;
  justify-content: flex-end;
  overflow: hidden;
  border-color: #d7e0eb;
  border-radius: 8px;
  padding: 0;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(6, 42, 79, 0.07);
}

.category-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 27, 52, 0.02), rgba(3, 27, 52, 0.2) 46%, rgba(3, 27, 52, 0.58)),
    linear-gradient(90deg, rgba(3, 27, 52, 0.28), rgba(3, 27, 52, 0));
}

.category-card__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 14px;
  width: calc(100% - 28px);
  min-height: 82px;
  margin: 0 14px 14px;
  border: 1px solid rgba(220, 227, 236, 0.9);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.96);
  padding: 12px;
  color: var(--navy);
  text-align: left;
  box-shadow: 0 12px 28px rgba(3, 27, 52, 0.14);
}

.category-card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 7px;
  background: var(--navy);
  color: var(--white);
}

.category-card__icon svg {
  width: 32px;
  height: 32px;
}

.category-card__copy {
  display: grid;
  min-width: 0;
}

.category-card__name {
  font-size: 1.08rem;
  line-height: 1.08;
}

.category-card__subtitle {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 0.85rem;
}

.category-card__arrow {
  color: var(--muted);
  font-size: 1.8rem;
  line-height: 1;
}

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

.category-card--list {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 180px;
  align-items: stretch;
  justify-content: initial;
  gap: 22px;
  width: 100%;
  min-height: 220px;
  height: auto;
  padding: 18px;
  color: var(--navy);
  text-align: left;
}

.category-card--list::after {
  display: none;
}

.category-card--list > img {
  position: static;
  width: 100%;
  height: 184px;
  border-radius: 6px;
  object-fit: cover;
}

.category-card--list .category-card__content {
  position: static;
  z-index: auto;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  align-self: center;
  gap: 18px;
  width: 100%;
  min-height: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.category-card--list .category-card__icon {
  width: 60px;
  height: 60px;
}

.category-card--list .category-card__copy {
  align-content: center;
  gap: 6px;
}

.category-card--list .category-card__name {
  font-size: 1.48rem;
  line-height: 1.1;
}

.category-card--list .category-card__subtitle {
  white-space: normal;
  text-overflow: clip;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-card__description {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.55;
}

.category-card--list .category-card__arrow {
  display: none;
}

.category-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 50px;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--navy);
  padding: 0 18px;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(255, 201, 40, 0.18);
}

.marketplace-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.home-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
  padding: 24px;
  box-shadow: 0 18px 42px rgba(6, 42, 79, 0.09);
}

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

.panel-title-row h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1.2;
}

.panel-title-row h2 span {
  font-size: 0.95rem;
  font-weight: 700;
}

.panel-title-row a {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
}

.company-grid--home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.product-grid--home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.marketplace-row .company-card,
.marketplace-row .product-card {
  box-shadow: 0 14px 30px rgba(6, 42, 79, 0.1);
}

.company-grid--home .company-card {
  min-height: 585px;
}

.company-grid--home .company-card__media {
  flex-basis: 165px;
  height: 165px;
  border-radius: 8px;
}

.marketplace-row .company-logo {
  min-height: 70px;
  font-size: 1.16rem;
}

.marketplace-row .company-card h3,
.product-grid--home .product-card h3 {
  font-size: 1.08rem;
  line-height: 1.22;
}

.marketplace-row .rating,
.marketplace-row .company-card__meta {
  font-size: 0.9rem;
}

.marketplace-row .company-card__meta {
  min-height: 54px;
}

.company-grid--home .company-card p,
.product-grid--home .product-card p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.company-grid--home .company-card__actions,
.product-grid--home .product-card__actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.company-grid--home .company-card__actions .button,
.product-grid--home .product-card__actions .button {
  min-height: 44px;
  padding: 0 12px;
}

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

.product-grid[hidden] {
  display: none;
}

.product-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(6, 42, 79, 0.06);
}

.product-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #eef2f6;
}

.product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 240ms ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
}

.directory-count {
  color: var(--muted);
  margin: -4px 0 18px;
  font-weight: 750;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 30px 0 20px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  padding: 0 12px;
  font-weight: 850;
}

.pagination a[aria-current="page"] {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.product-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge--commerce {
  background: #ecfdf3;
  color: #127a32;
}

.product-card h3 {
  min-height: 3.6em;
  margin: 0;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.product-card__supplier {
  color: var(--navy) !important;
  font-weight: 900;
}

.product-card__actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.product-card__actions .button {
  min-height: 44px;
  font-size: 0.82rem;
}

.directory-load-more {
  display: flex;
  justify-content: center;
  margin: 10px 0 24px;
}

.directory-load-more .button {
  min-width: 240px;
}

.product-grid--home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-grid--home .product-card {
  min-height: 500px;
}

.product-grid--home .product-card__media img {
  aspect-ratio: 1 / 1;
}

.product-grid--home .product-card h3 {
  min-height: 2.7em;
  -webkit-line-clamp: 3;
}

.commerce-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.infinite-scroll-status {
  min-height: 28px;
  margin-top: 22px;
  color: var(--muted);
  text-align: center;
  font-size: 0.88rem;
  font-weight: 750;
}

.infinite-scroll-sentinel {
  width: 100%;
  height: 2px;
}

.commerce-note--small {
  margin-top: 10px;
  font-size: 0.75rem;
}

.verification-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

.verification-panel .company-table-wrap {
  margin-top: 14px;
  overflow-x: visible;
}

.verification-panel .company-table {
  min-width: 0;
  table-layout: fixed;
}

.verification-panel .company-table th,
.verification-panel .company-table td {
  padding: 16px 18px;
  overflow-wrap: anywhere;
}

.verification-panel .company-table th:nth-child(1),
.verification-panel .company-table td:nth-child(1) {
  width: 35%;
}

.verification-panel .company-table th:nth-child(2),
.verification-panel .company-table td:nth-child(2) {
  width: 30%;
}

.verification-panel .company-table th:nth-child(3),
.verification-panel .company-table td:nth-child(3) {
  width: 22%;
}

.verification-panel .company-table th:nth-child(4),
.verification-panel .company-table td:nth-child(4) {
  width: 13%;
}

.verification-panel .company-table .button {
  min-width: 0;
  width: 100%;
  padding: 0 10px;
}

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

.trust-strip > div {
  min-height: 86px;
  display: grid;
  align-content: start;
  gap: 6px;
  border: 1px solid #e2e9f2;
  border-radius: 8px;
  background: #f8fbff;
  padding: 13px;
}

.trust-strip strong {
  color: var(--navy);
  font-size: 0.88rem;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #e8f5ee;
  color: #156d33;
  font-weight: 950;
}

.trust-count {
  border-color: #abe7bd !important;
  background: #f1fff5 !important;
}

.trust-count span {
  color: #156d33;
  font-size: 1.65rem;
  font-weight: 950;
}

.owner-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, #062a4f, #031b34);
  color: var(--white);
  padding: 28px;
}

.owner-panel h2 {
  margin: 0;
  font-size: 1.45rem;
}

.owner-panel p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.owner-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  min-width: 310px;
}

.owner-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 800;
  list-style: none;
}

.owner-panel li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 999px;
  background: var(--yellow);
}

.owner-panel li {
  display: inline-flex;
  align-items: center;
}

.owner-panel li::before {
  margin-right: 7px;
}

.section--lead {
  padding: 46px 0 60px;
}

.lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 28px;
  align-items: center;
}

.lead-layout h2 {
  max-width: 680px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.1;
}

.lead-layout p:not(.eyebrow) {
  max-width: 600px;
  color: var(--muted);
  line-height: 1.7;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.product-page-layout {
  grid-template-columns: minmax(0, 1fr);
}

.product-support-panel {
  width: 100%;
}

.product-documentation {
  display: grid;
  gap: 32px;
}

.product-documentation section + section {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.product-documentation h2,
.product-documentation h3 {
  color: var(--navy);
}

.product-documentation h2 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.product-documentation h3 {
  margin: 22px 0 10px;
  font-size: 1.05rem;
}

.product-documentation p {
  max-width: 920px;
  color: var(--text);
  line-height: 1.75;
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
}

.product-facts div {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
}

.product-facts dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-facts dd {
  margin: 5px 0 0;
  color: var(--navy);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.product-checklist {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-checklist li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  line-height: 1.55;
}

.product-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.product-faq {
  display: grid;
  gap: 10px;
}

.product-faq details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.product-faq summary {
  padding: 14px 16px;
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
}

.product-faq details p {
  margin: 0;
  padding: 0 16px 16px;
}

.product-detail > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

.product-mobile-cta {
  display: none;
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.filters--products {
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 260px) 120px;
}

@media (max-width: 1240px) {
  .site-header__inner {
    grid-template-columns: 230px 1fr auto;
    gap: 14px;
  }

  .site-header .nav-links a {
    padding: 0 8px;
    font-size: 0.82rem;
  }

  .header-actions .location-chip {
    display: none;
  }
}

@media (max-width: 1380px) {
  .header-actions .location-chip {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: 235px minmax(0, 1fr) auto;
  }
}

@media (max-width: 1080px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-header .nav-links,
  .header-actions {
    display: none;
  }

  .site-header .menu-toggle {
    display: inline-flex;
  }

  .site-header.is-open .nav-links,
  .site-header.is-open .header-actions {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    width: 100%;
  }

  .site-header.is-open .nav-links a {
    min-height: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 0 4px;
  }

  .site-header.is-open .nav-links a[aria-current="page"],
  .site-header.is-open .nav-links a.is-active {
    border-bottom-color: var(--yellow);
  }

  .site-header.is-open .header-actions {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-bottom: 12px;
  }

  .category-grid--featured,
  .company-grid--home,
  .product-grid--home,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .marketplace-row,
  .verification-layout,
  .lead-layout,
  .product-detail {
    grid-template-columns: 1fr;
  }

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

  .owner-actions {
    min-width: 0;
  }
}

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

  .home-panel {
    min-width: 0;
    padding: 16px;
  }

  .panel-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .panel-title-row a {
    white-space: normal;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: auto;
    gap: 14px;
    padding: 24px 0 18px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.12;
  }

  .hero__intro {
    margin-top: 10px;
    font-size: 0.93rem;
    line-height: 1.45;
  }

  .hero__bullets {
    display: none;
  }

  .search-tabs,
  .search-panel,
  .category-grid--featured,
  .company-grid--home,
  .product-grid,
  .product-grid--home,
  .trust-strip,
  .filters--products {
    grid-template-columns: 1fr;
  }

  .sitemap-html,
  .sitemap-html__guides ul {
    grid-template-columns: 1fr;
  }

  .search-tabs button.is-active {
    margin: 4px;
  }

  .search-tabs button {
    min-height: 46px;
  }

  .search-panel {
    gap: 10px;
    padding: 12px;
  }

  .search-panel input,
  .search-panel select,
  .search-panel .button {
    min-height: 44px;
  }

  .owner-actions,
  .site-header.is-open .header-actions {
    grid-template-columns: 1fr;
  }

  .verification-panel .company-table th:nth-child(3),
  .verification-panel .company-table td:nth-child(3) {
    display: none;
  }

  .verification-panel .company-table th:nth-child(1),
  .verification-panel .company-table td:nth-child(1) {
    width: 46%;
  }

  .verification-panel .company-table th:nth-child(2),
  .verification-panel .company-table td:nth-child(2) {
    width: 34%;
  }

  .verification-panel .company-table th:nth-child(4),
  .verification-panel .company-table td:nth-child(4) {
    width: 20%;
  }
}

@media (max-width: 1080px) {
  .category-card--list {
    grid-template-columns: 230px minmax(0, 1fr) 160px;
  }
}

@media (max-width: 760px) {
  .product-mobile-cta {
    position: sticky;
    top: 76px;
    z-index: 6;
    display: inline-flex;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    box-shadow: 0 8px 20px rgba(5, 44, 82, 0.16);
  }

  .product-detail > img {
    aspect-ratio: 4 / 3;
  }

  .eeat-panel--compact {
    margin-top: 24px;
  }

  .page-hero {
    padding: 38px 0;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.55rem);
    overflow-wrap: anywhere;
  }

  .page-hero p {
    max-width: 100%;
    font-size: 0.96rem;
  }

  .category-card--list {
    grid-template-columns: minmax(0, 1fr);
    gap: 15px;
    max-width: 100%;
    min-height: 0;
    overflow: hidden;
    padding: 14px;
  }

  .category-card--list > img {
    max-width: 100%;
    height: 220px;
  }

  .category-card--list .category-card__content {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    max-width: 100%;
    min-width: 0;
  }

  .category-card--list .category-card__icon {
    width: 54px;
    height: 54px;
  }

  .category-card--list .category-card__name {
    font-size: 1.3rem;
  }

  .category-card--list .category-card__description {
    font-size: 0.92rem;
    overflow-wrap: anywhere;
  }

  .category-card--list .category-card__cta {
    grid-column: 1;
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .page-hero h1 {
    font-size: 2rem;
  }

  .category-card--list > img {
    height: 190px;
  }
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 4px;
  background: #fff;
  color: #062a4f;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.directory-empty {
  margin: 16px 0;
  padding: 14px 16px;
  border: 1px solid #ccd9e8;
  border-radius: 6px;
  background: #fff;
  color: #233a55;
}
