:root {
  --site-max: 1320px;
  --site-pad: 48px;
  --header-height: 76px;
  --black: #000000;
  --charcoal: #08243a;
  --panel: #0d2f4a;
  --text: #f7f7f5;
  --muted: #c8c8c2;
  --line: rgba(255, 255, 255, 0.16);
  --nav-blue: #0070b8;
  --yellow: #f4a12c;
  --blue: #0070b8;
  --green: #76c893;
  --red: #e66b2f;
  --radius: 6px;
  --soft-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: white;
  border-bottom: 1px solid rgba(6, 52, 95, 0.12);
  box-shadow: 0 8px 26px rgba(6, 52, 95, 0.08);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(6, 52, 95, 0.2);
  box-shadow: 0 10px 28px rgba(6, 52, 95, 0.14);
  backdrop-filter: blur(14px);
}

.site-header.nav-open,
.site-header:has(.mega-menu.is-open) {
  background: white;
}

.ey-strip {
  display: none;
  height: 0;
  background: var(--yellow);
}

.navbar {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
  padding: 0 var(--site-pad);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 336px;
  min-width: 336px;
  height: 80px;
}

.brand img {
  display: block;
  width: 320px;
  height: 80px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border-radius: var(--radius);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a,
.nav-button,
.nav-actions a {
  display: inline-flex;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 14px;
  color: var(--nav-blue);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

@media (min-width: 1041px) and (max-width: 1320px) {
  .navbar {
    gap: 18px;
    padding: 0 36px;
  }

  .brand {
    width: 236px;
    min-width: 236px;
  }

  .brand img {
    width: 224px;
    height: 58px;
  }

  .nav-links a,
  .nav-button,
  .nav-actions a {
    padding: 0 10px;
    font-size: 13px;
  }
}

.nav-links a:hover,
.nav-button:hover,
.nav-button[aria-expanded="true"],
.nav-actions a:hover {
  background: #f2f6f9;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(6, 52, 95, 0.18);
  border-radius: var(--radius);
  background: transparent;
  color: var(--nav-blue);
  cursor: pointer;
}

.icon-button:hover {
  border-color: var(--yellow);
}

.icon-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-search {
  position: relative;
}

.search-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  width: min(420px, calc(100vw - 32px));
  padding: 14px;
  background: white;
  border: 1px solid rgba(6, 52, 95, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(6, 52, 95, 0.18);
}

.site-search.is-open .search-panel {
  display: block;
}

.search-panel input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(6, 52, 95, 0.2);
  border-radius: var(--radius);
  color: #041421;
  font: inherit;
  font-weight: 700;
  outline: 0;
}

.search-panel input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 112, 184, 0.14);
}

.search-results {
  display: grid;
  gap: 6px;
  max-height: 320px;
  margin-top: 10px;
  overflow-y: auto;
}

.search-results a,
.search-empty {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
}

.search-results a {
  color: #041421;
  border: 1px solid transparent;
}

.search-results a:hover,
.search-results a:focus {
  border-color: rgba(0, 112, 184, 0.22);
  background: #eef7fc;
}

.search-results span {
  display: block;
  margin-bottom: 3px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.search-results strong {
  display: block;
  color: #041421;
  font-size: 15px;
  line-height: 1.25;
}

.search-empty {
  color: #52616e;
  font-size: 14px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(6, 52, 95, 0.18);
  border-radius: var(--radius);
  background: transparent;
  color: var(--nav-blue);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.mega-menu {
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  display: none;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #101820;
  border-top: 1px solid var(--line);
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.38);
}

.mega-menu.is-open {
  display: block;
}

.mega-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.25fr) minmax(280px, 0.9fr);
  gap: 42px;
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 34px var(--site-pad) 38px;
}

.ey-kicker {
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.mega-intro h2 {
  max-width: 410px;
  margin: 0 0 28px;
  color: white;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
}

.explore-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  font-weight: 800;
  border-radius: var(--radius);
  transition: transform 160ms ease, filter 160ms ease, border-color 160ms ease;
}

.explore-button,
.primary-button {
  background: var(--nav-blue);
  color: white;
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: white;
}

.explore-button:hover,
.primary-button:hover,
.secondary-button:hover,
.trend-copy a:hover,
.back-link:hover {
  transform: translateY(-1px);
}

