/* ---------------------------------------------------
   DESIGN TOKENS
--------------------------------------------------- */
:root {
  --brand-primary: #1ABC9C;
  /* Colors */
  --bg: #F8F9F9;
  --surface: #ffffff;
  --surface-2: #EEFAF8;
  --primary: #1ABC9C;
  --primary-dk: #16A085;
  --primary-lt: #26D0CE;
  --primary-soft: #D5F4F1;
  --primary-bg: #E0F2EF;
  --text: #34495E;
  --text-2: #476B7D;
  --muted: #6B8E93;
  --muted-lt: #96B0B5;
  --line: #E1E8E8;
  --line-lt: #EEF1F1;
  --green: #10B981;
  --green-soft: #D1FAE5;
  --orange: #F97316;
  --orange-soft: #FFEDD5;
  --gold: #F59E0B;
  --purple: #8B5CF6;
  --purple-soft: #F5F3FF;

  /* Shadows */
  --shadow-xs: 0 2px 8px rgba(26, 188, 156, .06);
  --shadow-sm: 0 4px 16px rgba(26, 188, 156, .08);
  --shadow-md: 0 8px 32px rgba(26, 188, 156, .10);
  --shadow-lg: 0 20px 64px rgba(26, 188, 156, .12);
  --shadow-xl: 0 32px 80px rgba(26, 188, 156, .14);

  /* Radii */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 9999px;

  /* Spacing */
  --section-pad: 80px;
  --container: 1320px;

  /* Transitions */
  --ease: cubic-bezier(.22, .68, 0, 1.2);
  --dur: .22s;
}

/* ---------------------------------------------------
   RESET
--------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(180deg, #F9FAFA 0%, #F5F8F8 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  border: 0;
  cursor: pointer;
}

button {
  appearance: none;
  -webkit-appearance: none;
}

[hidden] {
  display: none !important;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  line-height: 1.08;
  letter-spacing: -0.03em;
}

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

.section {
  padding: var(--section-pad) 0;
}

.alt-section {
  background: linear-gradient(180deg, #F9FBFB, #F0F5F5);
  border-block: 1px solid var(--line-lt);
}

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

.section-head h2 {
  font-size: clamp(26px, 2.8vw, 38px);
  margin-top: 6px;
  color: var(--text);
}

.section-label {
  display: inline-block;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11.5px;
  font-weight: 700;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: gap var(--dur) var(--ease);
}

.section-link:hover {
  gap: 10px;
}

/* ---------------------------------------------------
   TOP STRIP
--------------------------------------------------- */
.top-strip {
  background: #E0F1ED;
  border-bottom: 1px solid #C8DFD8;
  font-size: 13px;
  color: var(--text-2);
}

.top-strip-inner {
  min-height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.strip-left,
.strip-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.strip-highlight {
  font-weight: 600;
  color: var(--text);
}

.strip-pill {
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 12px;
  transition: background var(--dur);
}

.strip-pill:hover {
  background: var(--primary-dk);
}

.strip-pill-outline {
  background: white;
  color: var(--primary);
  border: 1px solid #C0D5CC;
}

.strip-pill-outline:hover {
  background: var(--primary-bg);
}

.strip-link {
  color: var(--muted);
  transition: color var(--dur);
}

.strip-link:hover {
  color: var(--primary);
}

.strip-login {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary);
  font-weight: 600;
}

.strip-separator {
  width: 1px;
  height: 14px;
  background: #C8D8D0;
}

/* ---------------------------------------------------
   HEADER
--------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(223, 232, 245, .85);
  transition: box-shadow .3s;
}

.site-header.menu-open {
  transform: none !important;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 11px;
  flex-shrink: 0;
}

.brand-wordmark {
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.brand-logo-image {
    height: auto;
    max-height: 60px;
    max-width: min(320px, 100%);
    object-fit: contain;
    padding: 5px 0;
}

.brand-support {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1ABC9C 0%, #26D0CE 100%);
  box-shadow: 0 6px 18px rgba(26, 188, 156, .35);
  flex-shrink: 0;
}

.brand-mark-sm {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
}

.brand-text small {
  font-size: 11px;
  color: var(--muted);
  margin-top: 1px;
}

/* Desktop nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  justify-content: center;
}

.nav-link {
  padding: 6px 10px;
  border-radius: var(--r-xs);
  color: var(--muted);
  font-weight: 500;
  font-size: 12.5px;
  white-space: nowrap;
  transition: all var(--dur);
}

.nav-link:hover {
  color: var(--primary);
  background: var(--primary-bg);
}

/* -- Nav Dropdown ----------------------------------- */
.nav-dropdown {
  position: relative;
}

.nav-link-drop {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-link-drop svg {
  transition: transform .2s;
  flex-shrink: 0;
}

.nav-dropdown:hover .nav-link-drop svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s;
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: none;
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 12px;
  border-radius: var(--r-xs);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: background .15s, color .15s;
  white-space: nowrap;
}

.dropdown-item:hover {
  background: var(--primary-bg);
  color: var(--primary);
}

.dropdown-item-policy {
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line-lt);
  margin-top: 4px;
  padding-top: 10px;
  white-space: normal;
}

.dropdown-item-policy:hover {
  color: var(--primary);
}

/* Business Categories sub-menu */
.dropdown-has-sub {
  position: relative;
}

.dropdown-has-sub::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -18px;
  width: 28px;
  height: calc(100% + 20px);
}

.dropdown-has-sub > svg {
  color: var(--muted-lt);
  flex-shrink: 0;
}

.dropdown-sub {
  position: absolute;
  top: -8px;
  left: calc(100% + 8px);
  min-width: 200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-6px);
  transition: opacity .15s, transform .15s;
  z-index: 201;
}

.dropdown-has-sub:hover .dropdown-sub,
.dropdown-has-sub:focus-within .dropdown-sub {
  opacity: 1;
  pointer-events: all;
  transform: none;
}

.dropdown-sub-item {
  display: block;
  padding: 8px 10px;
  border-radius: var(--r-xs);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  transition: background .15s, color .15s;
}

.dropdown-sub-item:hover {
  background: var(--primary-bg);
  color: var(--primary);
}

/* Compact header search ? always visible */
.header-search {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  padding: 5px 5px 5px 14px;
  flex: 1;
  max-width: 380px;
  opacity: 1;
  pointer-events: all;
  transition: box-shadow .2s;
}

.header-search:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,188,156,.12);
}

.hs-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
}

.hs-divider {
  width: 1px;
  height: 20px;
  background: var(--line);
  margin: 0 10px;
}

.hs-input {
  flex: 1;
  background: none;
  font-size: 13px;
  color: var(--text);
  min-width: 0;
}

.hs-input::placeholder {
  color: var(--muted-lt);
}

.hs-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--r-full);
  background: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background var(--dur);
}

.hs-btn:hover {
  background: var(--primary-dk);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-action-link {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: color var(--dur);
}

.header-action-link:hover,
.header-action-link.active {
  color: var(--primary);
}

.primary-btn {
  padding: 8px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #26D0CE);
  color: white;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(26, 188, 156, .3);
  transition: all var(--dur) var(--ease);
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 188, 156, .4);
  background: linear-gradient(135deg, var(--primary-dk), var(--primary));
}

.ghost-btn {
  padding: 8px 14px;
  border-radius: 12px;
  background: white;
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  border: 1px solid var(--line);
  transition: all var(--dur);
}

.ghost-btn:hover {
  background: var(--primary-bg);
  border-color: #B8CCC1;
  color: var(--primary);
}

/* Mobile */
.menu-btn {
  display: none;
  background: transparent;
  width: 40px;
  height: 40px;
  border-radius: var(--r-xs);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background var(--dur);
}

.menu-btn:hover {
  background: var(--primary-bg);
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: var(--r-full);
  transition: all .3s;
}

.menu-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  display: none;
  padding: 12px 20px 20px;
  border-top: 1px solid var(--line-lt);
  background: white;
  gap: 4px;
  align-content: start;
  max-height: calc(100dvh - 61px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
}

.mobile-drawer.open {
  display: grid;
}

.mobile-drawer a {
  padding: 12px 8px;
  color: var(--muted);
  font-weight: 500;
  border-bottom: 1px solid #f0f5fc;
  border-radius: var(--r-xs);
  transition: all var(--dur);
}

.mobile-drawer a:hover {
  color: var(--primary);
  background: var(--primary-bg);
  padding-left: 14px;
}

.mobile-drawer-group {
  display: grid;
  gap: 0;
}

.mobile-drawer-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 8px;
  color: var(--muted);
  font-weight: 500;
  background: transparent;
  border-bottom: 1px solid #f0f5fc;
  border-radius: var(--r-xs);
  cursor: pointer;
  transition: all var(--dur);
}

.mobile-drawer-toggle:hover {
  color: var(--primary);
  background: var(--primary-bg);
  padding-left: 14px;
}

.mobile-drawer-toggle svg {
  transition: transform .2s ease;
}

.mobile-drawer-group.open .mobile-drawer-toggle {
  color: var(--primary);
  background: var(--primary-bg);
}

.mobile-drawer-group.open .mobile-drawer-toggle svg {
  transform: rotate(180deg);
}

.mobile-drawer-submenu {
  display: grid;
  gap: 6px;
  padding: 10px 0 4px 14px;
  min-width: 0;
}

.mobile-drawer-submenu a {
  padding: 10px 12px;
  font-size: 14px;
  border-bottom: 0;
  background: #f8fbfb;
}

.mobile-drawer-subgrid {
  display: grid;
  gap: 6px;
}

.mobile-drawer-subtitle {
  padding: 2px 12px 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-lt);
}

.drawer-cta {
  margin-top: 8px;
  background: linear-gradient(135deg, var(--primary), #16A085) !important;
  color: white !important;
  font-weight: 700 !important;
  text-align: center;
  border-radius: 14px !important;
  border: none !important;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
}
/* -------------------------------------------
   HOW IT WORKS
   ------------------------------------------- */

.hiw-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

/* Header */
.hiw-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.hiw-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #0891B2;         /* teal */
  margin-bottom: 10px;
}
.hiw-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #0D2137;         /* navy */
  letter-spacing: -.03em;
  line-height: 1.08;
  margin: 0 0 14px;
}
.hiw-subtitle {
  font-size: 16px;
  color: #64748B;
  line-height: 1.7;
}

/* Steps row */
.hiw-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1060px;
  margin: 0 auto 56px;
}

/* Individual step */
.hiw-step {
  flex: 1;
  background: #ffffff;
  border: 1.5px solid #E2E8F0;
  border-radius: 24px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all .25s ease;
  box-shadow: 0 2px 8px rgba(13,33,55,.05);
}
.hiw-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(13,33,55,.10);
  border-color: #0891B2;
}
.hiw-step-accent {
  border-color: #0891B2;
  background: linear-gradient(145deg, #eff8ff, #ffffff);
}

.hiw-step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  color: #0891B2;
  text-transform: uppercase;
}
.hiw-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0f7fa, #eff9ff);
  border: 2px solid rgba(8,145,178,.14);
  display: grid;
  place-items: center;
  color: #0891B2;
  margin-bottom: 4px;
}
.hiw-step h3 {
  font-size: 19px;
  font-weight: 700;
  color: #0D2137;
  line-height: 1.2;
}
.hiw-step p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.68;
  flex: 1;
}
.hiw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.hiw-tags span {
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 9999px;
  background: #e0f7fa;
  color: #0E7490;
  border: 1px solid rgba(8,145,178,.18);
}

