/* Impro Solutions Bangladesh: Predictive Maintenance and Industrial Cybersecurity */

:root {
  --ii-red: #e21d2d;
  --ii-red-dark: #b80f1d;
  --ii-ink: #18181b;
  --ii-ink-soft: #26262b;
  --ii-text: #22242a;
  --ii-muted: #616570;
  --ii-line: #e5e5e8;
  --ii-soft: #f5f5f6;
  --ii-white: #ffffff;
  --ii-blue: #1462a6;
  --ii-radius: 24px;
  --ii-shadow: 0 20px 55px rgba(17, 17, 20, .10);
}

/* The two new cards on the existing homepage. All other homepage cards remain untouched. */
#target-industries .ii-sector-card {
  border-color: rgba(226, 29, 45, .19);
}

#target-industries .ii-sector-card img {
  background: #15161a;
}

#target-industries .ii-sector-card a {
  color: var(--ii-red);
}

#target-industries .ii-sector-card:hover {
  box-shadow: 0 22px 58px rgba(80, 13, 20, .15);
}

/* New inner pages */
.ii-page,
.ii-page * {
  box-sizing: border-box;
}

.ii-page {
  margin: 0;
  min-width: 320px;
  color: var(--ii-text);
  background: var(--ii-white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.ii-page img,
.ii-page svg,
.ii-page video {
  max-width: 100%;
}

.ii-page a {
  color: inherit;
}

.ii-page button,
.ii-page input,
.ii-page textarea,
.ii-page select {
  font: inherit;
}

.ii-page .container {
  width: min(1160px, calc(100% - 44px));
  margin-inline: auto;
}

.ii-page .skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 3000;
  padding: 12px 16px;
  color: #fff;
  background: var(--ii-red);
  border-radius: 10px;
  transform: translateY(-150%);
}

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

.ii-page .topbar {
  color: #f1f1f3;
  background: #121214;
  font-size: 13px;
  line-height: 1.4;
}

.ii-page .topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ii-page .topbar a {
  text-decoration: none;
}

.ii-page .site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(24, 24, 27, .08);
  box-shadow: 0 8px 30px rgba(17, 17, 20, .05);
  backdrop-filter: blur(18px);
}

.ii-page .nav-wrap {
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.ii-page .brand {
  width: 220px;
  flex: 0 0 220px;
  display: flex;
  align-items: center;
}

.ii-page .site-master-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 66px;
  object-fit: contain;
  object-position: left center;
}

.ii-page .main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 30px);
  margin-left: auto;
}

.ii-page .main-nav > a,
.ii-page .main-nav > .has-drop > a,
.ii-page .nav-dropdown-trigger {
  position: relative;
  border: 0;
  padding: 12px 0;
  color: #19191c;
  background: transparent;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.ii-page .main-nav .active::after,
.ii-page .main-nav > a:hover::after,
.ii-page .main-nav > .has-drop > a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 3px;
  background: var(--ii-red);
  border-radius: 3px;
}

.ii-page .has-drop {
  position: relative;
}

.ii-page .drop {
  position: absolute;
  left: -22px;
  top: calc(100% + 12px);
  width: 270px;
  padding: 12px;
  display: grid;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .2s ease;
  color: #202126;
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--ii-line);
  border-radius: 18px;
  box-shadow: var(--ii-shadow);
}

.ii-page .has-drop::after {
  content: "";
  position: absolute;
  left: -16px;
  right: -16px;
  top: 100%;
  height: 24px;
}

.ii-page .has-drop:hover .drop,
.ii-page .has-drop:focus-within .drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ii-page .drop a {
  padding: 11px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.ii-page .drop a:hover,
.ii-page .drop a:focus-visible {
  color: var(--ii-red);
  background: #fff2f3;
}

.ii-page .cta,
.ii-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.ii-page .cta,
.ii-page .btn.red {
  color: #fff;
  background: var(--ii-red);
  box-shadow: 0 12px 26px rgba(226, 29, 45, .22);
}

.ii-page .cta {
  flex: 0 0 auto;
}

.ii-page .btn.dark {
  color: #fff;
  background: #202126;
}

.ii-page .btn.light {
  color: #202126;
  background: #fff;
  border-color: rgba(255, 255, 255, .36);
}

.ii-page .btn.outline {
  color: #27282d;
  background: transparent;
  border-color: #cfd0d5;
}

.ii-page .btn:hover,
.ii-page .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(24, 24, 27, .16);
}