.mega-topics {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.mega-topics a {
  position: relative;
  padding: 14px 34px 14px 0;
  border-bottom: 1px solid var(--line);
  color: #f4f4f1;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.38;
}

.mega-topics a,
.mega-highlights article a {
  transition: color 160ms ease, padding-left 160ms ease;
}

.mega-topics a:hover {
  padding-left: 8px;
}

.mega-topics span {
  display: block;
  margin-bottom: 5px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}


.mega-topics a::after,
.mega-highlights article a::after {
  content: "›";
  position: absolute;
  right: 2px;
  color: var(--yellow);
}

.mega-topics a:hover,
.mega-highlights article a:hover {
  color: var(--yellow);
}

.mega-highlights {
  padding-left: 4px;
}

.mega-highlights article {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.mega-highlights article:last-child {
  border-bottom: 1px solid var(--line);
}

.mega-highlights span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.mega-highlights article a {
  position: relative;
  display: block;
  padding-right: 28px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
}

.mega-highlights article p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/images/retail-insights-hero.png") center right / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(1, 7, 12, 0.96) 0%, rgba(1, 7, 12, 0.76) 42%, rgba(0, 112, 184, 0.06) 100%),
    linear-gradient(0deg, rgba(1, 7, 12, 0.9) 0%, rgba(1, 7, 12, 0) 34%);
}

.hero-content {
  width: min(720px, calc(100% - (var(--site-pad) * 2)));
  margin: 7vh 0 5vh max(var(--site-pad), calc((100% - var(--site-max)) / 2));
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(44px, 6.4vw, 84px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-content p:not(.ey-kicker) {
  max-width: 640px;
  margin: 24px 0 0;
  color: #e5e5df;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.content-band {
  padding: 72px var(--site-pad) 86px;
  background: #08243a;
  color: white;
}

.content-band .section-heading .ey-kicker {
  color: var(--yellow);
}

.content-band .section-heading h2 {
  color: white;
}

.trending-band {
  padding: 72px var(--site-pad) 86px;
  background: #01070c;
  color: white;
}

.trending-band .section-heading .ey-kicker {
  color: var(--yellow);
}

.trending-band .section-heading {
  margin-bottom: 42px;
  color: white;
}

.trending-band .section-heading h2 {
  max-width: 1180px;
  font-size: clamp(46px, 4vw, 72px);
  line-height: 1.04;
  color: var(--yellow);
}

.trending-slider {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

.trending-grid {
  display: flex;
  gap: 40px;
  background: transparent;
  align-items: stretch;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.trending-grid::-webkit-scrollbar {
  display: none;
}

.trending-slide-zone {
  position: absolute;
  top: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 54px;
  height: 100%;
  border: 0;
  color: var(--yellow);
  background: linear-gradient(90deg, rgba(1, 7, 12, 0), rgba(1, 7, 12, 0.82));
  cursor: pointer;
  opacity: 0.16;
  transition: opacity 0.2s ease;
}

.trending-slide-zone span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(244, 161, 44, 0.55);
  border-radius: 999px;
  background: rgba(6, 25, 39, 0.88);
  font-size: 20px;
  font-weight: 900;
}

.trending-slider:hover .trending-slide-zone,
.trending-slide-zone:focus-visible {
  opacity: 1;
}

.trending-slide-zone-left {
  left: 0;
  background: linear-gradient(270deg, rgba(1, 7, 12, 0), rgba(1, 7, 12, 0.82));
}

.trending-slide-zone-right {
  right: 0;
}

.trend-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 80px) / 3);
  min-height: 330px;
  background: #061927;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  scroll-snap-align: start;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

.trend-card:hover,
.trend-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.28);
}

.trend-copy {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 24px;
}

.trend-logo {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #041421;
  color: white;
  font-weight: 900;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.trend-card:hover .trend-logo,
.trend-card:focus-within .trend-logo {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.trend-logo span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  letter-spacing: 0;
}

.trend-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.storepilot-logo span {
  background: linear-gradient(135deg, #1f8fff, #73d2ff);
}

.storepilot-logo {
  background: white;
}

.edge-logo {
  background: #000;
}

.media-logo {
  background: white;
}

.import-logo {
  background: #041421;
}

.import-logo span {
  color: #061927;
  background: linear-gradient(135deg, var(--yellow), #ffd98a);
  font-size: 16px;
}

.villa-logo {
  background: #041421;
}

.villa-logo span {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--yellow));
  font-size: 16px;
}

.media-logo img {
  width: 100%;
  height: 100%;
  padding: 3px;
  object-fit: cover;
}

.trend-copy h3 {
  margin: 0;
  font-size: clamp(30px, 2.6vw, 38px);
  line-height: 1.05;
}

.trend-copy p {
  display: -webkit-box;
  margin: 16px 0 18px;
  color: #d8d8d2;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.45;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.trend-copy a {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-size: 16px;
  font-weight: 800;
  border-radius: var(--radius);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.trend-card:hover .trend-copy a,
.trend-card:focus-within .trend-copy a {
  box-shadow: 0 10px 24px rgba(244, 161, 44, 0.22);
}

.dashboard-preview {
  margin: 0 24px 24px;
  padding: 12px;
  min-height: 128px;
  background: #041421;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.trend-card:hover .dashboard-preview,
.trend-card:focus-within .dashboard-preview {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(244, 161, 44, 0.08);
}

.erp-image-preview {
  display: flex;
  align-items: center;
  padding: 0;
  background: #02101b;
}

.erp-image-preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 172px;
  object-fit: cover;
  object-position: left top;
}

.erp-image-preview .metric-row,
.erp-image-preview .chart-line,
.erp-image-preview .inventory-grid {
  display: none;
}

.dash-top,
.metric-row,
.media-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.dash-top span,
.media-stats span {
  height: 9px;
  background: #0d2f4a;
  border-left: 3px solid var(--yellow);
}

.task-row {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 6px;
  align-items: center;
  margin-top: 3px;
  padding: 3px 6px;
  background: #0d2f4a;
  color: #e7e7e1;
  font-size: 10px;
  border-radius: 4px;
}

.task-row span {
  width: 8px;
  height: 8px;
  background: #9a9a92;
}

.task-row em {
  color: var(--yellow);
  font-style: normal;
  font-weight: 800;
}

.task-row.complete span {
  background: var(--green);
}

.task-row.active span {
  background: var(--blue);
}

.erp-mini-dashboard {
  background: linear-gradient(180deg, #041421 0%, #061927 100%);
}

.erp-status-row {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin-top: 5px;
  padding: 5px 8px;
  background: #0d2f4a;
  color: #e7e7e1;
  font-size: 10.5px;
  line-height: 1.15;
  border-radius: 4px;
}

.erp-status-row span {
  width: 8px;
  height: 8px;
  background: #9a9a92;
}

.erp-status-row strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.erp-status-row em {
  min-width: 34px;
  text-align: right;
  color: var(--yellow);
  font-style: normal;
  font-weight: 800;
}

.erp-status-row.complete span {
  background: var(--green);
}

.erp-status-row.active span {
  background: var(--blue);
}

.trade-preview {
  background:
    linear-gradient(135deg, rgba(0, 113, 188, 0.18), transparent 42%),
    #041421;
}

.trade-route {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  gap: 6px;
  align-items: center;
  margin-bottom: 8px;
}

.trade-route span {
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 26px;
  border-radius: 999px;
  background: #0d2f4a;
  color: white;
  font-size: 10px;
  font-weight: 900;
}

.trade-route i {
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--blue));
}

.trade-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin-top: 5px;
  padding: 5px 8px;
  border-radius: 4px;
  background: #0d2f4a;
  color: #e7e7e1;
  font-size: 10.5px;
  line-height: 1.15;
}