/* Connector between steps */
.hiw-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  flex-shrink: 0;
  width: 52px;
  color: #CBD5E1;
  gap: 4px;
}
.hiw-conn-line {
  width: 2px;
  height: 38px;
  background: linear-gradient(to bottom, #E2E8F0, #0891B2);
  opacity: .45;
}

/* Contact methods row */
.hiw-contact-methods {
  background: #ffffff;
  border: 1.5px solid #E2E8F0;
  border-radius: 24px;
  padding: 36px 40px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(13,33,55,.05);
}
.hiw-cm-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #94A3B8;
  text-align: center;
  margin-bottom: 24px;
}
.hiw-cm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hiw-cm-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 16px;
  border-radius: 18px;
  border: 1.5px solid #E2E8F0;
  text-align: center;
  transition: all .22s ease;
  cursor: default;
}
.hiw-cm-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(13,33,55,.08);
}
.hiw-cm-card strong {
  font-size: 15px;
  font-weight: 700;
  color: #0D2137;
}
.hiw-cm-card span {
  font-size: 13px;
  color: #64748B;
  line-height: 1.5;
}
.hiw-cm-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

/* Icon colour variants */
.hiw-cm-email {
  background: #EFF6FF;
  color: #2563EB;
}
.hiw-cm-email:hover { background: #DBEAFE; }

.hiw-cm-web {
  background: #E0F7FA;
  color: #0891B2;
}
.hiw-cm-web:hover { background: #CFFAFE; }

.hiw-cm-wa {
  background: #F0FDF4;
  color: #25D366;
}
.hiw-cm-wa:hover { background: #DCFCE7; }

.hiw-cm-call {
  background: #F5F3FF;
  color: #7C3AED;
}
.hiw-cm-call:hover { background: #EDE9FE; }

/* Disclaimer */
.hiw-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 780px;
  margin: 0 auto;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 16px 22px;
  font-size: 13.5px;
  color: #64748B;
  line-height: 1.6;
}
.hiw-disclaimer svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #0891B2;
}
.hiw-disclaimer strong { color: #0D2137; }
.hiw-disclaimer em     { font-style: normal; font-weight: 600; color: #0D2137; }

/* -- Responsive ------------------------------------ */
@media (max-width: 1024px) {
  .hiw-steps   { flex-direction: column; align-items: center; max-width: 520px; }
  .hiw-step    { width: 100%; }
  .hiw-connector { flex-direction: row; width: 100%; padding-top: 0; }
  .hiw-conn-line { width: 40px; height: 2px; flex-shrink: 0; }
  .hiw-cm-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hiw-section          { padding: 52px 0; }
  .hiw-contact-methods  { padding: 24px 20px; }
  .hiw-cm-grid          { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hiw-cm-card          { padding: 16px 12px; }
}
@media (max-width: 420px) {
  .hiw-cm-grid { grid-template-columns: 1fr; }
}
/* ---------------------------------------------------
   HERO
--------------------------------------------------- */
.hero {
  padding: 32px 0 42px;
  background:
    radial-gradient(circle 600px at 75% 30%, rgba(121, 169, 255, .16), transparent),
    radial-gradient(circle 400px at 10% 90%, rgba(31, 111, 255, .10), transparent),
    linear-gradient(180deg, #f8fbff 0%, #edf5ff 100%);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: var(--r-full);
  background: rgba(31, 111, 255, .08);
  border: 1px solid rgba(31, 111, 255, .2);
  color: var(--primary-dk);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-copy {
  text-align: left;
  min-height: 380px;
  display: flex;
  align-items: center;
}

.hero-text-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-text-slide {
  display: none;
  animation: slideInUp .6s forwards var(--ease);
}

.hero-text-slide.active {
  display: block;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text-slide h1 {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 16px;
}

.hero-text-slide h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary), #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text-slide p {
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 32px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ad-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #16a085);
  color: white;
  font-weight: 800;
  font-size: 14.5px;
  box-shadow: 0 4px 15px rgba(31, 111, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Shimmer sweep on hover */
.ad-cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.25) 50%,
      transparent 100%);
  transition: left 0.6s ease;
}

.ad-cta-btn:hover::after {
  left: 100%;
}

.ad-cta-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 8px 25px rgba(31, 111, 255, 0.35),
    0 0 40px rgba(31, 111, 255, 0.15);
  background: linear-gradient(135deg, var(--primary-dk), #16a085);
}

.ad-cta-btn:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 2px 8px rgba(31, 111, 255, 0.25);
  transition: all 0.1s ease;
}

.ad-tagline {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  opacity: 0.85;
}

/* Hero Categories Grid (Replaces Metrics) */
.hero-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.hero-cat-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 10px;
  padding: 5px 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(220, 232, 246, 1);
  border-radius: var(--r-lg);
  transition: all var(--dur) var(--ease);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.hero-cat-item:hover {
  background: white;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-lt);
}

.hci-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-bg);
  display: grid;
  place-items: center;
  transition: all var(--dur);
  margin-bottom: 0;
}

.hci-icon img {
  width: 24px;
  height: 24px;
}

.hero-cat-item:hover .hci-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary-soft);
}

.hero-cat-item span {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.hero-cat-item.hci-more {
  border-style: dashed;
  background: rgba(255, 255, 255, 0.4);
}

/* ---------------------------------------------------
   AD CAROUSEL (Synced Visuals)
--------------------------------------------------- */
.hero-visual {
  display: flex;
  align-items: stretch;
}

.ad-carousel-card {
  flex: 1;
  background: white;
  border: 1px solid #dfe8f5;
  border-radius: 30px;
  padding: 0;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 420px;
  position: relative;
}

.ad-carousel-header {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 18px;
}

.ad-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--r-full);
  background: #f0f7ff;
  color: var(--primary-dk);
  font-size: 11.5px;
  font-weight: 800;
  border: 1px solid #e0ebff;
}

.ad-dots {
  display: flex;
  gap: 8px;
}

.ad-dots button {
  width: 10px;
  height: 10px;
  border-radius: var(--r-full);
  border: none;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0;
  cursor: pointer;
  transition: all .3s var(--ease);
}

.ad-dots button.active {
  width: 26px;
  background: var(--primary);
}

.ad-slider {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.ad-slide {
  display: none;
  width: 100%;
  height: 100%;
  animation: fadeIn .5s forwards;
}

.ad-slide.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.ad-visual {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-visual img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.ad-slide.active .ad-visual img {
  transform: scale(1.05);
}




/* ---------------------------------------------------
   CATEGORIES
--------------------------------------------------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

/* Base card */
.category-card {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  box-shadow: var(--shadow-xs);
  min-height: 190px;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.cat-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent, var(--primary)) 10%, white);
  display: grid;
  place-items: center;
  transition: transform var(--dur);
}

.category-card:hover .cat-icon-wrap {
  transform: scale(1.08);
}

.category-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin: 0;
}

.category-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.cat-count {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted-lt);
  letter-spacing: .03em;
}

/* Featured card */
.cat-featured {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #f6faff, #eef5ff);
  border-color: #d4e5ff;
  min-height: 220px;
}

.cat-featured:hover {
  border-color: #aac5ff;
}

.cat-featured-body {
  flex: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cat-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--primary);
}

.cat-featured-body h3 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 900;
  color: var(--text);
}

.cat-featured-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 13.5px;
  margin-top: 4px;
  transition: gap var(--dur);
}

.cat-link:hover {
  gap: 10px;
}

.cat-featured-img {
  flex-shrink: 0;
  width: 200px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-featured-img img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(31, 111, 255, .18));
}

/* ---------------------------------------------------
   OFFERS
--------------------------------------------------- */
.offers-section {
  background: linear-gradient(180deg, #f8fbff, #f0f7ff);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 16px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-xs);
  transition: all var(--dur) var(--ease);
  overflow: hidden;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #d4e5ff;
}

.offer-large {
  flex-direction: row;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #f5f9ff, #eef6ff);
  border-color: #cfe0ff;
}

.offer-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-img-wrap {
  flex-shrink: 0;
}

.offer-img-wrap img {
  border-radius: 14px;
}

.offer-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--r-full);
  background: var(--primary-soft);
  color: var(--primary-dk);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
}

.offer-pill-green {
  background: var(--green-soft);
  color: #065f46;
}

.offer-pill-orange {
  background: var(--orange-soft);
  color: #9a3412;
}

.offer-icon {
  font-size: 36px;
}

.offer-card h3 {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
}

.offer-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
}

.offer-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.offer-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--gold);
  font-weight: 700;
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  transition: gap var(--dur);
}

.offer-cta:hover {
  gap: 10px;
}

/* ---------------------------------------------------
   UTILITY / BILLS & TRAVEL
--------------------------------------------------- */
.utility-section {
  padding: var(--section-pad) 0;
}

.utility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.utility-panel {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-xs);
}

.utility-panel h2 {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 900;
  color: var(--text);
  margin: 8px 0 10px;
}

.utility-panel p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
  margin-bottom: 24px;
}

.utility-panel-blue {
  background: linear-gradient(180deg, #f7fbff, #eef5ff);
  border-color: #daeaff;
}

/* Utility actions */
.utility-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.utility-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 86px;
  background: #f5f9ff;
  border: 1.5px solid #deeaff;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--text);
  transition: all var(--dur) var(--ease);
  text-align: center;
}

.utility-action span,
.travel-shortcut span {
  overflow-wrap: anywhere;
}

.utility-action:hover {
  background: var(--primary-bg);
  border-color: #b8d1ff;
  transform: translateY(-2px);
  color: var(--primary);
}

.ua-icon {
  font-size: 24px;
}


.utility-action-photo {
  position: relative;
  overflow: hidden;
  min-height: 86px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--line);
  background: #ccd8d6;
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: block;
}

.utility-action-photo:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.uap-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.utility-action-photo:hover .uap-img {
  transform: scale(1.07);
}

.uap-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 25%, rgba(20, 35, 50, 0.80) 100%);
}

.uap-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 10px 10px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 6px;
}

.uap-text {
  flex: 1;
  min-width: 0;
}

.uap-name {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.uap-sub {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,.70);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.uap-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background: rgba(255,255,255,.92);
  border-radius: var(--r-full);
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
  color: var(--text);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.utility-action-photo:hover .uap-arrow {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08);
}

.uap-arrow svg {
  width: 11px;
  height: 11px;
}
/* Travel shortcuts */
.travel-shortcuts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.travel-shortcut {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: #f5f9ff;
  border: 1.5px solid #deeaff;
  border-radius: var(--r-md);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  transition: all var(--dur) var(--ease);
  text-align: center;
}

.travel-shortcut:hover {
  background: var(--primary-bg);
  border-color: #b8d1ff;
  transform: translateY(-2px);
}

.travel-shortcut img {
  width: 44px;
  height: 44px;
}

/* ---------------------------------------------------
   FEATURED LISTINGS
--------------------------------------------------- */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.listing-card {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-xs);
  transition: all var(--dur) var(--ease);
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #d4e5ff;
}

.listing-spotlight {
  background: linear-gradient(180deg, #fcfdff, #f3f8ff);
  border-color: #d0e4ff;
}

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

.listing-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--r-full);
  background: var(--primary-soft);
  color: var(--primary-dk);
  font-size: 11.5px;
  font-weight: 700;
}

.listing-badge-soft {
  background: #edf5ff;
}

.listing-badge-mint {
  background: var(--green-soft);
  color: #065f46;
}

.listing-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--text-2);
}

.listing-rating span {
  font-size: 12px;
  color: var(--muted-lt);
  font-weight: 400;
}

.listing-brand {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-bottom: 16px;
}

.listing-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  letter-spacing: .5px;
}

.listing-brand-text h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 2px;
}

.listing-brand-text p {
  color: var(--muted);
  font-size: 13px;
}

.listing-open {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  margin-top: 4px;
  padding: 2px 8px;
  border-radius: var(--r-full);
}

.listing-open.open {
  background: #d1fae5;
  color: #065f46;
}

.listing-points {
  list-style: none;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.listing-points li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.listing-points li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-lt);
  flex-shrink: 0;
  margin-top: 5px;
}

/* Listing actions */
.listing-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.la-btn {
  border: none;
  border-radius: 11px;
  padding: 10px 8px;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all var(--dur) var(--ease);
}

