:root {
  --brand: #e63712;
  --text: #242424;
  --muted: #5f666d;
  --line: #d8dde1;
  --soft: #eef1f3;
  --white: #ffffff;
  --ink: #30363b;
  --green: #5f6f63;
  --shadow: 0 14px 34px rgba(26, 32, 38, 0.10);
}

* { box-sizing: border-box; }

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  background: #f7f8f9;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
}

.top-contact-bar {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 1px solid rgba(216, 221, 225, 0.75);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.top-contact-bar strong {
  color: var(--brand);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  width: 94px;
  height: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #6b7075;
  font-size: 14px;
  white-space: nowrap;
}

.menu a,
.menu-trigger {
  border-bottom: 1px solid transparent;
  padding: 6px 0;
}

.menu a:hover,
.menu-item:hover .menu-trigger {
  color: #000000;
  border-color: var(--brand);
}

.menu a.active,
.menu-trigger.active {
  color: var(--brand);
  border-color: var(--brand);
}

.menu-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
}

.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.menu-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 238px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 36px rgba(20, 27, 33, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.menu-item:hover .dropdown,
.menu-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 9px 10px;
  border: 0;
  border-radius: 5px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.3;
  white-space: normal;
}

.dropdown a:hover {
  background: var(--soft);
  color: #000000;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand);
  border-radius: 4px;
  padding: 10px 18px;
  color: var(--brand);
  background: transparent;
  font-size: 15px;
  font-weight: 700;
}

.button.primary {
  color: #ffffff;
  background: var(--brand);
}

.hero,
.page-hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(255, 255, 255, 0.60) 100%),
    url("https://static.wixstatic.com/media/c78bb8_405092cc15c843ddb63ac2248c892342~mv2.jpg/v1/fill/w_1500,h_860,al_c,q_85,enc_auto/c78bb8_405092cc15c843ddb63ac2248c892342~mv2.jpg") center / cover;
}

.hero {
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  padding: 58px 0 54px;
}

.page-hero {
  padding: 58px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.76fr);
  gap: 40px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1, h2, h3 {
  letter-spacing: 0;
  line-height: 1.2;
}

h1 {
  max-width: 850px;
  color: var(--brand);
  font-size: 38px;
  font-weight: 500;
}

h2 {
  color: var(--brand);
  font-size: 25px;
  font-weight: 600;
}

h3 {
  color: var(--brand);
  font-size: 18px;
  font-weight: 600;
}

.lead {
  max-width: 790px;
  margin-top: 18px;
  color: var(--text);
  font-size: 16px;
}

.founder-name-block {
  display: grid;
  gap: 4px;
  max-width: 790px;
  margin-top: 18px;
}

.founder-name-block strong {
  color: var(--brand);
  font-size: 26px;
  line-height: 1.2;
}

.founder-name-block span {
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
}

.founder-profile-hero .eyebrow,
.founder-profile-hero h1,
.founder-profile-hero .founder-name-block strong,
.founder-profile-hero .founder-name-block span,
.founder-profile-hero .lead {
  color: var(--ink);
  text-decoration: none;
}

.founder-profile-hero .eyebrow {
  margin-bottom: 6px;
  font-size: 12px;
}

.founder-profile-hero h1 {
  font-size: 22px;
  font-weight: 600;
}

.founder-profile-hero .founder-name-block {
  gap: 2px;
  margin-top: 12px;
}

.founder-profile-hero .founder-name-block strong {
  color: var(--brand);
  font-size: 28px;
}

.founder-profile-hero .founder-name-block span {
  font-size: 15px;
}

.founder-profile-hero .lead {
  margin-top: 14px;
  font-size: 15px;
}

.founder-profile-page .subpage-copy .panel p {
  text-align: justify;
}

.founder-profile-media {
  display: grid;
  grid-column: 2;
  grid-row: 1;
  align-content: start;
  gap: 18px;
}

.founder-profile-cta {
  margin-top: 34px;
  padding: 28px 30px;
  border-top: 1px solid var(--line);
  background: rgba(238, 241, 243, 0.72);
}

