:root {
  --bg-main: #0b0f14;
  --bg-surface: #111827;
  --accent: #3b82f6;
  --accent-soft: #60a5fa;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-strong: rgba(255, 255, 255, 0.12);
  --surface-elevated: #161d29;
  --surface-metal: #202938;
  --surface-shadow: rgba(0, 0, 0, 0.38);
  --container-max-width: 1200px;
}

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

html,
body {
  min-height: 100%;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
}

body {
  background:
    linear-gradient(135deg, rgba(96, 165, 250, 0.04) 0%, transparent 20%),
    radial-gradient(circle at top, rgba(59, 130, 246, 0.12), transparent 32%),
    linear-gradient(180deg, #0d131c 0%, var(--bg-main) 24%, #080b10 100%);
  color: var(--text-main);
  font-family: "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

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

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

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

.ib-container {
  margin: 0 auto;
  max-width: var(--container-max-width);
  padding: 0 1.5rem;
  width: 100%;
}

.ib-header {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(96, 165, 250, 0.025), transparent 60%),
    rgba(10, 14, 20, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 22px rgba(4, 8, 14, 0.18);
  position: sticky;
  top: 0;
  z-index: 10;
}

.ib-header-inner {
  align-items: center;
  display: flex;
  gap: 1.4rem;
  justify-content: space-between;
  min-height: 6.25rem;
}

.ib-brand {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 0;
  padding: 0.55rem 0.9rem;
}

.ib-brand-logo {
  filter: brightness(1.22) contrast(1.08) drop-shadow(0 0 0.55rem rgba(148, 163, 184, 0.08));
  height: auto;
  max-width: min(15rem, 100%);
  width: clamp(9.75rem, 14vw, 12.5rem);
}

.ib-nav {
  align-items: center;
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  margin-left: auto;
  margin-right: 0.4rem;
}

.ib-nav-link {
  color: rgba(229, 231, 235, 0.84);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.35rem 0;
  position: relative;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.ib-nav-link::after {
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.8), rgba(255, 255, 255, 0.18));
  bottom: -0.35rem;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0.65);
  transform-origin: left center;
  transition: opacity 180ms ease, transform 180ms ease;
  width: 100%;
}

.ib-nav-link:hover,
.ib-nav-link:focus-visible {
  color: var(--text-main);
}

.ib-nav-link:hover::after,
.ib-nav-link:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.ib-nav-link-secondary {
  margin-left: 0.45rem;
}

.ib-header-cta {
  flex: 0 0 auto;
  min-height: 3.1rem;
  padding: 0.75rem 1.2rem;
  white-space: nowrap;
}

.ib-main {
  padding: 4.75rem 0 7rem;
}

.ib-section-rail {
  margin-bottom: 1.1rem;
}

.ib-section-rail-inner {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 30%),
    linear-gradient(135deg, rgba(96, 165, 250, 0.035), transparent 34%),
    linear-gradient(180deg, rgba(15, 21, 30, 0.92), rgba(10, 14, 20, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.2rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12);
  display: flex;
  gap: 1.35rem;
  justify-content: space-between;
  overflow: hidden;
  padding: 0.9rem 1.15rem;
  position: relative;
}

.ib-section-rail-inner::before {
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.42), rgba(255, 255, 255, 0.08), transparent);
  content: "";
  height: 1px;
  left: 1.15rem;
  position: absolute;
  right: 1.15rem;
  top: 0.78rem;
}

.ib-section-rail-label {
  color: rgba(96, 165, 250, 0.92);
  flex: 0 0 auto;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding-right: 1.15rem;
  position: relative;
  text-transform: uppercase;
}

.ib-section-rail-label::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(96, 165, 250, 0.26), rgba(255, 255, 255, 0.02));
  content: "";
  height: 1.6rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.ib-section-rail-nav {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

.ib-section-rail-link {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(229, 231, 235, 0.84);
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  min-height: 2.5rem;
  padding: 0.5rem 0.9rem;
  position: relative;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.ib-section-rail-link::before {
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.7), rgba(255, 255, 255, 0.1));
  border-radius: 999px;
  content: "";
  height: 0.35rem;
  margin-right: 0.65rem;
  opacity: 0.7;
  width: 0.35rem;
}