.trade-row strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trade-row em {
  color: var(--yellow);
  font-style: normal;
  font-weight: 800;
}

.villa-preview {
  background:
    linear-gradient(180deg, rgba(0, 116, 189, 0.2), transparent 44%),
    #041421;
}

.villa-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: #08243a;
}

.villa-frame img {
  display: block;
  width: 100%;
  height: 106px;
  object-fit: cover;
  object-position: center;
}

.villa-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-top: 10px;
}

.villa-items span {
  min-height: 22px;
  padding: 5px 6px;
  border-radius: 4px;
  background: #0d2f4a;
  color: #e7e7e1;
  font-size: 10px;
  font-weight: 800;
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 8px;
  margin-top: 4px;
}

.mini-bars span {
  flex: 1;
  background: var(--yellow);
}

.metric-row {
  grid-template-columns: repeat(2, 1fr);
}

.metric-row div {
  padding: 5px;
  background: #0d2f4a;
  border-radius: 4px;
}

.metric-row span {
  display: block;
  color: #aaa;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.metric-row strong {
  display: block;
  margin-top: 4px;
  color: white;
  font-size: 14px;
}

.chart-line {
  position: relative;
  height: 16px;
  margin-top: 5px;
  background:
    linear-gradient(135deg, transparent 12%, var(--yellow) 13%, transparent 14%),
    linear-gradient(25deg, transparent 40%, var(--blue) 41%, transparent 42%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-top: 5px;
}

.inventory-grid span {
  height: 7px;
  background: #0d2f4a;
}

.inventory-grid span:nth-child(3n) {
  background: rgba(244, 161, 44, 0.35);
}

.media-frame {
  height: 42px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 112, 184, 0.26), rgba(244, 161, 44, 0.32)),
    #0d2f4a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

.media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}

.media-stats {
  margin-top: 5px;
}

.media-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 6px;
}

.media-items span {
  display: grid;
  place-items: center;
  min-height: 15px;
  padding: 0 4px;
  overflow: hidden;
  background: rgba(0, 112, 184, 0.26);
  color: #d8e7ef;
  border-radius: 3px;
  font-size: 8px;
  font-weight: 800;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.timeline {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 0.6fr;
  gap: 6px;
  margin-top: 5px;
}

.timeline i {
  height: 8px;
  background: var(--yellow);
}

.timeline i:nth-child(even) {
  background: #333;
}

.mission-vision-band {
  padding: 86px var(--site-pad) 94px;
  background:
    linear-gradient(135deg, rgba(1, 7, 12, 0.98), rgba(4, 20, 33, 0.96) 48%, rgba(0, 112, 184, 0.22)),
    #01070c;
  color: white;
}

.mission-vision-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.55fr);
  gap: 28px;
  width: min(var(--site-max), calc(100vw - (var(--site-pad) * 2)));
  max-width: 100%;
  margin: 0 auto;
  align-items: center;
}

.mission-vision-copy .ey-kicker {
  color: var(--yellow);
}

.mission-vision-copy h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(46px, 4.8vw, 76px);
  line-height: 1.02;
}

.mission-vision-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 340px));
  gap: 18px;
  margin-top: 32px;
}