.la-call {
  background: linear-gradient(135deg, var(--primary), #16A085);
  color: white;
  box-shadow: 0 3px 10px rgba(31, 111, 255, .25);
}

.la-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(31, 111, 255, .35);
}

.la-whatsapp {
  background: #25d366;
  color: white;
  box-shadow: 0 3px 10px rgba(37, 211, 102, .25);
}

.la-whatsapp:hover {
  transform: translateY(-1px);
  background: #22c55e;
}

.la-primary {
  background: linear-gradient(135deg, #F97316, #fb923c);
  color: white;
  box-shadow: 0 3px 10px rgba(249, 115, 22, .25);
}

.la-primary:hover {
  transform: translateY(-1px);
}

.la-soft {
  background: var(--primary-bg);
  color: var(--primary-dk);
}

.la-soft:hover {
  background: var(--primary-soft);
}

/* ---------------------------------------------------
   EXPLORE
--------------------------------------------------- */
.explore-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 16px;
}

.trend-panel,
.city-panel {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-xs);
}

.trend-panel h3,
.city-panel h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text);
}

.trend-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.trend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--r-md);
  background: #f4f9ff;
  border: 1px solid #e4eefa;
  color: var(--text);
  font-weight: 600;
  font-size: 13.5px;
  transition: all var(--dur);
}

.trend-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #d7e7ff;
  flex-shrink: 0;
}

.trend-item-icon img {
  width: 16px;
  height: 16px;
}

.trend-item:hover {
  background: var(--primary-bg);
  border-color: #b8d1ff;
  color: var(--primary);
  transform: translateX(3px);
}

/* City grid */
.city-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.city-card {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1.5px solid var(--line);
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  background: var(--surface-2);
}

.city-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #b8d1ff;
}

.city-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

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

.city-card-footer {
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.city-name {
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
}

.city-count {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 600;
}

/* ---------------------------------------------------
   CTA BAND
--------------------------------------------------- */
.cta-band {
  padding: 56px 0;
  background: linear-gradient(135deg, #1ABC9C, #16A085);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-band-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

.cta-label {
  color: rgba(255, 255, 255, .6);
}

.cta-copy h2 {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 900;
  line-height: 1.1;
  margin: 10px 0 10px;
  max-width: 680px;
}

.cta-copy p {
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 26px;
  border-radius: 14px;
  background: white;
  color: var(--primary-dk);
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
  border: none;
  transition: all var(--dur) var(--ease);
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
}

.cta-btn-ghost {
  padding: 13px 26px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .12);
  color: white;
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid rgba(255, 255, 255, .28);
  transition: all var(--dur);
}

.cta-btn-ghost:hover {
  background: rgba(255, 255, 255, .2);
}

/* ---------------------------------------------------
   FOOTER
--------------------------------------------------- */
.site-footer {
  background: #f4f8ff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  padding: 52px 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-brand-wordmark {
  align-items: flex-start;
}

.footer-brand-logo {
  display: block;
  width: auto;
  max-width: min(280px, 100%);
  height: 86px;
}

.footer-brand .brand-text strong {
  font-size: 34px;
}

.footer-brand-col>p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.75;
  max-width: 320px;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1;
  padding: 6px 0;
  transition: color var(--dur);
}

.footer-col a:hover {
  color: var(--primary);
}

/* Social */
.footer-social {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r-xs);
  background: white;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: all var(--dur);
}

.social-btn:hover {
  background: var(--primary-bg);
  border-color: #c0d5ff;
  color: var(--primary);
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  background: #eff5ff;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}

.footer-badges {
  display: flex;
  gap: 8px;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  background: var(--text);
  color: white;
  font-size: 12px;
  font-weight: 600;
  transition: all var(--dur);
}

.app-badge:hover {
  background: var(--primary-dk);
  transform: translateY(-1px);
}

.directory-hero {
  padding: 56px 0 42px;
  background:
    radial-gradient(circle at top right, rgba(38, 208, 206, 0.16), transparent 32%),
    linear-gradient(180deg, #f6fbfa 0%, #edf6f5 100%);
  border-bottom: 1px solid var(--line);
}

.directory-hero h1 {
  font-size: clamp(34px, 4vw, 52px);
  color: var(--text);
  margin: 10px 0 12px;
}

.directory-hero p {
  max-width: 760px;
  color: var(--text-2);
  font-size: 16px;
}

.directory-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 28px;
  align-items: end;
}

.directory-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.directory-stat-row span {
  padding: 8px 14px;
  border-radius: var(--r-full);
  background: white;
  border: 1px solid var(--line);
  color: var(--text-2);
  font-size: 13px;
  font-weight: 700;
}

.directory-search-shell {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.directory-search-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 10px;
}

.directory-search-grid input,
.directory-search-grid select,
.directory-filter-row select {
  height: 50px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fbfdfc;
  padding: 0 14px;
  color: var(--text);
}

.directory-search-grid button {
  min-width: 138px;
  padding: 0 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #16A085);
  color: white;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.directory-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}

.directory-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  height: 46px;
  border-radius: 14px;
  background: #f7fbfa;
  border: 1px solid var(--line);
  color: var(--text-2);
  font-size: 13px;
  font-weight: 700;
}

.directory-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.directory-subcategory-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.subcategory-chip {
  border: 1px solid var(--line);
  background: white;
  color: var(--muted);
  padding: 10px 16px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 700;
  transition: all var(--dur) var(--ease);
}

.subcategory-chip:hover,
.subcategory-chip.active {
  background: var(--primary-bg);
  border-color: #bee7df;
  color: var(--primary-dk);
}

.directory-feature-section {
  padding-top: 0;
}

.directory-feature-card {
  display: grid;
  grid-template-columns: 1.2fr .85fr;
  gap: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow-md);
}

.directory-feature-copy h3 {
  font-size: clamp(26px, 3vw, 38px);
  color: var(--text);
  margin: 10px 0 14px;
}

.directory-feature-copy p {
  color: var(--text-2);
  max-width: 620px;
}

.directory-feature-visual {
  min-height: 280px;
  border-radius: 22px;
  overflow: hidden;
  background: #ecf8f6;
}

.directory-feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 14px;
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border-radius: var(--r-full);
  background: #f2fbf8;
  color: var(--primary-dk);
  border: 1px solid #d7f1ea;
  font-size: 12px;
  font-weight: 800;
}

.feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-points span {
  padding: 8px 12px;
  border-radius: 12px;
  background: #f7faf9;
  border: 1px solid var(--line);
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
}

.feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.feature-btn,
.feature-btn-secondary {
  text-align: center;
  min-width: 148px;
}

.directory-results-grid {
  align-items: stretch;
}

.directory-card-copy {
  color: var(--text-2);
  font-size: 14px;
  margin-bottom: 14px;
}

.listing-footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.directory-empty-state {
  grid-column: 1 / -1;
  padding: 44px;
  border-radius: var(--r-lg);
  border: 1px dashed #b6d7ce;
  background: white;
  text-align: center;
}

.directory-empty-state h3 {
  font-size: 24px;
  color: var(--text);
}

.directory-empty-state p {
  color: var(--muted);
  margin: 12px auto 18px;
  max-width: 520px;
}

.directory-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.directory-category-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.directory-category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.directory-category-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.directory-category-top h3 {
  font-size: 24px;
  margin-top: 8px;
}

.directory-category-count {
  padding: 7px 12px;
  border-radius: var(--r-full);
  background: var(--primary-bg);
  color: var(--primary-dk);
  font-size: 12px;
  font-weight: 800;
}

.directory-category-card p {
  margin: 16px 0 18px;
  color: var(--text-2);
}

.directory-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.directory-category-pills li {
  list-style: none;
  padding: 8px 12px;
  border-radius: 14px;
  background: #f7faf9;
  border: 1px solid var(--line);
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
}

.category-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #16A085);
  color: white;
  font-size: 14px;
  font-weight: 800;
}

.profile-hero-shell {
  padding-bottom: 28px;
}

.profile-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.profile-breadcrumb strong,
.profile-breadcrumb a:hover {
  color: var(--primary-dk);
}

.profile-hero-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.profile-brand-lockup {
  display: flex;
  gap: 18px;
  align-items: center;
}

.profile-logo {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 28px;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}

.profile-brand-lockup h1 {
  font-size: clamp(28px, 3.3vw, 46px);
  margin: 8px 0 10px;
}

.profile-brand-lockup p {
  color: var(--text-2);
  font-size: 16px;
  max-width: 760px;
}

.profile-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.profile-metrics div {
  border-radius: 18px;
  background: #f7faf9;
  border: 1px solid var(--line);
  padding: 16px;
}

.profile-metrics strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
}

.profile-metrics span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.profile-main-layout {
  display: grid;
  grid-template-columns: 1.15fr .55fr;
  gap: 26px;
  align-items: start;
}

.profile-main-column,
.profile-content-stack {
  display: grid;
  gap: 18px;
}

.profile-side-column {
  position: sticky;
  top: 92px;
}

.profile-gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  gap: 14px;
}

.profile-gallery-item {
  min-height: 180px;
  border-radius: 24px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-xs);
}

.profile-gallery-item-lg {
  grid-row: span 2;
  min-height: 374px;
}

.profile-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-xs);
}

.profile-panel h2 {
  font-size: 26px;
  margin: 10px 0 14px;
}

.profile-panel p {
  color: var(--text-2);
}

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

.profile-tag-row span {
  padding: 7px 11px;
  border-radius: var(--r-full);
  background: #f5fbf8;
  border: 1px solid #d9f0ea;
  color: var(--primary-dk);
  font-size: 12px;
  font-weight: 800;
}

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

.profile-info-grid div {
  border-radius: 16px;
  background: #f8fbfa;
  border: 1px solid var(--line);
  padding: 14px;
}