.ib-section-rail-link:hover,
.ib-section-rail-link:focus-visible {
  background-color: rgba(255, 255, 255, 0.03);
  border-color: rgba(96, 165, 250, 0.16);
  color: var(--text-main);
  transform: translateY(-1px);
}

.ib-section-rail-link:focus-visible {
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.16);
  outline: none;
}

.ib-footer {
  color: var(--text-muted);
  margin-top: 5rem;
  padding: 0 0 2.25rem;
}

.ib-footer .ib-container {
  display: grid;
  gap: 1.05rem;
}

.ib-footer-panel {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 18%),
    linear-gradient(145deg, rgba(96, 165, 250, 0.04), transparent 28%),
    linear-gradient(180deg, rgba(16, 22, 31, 0.96), rgba(9, 13, 19, 0.99));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.7rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    inset 0 -1px 0 rgba(255, 255, 255, 0.012),
    0 18px 40px rgba(0, 0, 0, 0.16);
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  padding: 1.75rem 1.8rem;
  position: relative;
}

.ib-footer-panel::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), rgba(96, 165, 250, 0.16), transparent);
  content: "";
  height: 1px;
  left: 4%;
  position: absolute;
  right: 4%;
  top: 1.1rem;
}

.ib-footer-brand {
  align-self: start;
}

.ib-footer-brand-name {
  color: var(--text-main);
  font-size: 1.3rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  margin-top: 0.2rem;
  text-transform: uppercase;
}

.ib-footer-brand-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 36rem;
}

.ib-footer-meta {
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  color: rgba(156, 163, 175, 0.92);
  display: flex;
  font-size: 0.85rem;
  gap: 1rem;
  justify-content: space-between;
  letter-spacing: 0.05em;
  min-height: 3.25rem;
  text-transform: uppercase;
}

.ib-hero {
  padding: 2.5rem 0 0.75rem;
}

.ib-hero-grid {
  align-items: center;
  display: grid;
  gap: 3.5rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.ib-hero-copy {
  max-width: 41rem;
}

.ib-eyebrow {
  color: var(--accent-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.ib-hero-title {
  font-size: clamp(2.85rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
  max-width: 12ch;
  text-wrap: balance;
}

.ib-hero-text {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-top: 1.75rem;
  max-width: 38rem;
}

.ib-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.ib-btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 600;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.85rem 1.4rem;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.ib-btn:hover,
.ib-btn:focus-visible {
  transform: translateY(-1px);
}

.ib-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.18);
  outline: none;
}

.ib-btn-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 45%),
    linear-gradient(135deg, #1f4f96 0%, var(--accent) 100%);
  border-color: rgba(96, 165, 250, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 24px rgba(8, 18, 36, 0.32);
  color: #f8fbff;
}

.ib-btn-primary:hover,
.ib-btn-primary:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 45%),
    linear-gradient(135deg, #2458a7 0%, #428ef8 100%);
}

.ib-btn-secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.01);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
}

.ib-btn-secondary:hover,
.ib-btn-secondary:focus-visible {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(96, 165, 250, 0.22);
}

.ib-hero-points {
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.4rem;
  padding-top: 1.4rem;
}

.ib-point {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(17, 24, 39, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  color: var(--text-muted);
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  min-height: 2.5rem;
  padding: 0.55rem 0.95rem;
}

.ib-hero-visual {
  display: flex;
  justify-content: center;
}

.ib-visual-frame {
  aspect-ratio: 0.96;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 24%, rgba(255, 255, 255, 0) 46%),
    linear-gradient(165deg, #161d26 0%, #111720 38%, #1a2230 100%);
  border: 1px solid var(--border-strong);
  border-radius: 1.75rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -24px 36px rgba(0, 0, 0, 0.22),
    0 28px 60px var(--surface-shadow);
  overflow: hidden;
  position: relative;
  width: min(100%, 34rem);
}

.ib-visual-frame::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  content: "";
  height: 1px;
  left: 8%;
  position: absolute;
  right: 8%;
  top: 4.5rem;
}