.mission-vision-cards article,
.pillar-grid article {
  background: rgba(6, 25, 39, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.mission-vision-cards article {
  padding: 26px;
  border-left: 5px solid var(--yellow);
}

.mission-vision-cards span,
.pillar-grid span {
  display: block;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.mission-vision-cards p {
  margin: 14px 0 0;
  color: #d8e7ef;
  font-size: 18px;
  line-height: 1.55;
}

.mission-vision-visual {
  max-width: 820px;
  width: 100%;
  margin: 132px 0 0;
  overflow: hidden;
  background: #061927;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.mission-vision-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pillar-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.pillar-grid article {
  min-height: 218px;
  padding: 22px;
}

.pillar-grid h3 {
  margin: 18px 0 12px;
  color: white;
  font-size: 20px;
  line-height: 1.14;
}

.pillar-grid p {
  margin: 0;
  color: #d8e7ef;
  font-size: 15px;
  line-height: 1.48;
}

.section-heading {
  max-width: var(--site-max);
  margin: 0 auto 30px;
}

.section-heading .ey-kicker,
.insight-card span {
  color: #0070b8;
}

.section-heading h2 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: var(--site-max);
  margin: 0 auto;
  background: transparent;
  align-items: stretch;
}

.insight-card {
  min-height: 260px;
  padding: 30px;
  background: #061927;
  border-top: 4px solid var(--yellow);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.insight-card span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.insight-card h3 {
  margin: 42px 0 14px;
  font-size: 25px;
  line-height: 1.16;
}

.insight-card p {
  margin: 0;
  color: #d8e7ef;
  line-height: 1.55;
}

.about-details {
  padding: 72px var(--site-pad) 84px;
  background:
    linear-gradient(135deg, rgba(0, 112, 184, 0.2), rgba(244, 161, 44, 0.08) 42%, transparent 70%),
    #01070c;
  color: white;
  border-top: 1px solid rgba(0, 112, 184, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-details .section-heading .ey-kicker {
  color: var(--blue);
  letter-spacing: 0.02em;
}

.about-details .section-heading h2 {
  max-width: 1080px;
  color: white;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: var(--site-max);
  margin: 0 auto;
}

.about-grid article {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(8, 36, 58, 0.98), rgba(4, 20, 33, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 5px solid var(--yellow);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  scroll-margin-top: 120px;
  overflow: hidden;
}

.about-card-link {
  display: block;
  height: 150px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(0, 112, 184, 0.14), rgba(244, 161, 44, 0.12)),
    #061927;
}

.about-card-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
  transition: transform 0.25s ease;
}

.about-purpose-image {
  object-position: center;
}

.about-people-image {
  object-position: center 22%;
}

.about-values-image {
  padding: 0;
  object-fit: cover;
  object-position: center;
  background: #061927;
}

.about-grid article:hover .about-card-link img {
  transform: scale(1.04);
}

.about-grid article:nth-child(2) {
  border-top-color: var(--blue);
}

.about-grid article:nth-child(3) {
  border-top-color: #f4a12c;
}

.about-grid span {
  display: block;
  padding: 26px 30px 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-grid h3 {
  margin: 26px 30px 16px;
  color: white;
  font-size: 25px;
  line-height: 1.15;
}

.about-grid p {
  margin: 0 30px;
  color: #d8e7ef;
  line-height: 1.58;
}

.clients-band {
  padding: 68px var(--site-pad) 76px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(232, 246, 255, 0.96) 48%, rgba(255, 248, 238, 0.9)),
    #f7fbff;
  color: #061927;
  border-top: 1px solid rgba(0, 112, 184, 0.12);
  border-bottom: 1px solid rgba(0, 112, 184, 0.14);
}

.clients-band .section-heading .ey-kicker {
  color: var(--blue);
}

.clients-band .section-heading h2 {
  max-width: 880px;
  color: #061927;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--site-max);
  margin: 0 auto;
}

.client-logo {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 112, 184, 0.14);
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(6, 52, 95, 0.12);
}

.client-logo img {
  display: block;
  max-width: 100%;
  max-height: 66px;
  object-fit: contain;
}

.client-logo-wide img {
  max-height: 58px;
}

.client-logo-carrefresh {
  padding-inline: 10px;
}

.client-logo-carrefresh img {
  width: 100%;
  max-width: 116px;
  max-height: 54px;
  height: auto;
  object-fit: contain;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 40px;
  margin: auto 30px 30px;
  padding: 0 16px;
  border: 1px solid var(--yellow);
  border-radius: var(--radius);
  color: var(--yellow);
  font-weight: 900;
}

.home-leadership {
  padding: 72px var(--site-pad) 84px;
  background: #041421;
  color: white;
}

.home-leadership .section-heading .ey-kicker {
  color: var(--yellow);
}

.home-leadership .section-heading h2 {
  color: white;
}

.home-leadership-grid {
  display: grid;
  grid-template-columns: minmax(660px, 1.95fr) repeat(2, minmax(155px, 0.42fr));
  gap: 18px;
  max-width: var(--site-max);
  margin: 0 auto;
  align-items: start;
}

.home-leader-card,
.home-director-space {
  background: #08243a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.home-leader-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 30px;
}

.home-leader-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.home-leader-card span,
.home-director-space span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-leader-card h3 {
  margin: 10px 0 12px;
  color: white;
  font-size: 25px;
  line-height: 1.12;
}

.home-director-space h3 {
  margin: 8px 0 0;
  color: white;
  font-size: 18px;
  line-height: 1.15;
}

.home-director-space p {
  margin: 10px 0 0;
  color: #d8e7ef;
  font-size: 13px;
  line-height: 1.4;
}

.home-leader-card p {
  margin: 0 0 18px;
  color: #d8e7ef;
  line-height: 1.5;
}

.home-leader-card a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  background: var(--yellow);
  color: #041421;
  border-radius: var(--radius);
  font-weight: 900;
}

.home-director-space {
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.mini-photo-space {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  margin-bottom: 12px;
  border: 1px dashed rgba(244, 161, 44, 0.7);
  border-radius: var(--radius);
  background: rgba(244, 161, 44, 0.08);
  color: var(--yellow);
  font-weight: 900;
  overflow: hidden;
}

.mini-photo-space img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.contact-band {
  padding: 36px var(--site-pad) 42px;
  background: #041421;
  color: white;
}

.contact-wrap {
  max-width: var(--site-max);
  margin: 0 auto;
}

.contact-intro .ey-kicker {
  color: var(--yellow);
}

.contact-intro h2 {
  max-width: 660px;
  margin: 0;
  color: white;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.04;
}

.contact-intro p:last-child {
  max-width: 760px;
  margin: 14px 0 0;
  color: #d8e7ef;
  font-size: 16px;
  line-height: 1.42;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.25fr) minmax(220px, 0.55fr) minmax(280px, 0.7fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 24px;
}

.contact-card {
  padding: 22px;
  background: #061927;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.contact-card h3 {
  margin: 0;
  color: white;
  font-size: 24px;
  line-height: 1.12;
}

.contact-person {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
}

.contact-person p {
  margin: 0 0 5px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-person h3 {
  margin: 0;
  color: white;
  font-size: 26px;
  line-height: 1.1;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin: 16px 0 18px;
}

.contact-details div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.contact-details dt {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--yellow);
  background: rgba(244, 161, 44, 0.1);
  border: 1px solid rgba(244, 161, 44, 0.24);
  border-radius: var(--radius);
}

.contact-details dt svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.contact-details dd {
  margin: 0;
  color: white;
  font-size: 16px;
  line-height: 1.32;
}

.contact-details a {
  color: white;
}

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

.call-button,
.whatsapp-button,
.location-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 900;
}

.call-button {
  background: var(--blue);
  color: white;
}

.whatsapp-button {
  background: #25d366;
  color: #041421;
}

.location-button {
  border: 1px solid rgba(244, 161, 44, 0.7);
  background: rgba(244, 161, 44, 0.1);
  color: var(--yellow);
}

.call-button svg,
.whatsapp-button svg,
.location-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-links-card,
.footer-cert-card {
  display: flex;
  flex-direction: column;
}

.footer-links {
  display: grid;
  gap: 4px;
  margin-top: 16px;
}

.footer-links a {
  display: flex;
  align-items: center;
  min-height: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #d8e7ef;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--yellow);
}

.certification-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.cert-badge {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  min-height: 58px;
  overflow: hidden;
  border: 1px solid rgba(244, 161, 44, 0.36);
  border-radius: var(--radius);
  background: rgba(4, 20, 33, 0.7);
}

.cert-badge strong {
  display: grid;
  place-items: center;
  height: 100%;
  background: var(--blue);
  color: white;
  font-size: 18px;
  font-weight: 900;
}

.cert-badge em {
  padding: 0 14px;
  color: #d8e7ef;
  font-style: normal;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.cert-image-badge {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  min-height: 58px;
  padding: 8px;
  gap: 12px;
  border: 1px solid rgba(244, 161, 44, 0.36);
  border-radius: var(--radius);
  background: rgba(4, 20, 33, 0.7);
}

.cert-image-badge img {
  display: block;
  width: 50px;
  height: 42px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
}

.cert-image-badge em {
  color: #d8e7ef;
  font-style: normal;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #041421;
  color: var(--yellow);
}

.social-row a:hover {
  background: var(--yellow);
  color: #041421;
}

.social-row svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.insights-details {
  padding: 76px var(--site-pad) 96px;
  background: #041421;
  color: white;
}

.insights-details .section-heading {
  color: white;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: var(--site-max);
  margin: 0 auto;
  background: transparent;
}

.detail-panel {
  min-height: 260px;
  padding: 34px;
  background: #08243a;
  scroll-margin-top: 120px;
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.detail-panel > p:first-child {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-panel h3 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}

.detail-panel h3 + p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #d4d4ce;
  font-size: 17px;
  line-height: 1.55;
}

.detail-panel:target {
  outline: 2px solid var(--yellow);
  outline-offset: -2px;
}

.article-page {
  min-height: calc(100vh - var(--header-height));
  padding: 88px var(--site-pad) 104px;
  background:
    linear-gradient(90deg, rgba(4, 20, 33, 0.94), rgba(4, 20, 33, 0.74)),
    url("assets/images/retail-insights-hero.png") center right / cover no-repeat;
}

.article-page.is-subpage {
  background:
    linear-gradient(90deg, rgba(4, 20, 33, 0.95), rgba(4, 20, 33, 0.78)),
    url("../assets/images/retail-insights-hero.png") center right / cover no-repeat;
}

.article-wrap {
  max-width: 980px;
}

.article-wrap h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
}

.article-lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: #e5e5df;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.48;
}

.product-showcase {
  max-width: 820px;
  margin: 38px 0 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.product-showcase img {
  display: block;
  width: 100%;
  height: auto;
}

.media-showcase {
  max-width: 1120px;
  margin: 38px 0 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.media-showcase img {
  display: block;
  width: 100%;
  height: clamp(220px, 28vw, 360px);
  object-fit: cover;
  object-position: center;
}

.erp-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 38px 0 42px;
}

.erp-showcase figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.erp-showcase img {
  display: block;
  width: 100%;
  height: auto;
}

.erp-showcase figcaption {
  padding: 14px 16px 16px;
  color: #d8e7ef;
  font-size: 14px;
  line-height: 1.4;
}

.villa-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.95fr);
  gap: 22px;
  max-width: 1180px;
  margin: 38px 0 42px;
}