.ii-page .hamburger {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: #1c1c20;
  font-size: 25px;
  cursor: pointer;
}

.ii-page .mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  background: radial-gradient(circle at 10% 10%, rgba(226, 29, 45, .28), transparent 34%), rgba(12, 12, 15, .82);
  backdrop-filter: blur(18px);
  transition: .25s ease;
}

.ii-page .mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.ii-page .mobile-menu-container {
  width: min(460px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(248, 248, 250, .93));
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 28px;
  box-shadow: 0 28px 100px rgba(0, 0, 0, .32), inset 0 1px rgba(255, 255, 255, .9);
}

.ii-page .mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.ii-page .mobile-nav-link {
  display: block;
  padding: 13px 14px;
  color: #202126;
  border-radius: 12px;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
  font-weight: 800;
}

.ii-page .mobile-nav-link:hover,
.ii-page .mobile-nav-link.active {
  color: var(--ii-red);
  background: #fff0f2;
}

.ii-page .mobile-btn {
  margin-top: 18px;
}

.ii-page .mobile-btn .btn {
  width: 100%;
}

.ii-page .close-menu {
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 1;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  color: #fff;
  background: rgba(20, 20, 23, .72);
  font-size: 30px;
  cursor: pointer;
}

.ii-page.menu-open {
  overflow: hidden;
}

.ii-page .ii-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(226, 29, 45, .23), transparent 27%),
    radial-gradient(circle at 14% 88%, rgba(77, 91, 120, .18), transparent 28%),
    linear-gradient(135deg, #17171b 0%, #202127 55%, #291a20 100%);
}

.ii-page .ii-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .13;
  background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to left, #000, transparent 75%);
}

.ii-page .hero-grid {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
  padding-block: 88px;
}

.ii-page .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: #c5c6cc;
  font-size: 13px;
}

.ii-page .breadcrumb a {
  text-decoration: none;
}

.ii-page .breadcrumb a:hover {
  color: #fff;
}

.ii-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #ff8a94;
  font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ii-page .eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.ii-page h1,
.ii-page h2,
.ii-page h3,
.ii-page h4 {
  font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
  letter-spacing: -.035em;
}

.ii-page h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1.03;
}

.ii-page .hero-lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: #d6d7dc;
  font-size: 18px;
  line-height: 1.72;
}

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

.ii-page .hero-note {
  margin: 20px 0 0;
  color: #aeb0b8;
  font-size: 13px;
  line-height: 1.55;
}

.ii-page .hero-visual {
  position: relative;
}

.ii-page .hero-visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 30px;
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
  backdrop-filter: blur(18px);
}

.ii-page .hero-visual-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
}

.ii-page .hero-status {
  position: absolute;
  right: -14px;
  bottom: 30px;
  width: min(265px, 74%);
  padding: 16px 18px;
  color: #24252a;
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 16px;
  box-shadow: var(--ii-shadow);
}

.ii-page .hero-status b,
.ii-page .hero-status span {
  display: block;
}

.ii-page .hero-status b {
  margin-bottom: 5px;
  font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
  font-size: 14px;
}

.ii-page .hero-status span {
  color: #6c6f78;
  font-size: 12px;
  line-height: 1.5;
}

.ii-page .metric-strip {
  position: relative;
  z-index: 2;
  margin-top: -30px;
}

.ii-page .metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ii-line);
  border-radius: 20px;
  box-shadow: var(--ii-shadow);
}

.ii-page .metric {
  min-height: 130px;
  padding: 26px;
  border-right: 1px solid var(--ii-line);
}

.ii-page .metric:last-child {
  border-right: 0;
}

.ii-page .metric b,
.ii-page .metric span {
  display: block;
}