.ib-visual-frame::after {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 35%, transparent 62%);
  content: "";
  inset: 18% 28% 48% -8%;
  opacity: 0.45;
  position: absolute;
  transform: rotate(-11deg);
}

.ib-visual-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(145deg, rgba(96, 165, 250, 0.06) 0%, transparent 26%),
    linear-gradient(180deg, rgba(19, 25, 36, 0.92), rgba(13, 18, 26, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.3rem;
  bottom: 1.6rem;
  left: 1.6rem;
  position: absolute;
  right: 1.6rem;
  top: 1.6rem;
}

.ib-visual-line {
  position: absolute;
  z-index: 2;
}

.ib-visual-line-top {
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.64), rgba(255, 255, 255, 0.16), transparent);
  height: 1px;
  left: 12%;
  right: 20%;
  top: 22%;
}

.ib-visual-line-side {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(96, 165, 250, 0.42), transparent 84%);
  bottom: 18%;
  right: 18%;
  top: 12%;
  width: 1px;
}

.ib-visual-glow {
  background: radial-gradient(circle, rgba(96, 165, 250, 0.16) 0%, rgba(96, 165, 250, 0.04) 34%, transparent 68%);
  height: 14rem;
  position: absolute;
  right: -2rem;
  top: 1rem;
  width: 14rem;
}

.ib-visual-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 20%),
    linear-gradient(160deg, rgba(29, 38, 53, 0.96), rgba(17, 23, 33, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  bottom: 2.6rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 32px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  position: absolute;
  right: 2.6rem;
  width: clamp(11rem, 34%, 13rem);
  z-index: 3;
}

.ib-visual-card span {
  background:
    linear-gradient(90deg, rgba(96, 165, 250, 0.38), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  display: block;
  height: 0.7rem;
}

.ib-visual-card span:nth-child(1) {
  width: 82%;
}

.ib-visual-card span:nth-child(2) {
  width: 100%;
}

.ib-visual-card span:nth-child(3) {
  width: 68%;
}

.ib-positioning {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(96, 165, 250, 0.03), transparent 26%),
    var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 2rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 44px rgba(0, 0, 0, 0.16);
  margin-top: 5rem;
  padding: 3.25rem 0;
  position: relative;
}

.ib-positioning::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  content: "";
  height: 1px;
  left: 5%;
  position: absolute;
  right: 5%;
  top: 0;
}

.ib-section-label {
  color: var(--accent-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ib-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-top: 1rem;
  max-width: 14ch;
  text-wrap: balance;
}

.ib-section-text {
  color: var(--text-muted);
  font-size: 1.04rem;
  line-height: 1.85;
  margin-top: 1.25rem;
  max-width: 48rem;
}

.ib-positioning-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.ib-positioning-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 26%),
    linear-gradient(145deg, rgba(96, 165, 250, 0.04), transparent 34%),
    linear-gradient(180deg, rgba(15, 21, 30, 0.94), rgba(11, 15, 20, 0.96));
  border: 1px solid var(--border-subtle);
  border-radius: 1.35rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  min-height: 100%;
  padding: 1.6rem;
}

.ib-positioning-card-title {
  font-size: 1.1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.ib-positioning-card-text {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-top: 0.95rem;
}

.ib-deliver {
  margin-top: 5rem;
  padding: 0.55rem 0 0;
}

.ib-deliver-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.ib-deliver-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 18%),
    linear-gradient(135deg, rgba(96, 165, 250, 0.035), transparent 30%),
    linear-gradient(180deg, rgba(20, 27, 38, 0.94), rgba(13, 18, 26, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.45rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    inset 0 0 0 1px rgba(255, 255, 255, 0.015);
  min-height: 100%;
  padding: 1.75rem;
  position: relative;
}

.ib-deliver-card::before {
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.42), rgba(255, 255, 255, 0.08), transparent);
  content: "";
  height: 1px;
  left: 1.75rem;
  position: absolute;
  right: 1.75rem;
  top: 1.2rem;
}

.ib-deliver-card-title {
  font-size: 1.08rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.28;
  margin-top: 0.4rem;
  max-width: 16ch;
}

.ib-deliver-card-text {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.82;
  margin-top: 1rem;
  max-width: 30rem;
}