.profile-info-grid strong {
  display: block;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.profile-info-grid span {
  display: block;
  color: var(--text-2);
  font-size: 14px;
  margin-top: 6px;
}

.profile-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.profile-service-card {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfefe, #f5faf9);
  border: 1px solid var(--line);
  font-weight: 700;
  color: var(--text);
}

.profile-award-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.profile-award-list li {
  list-style: none;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fbfdfc;
  border: 1px solid var(--line);
  color: var(--text-2);
  font-weight: 600;
}

.profile-offer-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.profile-offer-card {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff, #f5fbf8);
  border: 1px solid var(--line);
}

.profile-offer-card strong {
  display: block;
  font-size: 18px;
  color: var(--text);
}

.profile-offer-card p {
  margin: 10px 0;
  color: var(--text-2);
}

.profile-offer-card span {
  color: var(--primary-dk);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.profile-contact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.profile-contact-card h2 {
  font-size: 24px;
  margin: 10px 0 16px;
}

.profile-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 14px;
  background: #f7faf9;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
  margin-bottom: 10px;
  transition: all var(--dur) var(--ease);
}

.profile-contact-btn:hover {
  background: #edf8f4;
  border-color: #cce6df;
}

.profile-contact-primary {
  background: linear-gradient(135deg, var(--primary), #16A085);
  color: white;
  border-color: transparent;
}

.profile-contact-primary:hover {
  background: linear-gradient(135deg, var(--primary-dk), #12876f);
  border-color: transparent;
}

.profile-contact-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* ---------------------------------------------------
   TOAST
--------------------------------------------------- */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  padding: 14px 22px;
  border-radius: var(--r-md);
  background: var(--text);
  color: white;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-xl);
  transform: translateY(80px);
  opacity: 0;
  transition: all .35s var(--ease);
  pointer-events: none;
  max-width: 340px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ---------------------------------------------------
   RESPONSIVE ? 1200px
--------------------------------------------------- */
@media (max-width: 1200px) {
  :root {
  --brand-primary: #1ABC9C;
    --container: 100%;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-inner {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }

  .footer-brand-col {
    grid-column: span 4;
  }
}

/* ---------------------------------------------------
   RESPONSIVE ? 1024px
--------------------------------------------------- */
@media (max-width: 1024px) {
  .directory-hero-grid,
  .directory-feature-card,
  .profile-main-layout {
    grid-template-columns: 1fr;
  }

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

  .profile-side-column {
    position: static;
  }

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

  .cat-featured {
    grid-column: span 3;
  }

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

  .offer-large {
    grid-column: span 2;
  }

  .explore-layout {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-brand-col {
    grid-column: span 3;
  }

  .travel-shortcuts {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------------------------------------------------
   RESPONSIVE ? 860px (Tablet)
--------------------------------------------------- */
@media (max-width: 860px) {
  :root {
  --brand-primary: #1ABC9C;
    --section-pad: 56px;
  }

  .directory-search-grid,
  .profile-metrics,
  .profile-info-grid,
  .profile-service-grid {
    grid-template-columns: 1fr;
  }

  .profile-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .profile-gallery-item-lg {
    grid-row: auto;
    min-height: 260px;
    grid-column: span 2;
  }

  .desktop-nav,
  .header-search,
  .ghost-btn {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .header-inner {
    gap: 14px;
  }

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

  .hero-visual {
    order: -1;
  }

  .mini-service-cards {
    grid-template-columns: 1fr;
  }

  .ad-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ad-visual {
    display: none;
  }

  .search-bar {
    grid-template-columns: 1fr;
    border-radius: var(--r-md);
  }

  .search-divider {
    display: none;
  }

  .search-cta {
    border-radius: var(--r-md);
    height: 52px;
    width: 100%;
    justify-content: center;
  }

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

  .cat-featured {
    grid-column: span 2;
    flex-direction: column;
  }

  .cat-featured-img {
    width: 100%;
    padding: 16px;
    text-align: center;
  }

  .cat-featured-img img {
    margin: 0 auto;
    max-width: 140px;
  }

  .offer-grid,
  .listing-grid,
  .explore-layout,
  .utility-grid {
    grid-template-columns: 1fr;
  }

  .offer-large {
    flex-direction: column;
  }

  .offer-img-wrap {
    width: 100%;
  }

  .offer-img-wrap img {
    width: 100%;
    max-width: none;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-col {
    grid-column: span 2;
  }

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

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

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .utility-actions {
    grid-template-columns: repeat(3, 1fr);
  }

  .listing-actions {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ---------------------------------------------------
   RESPONSIVE ? 560px (Mobile)
--------------------------------------------------- */
@media (max-width: 560px) {
  :root {
  --brand-primary: #1ABC9C;
    --section-pad: 44px;
  }

  .directory-search-grid,
  .directory-category-grid,
  .profile-gallery-grid,
  .profile-info-grid,
  .profile-service-grid,
  .profile-metrics {
    grid-template-columns: 1fr;
  }

  .directory-filter-row,
  .feature-actions,
  .profile-brand-lockup {
    flex-direction: column;
    align-items: stretch;
  }

  .profile-gallery-item-lg {
    grid-column: auto;
    min-height: 220px;
  }

  .container {
    width: calc(100% - 28px);
  }

  .top-strip-inner {
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
  }

  .strip-right {
    display: none;
  }

  .hero {
    padding: 32px 0 36px;
  }

  .hero-copy h1 {
    font-size: 36px;
    letter-spacing: -0.04em;
  }

  .hero-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .metric-divider {
    display: none;
  }

  .search-shell {
    padding: 12px;
    border-radius: 20px;
  }

  .search-tabs {
    gap: 6px;
  }

  .search-tab {
    padding: 7px 12px;
    font-size: 12.5px;
  }

  .quick-tags {
    gap: 6px;
  }

  .qt-tag {
    font-size: 12px;
    padding: 6px 10px;
  }

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

  .cat-featured {
    grid-column: auto;
  }

  .offer-grid,
  .listing-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand-col {
    grid-column: auto;
  }

  .trend-list,
  .city-grid,
  .utility-actions,
  .listing-actions {
    grid-template-columns: 1fr 1fr;
  }

  .travel-shortcuts {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .cta-band {
    padding: 40px 0;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn-primary,
  .cta-btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .toast {
    bottom: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
  }
}

/* ---------------------------------------------------
   PRINT
--------------------------------------------------- */
@media print {

  .top-strip,
  .site-header,
  .cta-band,
  .site-footer,
  .toast {
    display: none;
  }

  .hero {
    padding: 16px 0;
  }

  body {
    background: white;
  }
}

/* Frontend consolidation overrides */
.nav-link.active {
  color: var(--primary);
  background: var(--primary-bg);
}

.nav-dropdown {
  padding-bottom: 10px;
  margin-bottom: -10px;
}

.dropdown-menu {
  top: 100%;
  margin-top: 6px;
}

.nav-dropdown.open .nav-link-drop svg,
.nav-dropdown:hover .nav-link-drop svg {
  transform: rotate(180deg);
}

.nav-dropdown.open .dropdown-menu,
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: none;
}

.dropdown-has-sub {
  padding-right: 14px;
}

.dropdown-sub {
  left: calc(100% + 2px);
}

.dropdown-has-sub.open .dropdown-sub,
.dropdown-has-sub:hover .dropdown-sub,
.dropdown-has-sub:focus-within .dropdown-sub {
  opacity: 1;
  pointer-events: all;
  transform: none;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--r-full);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: all var(--dur);
}

.secondary-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-bg);
}

.page-hero {
  padding: 64px 0 28px;
  background: linear-gradient(180deg, #f4fbfa 0%, #fff 100%);
}

.page-hero-inner {
  max-width: 860px;
  display: grid;
  gap: 16px;
}

.page-hero-inner h1 {
  font-size: clamp(32px, 4.8vw, 54px);
  line-height: 1.05;
}

.page-hero-inner p {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.info-page-shell,
.auth-page-shell,
.registration-page-shell {
  min-height: 60vh;
}

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

.info-section-card,
.auth-copy-card,
.auth-form-card,
.registration-side-card,
.registration-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.info-section-card {
  padding: 26px;
  display: grid;
  gap: 16px;
}

.info-section-card h2 {
  font-size: 24px;
  line-height: 1.15;
}

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

.info-point-list {
  display: grid;
  gap: 14px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
}

.info-point-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  line-height: 1.75;
}

.info-point-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-primary), #71d8c5);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.about-page-hero {
  padding: 72px 0 40px;
}

.about-page-hero-inner {
  max-width: 920px;
}

.about-story-section {
  padding-top: 12px;
}

.about-panel-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-flow {
  display: grid;
  gap: 40px;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 36px;
  align-items: center;
}

.about-split-mission {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr);
}

.about-split-copy {
  display: grid;
  gap: 18px;
}

.about-split-copy h2 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.1;
  color: var(--ink);
}

.about-split-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.about-split-media {
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(58, 96, 109, 0.14);
}

.about-split-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-mission-list {
  display: grid;
  gap: 14px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.about-mission-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.75;
}

.about-mission-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-primary), #71d8c5);
  box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.12);
}

.about-belief-inline {
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid rgba(166, 214, 206, 0.72);
}

.about-belief-inline strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}

.about-members-section {
  padding: 34px 0 8px;
}

.about-members-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 30px;
}

.about-members-heading .about-panel-label {
  margin-bottom: 0;
}

.about-members-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.12;
}

.about-members-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

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

.about-member-card {
  display: grid;
  grid-template-rows: 460px 1fr;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 54px rgba(24, 72, 79, 0.16);
}

.about-member-photo {
  position: relative;
  overflow: hidden;
  background: #155d59;
}


.about-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 280ms ease;
}


.about-member-card:nth-child(2) .about-member-photo img {
  object-position: center 20%;
  transform: scale(1.18);
}

.about-member-card:hover img {
  transform: scale(1.035);
}

.about-member-card:nth-child(2):hover .about-member-photo img {
  transform: scale(1.22);
}

.about-member-overlay {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  padding: 30px;
  color: var(--ink);
}

.about-member-role {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: 20px;
  justify-self: start;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(4, 39, 39, 0.72);
  color: #d8fff5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-member-overlay h3,
.about-member-overlay p {
  margin: 0;
}

.about-member-overlay h3 {
  font-size: clamp(27px, 2.4vw, 35px);
  line-height: 1.05;
}

.about-member-overlay p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.about-member-overlay .about-member-company {
  color: var(--brand-primary);
  font-size: 15px;
  font-weight: 700;
}

.about-member-overlay a {
  justify-self: start;
  margin-top: 4px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.benefits-page-section {
  padding-top: 12px;
}

.benefits-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 36px;
  align-items: center;
}

.benefits-feature-copy {
  display: grid;
  gap: 18px;
}

.benefits-feature-copy h2 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  color: var(--ink);
}

.benefits-feature-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.benefits-feature-media {
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(58, 96, 109, 0.14);
}

.benefits-feature-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.benefits-list-section,
.benefits-summary-section {
  padding-top: 12px;
}

.about-section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
  max-width: 760px;
}

.about-section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.14;
  color: var(--ink);
}

.about-section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.benefits-summary-section .about-section-heading {
  gap: 14px;
  margin-bottom: 34px;
}

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

.benefit-card {
  display: grid;
  gap: 12px;
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(166, 214, 206, 0.72);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(58, 96, 109, 0.08);
}

.benefit-card-index {
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.benefit-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

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

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

.benefits-summary-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(166, 214, 206, 0.72);
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(58, 96, 109, 0.06);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.6;
}

.benefits-summary-icon {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-primary), #71d8c5);
  box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.12);
}

.faq-page-section {
  padding-top: 12px;
}

.faq-groups {
  display: grid;
  gap: 36px;
}

.faq-group {
  display: grid;
  gap: 18px;
}

.faq-section-heading {
  margin-bottom: 6px;
}

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

.faq-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(166, 214, 206, 0.72);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(58, 96, 109, 0.08);
}

.faq-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  color: var(--ink);
}

.faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.faq-point-list {
  display: grid;
  gap: 12px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.faq-point-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  line-height: 1.7;
}

.faq-point-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-primary), #71d8c5);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.auth-section,
.registration-section {
  padding: 24px 0 72px;
}

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

.auth-copy-card,
.auth-form-card {
  padding: 28px;
}

.auth-copy-card {
  display: grid;
  gap: 18px;
}

.auth-copy-card h1 {
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.08;
}

.auth-copy-card p,
.auth-benefit-list span,
.auth-card-foot {
  color: var(--muted);
  line-height: 1.7;
}

.auth-benefit-list {
  display: grid;
  gap: 16px;
}

.auth-benefit-list div {
  position: relative;
  display: grid;
  gap: 4px;
  padding-left: 24px;
}

.auth-benefit-list div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-primary), #71d8c5);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.auth-form-card {
  display: grid;
  gap: 20px;
}

.auth-card-head {
  display: grid;
  gap: 8px;
}

.auth-form,
.profile-enquiry-form {
  display: grid;
  gap: 16px;
}

.auth-form label,
.profile-enquiry-form label,
.form-grid label {
  display: grid;
  gap: 8px;
}

.auth-form span,
.profile-enquiry-form span,
.form-grid label span,
.checkbox-group legend {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.auth-form input,
.profile-enquiry-form input,
.profile-enquiry-form textarea,
.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  min-height: 50px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  font: inherit;
  transition: border-color var(--dur), box-shadow var(--dur);
}

.auth-form textarea,
.profile-enquiry-form textarea,
.form-grid textarea {
  min-height: 120px;
  resize: vertical;
}

.form-choice-row {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 12px !important;
}

.form-choice-row input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  padding: 0;
  margin: 2px 0 0;
  border-radius: 4px;
  background: #fff;
  accent-color: var(--primary);
  align-self: start;
}

.form-choice-row .form-choice-copy {
  display: grid;
  gap: 4px;
  color: var(--text);
}

.form-choice-row .form-choice-copy strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.form-choice-row .form-choice-copy small {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--muted);
}