.villa-showcase figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.villa-showcase img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.villa-showcase-primary img {
  max-height: 560px;
}

.villa-showcase-secondary img {
  max-height: 560px;
  object-position: center;
}

.villa-showcase figcaption {
  padding: 14px 16px 16px;
  color: #d8e7ef;
  font-size: 14px;
  line-height: 1.45;
}

.trade-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 38px 0 42px;
}

.trade-showcase figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.trade-showcase img {
  display: block;
  width: 100%;
  height: clamp(260px, 30vw, 380px);
  object-fit: cover;
  object-position: center;
}

.trade-showcase figcaption {
  padding: 14px 16px 16px;
  color: #d8e7ef;
  font-size: 14px;
  line-height: 1.45;
}

.leadership-page {
  background: #041421;
  color: white;
}

.leadership-hero {
  padding: 76px var(--site-pad) 42px;
  background:
    linear-gradient(90deg, rgba(4, 20, 33, 0.96), rgba(4, 20, 33, 0.72)),
    url("assets/images/retail-insights-hero.png") center right / cover no-repeat;
}

.leadership-hero > div,
.leadership-wrap {
  max-width: var(--site-max);
  margin: 0 auto;
}

.leadership-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
}

.leadership-hero p:last-child {
  max-width: 760px;
  margin: 24px 0 0;
  color: #e5e5df;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

.leadership-wrap {
  padding: 48px var(--site-pad) 86px;
}

.leader-feature {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding: 34px;
  margin-bottom: 58px;
  background: #08243a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.leader-feature img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.leader-feature span,
.director-card span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.leader-feature h2 {
  margin: 14px 0 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
}

.leader-feature p {
  max-width: 760px;
  margin: 0;
  color: #d8e7ef;
  font-size: 18px;
  line-height: 1.55;
}

.directors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) repeat(3, minmax(0, 0.74fr));
  gap: 14px;
  justify-content: start;
  align-items: start;
}