.ib-ai {
  margin-top: 5rem;
  padding: 3.25rem 0;
  position: relative;
}

.ib-ai::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  content: "";
  height: 1px;
  left: 5%;
  position: absolute;
  right: 5%;
  top: 0;
}

.ib-ai-grid {
  align-items: start;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  margin-top: 2.6rem;
}

.ib-ai-statement {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0) 22%),
    linear-gradient(145deg, rgba(96, 165, 250, 0.045), transparent 32%),
    linear-gradient(180deg, rgba(16, 22, 31, 0.95), rgba(10, 14, 20, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.6rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.012);
  padding: 1.9rem;
  position: relative;
}

.ib-ai-statement::before {
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.55), rgba(255, 255, 255, 0.08), transparent);
  content: "";
  height: 1px;
  left: 1.9rem;
  position: absolute;
  right: 1.9rem;
  top: 1.25rem;
}

.ib-ai-statement-title {
  font-size: 1.14rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 0.45rem;
}

.ib-ai-statement-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-top: 1rem;
  max-width: 32rem;
}

.ib-ai-points {
  display: grid;
  gap: 1rem;
}

.ib-ai-point {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 24%),
    linear-gradient(135deg, rgba(96, 165, 250, 0.03), transparent 28%),
    rgba(17, 24, 39, 0.42);
  border: 1px solid var(--border-subtle);
  border-radius: 1.2rem;
  padding: 1.4rem 1.45rem;
}

.ib-ai-point-title {
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.ib-ai-point-text {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.78;
  margin-top: 0.7rem;
  max-width: 32rem;
}

.ib-outcomes {
  margin-top: 5rem;
  padding: 3.25rem 0 0;
}

.ib-outcomes-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2.6rem;
}

.ib-outcome-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0) 20%),
    linear-gradient(160deg, rgba(96, 165, 250, 0.03), transparent 32%),
    linear-gradient(180deg, rgba(18, 24, 34, 0.96), rgba(11, 15, 21, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.5rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -1px 0 rgba(255, 255, 255, 0.015);
  min-height: 100%;
  padding: 1.8rem;
  position: relative;
}

.ib-outcome-card::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(96, 165, 250, 0.18), transparent);
  content: "";
  height: 1px;
  left: 1.8rem;
  position: absolute;
  right: 1.8rem;
  top: 1.25rem;
}

.ib-outcome-card-title {
  font-size: 1.12rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.24;
  margin-top: 0.45rem;
  max-width: 18ch;
}

.ib-outcome-card-text {
  color: var(--text-muted);
  font-size: 0.99rem;
  line-height: 1.82;
  margin-top: 0.95rem;
  max-width: 32rem;
}

.ib-process {
  margin-top: 5rem;
  padding: 3.25rem 0 0;
}

.ib-process-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2.6rem;
}

.ib-process-step {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0) 18%),
    linear-gradient(145deg, rgba(96, 165, 250, 0.028), transparent 30%),
    linear-gradient(180deg, rgba(17, 22, 31, 0.96), rgba(10, 14, 20, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.45rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -1px 0 rgba(255, 255, 255, 0.012);
  min-height: 100%;
  padding: 1.55rem;
  position: relative;
}

.ib-process-step::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(96, 165, 250, 0.14), transparent);
  content: "";
  height: 1px;
  left: 1.55rem;
  position: absolute;
  right: 1.55rem;
  top: 1.1rem;
}

.ib-process-number {
  color: rgba(96, 165, 250, 0.85);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-top: 0.35rem;
  text-transform: uppercase;
}

.ib-process-step-title {
  font-size: 1.08rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-top: 0.75rem;
}

.ib-process-step-text {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-top: 0.85rem;
  max-width: 26rem;
}

.ib-cta {
  margin-top: 5.5rem;
  padding: 3.85rem 0 0;
}

.ib-cta-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0) 18%),
    linear-gradient(140deg, rgba(96, 165, 250, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(17, 24, 35, 0.97), rgba(10, 14, 20, 0.99));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.85rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -1px 0 rgba(255, 255, 255, 0.015),
    0 24px 48px rgba(0, 0, 0, 0.18);
  margin: 0 auto;
  max-width: 58rem;
  padding: 3rem 2rem;
  position: relative;
  text-align: center;
}