.auth-form input:not([type="checkbox"]):not([type="radio"]):focus,
.profile-enquiry-form input:not([type="checkbox"]):not([type="radio"]):focus,
.profile-enquiry-form textarea:focus,
.form-grid input:not([type="checkbox"]):not([type="radio"]):focus,
.form-grid textarea:focus,
.form-grid select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26, 188, 156, 0.12);
}

.form-choice-inline input:focus,
.dashboard-action-form .checkbox-group input:focus,
.directory-check input:focus,
.checkbox-group input:focus {
  outline: none;
  box-shadow: none;
}

.form-choice-inline input:focus-visible,
.dashboard-action-form .checkbox-group input:focus-visible,
.directory-check input:focus-visible,
.checkbox-group input:focus-visible {
  outline: 2px solid rgba(26, 188, 156, 0.28);
  outline-offset: 2px;
}

.auth-inline-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.auth-submit-btn {
  width: 100%;
  justify-content: center;
}

.registration-layout {
  display: grid;
  grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.registration-side-card,
.registration-form-card {
  padding: 24px;
}

.registration-step-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.registration-step-list li {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 16px;
    background: #f8fafc;
    color: var(--muted);
    cursor: pointer;
    transition: background-color var(--dur), transform var(--dur), box-shadow var(--dur), color var(--dur);
}

.registration-step-list li:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-xs);
}

.registration-step-list li:focus-visible {
    outline: 3px solid rgba(26, 188, 156, 0.22);
    outline-offset: 2px;
}

.registration-step-list li span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
}

.registration-step-list li.active,
.registration-step-list li.complete {
  background: var(--primary-bg);
  color: var(--text);
}

.registration-step-list li.active span,
.registration-step-list li.complete span {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.registration-progress {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.registration-progress-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #eaf3f2;
  overflow: hidden;
}

.registration-progress-bar span {
  display: block;
  height: 100%;
  width: 10%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1abc9c, #148a74);
  transition: width .25s ease;
}

.registration-step {
  display: none;
}

.registration-step.active {
  display: block;
}

.registration-step-head {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.registration-step-head h2 {
  font-size: 28px;
  line-height: 1.1;
}

.form-grid {
  display: grid;
  gap: 18px;
  align-items: start;
}

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

.form-grid.one-col {
  grid-template-columns: minmax(0, 1fr);
}

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

.checkbox-group {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fcfefe;
}

.checkbox-group label,
.directory-check {
  display: inline-flex;
  gap: 10px;
  align-items: flex-start;
}

.checkbox-group input,
.directory-check input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
}

.checkbox-group label.is-selection-capped {
  opacity: 0.55;
  cursor: not-allowed;
}

.selection-limit-note {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.registration-step-copy {
  color: var(--muted);
  max-width: 860px;
}

.category-picker-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fdfc 100%);
  box-shadow: var(--shadow-xs);
}

.category-picker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.category-picker-head strong {
  display: block;
  font-size: 22px;
  color: var(--text);
}

.category-picker-head small {
  color: var(--muted);
  font-size: 14px;
}

.category-picker-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--r-full);
  background: #ecfbf7;
  color: var(--primary-dk);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

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

.category-picker-option {
  display: block;
}

.category-picker-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.category-picker-option-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 100%;
  padding: 15px 16px;
  border: 1.5px solid #dce9e7;
  border-radius: 16px;
  background: #fff;
  transition: border-color var(--dur), background var(--dur), box-shadow var(--dur), transform var(--dur);
  cursor: pointer;
}

.category-picker-option:hover .category-picker-option-box {
  border-color: #9ad9cc;
  box-shadow: 0 0 0 4px rgba(26, 188, 156, 0.06);
  transform: translateY(-1px);
}

.category-picker-option.is-selected .category-picker-option-box {
  border-color: var(--primary);
  background: linear-gradient(180deg, #f4fcfa 0%, #ecfbf7 100%);
  box-shadow: 0 0 0 4px rgba(26, 188, 156, 0.08);
}

.category-picker-checkmark {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 1.5px solid #b8ceca;
  border-radius: 6px;
  background: #fff;
}

.category-picker-option.is-selected .category-picker-checkmark {
  border-color: var(--primary);
  background: var(--primary);
}

.category-picker-option.is-selected .category-picker-checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.category-picker-option-copy {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

@media (max-width: 1023px) {
  .category-picker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .category-picker-head {
    grid-template-columns: 1fr;
    display: grid;
  }

  .category-picker-grid {
    grid-template-columns: 1fr;
  }
}
.upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.upload-dropzone {
  position: relative;
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 124px;
  padding: 22px;
  border: 1.5px dashed #b7d8d1;
  border-radius: 18px;
  background: linear-gradient(180deg, #f9fefd 0%, #f4fbfa 100%);
  text-align: center;
  transition: border-color var(--dur), background var(--dur), box-shadow var(--dur), transform var(--dur);
  cursor: pointer;
}

.upload-dropzone:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26, 188, 156, 0.08);
}

.upload-dropzone.is-dragover {
  border-color: var(--primary-dk);
  background: #ecfbf7;
  box-shadow: 0 0 0 5px rgba(26, 188, 156, 0.14);
  transform: translateY(-1px);
}

.upload-dropzone.has-files {
  border-color: rgba(16, 185, 129, 0.42);
  background: linear-gradient(180deg, #f6fffc 0%, #ecfbf7 100%);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.08);
}

.upload-dropzone-compact {
  min-height: 104px;
}

.upload-dropzone-copy {
  display: grid;
  gap: 8px;
}

.upload-dropzone-copy strong {
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}

.upload-dropzone-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  word-break: break-word;
}

.upload-dropzone-state {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.upload-dropzone-state.is-success {
  color: #0f9f77;
}

.upload-preview-stack {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.upload-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.upload-preview-header strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.upload-preview-card {
  display: grid;
  place-items: center;
  min-height: 116px;
  padding: 12px;
  border: 1px solid #d7ebe5;
  border-radius: 18px;
  background: #f8fcfb;
  overflow: hidden;
}

.upload-preview-card-logo img {
  display: block;
  max-width: 100%;
  max-height: 132px;
  border-radius: 14px;
  object-fit: contain;
}

.upload-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 12px;
}

.upload-preview-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #d7ebe5;
  background: #f8fcfb;
}

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

.upload-preview-thumb-more {
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(180deg, #eef8f5 0%, #def2ed 100%);
}

.registration-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.registration-actions .cta-btn-primary,
.registration-actions .cta-btn-ghost {
  min-width: 170px;
  justify-content: center;
}

.registration-actions .cta-btn-ghost {
  background: #f5fbfa;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}

.registration-actions .cta-btn-ghost:hover {
  background: var(--primary-bg);
  color: var(--primary-dk);
  border-color: #b8d8cf;
}

.registration-actions .cta-btn-ghost:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.required-indicator {
  color: #dc2626;
  font-style: normal;
  margin-left: 4px;
}

.step-error {
  margin-top: -8px;
}

.profile-enquiry-form {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.profile-enquiry-form h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

@media (max-width: 1200px) {
  .header-actions .secondary-btn {
      display: none;
    }

    .header-action-link {
      display: none;
    }

    .brand-logo-image {
      height: 50px;
      max-width: 280px;
    }

    .auth-grid,
    .registration-layout {
      grid-template-columns: 1fr;
    }
}

@media (max-width: 1023px) {
  .desktop-nav {
    display: none;
  }

  .header-search {
    max-width: none;
    width: 100%;
    order: 3;
  }

  .header-inner {
    flex-wrap: wrap;
    row-gap: 14px;
  }

  .header-actions {
    margin-left: auto;
  }
}

@media (max-width: 767px) {
  .page-hero {
    padding: 42px 0 22px;
  }

  .page-hero-inner h1,
  .auth-copy-card h1 {
    font-size: 34px;
  }

  .info-sections-grid,
  .form-grid.two-col,
  .about-split,
  .about-split-mission,
  .benefits-feature-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .info-section-card,
  .auth-copy-card,
  .auth-form-card,
  .registration-side-card,
  .registration-form-card {
    padding: 20px;
    border-radius: 20px;
  }

  .registration-actions .cta-btn-primary,
  .registration-actions .cta-btn-ghost {
    width: 100%;
  }

  .page-hero-actions,
  .auth-inline-row {
    flex-direction: column;
    align-items: stretch;
  }

  .about-mission-list li {
    font-size: 16px;
  }

  .about-split-copy h2 {
    font-size: 32px;
  }

  .about-split-media {
    min-height: 280px;
    border-radius: 22px;
  }

  .about-members-grid {
    grid-template-columns: 1fr;
  }

  .about-member-card {
    grid-template-rows: 380px 1fr;
    border-radius: 22px;
  }


  .about-member-overlay {
    padding: 24px;
  }

  .benefits-feature-media {
    min-height: 280px;
    border-radius: 22px;
  }

  .benefits-list-grid,
  .benefits-summary-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 22px;
    border-radius: 20px;
  }

  .benefit-card h3 {
    font-size: 20px;
  }

  .header-actions .primary-btn {
    display: none;
  }

  .brand-logo-image {
    height: 34px;
    max-width: 160px;
  }

  .brand-support {
    display: none;
  }

  .footer-brand-logo {
    height: 72px;
  }

  .registration-step-list li {
    grid-template-columns: 30px 1fr;
    padding: 10px 12px;
  }

  .registration-step-list li span {
    width: 30px;
    height: 30px;
  }
}

/* Frontend layout refresh: hero, category grid, directory list */
.hero-swap-layout {
  padding: 20px 0 26px;
  background: linear-gradient(180deg, #edf7ff 0%, #f6fbff 100%);
}

.hero-shell {
  display: grid;
  gap: 18px;
  min-height: calc(100vh - 148px);
  align-content: start;
}

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

.hero-cat-item {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(200, 218, 234, 0.95);
  box-shadow: 0 10px 24px rgba(52, 73, 94, 0.05);
}

.hero-cat-item span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.hero-grid.hero-grid-swap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .85fr);
  gap: 28px;
  align-items: center;
}

.hero-grid-swap .hero-copy {
  padding: 18px 6px 18px 2px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-grid-swap .hero-copy h1 {
  font-size: 50px;
  line-height: .98;
  letter-spacing: -0.05em;
  margin: 20px 0 20px;
  max-width: 720px;
}

.hero-grid-swap .hero-copy h1 em {
  color: #10bcd2;
  font-style: normal;
}

.hero-grid-swap .hero-copy p {
  max-width: 640px;
  color: #6f93a1;
  font-size: 18px;
  line-height: 1.72;
}

.hero-grid-swap .hero-cta-group {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

/* .hero-slider-band .ad-carousel-card {
  min-height: 442px;
  border-radius: 34px;
  padding: 18px 18px 22px;
  border: 1px solid rgba(210, 228, 239, 0.9);
  box-shadow: 0 26px 54px rgba(76, 110, 136, 0.12);
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(10px);
  overflow: hidden;
} */

.hero-slider-band .ad-carousel-header {
  position: absolute;
  inset: 22px 20px auto 20px;
  z-index: 3;
}

.hero-slider-band .ad-slider {
  background: transparent !important;


}

.hero-slider-band .ad-slide {
  display: none !important;
  width: 100%;
  height: 100%;
  padding: 0;
  animation: fadeIn .5s forwards;
}

.hero-slider-band .ad-slide.active {
  display: block !important;
}

.hero-slider-band .ad-visual {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  padding: 0;
}

.hero-slider-band .ad-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 30px rgba(60, 91, 115, 0.12);
}

.hero-slider-band .ad-slide.active .ad-visual img {
  transform: scale(1.02);
}

.hero-grid-swap .hci-icon,
.category-strip-icon,
.subcategory-chip-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d6efed;
  flex-shrink: 0;
}

.hero-grid-swap .hci-icon img,
.category-strip-icon img,
.subcategory-chip-icon img {
  width: 26px;
  height: 26px;
}

.category-strip-section {
  padding-top: 34px;
}

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

.category-strip-card {
  min-height: 70px;
    display: flex;
    align-items: center;
    box-shadow: rgba(52, 73, 94, 0.05) 0px 10px 24px;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(200, 218, 234, 0.95);
    border-image: initial;
}

.category-strip-copy {
  display: grid;
  gap: 6px;
}

.category-strip-copy h3 {
  font-size: 16px;
  line-height: 1.15;
  color: var(--text);
  overflow-wrap: anywhere;
}

.category-strip-copy p {
  color: var(--muted);
  font-size: 14px;
  margin: 0px;
}

.directory-hero-compact {
  padding: 22px 0 18px;
  background: linear-gradient(180deg, #fdfefe 0%, #f7fbfb 100%);
  border-bottom: 1px solid var(--line-lt);
}

.directory-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 16px;
}

.directory-breadcrumb strong,
.directory-breadcrumb a:hover {
  color: var(--text);
}

.directory-search-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  background: #fff;
  border: 1px solid #d7e5e3;
  border-radius: 22px;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}

.directory-search-bar input,
.directory-search-bar button,
.directory-search-region {
  min-height: 64px;
}

.directory-search-bar input {
  padding: 0 22px;
  background: transparent;
}

.directory-search-region {
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-left: 1px solid var(--line);
  color: var(--text-2);
  font-weight: 600;
  background: #fff;
}

.directory-search-bar button {
  min-width: 140px;
  padding: 0 22px;
  border-radius: 0;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  font-weight: 800;
}

.directory-shell-section {
  padding-top: 28px;
}

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

.directory-sidebar {
  position: static;
}

.directory-filter-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(52, 73, 94, 0.06);
}

