:root {
  --ink: #07182c;
  --ink-soft: #142b45;
  --slate: #50627a;
  --muted: #5f7086;
  --line: #dce4ec;
  --line-strong: #cbd7e3;
  --paper: #ffffff;
  --wash: #f4f7fa;
  --wash-blue: #eef5fb;
  --blue: #1263e5;
  --blue-dark: #0b4db8;
  --cyan: #24bfd0;
  --navy: #07182c;
  --navy-light: #0d253f;
  --success: #0a7652;
  --error: #b42318;
  --shadow-sm: 0 1px 2px rgb(7 24 44 / 5%), 0 8px 24px rgb(7 24 44 / 6%);
  --shadow-md: 0 18px 60px rgb(7 24 44 / 12%);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 78px;
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3,
strong {
  text-wrap: balance;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 4.8vw, 4.35rem);
  font-weight: 630;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  font-weight: 620;
}

h3 {
  font-size: 1.28rem;
  font-weight: 640;
}

::selection {
  background: #cde9ff;
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid #0b4db8;
  outline-offset: 4px;
  border-radius: 4px;
}

.section-dark :focus-visible,
.site-footer :focus-visible {
  outline-color: #7ee7f0;
}

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

.section-shell {
  position: relative;
  padding-block: clamp(86px, 9vw, 138px);
}

.section-tint {
  background: var(--wash);
}

.section-dark {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 15%, rgb(36 191 208 / 12%), transparent 28%),
    radial-gradient(circle at 8% 90%, rgb(18 99 229 / 16%), transparent 30%),
    var(--navy);
  color: #b9c6d5;
}

.section-dark h2,
.section-dark h3,
.section-dark strong {
  color: #fff;
}

.section-dark .kicker {
  color: #7ddce6;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform var(--transition);
}

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

.kicker,
.eyebrow {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.section-intro {
  width: min(100%, 760px);
  margin-bottom: 56px;
}

.section-intro > p:last-child {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 1.1rem;
}

.section-intro.compact {
  margin-bottom: 42px;
}

.split-intro {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 70px;
}

.split-intro h2 {
  margin-bottom: 0;
}

.split-intro > p {
  padding-bottom: 6px;
}

.section-dark .section-intro > p:last-child {
  color: #aebdcd;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 0.91rem;
  font-weight: 720;
  line-height: 1.2;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 28px rgb(18 99 229 / 24%);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 14px 34px rgb(18 99 229 / 28%);
}

.button-secondary {
  border-color: var(--line-strong);
  background: #fff;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: #9eb3c9;
  background: var(--wash);
}

.button-light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 30px rgb(0 0 0 / 16%);
}