.ib-cta-panel::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), rgba(96, 165, 250, 0.22), transparent);
  content: "";
  height: 1px;
  left: 8%;
  position: absolute;
  right: 8%;
  top: 1.3rem;
}

.ib-cta-panel .ib-section-title {
  margin-left: auto;
  margin-right: auto;
  max-width: 15ch;
}

.ib-cta-panel .ib-section-text {
  margin-left: auto;
  margin-right: auto;
  max-width: 41rem;
}

.ib-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.15rem;
}

.ib-page-hero {
  padding: 2.5rem 0 1rem;
}

.ib-review {
  margin-top: 4.5rem;
}

.ib-contact {
  margin-top: 4.5rem;
}

.ib-review-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0) 18%),
    linear-gradient(140deg, rgba(96, 165, 250, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(17, 24, 35, 0.97), rgba(10, 14, 20, 0.99));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.85rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -1px 0 rgba(255, 255, 255, 0.015),
    0 24px 48px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.02);
  padding: 2.5rem 2rem;
  position: relative;
}

.ib-contact-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0) 18%),
    linear-gradient(140deg, rgba(96, 165, 250, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(17, 24, 35, 0.97), rgba(10, 14, 20, 0.99));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.85rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -1px 0 rgba(255, 255, 255, 0.015),
    0 24px 48px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.02);
  padding: 2.5rem 2rem;
  position: relative;
}

.ib-review-panel::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), rgba(96, 165, 250, 0.22), transparent);
  content: "";
  height: 1px;
  left: 6%;
  position: absolute;
  right: 6%;
  top: 1.3rem;
}

.ib-contact-panel::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), rgba(96, 165, 250, 0.22), transparent);
  content: "";
  height: 1px;
  left: 6%;
  position: absolute;
  right: 6%;
  top: 1.3rem;
}