.directory-filter-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.directory-filter-card-head h2 {
  font-size: 20px;
}

.directory-clear-btn {
  background: transparent;
  color: #2563eb;
  font-weight: 700;
}

.directory-filter-group {
  display: grid;
  gap: 12px;
  padding: 18px 20px;
  border-top: 1px solid var(--line-lt);
}

.directory-filter-group:first-of-type {
  border-top: 0;
}

.directory-filter-group h3 {
  font-size: 16px;
  line-height: 1.2;
}

.directory-filter-options {
  display: grid;
  gap: 10px;
}

.directory-filter-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 16px;
  background: #f8fbfb;
  border: 1px solid #edf3f2;
  transition: all var(--dur) var(--ease);
}

.directory-filter-option:hover {
  border-color: #cfe4de;
  background: #f4fbf9;
}

.directory-filter-option.active {
  border-color: #9fd6d0;
  background: linear-gradient(180deg, #f1fcf8 0%, #ffffff 100%);
}

.directory-filter-option input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  accent-color: var(--primary);
}

.directory-filter-option-copy {
  display: grid;
  gap: 2px;
}

.directory-filter-option-copy strong {
  font-size: 14px;
  color: var(--text);
}

.directory-filter-option-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e3ecea;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.directory-filter-option-toggle {
  grid-template-columns: 18px minmax(0, 1fr);
}

.directory-list-head {
  margin-bottom: 18px;
}

.directory-list-head h1 {
  font-size: clamp(26px, 3vw, 40px);
  margin: 8px 0 10px;
}

.directory-list-head p {
  color: var(--muted);
  max-width: 760px;
  line-height: 1.7;
  margin-bottom: 10px;
}

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

.subcategory-grid-card {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #dce8f2;
  color: var(--text);
  text-align: left;
  box-shadow: 0 10px 24px rgba(52, 73, 94, 0.04);
}

.subcategory-grid-card.active {
  border-color: #9fd6d0;
  background: linear-gradient(180deg, #f2fcfa 0%, #ffffff 100%);
}

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

.directory-row-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 18px;
  align-items: start;
  min-width: 0;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #e5ecec;
  box-shadow: 0 14px 32px rgba(52, 73, 94, 0.05);
}

.directory-row-card-featured {
  background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
  border-color: #f2e5be;
}

.directory-row-main {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-width: 0;
}

.directory-row-logo {
  width: 82px;
  height: 82px;
  border-radius: 22px;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}

.directory-row-copy {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.directory-row-topline,
.directory-row-meta,
.directory-row-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.directory-row-title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.directory-row-copy h3 {
  font-size: 32px;
  line-height: 1.06;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.directory-title-badge {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 34px;
}

.profile-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.profile-title-wrap h1 {
  margin: 0;
}

.profile-title-badge {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 40px;
}

.directory-card-copy {
  color: var(--text-2);
  line-height: 1.72;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.directory-row-meta {
  color: var(--muted);
  font-size: 14px;
}

.directory-row-meta span,
.directory-row-chips span,
.mini-badge {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.directory-info-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef7f6;
  color: var(--primary-dk);
  font-size: 12px;
  font-weight: 700;
}

.directory-row-actions {
  display: grid;
  gap: 10px;
}

.directory-row-actions .la-btn {
  min-height: 44px;
  justify-content: center;
}

.directory-row-actions .la-call {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
}

.directory-row-actions .la-whatsapp {
  background: #e8f7ee;
  color: #1c8f50;
}

.directory-empty-state {
  padding: 38px 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
}

@media (max-width: 1180px) {
  .hero-grid.hero-grid-swap,
  .directory-shell-layout,
  .directory-row-card {
    grid-template-columns: 1fr;
  }

  .directory-sidebar {
    position: static;
  }

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

@media (max-width: 860px) {
  .hero-grid-swap .hero-categories-grid-compact,
  .category-strip-grid,
  .directory-subcategory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-slider-band .ad-slide {
    grid-template-columns: 1fr;
  }

  .directory-search-bar {
    grid-template-columns: 1fr;
  }

  .directory-search-region {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .directory-search-bar button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-grid-swap .hero-copy,
  .hero-grid-swap .hero-categories-grid-compact,
  .directory-row-card,
  .directory-filter-card {
    border-radius: 22px;
  }

  .hero-grid-swap .hero-copy {
    padding: 26px 22px;
  }

  .hero-grid-swap .hero-copy h1 {
    font-size: 34px;
  }

  .directory-row-main {
    grid-template-columns: 1fr;
  }

  .directory-row-logo {
    width: 72px;
    height: 72px;
    font-size: 24px;
  }

  .directory-row-copy h3 {
    font-size: 26px;
  }

  .directory-row-actions {
    grid-template-columns: 1fr;
  }

  .hero-grid-swap .hero-categories-grid-compact,
  .category-strip-grid,
  .directory-subcategory-grid {
    gap: 12px;
  }

  .hero-cat-item,
  .category-strip-card,
  .subcategory-grid-card {
    min-height: 88px;
    padding: 14px 12px;
    gap: 10px;
    border-radius: 18px;
  }

  .hero-grid-swap .hci-icon,
  .category-strip-icon,
  .subcategory-chip-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .hero-grid-swap .hci-icon img,
  .category-strip-icon img,
  .subcategory-chip-icon img {
    width: 20px;
    height: 20px;
  }

  .hero-cat-item span,
  .category-strip-copy h3,
  .subcategory-grid-card span:last-child {
    font-size: 14px;
    line-height: 1.25;
  }

  .category-strip-copy p {
    font-size: 12px;
  }
}

.auth-inline-row label.directory-check {
    display: flex;
    align-items: center;
}

.form-alert {
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.6;
}

.form-alert ul {
  list-style: disc;
  margin: 8px 0 0 20px;
}

.form-alert-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #166534;
}

.form-alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.field-error {
  display: block;
  margin-top: 6px;
  color: #c2410c;
  font-size: 12px;
  font-weight: 600;
}

.inline-action-form,
.mobile-logout-form {
  display: inline-flex;
}

.mobile-logout-form .drawer-cta {
  width: 100%;
}

.dashboard-shell {
  padding-bottom: 72px;
}

.admin-route .dashboard-shell {
  padding-left: 0;
}

.admin-route {
  overflow-x: hidden;
}

.admin-route .site-header::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 318px;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbfa 100%);
  border-right: 1px solid rgba(145, 211, 201, 0.72);
  pointer-events: none;
  transition: width .24s ease;
  z-index: 0;
}

.admin-route .header-inner {
  position: relative;
  z-index: 1;
}

.admin-sidebar-collapsed.admin-route .site-header::before {
  width: 84px;
}

.admin-route .page-hero {
  padding: 38px 0 20px;
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.08), transparent 28%),
    linear-gradient(180deg, #f5fcfb 0%, #ffffff 100%);
}

.admin-sidebar-shell {
  position: fixed;
  top: 60px;
  bottom: var(--admin-sidebar-footer-space, 0px);
  left: 0;
  width: 318px;
  z-index: 40;
  overflow: visible;
  transition: width .24s ease, bottom .08s linear;
}

.admin-sidebar-card {
  display: grid;
  align-content: start;
  gap: 18px;
  height: 100%;
  overflow-y: auto;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbfa 100%);
  border: 0;
  border-right: 1px solid rgba(145, 211, 201, 0.72);
  border-radius: 0;
  box-shadow: 14px 0 36px rgba(31, 70, 84, 0.08);
  padding: 28px 20px 22px;
  backdrop-filter: blur(14px);
  scrollbar-width: thin;
}

.admin-sidebar-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(166, 214, 206, 0.48);
}

.admin-sidebar-card h2 {
  margin-top: 8px;
  font-size: 22px;
  line-height: 1.08;
}

.admin-sidebar-copy {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.admin-sidebar-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-height: 42px;
  border: 1px solid rgba(166, 214, 206, 0.76);
  border-radius: 14px;
  background: #f4fbfa;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.admin-sidebar-toggle:hover {
  background: #e8f8f5;
  border-color: rgba(16, 185, 129, 0.34);
  transform: translateY(-1px);
}

.admin-sidebar-toggle-line {
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .22s ease, width .22s ease;
}

.admin-sidebar-toggle-line:first-child {
  transform: translateY(-4px);
}

.admin-sidebar-toggle-line:last-child {
  transform: translateY(4px);
}

.admin-sidebar-nav {
  display: grid;
  gap: 8px;
}

.admin-sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(216, 236, 232, 0.9);
  background: rgba(248, 252, 252, 0.86);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.admin-sidebar-link:hover {
  transform: translateY(-1px);
  border-color: #bfe8e1;
  background: #f1fbfa;
}

.admin-sidebar-link.active {
  border-color: rgba(20, 184, 166, 0.32);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.16), rgba(59, 130, 246, 0.09));
  color: var(--brand);
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.08);
}

.admin-sidebar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 10px;
  background: #e8f8f5;
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.admin-sidebar-link.active .admin-sidebar-icon {
  background: var(--brand-primary);
  color: #fff;
}

.admin-sidebar-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-sidebar-collapsed .admin-sidebar-shell {
  width: 84px;
}

.admin-sidebar-collapsed .admin-sidebar-card {
  padding: 18px 12px;
}

.admin-sidebar-collapsed .admin-sidebar-head {
  grid-template-columns: 1fr;
  justify-items: center;
  padding-bottom: 12px;
}

.admin-sidebar-collapsed .admin-sidebar-title-wrap,
.admin-sidebar-collapsed .admin-sidebar-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.admin-sidebar-collapsed .admin-sidebar-toggle-line:first-child {
  width: 14px;
  transform: translateY(0) rotate(45deg);
}

.admin-sidebar-collapsed .admin-sidebar-toggle-line:last-child {
  width: 14px;
  transform: translateY(0) rotate(-45deg);
}

.admin-sidebar-collapsed .admin-sidebar-link {
  justify-content: center;
  padding: 10px;
}

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