.ii-page .metric b {
  color: var(--ii-red);
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ii-page .metric span {
  margin-top: 8px;
  color: #36383f;
  font-size: 14px;
  line-height: 1.55;
}

.ii-page .ii-section {
  padding: 104px 0;
}

.ii-page .ii-section.soft {
  background: var(--ii-soft);
}

.ii-page .ii-section.dark {
  color: #fff;
  background: #19191d;
}

.ii-page .section-heading {
  max-width: 790px;
  margin-bottom: 44px;
}

.ii-page .section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.ii-page .section-heading span {
  color: var(--ii-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.ii-page .section-heading h2 {
  margin: 12px 0 0;
  color: #1c1d22;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
}

.ii-page .dark .section-heading h2 {
  color: #fff;
}

.ii-page .section-heading p {
  margin: 18px 0 0;
  color: var(--ii-muted);
  font-size: 17px;
  line-height: 1.75;
}

.ii-page .dark .section-heading p {
  color: #bbbcc4;
}

.ii-page .truth-grid {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: 26px;
}

.ii-page .truth-callout {
  padding: 36px;
  color: #fff;
  background: linear-gradient(145deg, #e21d2d, #9f0d1a);
  border-radius: var(--ii-radius);
  box-shadow: 0 24px 55px rgba(167, 12, 26, .22);
}

.ii-page .truth-callout strong {
  display: block;
  font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
  font-size: 28px;
  line-height: 1.2;
}

.ii-page .truth-callout p {
  margin: 18px 0 0;
  color: rgba(255,255,255,.85);
  line-height: 1.68;
}

.ii-page .risk-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ii-page .risk-item {
  position: relative;
  min-height: 128px;
  padding: 24px 24px 24px 58px;
  background: #fff;
  border: 1px solid var(--ii-line);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(24, 24, 27, .04);
}

.ii-page .risk-item::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 24px;
  width: 18px;
  height: 18px;
  border: 5px solid var(--ii-red);
  border-radius: 50%;
}

.ii-page .risk-item h3 {
  margin: 0;
  font-size: 17px;
  letter-spacing: -.015em;
}

.ii-page .risk-item p {
  margin: 9px 0 0;
  color: var(--ii-muted);
  font-size: 14px;
  line-height: 1.58;
}

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

.ii-page .capability-card {
  min-height: 285px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--ii-line);
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(24, 24, 27, .05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ii-page .capability-card:hover {
  transform: translateY(-5px);
  border-color: rgba(226, 29, 45, .35);
  box-shadow: 0 24px 52px rgba(24, 24, 27, .10);
}

.ii-page .capability-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: #fff;
  background: #1f2025;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 900;
}

.ii-page .capability-card h3 {
  margin: 0;
  color: #202126;
  font-size: 20px;
  line-height: 1.25;
}

.ii-page .capability-card p {
  margin: 14px 0 0;
  color: var(--ii-muted);
  font-size: 14px;
  line-height: 1.68;
}

.ii-page .asset-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 30px;
  align-items: start;
}

.ii-page .asset-intro {
  position: sticky;
  top: 150px;
  padding: 34px;
  color: #fff;
  background: linear-gradient(155deg, #24252b, #17171a);
  border-radius: var(--ii-radius);
}

.ii-page .asset-intro h3 {
  margin: 0;
  font-size: 28px;
}

.ii-page .asset-intro p {
  color: #c1c2c8;
  line-height: 1.7;
}

.ii-page .asset-intro a {
  color: #ff8e98;
  font-weight: 800;
  text-decoration: none;
}

.ii-page .asset-table-wrap {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ii-line);
  border-radius: var(--ii-radius);
  box-shadow: 0 14px 36px rgba(24, 24, 27, .05);
}

.ii-page .asset-table {
  width: 100%;
  border-collapse: collapse;
}

.ii-page .asset-table th,
.ii-page .asset-table td {
  padding: 20px 22px;
  border-bottom: 1px solid var(--ii-line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.55;
}

.ii-page .asset-table th {
  color: #fff;
  background: #24252a;
  font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ii-page .asset-table tr:last-child td {
  border-bottom: 0;
}

.ii-page .asset-table td:first-child {
  color: #24252a;
  font-weight: 800;
}

.ii-page .workflow {
  counter-reset: ii-step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ii-page .workflow-step {
  position: relative;
  min-height: 270px;
  padding: 30px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 22px;
}

.ii-page .workflow-step::before {
  counter-increment: ii-step;
  content: "0" counter(ii-step);
  display: block;
  margin-bottom: 38px;
  color: #ff6876;
  font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
  font-size: 26px;
  font-weight: 800;
}

.ii-page .workflow-step h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
}

.ii-page .workflow-step p {
  margin: 14px 0 0;
  color: #bfc0c6;
  font-size: 14px;
  line-height: 1.65;
}

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

.ii-page .standard-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--ii-line);
  border-top: 4px solid var(--ii-red);
  border-radius: 18px;
}

.ii-page .standard-card b,
.ii-page .standard-card span,
.ii-page .standard-card a {
  display: block;
}

.ii-page .standard-card b {
  color: #24252a;
  font-size: 18px;
}

.ii-page .standard-card span {
  margin-top: 10px;
  color: var(--ii-muted);
  font-size: 14px;
  line-height: 1.65;
}

.ii-page .standard-card a {
  margin-top: 16px;
  color: var(--ii-red-dark);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.ii-page .video-platform {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  overflow: hidden;
  min-height: 410px;
  background: #fff;
  border: 1px solid var(--ii-line);
  border-radius: 28px;
  box-shadow: var(--ii-shadow);
}

.ii-page .video-stage {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 25% 25%, rgba(226,29,45,.28), transparent 34%),
    linear-gradient(145deg, #151519, #282930);
}

.ii-page .video-stage::before,
.ii-page .video-stage::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}

.ii-page .video-stage::before {
  width: 250px;
  height: 250px;
}

.ii-page .video-stage::after {
  width: 340px;
  height: 340px;
}

.ii-page .play-mark {
  position: relative;
  z-index: 1;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  background: var(--ii-red);
  box-shadow: 0 0 0 14px rgba(226,29,45,.13), 0 18px 40px rgba(0,0,0,.28);
  font-size: 27px;
}

.ii-page .video-copy {
  padding: clamp(38px, 6vw, 72px);
  align-self: center;
}

.ii-page .video-copy span {
  color: var(--ii-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.ii-page .video-copy h2 {
  margin: 14px 0 0;
  color: #202126;
  font-size: clamp(30px, 4vw, 45px);
  line-height: 1.12;
}

.ii-page .video-copy p {
  margin: 18px 0 0;
  color: var(--ii-muted);
  line-height: 1.72;
}

.ii-page .video-copy .btn {
  margin-top: 24px;
}

.ii-page .faq-list {
  max-width: 900px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}

.ii-page .faq-list details {
  background: #fff;
  border: 1px solid var(--ii-line);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(24,24,27,.03);
}

.ii-page .faq-list summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  list-style: none;
  color: #222329;
  font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
  font-weight: 800;
  cursor: pointer;
}

.ii-page .faq-list summary::-webkit-details-marker {
  display: none;
}

.ii-page .faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  color: #fff;
  background: #27282d;
  border-radius: 50%;
}

.ii-page .faq-list details[open] summary::after {
  content: "−";
  background: var(--ii-red);
}

.ii-page .faq-list details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--ii-muted);
  line-height: 1.72;
}