.director-card {
  padding: 14px;
  background: #08243a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  width: 100%;
  height: fit-content;
  min-height: 0 !important;
  min-width: 0;
  align-self: start;
}

.director-card-compact {
  width: auto;
  height: fit-content;
  min-height: 0 !important;
  padding: 10px;
  justify-self: stretch;
}

.director-card-match-finance {
  min-height: 434px !important;
}

.director-card:nth-child(-n + 3) {
  min-height: 434px !important;
}

.director-card-match-market {
  min-height: 354px !important;
}

.director-card-compact .director-photo-placeholder {
  margin-bottom: 12px;
}

.director-card-compact .director-photo {
  padding: 6px 6px 0;
}

.director-photo-placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  margin-bottom: 12px;
  border: 1px dashed rgba(244, 161, 44, 0.7);
  border-radius: var(--radius);
  background: rgba(244, 161, 44, 0.08);
  color: var(--yellow);
  font-weight: 900;
  overflow: hidden;
}

.director-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.director-photo {
  aspect-ratio: 1;
  padding: 6px 6px 0;
  background: linear-gradient(180deg, rgba(7, 32, 51, 0.92), rgba(3, 15, 25, 0.98));
  border-style: solid;
}

.director-photo img {
  object-fit: contain;
  object-position: center bottom;
}

.director-card h3 {
  margin: 8px 0 8px;
  font-size: 17px;
  line-height: 1.12;
}

.director-name {
  margin: 7px 0 4px;
  color: #fff;
  font-size: 19px;
  line-height: 1.1;
}

.director-card-compact h3 {
  font-size: 13px;
}

.director-card-compact .director-name {
  font-size: 15px;
}

.director-card p {
  margin: 0;
  color: #d8e7ef;
  font-size: 12px;
  line-height: 1.35;
}

.director-card-compact p {
  font-size: 10.5px;
  line-height: 1.28;
}

.director-card-compact span {
  font-size: 11px;
}

.leadership-small-heading {
  margin-top: 36px;
}

.project-execution-heading {
  margin-top: 34px;
}

.project-execution-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 16px;
  padding: 14px;
  background: #08243a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.project-execution-photo {
  overflow: hidden;
  border: 1px solid rgba(244, 161, 44, 0.58);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(7, 32, 51, 0.92), rgba(3, 15, 25, 0.98));
}

.project-execution-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
}