.admin-route .page-hero > .container,
.admin-route .dashboard-shell > .section > .container {
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.admin-route .dashboard-content-stack > .container,
.admin-route .dashboard-shell > .section > .container,
.admin-route .dashboard-shell > .page-hero > .container {
  padding-left: 352px;
  padding-right: 34px;
  transition: padding-left .24s ease;
}

.admin-sidebar-collapsed.admin-route .dashboard-content-stack > .container,
.admin-sidebar-collapsed.admin-route .dashboard-shell > .section > .container,
.admin-sidebar-collapsed.admin-route .dashboard-shell > .page-hero > .container {
  padding-left: 118px;
}

.admin-route .site-footer .footer-inner,
.admin-route .site-footer .footer-bottom-inner {
  padding-left: 352px;
  transition: padding-left .24s ease;
}

.admin-sidebar-collapsed.admin-route .site-footer .footer-inner,
.admin-sidebar-collapsed.admin-route .site-footer .footer-bottom-inner {
  padding-left: 118px;
}

.admin-route .site-footer {
  position: relative;
  z-index: 1;
}

.dashboard-sidebar-card,
.dashboard-panel,
.dashboard-action-form {
  background: #fff;
  border: 1px solid rgba(166, 214, 206, 0.68);
  border-radius: 28px;
  box-shadow: 0 20px 44px rgba(58, 96, 109, 0.08);
}

.dashboard-sidebar-card,
.dashboard-panel {
  padding: 30px 32px;
  overflow: hidden;
}

.dashboard-sidebar-card {
  position: sticky;
  top: 124px;
}

.dashboard-content-stack {
  display: grid;
  gap: 24px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.dashboard-stat-list {
  display: grid;
  gap: 16px;
}

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

.dashboard-stat-list div,
.dashboard-detail-grid div {
  padding: 18px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fbfefe 0%, #f5fbfb 100%);
  border: 1px solid #dfeeed;
  min-width: 0;
}

.admin-summary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dashboard-metric-card span {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
}

.dashboard-stat-list strong,
.dashboard-detail-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dashboard-stat-list span,
.dashboard-detail-grid span {
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.dashboard-panel-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.dashboard-panel-head h2 {
  font-size: clamp(22px, 2vw, 30px);
}

.dashboard-panel,
.dashboard-embedded-form,
.form-grid,
.form-grid label {
  min-width: 0;
}

.admin-route .form-grid input,
.admin-route .form-grid textarea,
.admin-route .form-grid select {
  width: 100%;
  max-width: 100%;
}

.dashboard-note-card {
  margin-top: 18px;
  padding: 20px 22px;
  border-radius: 20px;
  background: #f0fdfb;
  border: 1px solid #ccefe8;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.dashboard-note-card strong {
  display: block;
  margin-bottom: 8px;
}

.dashboard-note-card p {
  color: var(--muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.dashboard-note-card-warning {
  background: #fff7ed;
  border-color: #fed7aa;
}

.dashboard-note-card-info {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.dashboard-note-card-success {
  background: #ecfdf5;
  border-color: #a7f3d0;
}

.dashboard-note-card-error {
  background: #fef2f2;
  border-color: #fecaca;
}

.admin-panel-strong {
  border-color: rgba(166, 214, 206, 0.82);
  box-shadow: 0 24px 54px rgba(58, 96, 109, 0.1);
}

.dashboard-embedded-form {
  display: grid;
  gap: 18px;
}

.admin-route .dashboard-panel > .auth-form-card,
.admin-route .dashboard-panel > .dashboard-embedded-form {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.outreach-actions-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

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

.outreach-output-card {
  margin-top: 0;
  min-height: 100%;
  min-width: 0;
}

.outreach-value-list {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
  word-break: break-word;
}

.admin-cell-stack {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.admin-cell-title {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.admin-cell-meta {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.plan-choice-fieldset {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  border: 0;
  min-inline-size: 0;
}

.plan-choice-fieldset legend {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.plan-choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.plan-choice-card {
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: flex-start;
  gap: 28px;
  padding: 28px 36px;
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  border-left: 5px solid rgba(15, 23, 42, 0.15);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
  cursor: pointer;
  transition: transform var(--dur), border-color var(--dur), box-shadow var(--dur), background var(--dur), border-left-color var(--dur);
  overflow: hidden;
}

/* Tier specific defaults */
.plan-choice-card.plan-standard {
  border-left-color: #94A3B8;
}
.plan-choice-card.plan-tourism-hub-member {
  border-left-color: #2DD4BF;
}
.plan-choice-card.plan-premium {
  border-left-color: #818CF8;
}

.plan-choice-card input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.plan-choice-indicator {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-height: 32px;
  border: 2px solid rgba(15, 23, 42, 0.18);
  border-radius: 999px;
  background: #fff;
  transition: border-color var(--dur), box-shadow var(--dur), background var(--dur);
}

.plan-choice-indicator-dot {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--brand-primary);
  transform: scale(0);
  opacity: 0;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.plan-card-col-left {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 4px;
}

.plan-card-title-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.plan-card-title {
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.plan-card-badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 0.8rem;
}

/* Custom badges per tier */
.plan-standard .plan-card-badge {
  background: rgba(148, 163, 184, 0.12);
  color: #475569;
}
.plan-tourism-hub-member .plan-card-badge {
  background: rgba(13, 148, 136, 0.1);
  color: #0D9488;
}
.plan-premium .plan-card-badge {
  background: rgba(79, 70, 229, 0.1);
  color: #4F46E5;
}

/* Combined Column styling */
.plan-card-col-right-combined {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 1px solid rgba(15, 23, 42, 0.06);
  padding-left: 32px;
}

.plan-card-price-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.plan-card-price {
  color: var(--brand-primary);
  font-weight: 800;
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.plan-premium .plan-card-price {
  color: #4F46E5;
}

.plan-card-status {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.plan-card-summary {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.plan-card-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink);
  line-height: 1.35;
}

.feature-check-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: #10B981;
}

/* Hover effects */
.plan-choice-card:hover {
  transform: translateY(-2px) scale(1.005);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
}
.plan-choice-card.plan-standard:hover {
  border-color: rgba(148, 163, 184, 0.3);
}
.plan-choice-card.plan-tourism-hub-member:hover {
  border-color: rgba(13, 148, 136, 0.3);
}
.plan-choice-card.plan-premium:hover {
  border-color: rgba(79, 70, 229, 0.3);
}

/* Checked/Active states */
.plan-choice-card.plan-standard:has(input:checked) {
  border-color: #94A3B8;
  border-left-color: #475569;
  background: linear-gradient(180deg, #F8FAFC 0%, #ffffff 100%);
  box-shadow: 0 15px 35px rgba(148, 163, 184, 0.1);
}
.plan-choice-card.plan-tourism-hub-member:has(input:checked) {
  border-color: #0D9488;
  border-left-color: #0F766E;
  background: linear-gradient(180deg, #F0FDF9 0%, #ffffff 100%);
  box-shadow: 0 15px 35px rgba(13, 148, 136, 0.1);
}
.plan-choice-card.plan-premium:has(input:checked) {
  border-color: #4F46E5;
  border-left-color: #3730A3;
  background: linear-gradient(180deg, #EEF2FF 0%, #ffffff 100%);
  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.1);
}

/* Indicator checked styling based on tier */
.plan-standard input:checked + .plan-choice-indicator {
  border-color: #475569;
  box-shadow: 0 0 0 5px rgba(148, 163, 184, 0.15);
}
.plan-standard input:checked + .plan-choice-indicator .plan-choice-indicator-dot {
  background: #475569;
}

.plan-tourism-hub-member input:checked + .plan-choice-indicator {
  border-color: #0D9488;
  box-shadow: 0 0 0 5px rgba(13, 148, 136, 0.15);
}
.plan-tourism-hub-member input:checked + .plan-choice-indicator .plan-choice-indicator-dot {
  background: #0D9488;
}

.plan-premium input:checked + .plan-choice-indicator {
  border-color: #4F46E5;
  box-shadow: 0 0 0 5px rgba(79, 70, 229, 0.15);
}
.plan-premium input:checked + .plan-choice-indicator .plan-choice-indicator-dot {
  background: #4F46E5;
}

.plan-choice-card input:checked + .plan-choice-indicator .plan-choice-indicator-dot {
  transform: scale(1);
  opacity: 1;
}

.plan-choice-card:has(input:checked) .plan-choice-indicator-dot {
  transform: scale(1);
  opacity: 1;
}

.plan-benefit-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.dashboard-empty-state {
  padding: 22px;
  border-radius: 18px;
  background: #f8fbfb;
  border: 1px dashed #cbdede;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.dashboard-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

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

.dashboard-admin-actions {
  display: grid;
  gap: 24px;
}

.dashboard-action-form {
  padding: 24px;
}

.dashboard-action-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
}

.form-choice-inline-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.form-choice-inline,
.dashboard-action-form .checkbox-group label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.form-choice-inline input,
.dashboard-action-form .checkbox-group input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  flex: 0 0 18px;
  margin: 0;
  accent-color: var(--primary);
}

.dashboard-action-form textarea {
  min-height: 120px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #f8fbfb;
  color: var(--text);
  resize: vertical;
}

.danger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(220, 38, 38, 0.16);
  border-radius: 16px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(220, 38, 38, 0.18);
  transition: transform var(--dur), box-shadow var(--dur), filter var(--dur);
}

.danger-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(220, 38, 38, 0.24);
  filter: saturate(1.05);
}

.auth-action-stack {
  display: grid;
  gap: 12px;
}

.admin-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid #e2efee;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfefe 100%);
  overscroll-behavior-x: contain;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
  table-layout: fixed;
}

.admin-table th,
.admin-table td {
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid #edf3f2;
  vertical-align: middle;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.admin-table th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: rgba(245, 251, 250, 0.92);
  white-space: nowrap;
}

.admin-table tbody tr {
  transition: background-color .18s ease;
}

.admin-table tbody tr:hover {
  background: rgba(240, 253, 251, 0.6);
}

.admin-outreach-table .admin-table th:nth-child(1),
.admin-outreach-table .admin-table td:nth-child(1) {
  width: 18%;
}

.admin-outreach-table .admin-table th:nth-child(2),
.admin-outreach-table .admin-table td:nth-child(2) {
  width: 24%;
}

.admin-outreach-table .admin-table th:nth-child(3),
.admin-outreach-table .admin-table td:nth-child(3),
.admin-outreach-table .admin-table th:nth-child(4),
.admin-outreach-table .admin-table td:nth-child(4) {
  width: 17%;
}

.admin-outreach-table .admin-table th:nth-child(5),
.admin-outreach-table .admin-table td:nth-child(5),
.admin-outreach-table .admin-table th:nth-child(6),
.admin-outreach-table .admin-table td:nth-child(6),
.admin-outreach-table .admin-table th:nth-child(7),
.admin-outreach-table .admin-table td:nth-child(7) {
  width: 12%;
}

.admin-outreach-table .admin-table {
  min-width: 820px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.status-pill-pending {
  background: #fef3c7;
  color: #92400e;
}

.status-pill-approved,
.status-pill-active {
  background: #dcfce7;
  color: #166534;
}

.status-pill-rejected {
  background: #fee2e2;
  color: #991b1b;
}

.status-pill-paid {
  background: #dcfce7;
  color: #166534;
}

.status-pill-active {
  background: #dcfce7;
  color: #166534;
}

.status-pill-expiring_soon,
.status-pill-in_grace {
  background: #fef3c7;
  color: #92400e;
}

.status-pill-expired {
  background: #fee2e2;
  color: #991b1b;
}

.status-pill-failed,
.status-pill-cancelled {
  background: #fee2e2;
  color: #991b1b;
}

.status-pill-new {
  background: #dbeafe;
  color: #1d4ed8;
}

.status-pill-contacted {
  background: #ede9fe;
  color: #6d28d9;
}

.status-pill-qualified {
  background: #dcfce7;
  color: #166534;
}

.status-pill-closed {
  background: #e5e7eb;
  color: #374151;
}

.status-pill-spam {
  background: #fee2e2;
  color: #991b1b;
}

.payment-inline-status {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: #f8fbff;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.payment-inline-status:empty {
  display: none;
}

.payment-inline-status-info {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.payment-inline-status-success {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #047857;
}

.payment-inline-status-warning {
  background: #fffbeb;
  border-color: #fcd34d;
  color: #b45309;
}

.payment-inline-status-error {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #b91c1c;
}

@media (max-width: 1024px) {
  .admin-route .site-header::before {
    display: none;
  }

  .admin-route .dashboard-shell {
    padding-left: 0;
  }

  .admin-route .dashboard-content-stack > .container,
  .admin-route .dashboard-shell > .section > .container,
  .admin-route .dashboard-shell > .page-hero > .container {
    padding-left: 0;
  }

  .admin-route .site-footer .footer-inner,
  .admin-route .site-footer .footer-bottom-inner {
    padding-left: 0;
  }

  .admin-route .page-hero-inner,
  .admin-route .dashboard-shell > .section > .container {
    max-width: 1180px;
  }

  .admin-sidebar-shell {
    position: static;
    width: auto;
    bottom: auto;
    left: auto;
    max-height: none;
    margin: 18px auto 0;
    padding: 0 16px;
    overflow: visible;
  }

  .admin-sidebar-card {
    height: auto;
    max-height: none;
    border: 1px solid rgba(145, 211, 201, 0.72);
    border-radius: 22px;
    box-shadow: 0 18px 42px rgba(31, 70, 84, 0.1);
  }

  .admin-sidebar-collapsed .admin-sidebar-shell {
    width: auto;
  }

  .admin-sidebar-collapsed .admin-sidebar-card {
    padding: 22px 18px;
  }

  .admin-sidebar-collapsed .admin-sidebar-head {
    grid-template-columns: minmax(0, 1fr) 42px;
    justify-items: stretch;
  }

  .admin-sidebar-collapsed .admin-sidebar-title-wrap,
  .admin-sidebar-collapsed .admin-sidebar-text {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
  }

  .admin-sidebar-collapsed .admin-sidebar-link {
    justify-content: flex-start;
    padding: 10px 14px;
  }

  .dashboard-grid,
  .dashboard-actions-grid {
    grid-template-columns: 1fr;
  }

  .admin-summary-grid,
  .outreach-output-grid,
  .outreach-actions-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-sidebar-card {
    position: static;
  }

  .dashboard-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .admin-sidebar-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .admin-sidebar-link {
    padding: 13px 14px;
    font-size: 14px;
  }

  .dashboard-sidebar-card,
  .dashboard-panel {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .dashboard-grid {
    gap: 20px;
  }

  .dashboard-content-stack {
    gap: 20px;
  }

  .dashboard-panel-head h2 {
    font-size: 26px;
  }

  .outreach-output-grid,
  .outreach-actions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .admin-sidebar-shell {
    padding: 0 12px;
  }

  .dashboard-shell {
    padding-bottom: 56px;
  }

  .dashboard-stat-list div,
  .dashboard-detail-grid div {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .dashboard-note-card {
    padding: 16px;
  }

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

  .plan-choice-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
    border-radius: 20px;
  }

  .plan-card-col-left {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 0;
  }

  .plan-card-col-right-combined {
    border-left: none;
    padding-left: 0;
  }

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

  .plan-card-price-header {
    border-top: 1px solid #E2E8F0;
    padding-top: 16px;
    width: 100%;
  }
}

/* Tourism Hub branding + utility layout overrides */
.brand-logo-image {
  height: auto;
  max-height: 60px;
  max-width: min(320px, 100%);
  object-fit: contain;
}

.brand-logo-image-green-preview {
  filter: brightness(0) saturate(100%) invert(59%) sepia(49%) saturate(1116%) hue-rotate(128deg) brightness(90%) contrast(89%);
}

.footer-brand-logo {
  height: auto;
  max-height: 86px;
  max-width: min(280px, 100%);
  object-fit: contain;
}

.utility-grid-stacked {
  align-items: start;
}

.utility-panel-wide {
  grid-column: 1 / -1;
}

@media (max-width: 1200px) {
  .brand-logo-image {
    max-height: 52px;
    max-width: 240px;
  }

  .brand-support {
    display: none;
  }
}

@media (max-width: 1023px) {
  .brand-logo-image {
    max-height: 46px;
    max-width: 210px;
  }

  .hero-shell {
    min-height: auto;
  }

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

  .utility-panel-wide {
    grid-column: auto;
  }

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

@media (max-width: 767px) {
  .brand-logo-image {
    max-height: 40px;
    max-width: 176px;
  }

  .utility-panel {
    padding: 24px 20px;
  }

  .utility-actions,
  .travel-shortcuts {
    grid-template-columns: 1fr 1fr;
  }

  .utility-action,
  .travel-shortcut {
    min-height: 96px;
  }
}

@media (max-width: 520px) {
  .brand-logo-image {
    max-width: 150px;
    max-height: 34px;
  }

  .footer-brand-logo {
    max-width: 210px;
  }

  .utility-actions,
  .travel-shortcuts {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .utility-action,
  .travel-shortcut {
    min-height: 88px;
    padding: 12px 8px;
  }

  .utility-action span,
  .travel-shortcut span {
    font-size: 13px;
  }
}

/* Offers experience */
.offers-hero {
  padding: 48px 0 42px;
  background:
    radial-gradient(circle at top right, rgba(14, 196, 176, 0.22), transparent 30%),
    linear-gradient(135deg, #0b5f63 0%, #0ab8ac 52%, #12c7bd 100%);
  color: #fff;
}

.offers-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 780px);
}

.offers-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.offers-hero-copy h1 {
  margin: 16px 0 14px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: .95;
}

.offers-hero-copy p {
  max-width: 560px;
  color: rgba(245, 255, 252, 0.94);
  line-height: 1.8;
}

.offers-hero-search {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 140px;
  gap: 0;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(9, 21, 38, 0.16);
}

.offers-hero-search input,
.offers-hero-search select {
  min-height: 52px;
  border: 0;
  background: transparent;
  padding: 0 16px;
  color: var(--text);
}

.offers-hero-search select {
  border-left: 1px solid #dfe8f6;
}

.offers-hero-search button {
  border: 0;
  background: linear-gradient(135deg, #06796f, #0fc6bb);
  color: #fff;
  font-weight: 700;
}

.offers-hero-stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 640px;
}

.offers-hero-stats strong {
  display: block;
  font-size: 22px;
}

.offers-hero-stats span {
  color: rgba(235, 255, 249, 0.82);
  font-size: 12px;
}

.offers-directory-section {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

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

.offers-sidebar {
  position: sticky;
  top: 108px;
}

.offers-main-column {
  min-width: 0;
}

.offers-toolbar {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.offers-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.offers-filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #dce8f2;
  background: #fff;
  color: var(--text);
  font-weight: 700;
}

.offers-filter-chip.active {
  background: var(--primary-bg);
  border-color: #b9ddd6;
  color: var(--primary);
}

.offers-toolbar-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.offers-toolbar-controls span {
  color: var(--muted);
  font-weight: 600;
}

.offers-toolbar-controls select {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

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

.offers-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #dce8f2;
  background: #fff;
  box-shadow: 0 16px 34px rgba(44, 62, 80, 0.08);
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.offers-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(44, 62, 80, 0.12);
}

.offers-card-visual {
  position: relative;
  min-height: 140px;
  padding: 16px;
  color: #fff;
}

.offers-card-badge,
.offers-modal-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 11px;
  font-weight: 800;
}

.offers-card-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 18px auto 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.offers-card-expiry {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.offers-card-body {
  display: grid;
  gap: 12px;
  padding: 18px 18px 20px;
}

.offers-card-meta,
.offers-card-member {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.offers-card h3 {
  font-size: 20px;
  line-height: 1.15;
}

.offers-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.offers-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.offers-card-footer strong,
.offers-card-footer span {
  display: block;
}

.offers-card-footer span {
  color: var(--muted);
  font-size: 12px;
}

.offers-card-btn,
.offer-inline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid #cfe0ff;
  background: #eff6ff;
  color: #1f6fff;
  font-weight: 800;
}

.offer-inline-btn {
  margin-top: 8px;
  width: fit-content;
}

.offers-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
}

.offers-modal.open {
  display: block;
}

.offers-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 20, 35, 0.58);
}

.offers-modal-dialog {
  position: relative;
  width: min(760px, calc(100% - 32px));
  margin: 6vh auto 0;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 60px rgba(10, 21, 36, 0.24);
}

.offers-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
}

.offers-modal-hero {
  padding: 28px 28px 22px;
  color: #fff;
}

.offers-modal-hero-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}

.offers-modal-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.16);
}

.offers-modal-hero p {
  color: rgba(242, 248, 255, 0.84);
  font-weight: 700;
}

.offers-modal-hero h2 {
  margin-top: 6px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.02;
}

.offers-modal-body {
  display: grid;
  gap: 22px;
  padding: 28px;
}

.offers-modal-copy {
  color: var(--muted);
  line-height: 1.8;
}

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

.offers-modal-grid div {
  padding: 14px 16px;
  border-radius: 18px;
  background: #f8fbfb;
  border: 1px solid #e4efef;
}

.offers-modal-grid strong {
  display: block;
  margin-bottom: 4px;
}

.offers-modal-grid span {
  color: var(--muted);
}

.offers-modal-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1023px) {
  .offers-directory-layout {
    grid-template-columns: 1fr;
  }

  .offers-sidebar {
    position: static;
  }

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

@media (max-width: 767px) {
  .offers-hero {
    padding: 36px 0 32px;
  }

  .offers-hero-search {
    grid-template-columns: 1fr;
  }

  .offers-hero-search select {
    border-left: 0;
    border-top: 1px solid #dfe8f6;
  }

  .offers-hero-stats,
  .offers-grid,
  .offers-modal-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .offers-card-footer,
  .offers-modal-hero-inner,
  .offers-modal-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 560px) {
  .offers-hero-stats,
  .offers-grid,
  .offers-modal-grid {
    grid-template-columns: 1fr;
  }

  .offers-modal-dialog {
    width: calc(100% - 20px);
    margin-top: 4vh;
  }

  .offers-modal-body,
  .offers-modal-hero {
    padding: 22px 18px;
  }

  .hero-categories-grid-compact {
    
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 5px !important;
}

.ad-carousel-card {
 
    min-height: 260px !important;
   
}
.offer-grid {
    display: flex !important;
    flex-direction: column !important;
}

.trend-list span {
    line-height: 18px !important;
}

.trend-item {
    padding: 8px !important;
    gap: 5px !important;
    height: 75px !important;
}
.container.directory-shell-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
}
}





/* Final membership row layout */
.plan-choice-meta {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: nowrap !important;
}

.plan-choice-badge {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
  padding: 8px 12px !important;
  font-size: 0.88rem !important;
}

.plan-choice-status {
  flex: 1 1 auto !important;
  display: block !important;
  min-width: 0 !important;
  white-space: normal !important;
  line-height: 1.45 !important;
  font-size: 0.88rem !important;
}

@media (max-width: 1180px) {
  .plan-choice-meta {
    align-items: start !important;
  }
}


/* Upload preview controls */
.upload-preview-card,
.upload-preview-thumb,
.upload-file-chip {
  position: relative;
}

.upload-preview-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
  cursor: pointer;
}

.upload-preview-remove:hover {
  background: #dc2626;
}

.upload-preview-card-logo {
  min-height: 146px;
}

.upload-preview-card-logo img {
  width: 100%;
}

.upload-file-list {
  display: grid;
  gap: 10px;
}

.upload-file-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 48px 12px 14px;
  border: 1px solid #d7ebe5;
  border-radius: 16px;
  background: #f8fcfb;
  color: var(--text);
}

.upload-file-chip span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 14px;
  font-weight: 600;
}

.upload-file-chip .upload-preview-remove {
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

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

.profile-service-card {
  padding: 16px 20px;
  border-radius: 18px;
  background: #f4fbf9;
  border: 1.5px solid #d2f2eb;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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