.ii-page .ii-final {
  padding: 0 0 105px;
  background: var(--ii-soft);
}

.ii-page .final-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: clamp(38px, 6vw, 68px);
  color: #fff;
  background: linear-gradient(120deg, #18191d 0%, #23252b 58%, #46161d 100%);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(24,24,27,.19);
}

.ii-page .final-card span {
  color: #ff8b95;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.ii-page .final-card h2 {
  max-width: 790px;
  margin: 13px 0 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.1;
}

.ii-page .final-card p {
  max-width: 760px;
  margin: 16px 0 0;
  color: #c8c9cf;
  line-height: 1.68;
}

.ii-page .final-actions {
  display: grid;
  gap: 10px;
}

.ii-page .footer {
  overflow-x: hidden;
  padding: 62px 0 0;
  color: #f1f1f3;
  background: #181819;
}

.ii-page .footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.15fr) minmax(150px, .78fr) minmax(200px, .94fr) minmax(240px, 1.15fr);
  align-items: start;
  gap: 34px clamp(28px, 3vw, 52px);
}

.ii-page .footer-grid > div {
  min-width: 0;
}

.ii-page .footer h4 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 17px;
  letter-spacing: -.01em;
}

.ii-page .footer p {
  margin: 0;
  color: #c6c7cc;
  font-size: 14px;
  line-height: 1.7;
}