.founder-profile-cta p {
  max-width: 820px;
  color: var(--ink);
  font-size: 16px;
}

.founder-profile-cta .actions {
  margin-top: 22px;
}

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

.hero-panel,
.card,
.panel,
.photo-card,
.note-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(230, 55, 18, 0.09), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 18% 16%, rgba(230, 55, 18, 0.17), transparent 28%);
}

.hero-panel h2 {
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
}

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

.metric {
  min-height: 82px;
  padding: 15px;
  border: 1px solid rgba(216, 221, 225, 0.9);
  border-radius: 6px;
  background: #ffffff;
}

.metric strong {
  display: block;
  color: var(--brand);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 500;
}

.metric span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.section { padding: 56px 0; }
.section.soft { background: var(--soft); }
.section.white { background: #ffffff; }

.section-head {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 820px;
  color: var(--muted);
  font-size: 15px;
}

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

.industry-detail-grid {
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.industry-detail-grid .card {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  column-gap: 24px;
  row-gap: 10px;
  min-height: 0;
  border-left: 4px solid var(--brand);
}

.industry-card-media {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  aspect-ratio: 3 / 2;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
}

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

.subpage-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 34px;
  align-items: start;
}

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

.subpage-copy .panel {
  box-shadow: 0 18px 42px rgba(36, 36, 36, 0.08);
}

.subpage-copy .actions {
  margin-top: 4px;
}

.subpage-image {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(36, 36, 36, 0.12);
  background: #fff;
}

.subpage-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.subpage-points {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.subpage-copy .subpage-points span {
  display: flex;
  align-items: center;
  min-height: 40px;
  border-left: 3px solid var(--brand);
  border-radius: 0;
  padding: 10px 14px;
  color: var(--ink);
  background: #f5f6f7;
  box-shadow: none;
  font-size: 14px;
  font-weight: 600;
}

.subpage-copy .subpage-points span::before {
  content: none;
}

.linkedin-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid #0a66c2;
  border-radius: 6px;
  color: #0a66c2;
  background: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.linkedin-profile-link:hover,
.linkedin-profile-link:focus-visible {
  color: #ffffff;
  background: #0a66c2;
}

.linkedin-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  color: #ffffff;
  background: #0a66c2;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.linkedin-profile-link:hover .linkedin-mark,
.linkedin-profile-link:focus-visible .linkedin-mark {
  color: #0a66c2;
  background: #ffffff;
}

.industry-detail-grid .card h3 {
  grid-column: 1;
  grid-row: 1;
  margin-top: 0;
  padding-top: 2px;
  color: var(--brand);
}

.industry-detail-grid .card p {
  grid-column: 2;
  margin-top: 0;
  line-height: 1.58;
}

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

.card {
  min-height: 158px;
  padding: 22px;
}

.panel {
  padding: 28px;
}

.card p,
.panel p,
.photo-card p,
.note-band p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

.image-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 28px;
  align-items: stretch;
}

.image-frame {
  min-height: 360px;
  border-radius: 8px;
  background: url("https://static.wixstatic.com/media/c78bb8_f83a81b112c54db58d2c4bed2da15eb9~mv2.jpg/v1/fill/w_1100,h_780,al_c,q_85,enc_auto/c78bb8_f83a81b112c54db58d2c4bed2da15eb9~mv2.jpg") center / cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-hero {
  padding: 70px 0 64px;
}

.about-brief-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 24px 28px;
  align-items: stretch;
}

.about-brief-heading {
  position: relative;
  min-height: 250px;
  padding: 34px 38px 32px;
  background: rgba(255, 255, 255, 0.78);
  border-left: 5px solid var(--brand);
  box-shadow: 0 16px 40px rgba(26, 32, 38, 0.08);
}

.about-brief-heading::after {
  position: absolute;
  right: 28px;
  bottom: 24px;
  width: 150px;
  height: 1px;
  content: "";
  background: var(--brand);
}

.about-brief-heading .lead {
  max-width: 780px;
  margin-top: 18px;
}

.about-brief-heading p:not(.eyebrow):not(.lead) {
  max-width: 820px;
  margin-top: 18px;
  color: var(--text);
  font-size: 15px;
}

.about-brief-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: 0 34px 0 34px;
  background: var(--brand);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.about-brief-card span {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-brief-card strong {
  display: block;
  margin-top: 14px;
  font-size: 26px;
  line-height: 1.15;
}

.about-brief-card p {
  margin-top: 16px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.45;
}

.about-brief-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.about-brief-tags b {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 4px;
  padding: 4px 9px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.about-brief-method {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(230, 55, 18, 0.28);
  border-bottom: 1px solid rgba(230, 55, 18, 0.28);
  background: rgba(255, 255, 255, 0.72);
}

.about-brief-method.single {
  display: block;
  border: 1px solid rgba(230, 55, 18, 0.22);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    linear-gradient(90deg, rgba(230, 55, 18, 0.08), transparent);
  box-shadow: 0 12px 30px rgba(26, 32, 38, 0.08);
}

.about-brief-method > div {
  min-height: 170px;
  padding: 24px 26px;
  border-right: 1px solid rgba(230, 55, 18, 0.24);
}

.about-brief-method.single > div {
  position: relative;
  min-height: 0;
  border-right: 0;
  padding: 28px 34px 30px 118px;
}

.about-brief-method.single > div::before {
  position: absolute;
  left: 34px;
  top: 32px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #ffffff;
  content: "EI";
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}

.about-brief-method > div:last-child {
  border-right: 0;
}

.about-brief-method span {
  display: block;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
}

.about-brief-method h3 {
  margin-top: 18px;
  color: var(--brand);
  font-size: 17px;
  font-weight: 600;
}

.about-brief-method.single h3 {
  max-width: 820px;
  margin-top: 8px;
  font-size: 21px;
  line-height: 1.24;
}

.about-brief-method p {
  margin-top: 10px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.about-brief-method.single p {
  max-width: 920px;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.55;
}

.method-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.method-tags b {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(230, 55, 18, 0.32);
  border-radius: 4px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
}

.founder-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(238, 241, 243, 0.9)),
    url("https://static.wixstatic.com/media/c78bb8_405092cc15c843ddb63ac2248c892342~mv2.jpg/v1/fill/w_1500,h_860,al_c,q_85,enc_auto/c78bb8_405092cc15c843ddb63ac2248c892342~mv2.jpg") center / cover;
}

.founder-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  border-radius: 48px;
  padding: 54px 52px;
  background: linear-gradient(135deg, #ff5a3b 0%, var(--brand) 100%);
  box-shadow: var(--shadow);
}

.founder-photo {
  min-height: 280px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08)),
    url("https://static.wixstatic.com/media/c78bb8_405092cc15c843ddb63ac2248c892342~mv2.jpg/v1/fill/w_760,h_760,al_c,q_85,enc_auto/c78bb8_405092cc15c843ddb63ac2248c892342~mv2.jpg") center / cover;
  box-shadow: 0 12px 28px rgba(18, 21, 24, 0.22);
}