.ib-review-step {
  color: var(--accent-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ib-step-header {
  display: grid;
  gap: 0.95rem;
  margin-bottom: 2rem;
}

.ib-step-meta {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.ib-review-stage {
  color: rgba(156, 163, 175, 0.84);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ib-progress-bar {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18);
  height: 0.9rem;
  overflow: hidden;
  position: relative;
}

.ib-progress-fill {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(90deg, #2e66bd 0%, var(--accent) 60%, var(--accent-soft) 100%);
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 1.35rem rgba(59, 130, 246, 0.16);
  height: 100%;
  transition: width 220ms ease;
}

.ib-step-header .ib-section-title {
  margin-top: 0;
  max-width: 16ch;
}

.ib-step-header-diagnostic .ib-section-title {
  max-width: 15ch;
}

.ib-step-helper {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-top: -0.1rem;
  max-width: 42rem;
}

.ib-form-grid-diagnostic {
  gap: 1rem;
}

.ib-form-grid {
  display: grid;
  gap: 1.35rem 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
}

.ib-contact-grid {
  display: grid;
  gap: 1.35rem 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ib-form-field {
  display: grid;
  gap: 0.7rem;
}

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

.ib-form-field label {
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.ib-form-field-choice {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 22%),
    linear-gradient(145deg, rgba(96, 165, 250, 0.045), transparent 34%),
    linear-gradient(180deg, rgba(16, 22, 31, 0.92), rgba(10, 14, 20, 0.97));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.25rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12);
  padding: 1rem 1rem 1.05rem;
  position: relative;
}

.ib-form-field-choice::before {
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.4), rgba(255, 255, 255, 0.08), transparent);
  content: "";
  height: 1px;
  left: 1rem;
  position: absolute;
  right: 1rem;
  top: 0.82rem;
}

.ib-choice-kicker {
  color: rgba(96, 165, 250, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-top: 0.2rem;
  text-transform: uppercase;
}

.ib-form-field-choice label {
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  line-height: 1.45;
}

.ib-choice-group {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ib-choice-group-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ib-choice-option {
  cursor: pointer;
  display: block;
}

.ib-choice-input {
  height: 1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 1px;
}

.ib-choice-card {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, rgba(96, 165, 250, 0.025), transparent 38%),
    linear-gradient(180deg, rgba(20, 27, 38, 0.96), rgba(12, 17, 24, 0.99));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12);
  display: flex;
  min-height: 4.15rem;
  padding: 1rem 1.05rem;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.ib-choice-card::before {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  content: "";
  flex: 0 0 auto;
  height: 1rem;
  margin-right: 0.9rem;
  width: 1rem;
}

.ib-choice-card::after {
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.4), rgba(255, 255, 255, 0.06), transparent);
  content: "";
  height: 1px;
  left: 1rem;
  opacity: 0;
  position: absolute;
  right: 1rem;
  top: 0.85rem;
  transition: opacity 180ms ease;
}

.ib-choice-title {
  color: var(--text-main);
  display: block;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.ib-choice-option:hover .ib-choice-card {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.ib-choice-input:focus-visible + .ib-choice-card {
  border-color: rgba(96, 165, 250, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 3px rgba(96, 165, 250, 0.16);
  outline: none;
}

.ib-choice-input:checked + .ib-choice-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, rgba(96, 165, 250, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(23, 31, 44, 0.98), rgba(13, 19, 27, 1));
  border-color: rgba(96, 165, 250, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(96, 165, 250, 0.12),
    0 12px 24px rgba(7, 15, 28, 0.14);
}

.ib-choice-input:checked + .ib-choice-card::before {
  background: radial-gradient(circle at center, var(--accent-soft) 0 45%, transparent 50%);
  border-color: rgba(96, 165, 250, 0.5);
}

.ib-choice-input:checked + .ib-choice-card::after {
  opacity: 1;
}

.ib-form-field-notes {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 1.2rem;
  padding: 1rem;
}

.ib-form-field-notes label {
  color: rgba(229, 231, 235, 0.92);
}

.ib-input,
.ib-select,
.ib-textarea {
  appearance: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, rgba(96, 165, 250, 0.025), transparent 36%),
    linear-gradient(180deg, rgba(18, 24, 34, 0.98), rgba(11, 15, 21, 1));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    inset 0 -1px 0 rgba(0, 0, 0, 0.16);
  color: var(--text-main);
  min-height: 3.45rem;
  padding: 0.9rem 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease, transform 180ms ease;
  width: 100%;
}

.ib-select {
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(229, 231, 235, 0.8) 50%),
    linear-gradient(135deg, rgba(229, 231, 235, 0.8) 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(18, 24, 34, 0.96), rgba(11, 15, 21, 0.98));
  background-position:
    calc(100% - 1.2rem) calc(50% - 0.1rem),
    calc(100% - 0.9rem) calc(50% - 0.1rem),
    0 0,
    0 0;
  background-repeat: no-repeat;
  background-size:
    0.45rem 0.45rem,
    0.45rem 0.45rem,
    auto,
    auto;
  padding-right: 2.8rem;
}

.ib-textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.ib-input::placeholder,
.ib-textarea::placeholder {
  color: rgba(156, 163, 175, 0.66);
}

.ib-input:hover,
.ib-select:hover,
.ib-textarea:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.ib-input:focus,
.ib-select:focus,
.ib-textarea:focus {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, rgba(96, 165, 250, 0.04), transparent 36%),
    linear-gradient(180deg, rgba(20, 27, 38, 0.99), rgba(12, 17, 24, 1));
  border-color: rgba(96, 165, 250, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 3px rgba(96, 165, 250, 0.16),
    0 10px 24px rgba(5, 12, 22, 0.16);
  outline: none;
  transform: translateY(-1px);
}

.ib-form-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 1.8rem;
}

.ib-step-actions {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 0.9rem;
  justify-content: space-between;
  margin-top: 2.2rem;
  padding-top: 1.45rem;
}

.ib-step-actions .ib-btn {
  min-width: 10rem;
}

.ib-step-actions .ib-btn-primary {
  margin-left: auto;
}

.ib-success-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 24%),
    linear-gradient(145deg, rgba(96, 165, 250, 0.045), transparent 34%),
    linear-gradient(180deg, rgba(16, 22, 31, 0.92), rgba(10, 14, 20, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.55rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 38px rgba(0, 0, 0, 0.16);
  margin: 0 auto;
  max-width: 44rem;
  padding: 2.35rem 1.6rem;
  text-align: center;
}

.ib-success-panel .ib-section-title,
.ib-success-panel .ib-section-text {
  margin-left: auto;
  margin-right: auto;
}

.ib-success-panel .ib-section-title {
  max-width: 12ch;
}

.ib-success-panel .ib-section-text {
  max-width: 35rem;
}

.ib-contact-success {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 24%),
    linear-gradient(145deg, rgba(96, 165, 250, 0.045), transparent 34%),
    linear-gradient(180deg, rgba(16, 22, 31, 0.92), rgba(10, 14, 20, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.55rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 38px rgba(0, 0, 0, 0.16);
  margin: 0 auto;
  max-width: 42rem;
  padding: 2.35rem 1.6rem;
  text-align: center;
}

.ib-contact-success .ib-section-title,
.ib-contact-success .ib-section-text {
  margin-left: auto;
  margin-right: auto;
}

.ib-contact-success .ib-section-title {
  max-width: 12ch;
}

.ib-contact-success .ib-section-text {
  max-width: 32rem;
}

.ib-next-block {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
  padding-top: 1.35rem;
  text-align: left;
}

.ib-next-title {
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ib-next-items {
  display: grid;
  gap: 0.8rem;
}

.ib-next-item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding: 0.9rem 1rem;
  position: relative;
}

.ib-next-item::before {
  background: linear-gradient(180deg, var(--accent-soft), rgba(96, 165, 250, 0.2));
  border-radius: 999px;
  content: "";
  height: 0.55rem;
  left: 1rem;
  position: absolute;
  top: 1.15rem;
  width: 0.55rem;
}

.ib-next-item {
  padding-left: 2.3rem;
}

.field-validation-error,
.validation-summary-errors {
  color: #fca5a5;
}

.field-validation-error {
  font-size: 0.86rem;
  line-height: 1.5;
}

.validation-summary-errors {
  margin-bottom: 1.35rem;
}

.validation-summary-errors ul {
  list-style: none;
}

@media (max-width: 980px) {
  .ib-main {
    padding-top: 3.5rem;
  }

  .ib-section-rail-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .ib-section-rail-label {
    padding-right: 0;
  }

  .ib-section-rail-label::after {
    display: none;
  }

  .ib-section-rail-nav {
    justify-content: flex-start;
    width: 100%;
  }

  .ib-header-inner {
    min-height: 5.75rem;
  }

  .ib-nav {
    display: none;
  }

  .ib-hero-grid {
    gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .ib-hero-copy {
    max-width: none;
  }

  .ib-hero-title {
    max-width: 14ch;
  }

  .ib-hero-visual {
    justify-content: flex-start;
  }

  .ib-visual-frame {
    width: min(100%, 38rem);
  }

  .ib-positioning-grid {
    grid-template-columns: 1fr;
  }

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

  .ib-ai-grid {
    grid-template-columns: 1fr;
  }

  .ib-outcomes-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .ib-contact-grid {
    grid-template-columns: 1fr;
  }

  .ib-step-actions {
    flex-wrap: wrap;
  }

  .ib-step-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }
}

@media (max-width: 640px) {
  .ib-container {
    padding: 0 1.1rem;
  }

  .ib-section-rail {
    margin-bottom: 0.7rem;
  }

  .ib-section-rail-inner {
    border-radius: 1rem;
    padding: 0.85rem 0.9rem;
  }

  .ib-section-rail-inner::before {
    left: 0.9rem;
    right: 0.9rem;
  }

  .ib-section-rail-nav {
    gap: 0.55rem;
  }

  .ib-section-rail-link {
    width: 100%;
    justify-content: flex-start;
  }

  .ib-header-inner {
    gap: 0.9rem;
    min-height: 5.15rem;
  }

  .ib-brand-logo {
    width: clamp(8.6rem, 38vw, 10.5rem);
  }

  .ib-header-cta {
    min-height: 2.95rem;
    padding: 0.7rem 1rem;
  }

  .ib-main {
    padding: 2.75rem 0 4.5rem;
  }

  .ib-hero {
    padding-top: 1rem;
  }

  .ib-hero-title {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
    max-width: 11ch;
  }

  .ib-hero-text {
    font-size: 1rem;
  }

  .ib-hero-actions {
    flex-direction: column;
  }

  .ib-btn {
    width: 100%;
  }

  .ib-point {
    width: 100%;
  }

  .ib-visual-card {
    bottom: 1.4rem;
    left: 1.4rem;
    right: 1.4rem;
    width: auto;
  }

  .ib-positioning {
    border-radius: 1.5rem;
    margin-top: 3.25rem;
    padding: 2.5rem 0;
  }

  .ib-section-title {
    max-width: 12ch;
  }

  .ib-section-text {
    font-size: 1rem;
  }

  .ib-positioning-card {
    padding: 1.35rem;
  }

  .ib-deliver {
    margin-top: 3.25rem;
  }

  .ib-deliver-grid {
    grid-template-columns: 1fr;
  }

  .ib-deliver-card {
    padding: 1.45rem;
  }

  .ib-deliver-card::before {
    left: 1.45rem;
    right: 1.45rem;
  }

  .ib-ai {
    margin-top: 3.25rem;
    padding: 2.5rem 0 0;
  }

  .ib-ai-statement {
    border-radius: 1.35rem;
    padding: 1.55rem;
  }

  .ib-ai-statement::before {
    left: 1.55rem;
    right: 1.55rem;
  }

  .ib-ai-point {
    padding: 1.2rem 1.25rem;
  }

  .ib-outcomes {
    margin-top: 3.25rem;
    padding-top: 2.5rem;
  }

  .ib-outcome-card {
    padding: 1.45rem;
  }

  .ib-outcome-card::before {
    left: 1.45rem;
    right: 1.45rem;
  }

  .ib-process {
    margin-top: 3.25rem;
    padding-top: 2.5rem;
  }

  .ib-process-grid {
    grid-template-columns: 1fr;
  }

  .ib-process-step {
    padding: 1.35rem;
  }

  .ib-process-step::before {
    left: 1.35rem;
    right: 1.35rem;
  }

  .ib-cta {
    margin-top: 3.75rem;
    padding-top: 3rem;
  }

  .ib-page-hero {
    padding-top: 1rem;
  }

  .ib-review {
    margin-top: 3.25rem;
  }

  .ib-contact {
    margin-top: 3.25rem;
  }

  .ib-review-panel {
    border-radius: 1.45rem;
    padding: 2rem 1.25rem;
  }

  .ib-contact-panel {
    border-radius: 1.45rem;
    padding: 2rem 1.25rem;
  }

  .ib-step-helper {
    font-size: 0.95rem;
  }

  .ib-choice-group,
  .ib-choice-group-wide {
    grid-template-columns: 1fr;
  }

  .ib-form-field-choice,
  .ib-form-field-notes {
    padding: 0.95rem;
  }

  .ib-cta-panel {
    border-radius: 1.45rem;
    padding: 2.2rem 1.25rem;
  }

  .ib-cta-actions {
    flex-direction: column;
  }

  .ib-form-actions {
    justify-content: stretch;
  }

  .ib-step-actions {
    flex-direction: column-reverse;
  }

  .ib-step-actions .ib-btn {
    min-width: 0;
    width: 100%;
  }

  .ib-step-actions .ib-btn-primary {
    margin-left: 0;
  }

  .ib-success-panel {
    border-radius: 1.3rem;
    padding: 2rem 1.2rem;
  }

  .ib-contact-success {
    border-radius: 1.3rem;
    padding: 2rem 1.2rem;
  }

  .ib-next-item {
    padding-left: 2.1rem;
  }

  .ib-footer {
    margin-top: 3.75rem;
    padding-bottom: 1.5rem;
  }

  .ib-footer-panel {
    border-radius: 1.35rem;
    padding: 1.45rem 1.25rem;
  }

  .ib-footer-brand-name {
    font-size: 1.12rem;
  }

  .ib-footer-brand-text {
    font-size: 0.96rem;
  }

  .ib-footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    min-height: 0;
    padding-top: 0.9rem;
  }
}