.project-execution-copy span {
  display: block;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.project-execution-copy h3 {
  margin: 4px 0 8px;
  color: white;
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1;
}

.project-execution-copy p {
  max-width: 900px;
  margin: 0;
  color: #d8e7ef;
  font-size: 13px;
  line-height: 1.36;
}

.project-execution-copy blockquote {
  display: inline-block;
  max-width: 520px;
  margin: 10px 0 0;
  padding: 8px 12px;
  background: rgba(244, 161, 44, 0.1);
  border-left: 3px solid var(--yellow);
  border-radius: 6px;
}

.project-execution-copy blockquote p {
  margin: 0;
  color: white;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.leadership-small-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
  align-items: stretch;
}

.leadership-small-card {
  min-width: 0;
  padding: 12px;
  background: #08243a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.leadership-small-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
}

.leadership-small-card span {
  display: block;
  margin-top: 10px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1120px;
  margin-top: 48px;
  background: transparent;
}

.article-grid article {
  min-height: 210px;
  padding: 28px;
  background: rgba(8, 36, 58, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.article-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-grid h2 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.14;
}

.article-grid p {
  margin: 0;
  color: #d4d4ce;
  line-height: 1.55;
}

.article-list-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin-top: 28px;
}

.article-list-panel > div {
  padding: 30px;
  background: rgba(6, 25, 39, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 4px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.article-list-panel h2 {
  margin: 0 0 18px;
  color: white;
  font-size: 26px;
  line-height: 1.12;
}

.article-list-panel ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-list-panel li {
  position: relative;
  padding-left: 22px;
  color: #d8e7ef;
  line-height: 1.45;
}

.article-list-panel li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}

.article-result-panel {
  max-width: 920px;
  margin: 34px 0 0;
  padding: 30px;
  background: rgba(6, 25, 39, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 5px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.article-result-panel span {
  display: block;
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-result-panel h2 {
  max-width: 740px;
  margin: 0 0 14px;
  color: white;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.article-result-panel p {
  max-width: 820px;
  margin: 0;
  color: #d8e7ef;
  font-size: 18px;
  line-height: 1.55;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--yellow);
  background: var(--yellow);
  color: #171717;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  border-radius: var(--radius);
}

.back-link::before {
  content: "<";
  margin-right: 10px;
}

.secondary-action {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.secondary-action::before {
  content: "";
  margin-right: 0;
}

.back-link:hover {
  filter: brightness(0.96);
}

@media (max-width: 1040px) {
  .navbar {
    flex-wrap: wrap;
    padding: 0 24px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-shell {
    position: static;
    flex-basis: 100%;
    display: none;
    padding: 10px 24px 26px;
    background: white;
    border-top: 1px solid rgba(6, 52, 95, 0.14);
  }

  .site-header.nav-open .nav-shell {
    display: block;
  }

  .nav-links,
  .nav-actions {
    display: grid;
    justify-items: stretch;
  }

  .nav-links a,
  .nav-button,
  .nav-actions a {
    min-height: 54px;
    padding: 0;
    width: 100%;
  }

  .nav-actions {
    grid-template-columns: 1fr 44px 44px;
    margin-top: 8px;
  }

  .mega-menu {
    position: static;
    max-height: none;
    overflow-y: visible;
    border-top: 1px solid var(--line);
  }

  .mega-grid {
    grid-template-columns: 1fr;
    padding: 32px 24px 38px;
    gap: 32px;
  }

  .hero-content {
    margin-left: 24px;
  }

  .content-band {
    padding-left: 24px;
    padding-right: 24px;
  }

  .trending-band {
    padding-left: 24px;
    padding-right: 24px;
  }

  .mission-vision-band {
    padding-left: 24px;
    padding-right: 24px;
  }

  .clients-band {
    padding-left: 24px;
    padding-right: 24px;
  }

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

  .contact-band {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-wrap {
    max-width: 760px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .insights-details {
    padding-left: 24px;
    padding-right: 24px;
  }

  .article-page {
    padding-left: 24px;
    padding-right: 24px;
  }

  .villa-showcase {
    grid-template-columns: 1fr;
  }

  .trade-showcase {
    grid-template-columns: 1fr;
  }

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

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

  .home-leadership-grid,
  .home-leader-card {
    grid-template-columns: 1fr;
  }

  .mission-vision-wrap,
  .leader-feature,
  .directors-grid,
  .leadership-small-grid,
  .project-execution-card,
  .erp-showcase,
  .article-list-panel {
    grid-template-columns: 1fr;
  }

  .director-card-compact {
    width: 100%;
    min-height: auto;
  }

  .director-card {
    min-height: auto;
  }

  .director-card-match-finance {
    min-height: auto !important;
  }

  .director-card-match-market {
    min-height: auto !important;
  }

  .mission-vision-wrap {
    gap: 24px;
    align-items: start;
  }

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

  .trending-grid {
    gap: 16px;
  }

  .trend-card {
    flex-basis: min(88vw, 380px);
    grid-template-rows: auto auto;
    min-height: auto;
  }

  .detail-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .article-wrap h1 {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .navbar {
    min-height: 68px;
    padding: 0 18px;
  }

  .brand {
    width: 190px;
    min-width: 190px;
  }

  .brand img {
    width: 180px;
    height: 54px;
  }

  .nav-shell {
    top: 72px;
  }

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

  .mission-vision-band {
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .mission-vision-copy h2 {
    font-size: 38px;
  }

  .mission-vision-cards article,
  .pillar-grid article {
    padding: 22px;
  }

  .mission-vision-cards {
    grid-template-columns: 1fr;
  }

  .mission-vision-visual {
    margin-top: 0;
  }

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

  .client-logo {
    min-height: 82px;
    padding: 12px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(4, 20, 33, 0.94), rgba(4, 20, 33, 0.5)),
      linear-gradient(0deg, rgba(4, 20, 33, 0.94), rgba(4, 20, 33, 0.08) 60%);
  }

  .hero-content {
    width: calc(100% - 48px);
    margin: 0 24px 48px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .article-page {
    min-height: calc(100vh - 68px);
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .villa-showcase {
    gap: 16px;
    margin-top: 30px;
  }

  .villa-showcase img {
    min-height: 220px;
  }

  .trade-showcase {
    gap: 16px;
    margin-top: 30px;
  }

  .trade-showcase img {
    height: 220px;
  }

  .trending-band {
    padding-top: 56px;
    padding-bottom: 66px;
  }

  .trend-copy,
  .dashboard-preview {
    margin-left: 0;
    margin-right: 0;
  }

  .trend-copy {
    padding: 24px;
  }

  .dashboard-preview {
    margin-bottom: 24px;
  }

  .contact-band {
    padding-top: 56px;
    padding-bottom: 66px;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-intro h2 {
    font-size: 42px;
  }

  .contact-intro p:last-child {
    font-size: 17px;
  }

  .contact-details div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .cert-badge {
    grid-template-columns: 58px 1fr;
  }

  .contact-actions a {
    width: 100%;
  }

  .article-actions {
    gap: 10px;
  }

  .back-link {
    width: 100%;
  }

  .article-wrap h1 {
    font-size: 40px;
    line-height: 1.02;
  }

  .article-lead {
    font-size: 18px;
  }

  .article-grid {
    margin-top: 34px;
  }

  .article-grid article {
    min-height: auto;
    padding: 24px;
  }

  .article-grid h2 {
    font-size: 22px;
  }

  .hero-actions a {
    width: 100%;
  }

  .mega-intro h2 {
    font-size: 28px;
  }

  .mega-topics a,
  .mega-highlights article a {
    font-size: 16px;
  }
}

.vestano-assistant {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  font-family: inherit;
}

.assistant-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 8px 18px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(4, 20, 33, 0.92);
  color: white;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  backdrop-filter: blur(18px);
}

.assistant-orb {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 22%, #ffffff 0 8%, transparent 18%),
    conic-gradient(from 120deg, #0074bd, #24d3ff, #f5a126, #0074bd, #ffffff, #0074bd);
  box-shadow:
    0 0 0 5px rgba(0, 116, 189, 0.16),
    0 0 24px rgba(36, 211, 255, 0.6);
  animation: assistantPulse 2.8s ease-in-out infinite;
}

.assistant-orb::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: inherit;
  background: rgba(4, 20, 33, 0.72);
}

.assistant-label {
  font-size: 15px;
  font-weight: 900;
}

.assistant-panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: min(380px, calc(100vw - 32px));
  max-height: min(620px, calc(100vh - 126px));
  display: none;
  overflow: hidden;
  border: 1px solid rgba(0, 116, 189, 0.32);
  border-radius: 22px;
  background: rgba(4, 20, 33, 0.98);
  color: white;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.vestano-assistant.is-open .assistant-panel {
  display: grid;
  grid-template-rows: auto minmax(180px, 1fr) auto auto;
}

.assistant-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(0, 116, 189, 0.34), rgba(245, 161, 38, 0.16)),
    rgba(8, 36, 58, 0.86);
}

.assistant-head span {
  display: block;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.assistant-head strong {
  display: block;
  margin-top: 3px;
  font-size: 20px;
}

.assistant-head-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.assistant-close {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: transparent;
  color: white;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.assistant-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  overflow-y: auto;
  padding: 18px;
}

.assistant-message {
  max-width: 86%;
}

.assistant-message p {
  margin: 0;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.45;
  white-space: pre-line;
}

.assistant-message.is-bot {
  align-self: flex-start;
}

.assistant-message.is-bot p {
  border-bottom-left-radius: 5px;
  background: #0b2f4b;
  color: #eef8ff;
}

.assistant-message.is-user {
  align-self: flex-end;
}

.assistant-message.is-user p {
  border-bottom-right-radius: 5px;
  background: var(--blue);
  color: white;
}

.assistant-message.is-typing p {
  color: #9ed5ff;
}

.assistant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 9px;
}

.assistant-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(245, 161, 38, 0.85);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.assistant-quick {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 18px 14px;
}

.assistant-quick button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-weight: 800;
  cursor: pointer;
}

.assistant-form {
  display: grid;
  grid-template-columns: 1fr 44px auto;
  gap: 10px;
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.assistant-form input {
  min-width: 0;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font: inherit;
}

.assistant-form input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.assistant-form button {
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: #041421;
  font-weight: 900;
  cursor: pointer;
}

.assistant-form .assistant-mic {
  display: grid;
  place-items: center;
  width: 44px;
  padding: 0;
  border: 1px solid rgba(0, 116, 189, 0.56);
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.85) 0 8%, transparent 18%),
    linear-gradient(135deg, #0070b8, #24d3ff);
  color: white;
  box-shadow: 0 0 0 rgba(36, 211, 255, 0);
}

.assistant-mic svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.vestano-assistant.is-listening .assistant-mic,
.vestano-assistant.is-listening .assistant-orb {
  animation: assistantListening 1s ease-in-out infinite;
  box-shadow:
    0 0 0 7px rgba(36, 211, 255, 0.16),
    0 0 28px rgba(36, 211, 255, 0.72);
}

.vestano-assistant.is-speaking .assistant-mic {
  background: var(--yellow);
  color: #041421;
  border-color: rgba(245, 161, 38, 0.95);
  box-shadow: 0 0 22px rgba(245, 161, 38, 0.42);
}

@keyframes assistantPulse {
  0%,
  100% {
    transform: scale(1);
    filter: saturate(1);
  }
  50% {
    transform: scale(1.06);
    filter: saturate(1.35);
  }
}

@keyframes assistantListening {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

@media (max-width: 640px) {
  .vestano-assistant {
    right: 14px;
    bottom: 14px;
  }

  .assistant-toggle {
    min-height: 54px;
    padding-right: 14px;
  }

  .assistant-label {
    font-size: 13px;
  }

  .assistant-panel {
    right: -2px;
    bottom: 68px;
  }

  .assistant-form {
    grid-template-columns: 1fr 42px;
  }

  .assistant-form button[type="submit"] {
    grid-column: 1 / -1;
  }
}