.founder-copy .eyebrow {
  margin-bottom: 4px;
  color: #ffffff;
  text-transform: none;
}

.founder-copy h2 {
  color: #ffffff;
}

.founder-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 14px;
  color: #171717;
  line-height: 1.58;
}

.center-title {
  max-width: none;
  margin-bottom: 24px;
  text-align: center;
  font-size: 36px;
}

.capability-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(238, 241, 243, 0.9)),
    url("https://static.wixstatic.com/media/c78bb8_f83a81b112c54db58d2c4bed2da15eb9~mv2.jpg/v1/fill/w_1600,h_900,al_c,q_78,enc_auto/c78bb8_f83a81b112c54db58d2c4bed2da15eb9~mv2.jpg") center / cover;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.capability-card {
  min-height: 172px;
  padding: 28px 30px;
  border: 1px solid #cfd7de;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.capability-card h3 {
  margin-top: 22px;
  color: var(--brand);
  font-size: 15px;
  font-weight: 600;
}

.capability-card p {
  margin-top: 10px;
  color: #171717;
  font-size: 13px;
  line-height: 1.32;
}

.capability-icon {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(26, 32, 38, 0.12);
}

.capability-icon::before,
.capability-icon::after {
  position: absolute;
  content: "";
}

.icon-search::before {
  width: 15px;
  height: 15px;
  border: 3px solid #111111;
  border-radius: 50%;
  left: 7px;
  top: 7px;
}