.button-light:hover {
  background: #eaf6ff;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgb(255 255 255 / 82%);
  backdrop-filter: blur(18px);
  transition: height var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  height: 68px;
  border-color: rgb(203 215 227 / 75%);
  box-shadow: 0 8px 30px rgb(7 24 44 / 5%);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  margin-bottom: 5px;
  font-size: 0.91rem;
  letter-spacing: -0.01em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.025em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  position: relative;
  color: #44576d;
  font-size: 0.82rem;
  font-weight: 650;
  white-space: nowrap;
  transition: color var(--transition);
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta {
  padding: 10px 15px;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
}

.site-nav .nav-cta:hover {
  background: var(--blue);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  display: flex;
  min-height: 780px;
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 72px);
  padding-bottom: 94px;
  background:
    radial-gradient(circle at 85% 28%, rgb(36 191 208 / 10%), transparent 23%),
    radial-gradient(circle at 75% 62%, rgb(18 99 229 / 8%), transparent 29%),
    linear-gradient(180deg, #fafdff 0%, #fff 72%);
}

.hero::before {
  position: absolute;
  top: var(--header-height);
  right: -100px;
  width: min(55vw, 760px);
  height: min(55vw, 760px);
  background-image: linear-gradient(rgb(18 99 229 / 5%) 1px, transparent 1px), linear-gradient(90deg, rgb(18 99 229 / 5%) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: radial-gradient(circle, #000 15%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: clamp(50px, 7vw, 96px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-name {
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  font-weight: 720;
  letter-spacing: 0.02em;
}

.hero h1 {
  max-width: 860px;
}

.hero-lede {
  max-width: 700px;
  margin-bottom: 26px;
  color: var(--slate);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 255 255 / 75%);
  color: #40536a;
  font-size: 0.76rem;
  font-weight: 660;
}

.hero-proof svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}

.text-links a {
  color: #3c5068;
  font-size: 0.82rem;
  font-weight: 680;
}

.text-links a:hover {
  color: var(--blue);
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.portrait-frame {
  position: relative;
  width: min(100%, 430px);
  margin-inline: auto;
  padding: 17px;
  border: 1px solid rgb(167 193 217 / 70%);
  border-radius: 40px 40px 148px 40px;
  background: rgb(255 255 255 / 68%);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.portrait-frame::before {
  position: absolute;
  z-index: -1;
  top: -28px;
  right: -30px;
  width: 170px;
  height: 170px;
  border: 1px solid rgb(18 99 229 / 14%);
  border-radius: 50%;
  content: "";
}

.portrait-frame::after {
  position: absolute;
  z-index: -1;
  bottom: 34px;
  left: -34px;
  width: 86px;
  height: 86px;
  border: 1px solid rgb(36 191 208 / 34%);
  border-radius: 24px;
  content: "";
  transform: rotate(18deg);
}

.portrait-frame > img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 28px 28px 132px 28px;
  object-fit: cover;
  object-position: center;
}

.portrait-grid {
  position: absolute;
  z-index: -1;
  inset: -60px;
  background: radial-gradient(circle at center, rgb(18 99 229 / 8%) 0 2px, transparent 2.5px);
  background-size: 17px 17px;
  mask-image: radial-gradient(circle, #000, transparent 72%);
}

.signal-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  max-width: 250px;
  padding: 12px 15px;
  border: 1px solid rgb(210 221 232 / 85%);
  border-radius: 13px;
  background: rgb(255 255 255 / 94%);
  box-shadow: var(--shadow-sm);
  color: var(--slate);
  font-size: 0.68rem;
  line-height: 1.35;
}

.signal-card strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.75rem;
}

.signal-card-top {
  top: 13%;
  left: -48px;
}

.signal-card-bottom {
  right: -18px;
  bottom: 11%;
}

.signal-icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 9px;
  background: var(--wash-blue);
  color: var(--blue);
  font-size: 1.2rem;
}

.availability-dot {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border: 3px solid #d7f5eb;
  border-radius: 50%;
  background: #16a675;
  box-shadow: 0 0 0 4px rgb(22 166 117 / 10%);
}

.hero-rule {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 14%, var(--line) 86%, transparent);
}