.ii-page .footer-grid a:not(.footer-master-logo-link):not(.opportunity-desk-brand) {
  width: fit-content;
  display: block;
  margin: 0 0 10px;
  color: #efeff1;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.42;
}

.ii-page .footer-grid a:hover {
  color: #ff7f8a;
}

.ii-page .footer-master-logo-link,
.ii-page .opportunity-desk-brand {
  display: block;
  width: min(100%, 300px);
  margin: 0 0 18px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.16);
}

.ii-page .footer-master-logo,
.ii-page .opportunity-desk-brand img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 82px;
  object-fit: contain;
}

.ii-page .social-row {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.ii-page .social-row a {
  width: 40px !important;
  height: 40px;
  display: grid !important;
  place-items: center;
  margin: 0 !important;
  color: #fff;
  background: #0f0f10;
  border-radius: 50%;
  font-weight: 800;
}

.ii-page .footer .copy {
  margin-top: 52px;
  padding: 24px 0;
  color: #bfc0c6;
  border-top: 1px solid rgba(255,255,255,.11);
  font-size: 13px;
}

.ii-page .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.ii-page .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .ii-page .main-nav {
    gap: 16px;
  }

  .ii-page .main-nav > a,
  .ii-page .main-nav > .has-drop > a,
  .ii-page .nav-dropdown-trigger {
    font-size: 13px;
  }

  .ii-page .brand {
    width: 190px;
    flex-basis: 190px;
  }

  .ii-page .cta {
    padding-inline: 17px;
  }

}

@media (max-width: 980px) {
  .ii-page .main-nav,
  .ii-page .nav-wrap > .cta {
    display: none;
  }

  .ii-page .hamburger {
    display: grid;
    place-items: center;
  }

  .ii-page .nav-wrap {
    min-height: 88px;
  }

  .ii-page .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 72px 90px;
  }

  .ii-page .hero-visual {
    width: min(650px, 100%);
  }

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

  .ii-page .metric:nth-child(2) {
    border-right: 0;
  }

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

  .ii-page .capability-grid,
  .ii-page .standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ii-page .asset-layout {
    grid-template-columns: 1fr;
  }

  .ii-page .asset-intro {
    position: static;
  }

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

@media (max-width: 760px) {
  .ii-page .container {
    width: min(100% - 30px, 1160px);
  }

  .ii-page .topbar-inner {
    min-height: 42px;
    justify-content: center;
    text-align: center;
  }

  .ii-page .topbar-inner > span:first-child {
    display: none;
  }

  .ii-page .brand {
    width: 190px;
    flex-basis: 190px;
    max-width: 58vw;
  }

  .ii-page .ii-section {
    padding: 76px 0;
  }

  .ii-page .truth-grid,
  .ii-page .risk-list,
  .ii-page .capability-grid,
  .ii-page .standards-grid,
  .ii-page .video-platform,
  .ii-page .final-card {
    grid-template-columns: 1fr;
  }

  .ii-page .video-stage {
    min-height: 310px;
  }

  .ii-page .final-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ii-page .asset-table-wrap {
    overflow-x: auto;
  }

  .ii-page .asset-table {
    min-width: 690px;
  }

  .ii-page .hero-status {
    right: 14px;
  }
}

@media (max-width: 560px) {
  .ii-page .hero-grid {
    padding-block: 54px 76px;
  }

  .ii-page h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .ii-page .hero-lead {
    font-size: 16px;
  }

  .ii-page .hero-actions,
  .ii-page .final-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ii-page .hero-actions .btn,
  .ii-page .final-actions .btn {
    width: 100%;
  }

  .ii-page .metric-grid,
  .ii-page .workflow,
  .ii-page .footer-grid {
    grid-template-columns: 1fr;
  }

  .ii-page .metric {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--ii-line);
  }

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

  .ii-page .capability-card {
    min-height: auto;
  }

  .ii-page .hero-status {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: -35px 14px 14px;
  }

  .ii-page .footer-grid > div:nth-child(2),
  .ii-page .footer-grid > div:nth-child(3) {
    padding-top: 8px;
  }

  .ii-page .footer .copy {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ii-page *,
  .ii-page *::before,
  .ii-page *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  .ii-page .reveal {
    opacity: 1;
    transform: none;
  }
}