.icon-search::after {
  width: 14px;
  height: 3px;
  border-radius: 2px;
  background: #111111;
  left: 20px;
  top: 24px;
  transform: rotate(45deg);
  transform-origin: left center;
}

.icon-report::before {
  inset: 7px 9px;
  border: 2px solid #30363b;
  border-radius: 2px;
}

.icon-report::after {
  width: 12px;
  height: 8px;
  left: 12px;
  top: 13px;
  border-top: 2px solid #30363b;
  border-bottom: 2px solid #30363b;
  box-shadow: 0 5px 0 #30363b;
}

.icon-network::before {
  width: 22px;
  height: 22px;
  left: 7px;
  top: 7px;
  background:
    radial-gradient(circle at 50% 0%, #30363b 0 3px, transparent 4px),
    radial-gradient(circle at 0% 82%, #30363b 0 3px, transparent 4px),
    radial-gradient(circle at 100% 82%, #30363b 0 3px, transparent 4px);
}

.icon-network::after {
  width: 21px;
  height: 17px;
  left: 8px;
  top: 11px;
  border-left: 2px solid #30363b;
  border-right: 2px solid #30363b;
  border-bottom: 2px solid #30363b;
  transform: rotate(45deg);
}

.icon-ipr {
  background: #334854;
}

.icon-ipr::before {
  width: 19px;
  height: 19px;
  left: 8px;
  top: 8px;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.icon-ipr::after {
  width: 12px;
  height: 8px;
  left: 12px;
  top: 14px;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.icon-market {
  background: #8d9292;
}

.icon-market::before {
  width: 21px;
  height: 15px;
  left: 7px;
  top: 13px;
  background:
    linear-gradient(to top, #ffffff 0 8px, transparent 8px) 0 7px / 5px 15px no-repeat,
    linear-gradient(to top, #ffffff 0 13px, transparent 13px) 8px 2px / 5px 20px no-repeat,
    linear-gradient(to top, #ffffff 0 18px, transparent 18px) 16px -3px / 5px 25px no-repeat;
}

.icon-market::after {
  width: 21px;
  height: 2px;
  left: 7px;
  top: 28px;
  background: #ffffff;
}

.icon-lock {
  background: #b6bab8;
}

.icon-lock::before {
  width: 14px;
  height: 12px;
  left: 11px;
  top: 9px;
  border: 3px solid #ffffff;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.icon-lock::after {
  width: 20px;
  height: 14px;
  left: 8px;
  top: 18px;
  border-radius: 3px;
  background: #ffffff;
}

.icon-camera {
  background: #b6bab8;
}

.icon-camera::before {
  width: 23px;
  height: 17px;
  left: 7px;
  top: 12px;
  border-radius: 4px;
  background: #ffffff;
}

.icon-camera::after {
  width: 9px;
  height: 9px;
  left: 14px;
  top: 16px;
  border: 2px solid #8d9292;
  border-radius: 50%;
}

.icon-time {
  background: #838682;
}

.icon-time::before {
  width: 13px;
  height: 13px;
  left: 6px;
  top: 11px;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.icon-time::after {
  width: 13px;
  height: 9px;
  left: 18px;
  top: 12px;
  border-radius: 5px;
  background: #ffffff;
  box-shadow: -7px 9px 0 -4px #ffffff;
}

.strength-section {
  background: #f7f8f9;
}

.strength-feature {
  display: grid;
  grid-template-columns: minmax(270px, 0.78fr) minmax(440px, 1.22fr);
  gap: 28px;
  align-items: center;
}

.strength-copy h3 {
  color: var(--brand);
  font-size: 15px;
  font-weight: 600;
}

.strength-copy p {
  margin-top: 14px;
  color: #171717;
  font-size: 14px;
  line-height: 1.38;
}

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

.strength-metric {
  position: relative;
  min-height: 138px;
  overflow: hidden;
  padding: 22px;
  border-radius: 14px;
  background: var(--brand);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.strength-metric::before,
.strength-metric::after {
  position: absolute;
  right: 32px;
  top: 30px;
  width: 42px;
  height: 42px;
  content: "";
  opacity: 0.95;
  background:
    linear-gradient(#ffffff, #ffffff) center / 2px 100% no-repeat,
    linear-gradient(#ffffff, #ffffff) center / 100% 2px no-repeat;
}

.strength-metric::before {
  transform: rotate(28deg);
}

.strength-metric::after {
  transform: rotate(-18deg);
}

.strength-metric strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.strength-metric span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: block;
  font-size: 13px;
  line-height: 1.25;
}

.service-row {
  display: grid;
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.service-item .number {
  color: var(--muted);
  font-size: 14px;
  padding-top: 4px;
}

.services-showcase {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(238,241,243,0.86)),
    url("https://static.wixstatic.com/media/c78bb8_f83a81b112c54db58d2c4bed2da15eb9~mv2.jpg/v1/fill/w_1600,h_900,al_c,q_75,enc_auto/c78bb8_f83a81b112c54db58d2c4bed2da15eb9~mv2.jpg") center / cover;
}

.services-intro {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.services-intro h1 {
  max-width: none;
}

.services-intro .lead {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 28px;
}

.service-photo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(23, 31, 39, 0.18);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.service-photo-card:hover {
  border-color: rgba(230, 55, 18, 0.32);
  box-shadow: 0 18px 34px rgba(23, 31, 39, 0.22);
}

.service-photo-card img {
  width: 100%;
  aspect-ratio: 16 / 10.6;
  object-fit: cover;
  filter: brightness(0.82) contrast(1.08) saturate(0.92);
  transform: scale(1);
  transition: filter 220ms ease, transform 220ms ease;
}

.service-photo-card:hover img,
.service-photo-card:focus-visible img {
  filter: brightness(1.02) contrast(1.08) saturate(1.04);
  transform: scale(1.045);
}

.service-photo-card h3 {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  color: var(--brand);
  text-align: center;
  font-size: 15px;
  line-height: 1.18;
  background: #ffffff;
}

.service-detail-hero {
  padding: 62px 0 46px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.84)),
    var(--service-image) center / cover;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.48fr);
  gap: 28px;
  align-items: start;
}

.service-hero-side {
  display: grid;
  gap: 16px;
}

.service-hero-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(26, 32, 38, 0.16);
}

.service-hero-photo img {
  width: 100%;
  aspect-ratio: 16 / 10.4;
  object-fit: cover;
}

.service-hero-photo figcaption {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  background: #ffffff;
}

.service-detail-copy {
  padding: 30px;
  border-left: 5px solid var(--brand);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 38px rgba(26, 32, 38, 0.08);
}

.service-detail-copy h1 {
  max-width: 860px;
}

.service-detail-copy p:not(.eyebrow) {
  max-width: 920px;
  margin-top: 16px;
  color: var(--text);
  font-size: 15px;
}

.service-summary-card {
  padding: 24px;
  border-radius: 0 28px 0 28px;
  background: var(--brand);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.service-summary-card strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.service-summary-card p {
  margin-top: 12px;
  color: #ffffff;
  font-size: 14px;
}

.service-meta-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.service-meta-list span {
  display: block;
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 4px;
  padding: 9px 10px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.service-visual-section {
  padding-top: 46px;
  padding-bottom: 46px;
}

.service-image-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 30px;
  align-items: center;
}

.service-image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(26, 32, 38, 0.16);
}

.service-image-frame img {
  width: 100%;
  aspect-ratio: 16 / 9.6;
  object-fit: cover;
}

.service-image-frame figcaption {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  background: #ffffff;
}

.service-image-copy {
  padding: 4px 0;
}

.service-image-copy h2 {
  max-width: 520px;
}

.service-image-copy p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
}

.service-proof-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.service-proof-list span {
  display: block;
  border-left: 3px solid var(--brand);
  padding: 10px 12px;
  background: #f7f8f9;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.detail-split {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(300px, 0.46fr);
  gap: 22px;
  align-items: stretch;
}

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

.scope-list span {
  display: block;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  background: #ffffff;
  color: var(--ink);
  font-size: 14px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: process;
}

.process-card {
  position: relative;
  min-height: 180px;
  padding: 48px 18px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(26, 32, 38, 0.08);
}

.process-card::before {
  position: absolute;
  top: 18px;
  left: 18px;
  counter-increment: process;
  content: "0" counter(process);
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
}

.process-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.deliverable-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(230, 55, 18, 0.24);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.76)),
    linear-gradient(90deg, rgba(230,55,18,0.08), transparent);
  box-shadow: 0 12px 30px rgba(26, 32, 38, 0.08);
}

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

.related-grid a {
  display: block;
  min-height: 86px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px;
  background: #ffffff;
  color: var(--brand);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(26, 32, 38, 0.06);
}

.related-grid a:hover {
  color: #000000;
  border-color: var(--brand);
}

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

.photo-card { overflow: hidden; }

.photo-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.photo-card .copy { padding: 22px; }

.office-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 24px;
  align-items: stretch;
}

.office-photo {
  min-height: 310px;
  border-radius: 6px;
  background: url("https://static.wixstatic.com/media/c78bb8_a42dd64ef6c54b3596c9ff07b1b0cf47~mv2.png/v1/fill/w_900,h_620,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/mumbai-skyline.png") center / cover;
  position: relative;
  overflow: hidden;
}

.office-photo::after {
  content: "Mumbai Head Office";
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.city-band {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(238, 241, 243, 0.86);
}

.city-group {
  display: grid;
  grid-template-columns: 178px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.city-group:first-child { padding-top: 0; }
.city-group:last-child { padding-bottom: 0; border-bottom: 0; }

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.city-list span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #ffffff;
  padding: 5px 10px;
  color: var(--ink);
  font-size: 13px;
}

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

.list-panel span {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(26, 32, 38, 0.08);
}

.work-background {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(238, 241, 243, 0.9)),
    url("https://static.wixstatic.com/media/c78bb8_f83a81b112c54db58d2c4bed2da15eb9~mv2.jpg/v1/fill/w_1600,h_900,al_c,q_78,enc_auto/c78bb8_f83a81b112c54db58d2c4bed2da15eb9~mv2.jpg") center / cover;
}

.work-background-continuation {
  padding-top: 28px;
  background:
    linear-gradient(180deg, rgba(238, 241, 243, 0.9), rgba(255, 255, 255, 0.88)),
    url("https://static.wixstatic.com/media/c78bb8_f83a81b112c54db58d2c4bed2da15eb9~mv2.jpg/v1/fill/w_1600,h_900,al_c,q_78,enc_auto/c78bb8_f83a81b112c54db58d2c4bed2da15eb9~mv2.jpg") center / cover;
}

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

.shell.work-application-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.growth-section {
  padding-bottom: 0;
}

.work-photo-section {
  padding-top: 28px;
  padding-bottom: 0;
}

.work-photo-section .photo-card h3 {
  color: var(--brand);
}

.work-growth-block {
  padding: 28px 30px;
  border-left: 4px solid var(--brand);
}

.work-growth-block h2 {
  color: var(--brand);
  font-size: 24px;
  font-weight: 500;
}

.work-growth-block p:last-child {
  max-width: 980px;
  margin-top: 10px;
  color: var(--muted);
}

.section-head.compact {
  display: block;
  margin-bottom: 18px;
}

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

.application-role-grid .card {
  min-height: 160px;
}

.application-note {
  margin-top: 18px;
}

.application-form {
  width: 100%;
}

.application-form h2 {
  margin-bottom: 4px;
  color: var(--brand);
}

.work-panel {
  min-height: 0;
  padding: 22px 24px;
}

.work-panel p {
  max-width: 680px;
  line-height: 1.65;
}

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

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

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 12px;
  font: inherit;
  color: var(--text);
  background: #ffffff;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 18px,
    calc(100% - 13px) 18px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

.contact-form textarea,
.contact-form .wide {
  grid-column: 1 / -1;
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.form-status {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.form-status.success {
  color: #22683f;
  font-weight: 700;
}

.form-status.error {
  color: var(--brand);
  font-weight: 700;
}

.website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.note-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.7fr);
  gap: 30px;
  align-items: center;
  padding: 28px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
  padding: 34px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.footer-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

@media (max-width: 980px) {
  .top-contact-bar {
    justify-content: flex-start;
    text-align: left;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
    gap: 14px;
  }

  .menu {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 18px;
    white-space: normal;
  }

  .menu a,
  .menu-trigger {
    overflow-wrap: anywhere;
  }

  .dropdown {
    left: 0;
    max-width: min(320px, calc(100vw - 40px));
  }

  .hero { min-height: auto; }

  .hero-grid,
  .image-split,
  .service-detail-layout,
  .service-image-feature,
  .detail-split,
  .deliverable-band,
  .about-brief-layout,
  .founder-feature,
  .section-head,
  .strength-feature,
  .office-panel,
  .work-application-layout,
  .city-group,
  .work-grid,
  .contact-grid,
  .note-band,
  .subpage-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .founder-profile-media {
    grid-column: 1;
    grid-row: auto;
  }

  .grid-3,
  .grid-2,
  .application-role-grid,
  .process-grid,
  .related-grid,
  .about-brief-method,
  .capability-grid,
  .strength-metrics,
  .service-card-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .industry-detail-grid .card {
    grid-template-columns: 1fr;
  }

  .industry-card-media,
  .industry-detail-grid .card h3,
  .industry-detail-grid .card p {
    grid-column: 1;
    grid-row: auto;
  }

  .about-brief-method > div {
    border-right: 0;
    border-bottom: 1px solid rgba(230, 55, 18, 0.24);
  }

  .about-brief-method > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px, 1180px); }
  .top-contact-bar {
    min-height: 44px;
    font-size: 13px;
    line-height: 1.35;
  }
  .nav {
    min-height: 0;
  }
  .logo {
    width: 84px;
  }
  .menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
    font-size: 13px;
  }
  .menu-item {
    min-height: 0;
  }
  .menu a,
  .menu-trigger {
    padding: 4px 0;
  }
  .dropdown {
    display: none;
  }
  .section { padding: 40px 0; }
  .page-hero { padding: 42px 0 36px; }
  h1 { font-size: 30px; }
  h2 { font-size: 22px; }
  .lead { font-size: 15px; }
  .center-title { font-size: 28px; }
  .about-brief-heading,
  .about-brief-card,
  .about-brief-method > div { padding: 20px; }
  .about-brief-method.single > div { padding: 82px 20px 20px; }
  .about-brief-method.single > div::before { left: 20px; top: 20px; }
  .about-brief-heading,
  .about-brief-card,
  .about-brief-method > div { min-height: 0; }
  .about-brief-heading::after { width: 90px; }
  .hero-panel,
  .card,
  .panel,
  .founder-feature,
  .capability-card,
  .city-band,
  .note-band { padding: 20px; }
  .founder-feature { border-radius: 28px; gap: 22px; }
  .founder-photo { min-height: 240px; }
  .capability-card { min-height: 0; }
  .strength-feature { gap: 22px; }
  .strength-metric { min-height: 120px; }
  .metric-grid,
  .contact-form { grid-template-columns: 1fr; }
  .service-item { grid-template-columns: 48px 1fr; gap: 14px; }
}