/* Impact */
.impact {
  padding-block: 90px 106px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.metric-card {
  position: relative;
  min-height: 180px;
  padding: 29px 25px;
}

.metric-card:not(:last-child) {
  border-right: 1px solid var(--line);
}

.metric-card::after {
  position: absolute;
  right: 24px;
  bottom: 20px;
  width: 22px;
  height: 2px;
  background: var(--cyan);
  content: "";
}

.metric-card strong {
  display: block;
  margin-bottom: 21px;
  color: var(--blue);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 680;
  letter-spacing: -0.05em;
  line-height: 1;
}

.metric-card span {
  color: var(--slate);
  font-size: 0.82rem;
  line-height: 1.55;
}

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

.problem-card {
  position: relative;
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.problem-card:hover {
  border-color: #b9cee1;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.card-index {
  display: block;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.problem-card h3 {
  margin-bottom: 14px;
}

.problem-card p {
  margin-bottom: 10px;
  color: var(--slate);
  font-size: 0.88rem;
  line-height: 1.6;
}

.problem-card .problem-impact {
  color: #273d55;
}

.problem-card p:last-child {
  margin-bottom: 0;
}

.problem-card p strong {
  color: var(--ink);
}

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

.service-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  border-color: #b8cde0;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.service-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 27px;
  place-items: center;
  border-radius: 11px;
  background: var(--wash-blue);
  color: var(--blue);
  font-size: 1.35rem;
}

.service-label {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card h3 {
  min-height: 56px;
  margin-bottom: 14px;
}

.service-card > p:not(.service-label) {
  margin-bottom: 17px;
  color: var(--slate);
  font-size: 0.84rem;
}

.service-card ul {
  display: grid;
  gap: 7px;
  margin: 0 0 22px;
  padding: 0;
  color: #435871;
  font-size: 0.76rem;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 14px;
}

.service-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.service-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 720;
}

.service-card > a span {
  color: var(--blue);
  font-size: 1.05rem;
  transition: transform var(--transition);
}

.service-card > a:hover {
  color: var(--blue);
}

.service-card > a:hover span {
  transform: translateX(3px);
}

/* Offers */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgb(255 255 255 / 13%);
  border-left: 1px solid rgb(255 255 255 / 13%);
}

.offer-card {
  min-height: 300px;
  padding: 32px;
  border-right: 1px solid rgb(255 255 255 / 13%);
  border-bottom: 1px solid rgb(255 255 255 / 13%);
  transition: background var(--transition);
}

.offer-card:hover {
  background: rgb(255 255 255 / 4%);
}

.offer-card > span {
  display: block;
  margin-bottom: 34px;
  color: #5fcbd8;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.13em;
}

.offer-card h3 {
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.offer-card p {
  margin-bottom: 12px;
  color: #afbdcd;
  font-size: 0.86rem;
}

.offer-card small {
  color: #7ddce6;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
}

.section-cta p {
  margin: 0;
  color: #c6d1dd;
}

/* Case studies */
.case-list {
  display: grid;
  gap: 12px;
}

.case-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: clip;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.case-card:hover,
.case-card[open] {
  border-color: #b9cde0;
  box-shadow: var(--shadow-sm);
}

.case-card summary {
  display: grid;
  min-height: 112px;
  grid-template-columns: 48px minmax(0, 1fr) auto 24px;
  align-items: center;
  gap: 22px;
  padding: 23px 28px;
  cursor: pointer;
  list-style: none;
}

.case-card summary::-webkit-details-marker {
  display: none;
}

.case-number {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.13em;
}

.case-title {
  display: grid;
  gap: 7px;
}

.case-title small {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 740;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-title strong {
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 650;
}

.case-proof {
  padding: 7px 11px;
  border: 1px solid #c9dcf2;
  border-radius: 999px;
  background: #f3f8fe;
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 740;
  white-space: nowrap;
}

.case-toggle {
  position: relative;
  width: 18px;
  height: 18px;
}

.case-toggle::before,
.case-toggle::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  content: "";
  transition: transform var(--transition);
}

.case-toggle::after {
  transform: rotate(90deg);
}

.case-card[open] .case-toggle::after {
  transform: rotate(0);
}

.case-body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.case-body > div {
  min-height: 180px;
  padding: 26px;
  background: #fbfcfd;
}

.case-body h3 {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-body p {
  margin: 0;
  color: #4b5e74;
  font-size: 0.82rem;
}

.case-body .case-outcome {
  background: #eef5fb;
}

.case-body .case-significance {
  background: var(--ink);
}

.case-body .case-significance h3 {
  color: #66d6e0;
}

.case-body .case-significance p {
  color: #c4d0dd;
}

/* Approach */
.approach-flow {
  display: grid;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  overflow: hidden;
}

.approach-flow li {
  position: relative;
  min-height: 188px;
  padding: 28px;
}

.approach-flow li:not(:nth-child(3n)) {
  border-right: 1px solid var(--line);
}

.approach-flow li:nth-child(-n + 6) {
  border-bottom: 1px solid var(--line);
}

.approach-flow li::after {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -7px;
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  content: "";
  transform: translateY(-50%);
}

.approach-flow li:nth-child(3n)::after,
.approach-flow li:last-child::after {
  display: none;
}

.approach-flow span {
  display: block;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 780;
  letter-spacing: 0.13em;
}

.approach-flow strong {
  display: block;
  margin-bottom: 9px;
  font-size: 1.05rem;
}

.approach-flow p {
  margin: 0;
  color: var(--slate);
  font-size: 0.8rem;
}

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

.expertise-card {
  min-height: 245px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: border-color var(--transition), transform var(--transition);
}

.expertise-card:hover {
  border-color: #acc5dc;
  transform: translateY(-3px);
}

.expertise-card > span {
  display: inline-flex;
  margin-bottom: 35px;
  padding: 5px 9px;
  border-radius: 6px;
  background: var(--wash-blue);
  color: var(--blue);
  font-size: 0.63rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.expertise-card h3 {
  margin-bottom: 13px;
}

.expertise-card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.81rem;
}

/* Experience */
.experience-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(60px, 9vw, 120px);
}

.experience-intro {
  position: sticky;
  top: 120px;
}

.experience-intro p:not(.kicker) {
  margin-bottom: 30px;
  color: #afbdcd;
}

.timeline {
  position: relative;
}

.timeline::before {
  position: absolute;
  top: 7px;
  bottom: 12px;
  left: 5px;
  width: 1px;
  background: linear-gradient(#3d76a7, rgb(61 118 167 / 10%));
  content: "";
}

.timeline-item {
  position: relative;
  padding: 0 0 54px 38px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 3px solid var(--navy);
  border-radius: 50%;
  background: #64d3df;
  box-shadow: 0 0 0 1px #64d3df;
  content: "";
}

.timeline-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
  color: #75dbe5;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline-meta small {
  padding: 3px 7px;
  border: 1px solid rgb(117 219 229 / 35%);
  border-radius: 99px;
  font-size: 0.56rem;
}

.timeline-item h3 {
  margin-bottom: 5px;
  font-size: 1.35rem;
}

.timeline-item .company {
  margin-bottom: 14px;
  color: #e2e9f0;
  font-size: 0.89rem;
  font-weight: 650;
}

.timeline-item > p:not(.company) {
  margin-bottom: 13px;
  color: #aab9c9;
  font-size: 0.86rem;
}

.timeline-item ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 17px;
  color: #9eadbe;
  font-size: 0.78rem;
}

/* Credentials */
.credential-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.credential-card {
  display: flex;
  min-height: 150px;
  grid-column: span 2;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.credential-card:nth-child(n + 4) {
  grid-column: span 3;
}

.credential-card > span {
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  place-items: center;
  border-radius: 15px;
  background: var(--wash-blue);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
}

.credential-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 730;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.credential-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

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

.engagement-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.engagement-card.featured {
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}

.engagement-card > span {
  display: block;
  margin-bottom: 60px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.12em;
}

.engagement-card h3 {
  margin-bottom: 15px;
  font-size: 1.35rem;
}

.engagement-card p {
  margin-bottom: 27px;
  color: var(--slate);
  font-size: 0.86rem;
}

.engagement-card .button {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

/* Insights */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.insight-card {
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.insight-meta {
  margin-bottom: 30px;
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin-bottom: 16px;
  font-size: 1.35rem;
}

.insight-card > p:not(.insight-meta),
.insight-card details p {
  color: var(--slate);
  font-size: 0.85rem;
}

.insight-card details {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.insight-card summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 720;
}

.insight-card details > div {
  padding-top: 17px;
}

.insight-card details p:last-child {
  margin-bottom: 0;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(60px, 10vw, 130px);
}

.about-visual {
  position: relative;
}

.about-photo {
  padding: 10px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 34px;
  background: rgb(255 255 255 / 5%);
}

.about-photo img {
  width: 100%;
  border-radius: 25px;
}

.about-stat {
  position: absolute;
  right: -40px;
  bottom: -32px;
  width: 230px;
  padding: 18px;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 16px;
  background: #102b48;
  box-shadow: 0 20px 50px rgb(0 0 0 / 28%);
}

.about-stat strong {
  display: block;
  margin-bottom: 8px;
  color: #70dce6;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.about-stat span {
  color: #b8c6d4;
  font-size: 0.73rem;
  line-height: 1.5;
}

.about-copy h2 {
  color: #fff;
}

.about-copy > p:not(.kicker) {
  color: #aebdcd;
}

.about-copy .about-lede {
  color: #e0e7ee;
  font-size: 1.12rem;
}

.principles {
  display: grid;
  gap: 18px;
  margin-top: 35px;
}

.principles > div {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  column-gap: 13px;
}

.principles span {
  padding-top: 2px;
  color: #68d4df;
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.1em;
}

.principles strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: 0.91rem;
}

.principles p {
  grid-column: 2;
  margin: 0;
  color: #92a5b8;
  font-size: 0.77rem;
}

/* Contact */
.contact {
  background:
    radial-gradient(circle at 8% 8%, rgb(18 99 229 / 7%), transparent 25%),
    #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(52px, 9vw, 115px);
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-copy > p:not(.kicker) {
  margin-bottom: 28px;
  color: var(--slate);
  font-size: 1rem;
}

.contact-options {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.contact-options > a,
.contact-options > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.contact-options > a:hover {
  border-color: #afc6dc;
  box-shadow: var(--shadow-sm);
}

.contact-options > a > span,
.contact-options > div > span {
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  place-items: center;
  border-radius: 9px;
  background: var(--wash-blue);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
}

.contact-options small,
.resume-card small {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-options strong,
.resume-card strong {
  display: block;
  font-size: 0.8rem;
  overflow-wrap: anywhere;
}

.resume-card {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
}

.resume-card:hover {
  background: var(--blue);
}

.resume-card > span {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 10px;
  font-size: 0.57rem;
  font-weight: 800;
}

.resume-card small {
  color: #aebdcd;
}

.resume-card b {
  margin-left: auto;
  font-size: 1.1rem;
}

.form-panel {
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.form-heading {
  margin-bottom: 30px;
}

.form-heading h3 {
  margin-bottom: 7px;
  font-size: 1.35rem;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

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

.field {
  display: grid;
  align-content: start;
}

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

.field label {
  margin-bottom: 7px;
  color: #233950;
  font-size: 0.74rem;
  font-weight: 720;
}

.field label > span:not([aria-hidden]) {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input,
.field select {
  min-height: 47px;
  padding: 10px 12px;
}

.field textarea {
  min-height: 130px;
  padding: 12px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #9fb4c9;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  outline: 3px solid #0b4db8;
  outline-offset: 2px;
  box-shadow: none;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--error);
}

.field > small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.67rem;
}

.field-error {
  min-height: 0;
  margin-top: 4px;
  color: var(--error);
  font-size: 0.67rem;
  line-height: 1.4;
}

.field-error:not(:empty) {
  min-height: 1em;
}

.honeypot {
  position: absolute;
  top: auto;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit-button {
  width: 100%;
  margin-top: 24px;
  cursor: pointer;
}

.submit-button[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.55;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 9px;
  font-size: 0.78rem;
}

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

.form-status.is-success {
  background: #eaf8f2;
  color: var(--success);
}

.form-status.is-error {
  background: #fff0ee;
  color: var(--error);
}

/* Footer */
.site-footer {
  padding: 62px 0 24px;
  background: #04101f;
  color: #96a7ba;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.6fr;
  gap: 60px;
  padding-bottom: 46px;
}

.footer-brand .brand-mark {
  background: #fff;
  color: var(--ink);
}

.footer-brand .brand-copy strong {
  color: #fff;
}

.footer-main > div:first-child > p {
  max-width: 350px;
  margin: 18px 0 0;
  font-size: 0.82rem;
}

.footer-main nav,
.footer-actions {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-main nav a,
.footer-actions a {
  width: fit-content;
  color: #b7c3d0;
  font-size: 0.78rem;
}

.footer-main nav a:hover,
.footer-actions a:hover {
  color: #71d7e1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.68rem;
}

.back-to-top {
  position: fixed;
  z-index: 50;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--blue);
}

/* Progressive enhancement */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive navigation */
@media (max-width: 1100px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 24px;
    left: 24px;
    display: none;
    max-height: calc(100vh - var(--header-height) - 24px);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-md);
    overflow-y: auto;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 46px;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    background: var(--wash);
  }

  .site-nav .nav-cta {
    margin-top: 7px;
    text-align: center;
  }

  .site-header.is-scrolled .site-nav {
    top: 68px;
  }

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

  .service-card {
    min-height: 390px;
  }

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

  .metric-card:nth-child(3) {
    border-right: 0;
  }

  .metric-card:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .metric-card:nth-child(4),
  .metric-card:nth-child(5) {
    grid-column: span 1;
  }

  .metric-card:last-child {
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 960px) {
  .hero {
    min-height: 0;
    padding-top: calc(var(--header-height) + 70px);
  }

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

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

  .hero-visual {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .portrait-frame {
    width: min(82vw, 430px);
  }

  .problem-grid,
  .offer-grid,
  .case-body,
  .engagement-grid,
  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-card:last-child,
  .offer-card:last-child,
  .engagement-card:last-child,
  .insight-card:last-child {
    grid-column: 1 / -1;
  }

  .engagement-card:last-child,
  .insight-card:last-child {
    min-height: auto;
  }

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

  .approach-flow li:not(:nth-child(3n)) {
    border-right: 0;
  }

  .approach-flow li:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .approach-flow li:nth-child(-n + 6) {
    border-bottom: 0;
  }

  .approach-flow li:not(:nth-last-child(-n + 2)) {
    border-bottom: 1px solid var(--line);
  }

  .approach-flow li:nth-child(3n)::after {
    display: block;
  }

  .approach-flow li:nth-child(even)::after,
  .approach-flow li:last-child::after {
    display: none;
  }

  .experience-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .experience-intro,
  .contact-copy {
    position: static;
    max-width: 720px;
  }

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

  .credential-card,
  .credential-card:nth-child(n + 4) {
    grid-column: span 1;
  }

  .credential-card:last-child {
    grid-column: 1 / -1;
  }

  .about-grid {
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
    gap: 60px;
  }

  .about-stat {
    right: -20px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

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

  .section-shell {
    padding-block: 78px;
  }

  h1 {
    font-size: clamp(2.5rem, 11vw, 3.65rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.85rem);
  }

  .brand-copy span {
    display: none;
  }

  .brand-copy strong {
    margin: 0;
  }

  .site-nav,
  .site-header.is-scrolled .site-nav {
    top: 68px;
    right: 16px;
    left: 16px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 75px;
  }

  .hero::before {
    width: 100vw;
    height: 100vw;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero .button {
    flex: 1 1 100%;
  }

  .text-links {
    display: grid;
    gap: 11px;
  }

  .portrait-frame {
    width: min(90vw, 390px);
    padding: 12px;
    border-radius: 30px 30px 112px 30px;
  }

  .portrait-frame > img {
    border-radius: 21px 21px 100px 21px;
  }

  .signal-card {
    max-width: 220px;
    padding: 10px 12px;
  }

  .signal-card-top {
    top: 10%;
    left: -5px;
  }

  .signal-card-bottom {
    right: -5px;
    bottom: 8%;
  }

  .split-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-intro {
    margin-bottom: 42px;
  }

  .metric-grid,
  .problem-grid,
  .service-grid,
  .offer-grid,
  .case-body,
  .approach-flow,
  .expertise-grid,
  .credential-grid,
  .engagement-grid,
  .insight-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .metric-card {
    min-height: 145px;
  }

  .metric-card:not(:last-child),
  .metric-card:nth-child(3),
  .metric-card:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-card:last-child {
    border-bottom: 0;
  }

  .problem-card:last-child,
  .offer-card:last-child,
  .engagement-card:last-child,
  .insight-card:last-child,
  .credential-card,
  .credential-card:nth-child(n + 4),
  .credential-card:last-child {
    grid-column: auto;
  }

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

  .service-card {
    min-height: 0;
  }

  .service-card h3 {
    min-height: 0;
  }

  .offer-card {
    min-height: 0;
  }

  .section-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .case-card summary {
    grid-template-columns: 34px minmax(0, 1fr) 20px;
    gap: 11px;
    padding: 20px 17px;
  }

  .case-proof {
    grid-column: 2;
    width: fit-content;
  }

  .case-toggle {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .case-body > div {
    min-height: 0;
  }

  .approach-flow li,
  .approach-flow li:nth-child(odd) {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .approach-flow li:last-child {
    border-bottom: 0;
  }

  .approach-flow li::after,
  .approach-flow li:nth-child(3n)::after {
    display: none;
  }

  .engagement-card {
    min-height: 330px;
  }

  .about-grid {
    gap: 72px;
  }

  .about-visual {
    width: min(84vw, 380px);
    margin-inline: auto;
  }

  .about-stat {
    right: -8px;
    bottom: -40px;
  }

  .contact-options strong {
    font-size: 0.74rem;
  }

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

  .field-full {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }

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

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

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-copy strong {
    font-size: 0.82rem;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    padding: 10px;
  }

  .hero-proof {
    gap: 7px;
  }

  .hero-proof span {
    font-size: 0.7rem;
  }

  .portrait-frame {
    width: 100%;
  }

  .signal-card {
    max-width: 195px;
  }

  .signal-card-top {
    top: 8px;
    left: 8px;
  }

  .signal-card-bottom {
    right: 5px;
    bottom: 20px;
  }

  .signal-card strong {
    font-size: 0.69rem;
  }

  .signal-card span:last-child {
    font-size: 0.6rem;
  }

  .metric-card,
  .problem-card,
  .service-card,
  .offer-card,
  .expertise-card,
  .engagement-card,
  .insight-card {
    padding: 23px;
  }

  .case-title strong {
    font-size: 0.93rem;
  }

  .credential-card {
    align-items: flex-start;
  }

  .form-panel {
    padding: 22px 17px;
    border-radius: 22px;
  }

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

  .footer-main > div:first-child {
    grid-column: auto;
  }

  .back-to-top {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .back-to-top,
  .contact,
  .site-footer,
  .button,
  .text-links {
    display: none !important;
  }

  .section-shell {
    padding-block: 34px;
  }

  .section-dark {
    background: #fff !important;
    color: #222 !important;
  }

  .section-dark h2,
  .section-dark h3,
  .section-dark strong {
    color: #111 !important;
  }

  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
