/* New Managed IT Support page design - scoped under .itsp-page */
.itsp-page {
  --brand: #68139f;
  --brand-bright: #9638d0;
  --brand-light: #c779ef;
  --brand-dark: #3c075f;
  --night: #09070f;
  --night-soft: #15101d;
  --ink: #18141c;
  --muted: #6b6470;
  --paper: #ffffff;
  --soft: #f8f4fa;
  --line: #e8deed;
  --green: #67e7ae;
  --radius: 18px;
  --shadow: 0 22px 60px rgba(45, 9, 65, .13);
  --container: 1180px;

  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.itsp-page * { box-sizing: border-box; }
.itsp-page a { color: inherit; text-decoration: none; }
.itsp-page img { display: block; max-width: 100%; }

/* Neutralise global theme (style.css) rules that target bare elements */
.itsp-page ul, .itsp-page ol { margin-bottom: 0; padding-left: 0; list-style: none; }
.itsp-page ul li, .itsp-page ol li {
  font-size: inherit;
  line-height: inherit;
  margin-top: 0;
  margin-bottom: 0;
  color: inherit;
  font-weight: inherit;
}
.itsp-page h1, .itsp-page h2, .itsp-page h3, .itsp-page h4, .itsp-page h5, .itsp-page h6 {
  font-family: Inter, Arial, sans-serif;
  color: inherit;
}
.itsp-page p { font-size: inherit; line-height: inherit; color: inherit; }
.itsp-page a:hover { color: inherit; }

.itsp-page .itsp-container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }

.itsp-page .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 50px;
  padding: 13px 20px;
  color: #fff;
  font-size: 14.08px;
  font-weight: 750;
  background: linear-gradient(135deg, var(--brand), var(--brand-bright));
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(104,19,159,.28);
  transition: transform .2s ease, filter .2s ease;
}
.itsp-page .button:hover { transform: translateY(-2px); filter: brightness(1.09); color: #fff; }
.itsp-page .button-outline { background: transparent; border-color: rgba(255,255,255,.72); box-shadow: none; }
.itsp-page .button-light { color: var(--brand); background: #fff; box-shadow: 0 14px 32px rgba(22,2,34,.18); }
.itsp-page .button-light:hover { color: var(--brand); }
.itsp-page .button-small { min-height: 42px; padding: 9px 17px; }
.itsp-page .text-link { color: var(--brand); font-size: 14.08px; font-weight: 800; }
.itsp-page .text-link span { margin-left: 7px; }

.itsp-page .itsp-header {
  height: 78px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(104,19,159,.1);
  backdrop-filter: blur(14px);
}
.itsp-page .nav-bar { height: 100%; display: flex; align-items: center; gap: 30px; }
.itsp-page .brand { flex: 0 0 auto; }
.itsp-page .brand img { width: 158px; max-height: 60px; object-fit: contain; }
.itsp-page .site-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.itsp-page .site-nav a { position: relative; font-size: 13.44px; font-weight: 650; color: var(--ink); }
.itsp-page .site-nav a::after { content: ""; height: 2px; position: absolute; left: 0; right: 100%; bottom: -9px; background: var(--brand); transition: right .2s ease; }
.itsp-page .site-nav a:hover::after, .itsp-page .site-nav a.active::after { right: 0; }
.itsp-page .site-nav a:hover, .itsp-page .site-nav a.active { color: var(--brand); }
.itsp-page .nav-actions { display: flex; align-items: center; gap: 16px; }
.itsp-page .phone { font-size: 13.44px; font-weight: 750; white-space: nowrap; color: var(--ink); }
.itsp-page .phone span { color: var(--brand); margin-right: 5px; }
.itsp-page .nav-check, .itsp-page .nav-toggle { display: none; }

.itsp-page .floating-cta { position: fixed; right: 22px; bottom: 22px; z-index: 80; display: flex; align-items: center; gap: 8px; min-height: 48px; padding: 10px 17px; color: #fff; font-size: 12px; background: linear-gradient(135deg, var(--brand), #aa3de0); border: 3px solid #fff; border-radius: 28px; box-shadow: 0 12px 35px rgba(34,4,50,.3); }
.itsp-page .floating-cta:hover { color: #fff; }
.itsp-page .floating-cta span { color: #db9dfa; font-size: 19.2px; }

.itsp-page .hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 0;
  color: #fff;
  background: radial-gradient(circle at 76% 36%, #39104f 0%, #160b21 37%, #08070d 76%);
}
.itsp-page .hero-grid { min-height: 515px; display: grid; grid-template-columns: 1.02fr .98fr; gap: 48px; align-items: center; }
.itsp-page .hero-content { position: relative; z-index: 3; padding-bottom: 48px; }
.itsp-page .eyebrow { margin: 0 0 12px; color: var(--brand); font-size: 11.52px; font-weight: 800; letter-spacing: 1.92px; text-transform: uppercase; }
.itsp-page .eyebrow.light { color: #d79bf5; }
.itsp-page .hero h1 {
  max-width: 720px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(49.6px, 5.2vw, 88.8px);
  line-height: .98;
  letter-spacing: -0.88px;
}
.itsp-page .hero h1 span { color: #a63bdf; }
.itsp-page .hero-intro { max-width: 670px; margin: 0; color: #e9e0ed; font-size: 17.28px; }
.itsp-page .hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin: 29px 0 27px; }
.itsp-page .trust-points { display: flex; gap: 18px 24px; flex-wrap: wrap; margin: 0; padding: 0; list-style: none; color: #eaddf0; font-size: 12.48px; }
.itsp-page .trust-points li { display: flex; align-items: center; color: #eaddf0; font-size: 12.48px; }
.itsp-page .trust-points span { display: inline-grid; width: 19px; height: 19px; margin-right: 6px; place-items: center; color: #de87ff; border: 1px solid #8e32bc; border-radius: 50%; font-family: Inter, Arial, sans-serif; }
.itsp-page .hero-orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .34; }
.itsp-page .hero-orb-one { width: 430px; height: 430px; right: 7%; top: 5%; background: var(--brand-bright); }
.itsp-page .hero-orb-two { width: 180px; height: 180px; left: 7%; bottom: 0; background: #ba4df4; }
.itsp-page .lion-watermark { position: absolute; top: 35px; left: 2%; color: rgba(160,60,212,.06); font-size: 208px; font-weight: 900; letter-spacing: -1.6px; transform: rotate(-90deg); }

.itsp-page .operations-visual { position: relative; z-index: 2; height: 420px; perspective: 1000px; }
.itsp-page .dashboard {
  position: absolute;
  color: #d9c5e5;
  background: linear-gradient(145deg, rgba(11,14,23,.97), rgba(49,11,66,.95));
  border: 1px solid rgba(198,87,251,.42);
  border-radius: 9px;
  box-shadow: 0 0 50px rgba(157,44,219,.23), inset 0 0 20px rgba(255,255,255,.025);
}
.itsp-page .main-dashboard { width: 78%; height: 62%; top: 8%; left: 7%; padding: 24px; transform: rotateY(-5deg); }
.itsp-page .dashboard-top { display: flex; align-items: center; justify-content: space-between; font-size: 11.52px; text-transform: uppercase; letter-spacing: 1.12px; }
.itsp-page .status { color: var(--green); }
.itsp-page .status i { display: inline-block; width: 7px; height: 7px; margin-right: 5px; background: var(--green); border-radius: 50%; box-shadow: 0 0 10px var(--green); }
.itsp-page .metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 25px; }
.itsp-page .metric-row div { padding: 12px; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.06); border-radius: 5px; }
.itsp-page .metric-row small, .itsp-page .metric-row strong { display: block; }
.itsp-page .metric-row small { color: #8f8296; font-size: 9.6px; }
.itsp-page .metric-row strong { margin-top: 5px; color: #fff; font-size: 12.48px; }
.itsp-page .chart { height: 92px; display: flex; align-items: end; gap: 7px; margin-top: 28px; border-bottom: 1px solid rgba(255,255,255,.08); }
.itsp-page .chart i { flex: 1; min-width: 6px; background: linear-gradient(#c653f6, #68139f); border-radius: 3px 3px 0 0; box-shadow: 0 0 10px rgba(188,71,234,.16); }
.itsp-page .chart i:nth-child(1) { height: 25%; }
.itsp-page .chart i:nth-child(2) { height: 43%; }
.itsp-page .chart i:nth-child(3) { height: 38%; }
.itsp-page .chart i:nth-child(4) { height: 70%; }
.itsp-page .chart i:nth-child(5) { height: 55%; }
.itsp-page .chart i:nth-child(6) { height: 83%; }
.itsp-page .chart i:nth-child(7) { height: 62%; }
.itsp-page .chart i:nth-child(8) { height: 92%; }
.itsp-page .chart i:nth-child(9) { height: 77%; }
.itsp-page .alert-card, .itsp-page .service-card-mini { width: 205px; min-height: 105px; padding: 18px; }
.itsp-page .alert-card { right: 0; top: 29%; }
.itsp-page .service-card-mini { left: 0; bottom: 6%; }
.itsp-page .alert-card small, .itsp-page .alert-card strong, .itsp-page .service-card-mini small, .itsp-page .service-card-mini strong { display: block; }
.itsp-page .alert-card small, .itsp-page .service-card-mini small { color: #9d8da6; font-size: 10.88px; }
.itsp-page .alert-card strong, .itsp-page .service-card-mini strong { margin-top: 7px; color: var(--green); font-size: 12.64px; }
.itsp-page .progress { height: 5px; margin-top: 15px; overflow: hidden; background: rgba(255,255,255,.09); border-radius: 4px; }
.itsp-page .progress i { display: block; width: 82%; height: 100%; background: linear-gradient(90deg, var(--green), #3ec489); }
.itsp-page .pulse { width: 12px; height: 12px; margin-top: 14px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 0 rgba(103,231,174,.6); animation: itsp-pulse 2s infinite; }
@keyframes itsp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(103,231,174,.55); }
  70% { box-shadow: 0 0 0 14px rgba(103,231,174,0); }
  100% { box-shadow: 0 0 0 0 rgba(103,231,174,0); }
}
.itsp-page .shield { position: absolute; right: 9%; bottom: 4%; width: 115px; height: 130px; display: grid; place-items: center; color: #d989ff; font-size: 41.6px; font-weight: 800; background: linear-gradient(160deg, rgba(145,40,194,.18), rgba(255,255,255,.03)); border: 2px solid #8c2abc; border-radius: 55% 55% 65% 65% / 35% 35% 70% 70%; box-shadow: 0 0 35px rgba(141,36,188,.35); }
.itsp-page .hero-proof { position: relative; z-index: 4; display: grid; grid-template-columns: 1.15fr repeat(4, 1fr); align-items: stretch; color: var(--ink); background: #fff; border-radius: 16px 16px 0 0; box-shadow: 0 -12px 35px rgba(12,2,18,.14); }
.itsp-page .hero-proof > * { padding: 22px 21px; }
.itsp-page .hero-proof > div { border-left: 1px solid var(--line); }
.itsp-page .hero-proof strong, .itsp-page .hero-proof small { display: block; }
.itsp-page .hero-proof strong { color: var(--brand); font-size: 14.4px; }
.itsp-page .hero-proof small, .itsp-page .hero-proof-label { color: var(--muted); font-size: 11.2px; }
.itsp-page .hero-proof-label { display: flex; align-items: center; font-weight: 750; text-transform: uppercase; letter-spacing: 1.28px; }

.itsp-page .section { padding: 88px 0; }
.itsp-page .section-header { max-width: 760px; margin-bottom: 42px; }
.itsp-page .section-header.centred { margin-inline: auto; text-align: center; }
.itsp-page .section-header h2, .itsp-page .included h2, .itsp-page .difference h2, .itsp-page .sector-grid h2, .itsp-page .faq h2, .itsp-page .cta h2 { margin: 0 0 17px; font-size: clamp(32px, 3.2vw, 52.8px); line-height: 1.08; letter-spacing: -0.72px; }
.itsp-page .section-header > p:last-child, .itsp-page .included-intro > p, .itsp-page .sector-grid > div > p:last-child, .itsp-page .faq-grid > div > p { color: var(--muted); }
.itsp-page .outcome-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.itsp-page .outcome-card { padding: 30px 25px; background: linear-gradient(#fff, #fcf9fd); border: 1px solid var(--line); border-radius: 15px; transition: transform .2s ease, box-shadow .2s ease; }
.itsp-page .outcome-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.itsp-page .outcome-card h3 { margin: 22px 0 9px; font-size: 16.8px; }
.itsp-page .outcome-card p { margin: 0; color: var(--muted); font-size: 13.44px; }
.itsp-page .icon { position: relative; display: grid; width: 51px; height: 51px; place-items: center; color: var(--brand); background: #f0e1f8; border-radius: 13px; }
.itsp-page .icon::before { font-size: 24px; font-weight: 800; }
.itsp-page .icon-monitor::before { content: "⌁"; }
.itsp-page .icon-lock::before { content: "◇"; }
.itsp-page .icon-people::before { content: "◎"; }
.itsp-page .icon-growth::before { content: "↗"; }
.itsp-page .support-band { padding: 30px 0; color: #fff; background: linear-gradient(100deg, #340650, #68139f 55%, #8f28c5); }
.itsp-page .support-band-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.itsp-page .support-band-grid > div { padding: 4px 28px; border-right: 1px solid rgba(255,255,255,.2); }
.itsp-page .support-band-grid > div:last-child { border-right: 0; }
.itsp-page .support-number, .itsp-page .support-label { display: block; }
.itsp-page .support-number { font-size: 17.6px; font-weight: 800; }
.itsp-page .support-label { margin-top: 3px; color: #e5d5ec; font-size: 11.52px; }

.itsp-page .included { background: var(--soft); }
.itsp-page .included-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 72px; align-items: start; }
.itsp-page .included-intro { position: sticky; top: 115px; }
.itsp-page .service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.itsp-page .service-list article { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.itsp-page .service-icon { display: grid; width: 43px; height: 43px; place-items: center; color: var(--brand); font-size: 11.2px; font-weight: 800; background: #f1e4f7; border-radius: 11px; }
.itsp-page .service-list h3 { margin: 0 0 7px; font-size: 15.2px; }
.itsp-page .service-list p { margin: 0; color: var(--muted); font-size: 12.8px; }

.itsp-page .difference { overflow: hidden; color: #fff; background: radial-gradient(circle at 17% 48%, #3b1053, #14091e 36%, #09070e 74%); }
.itsp-page .difference h2 { color: #fff; }
.itsp-page .difference-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 85px; align-items: center; }
.itsp-page .difference-copy > p { color: #d6cadb; }
.itsp-page .difference-visual { position: relative; min-height: 450px; }
.itsp-page .network-ring { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(190,86,238,.3); border-radius: 50%; transform: translate(-50%,-50%); }
.itsp-page .ring-one { width: 330px; height: 330px; }
.itsp-page .ring-two { width: 220px; height: 220px; }
.itsp-page .network-centre { position: absolute; left: 50%; top: 50%; width: 115px; height: 115px; display: grid; place-items: center; color: #fff; font-weight: 850; background: linear-gradient(135deg, #68139f, #aa48df); border-radius: 50%; transform: translate(-50%,-50%); box-shadow: 0 0 45px rgba(173,64,225,.32); }
.itsp-page .network-node { position: absolute; min-width: 95px; padding: 10px 14px; text-align: center; color: #d7c4e0; font-size: 11.52px; font-weight: 700; background: #180d21; border: 1px solid #713091; border-radius: 8px; box-shadow: 0 12px 30px rgba(0,0,0,.24); }
.itsp-page .node-one { left: 4%; top: 18%; }
.itsp-page .node-two { right: 5%; top: 14%; }
.itsp-page .node-three { right: 2%; bottom: 16%; }
.itsp-page .node-four { left: 5%; bottom: 14%; }
.itsp-page .feature-list { margin: 30px 0 0; padding: 0; list-style: none; }
.itsp-page .feature-list li { position: relative; padding: 0 0 18px 34px; }
.itsp-page .feature-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; display: grid; width: 22px; height: 22px; place-items: center; color: #d583fa; border: 1px solid #8431ae; border-radius: 50%; font-size: 11.2px; }
.itsp-page .feature-list span, .itsp-page .feature-list small { display: block; }
.itsp-page .feature-list span { font-weight: 750; }
.itsp-page .feature-list small { color: #baadbf; }

.itsp-page .process { background: #fff; }
.itsp-page .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: item; }
.itsp-page .process-grid li { position: relative; padding: 30px 28px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.itsp-page .process-grid li + li { border-left: 1px solid var(--line); }
.itsp-page .process-grid li:first-child { border-left: 1px solid var(--line); border-radius: 14px 0 0 14px; }
.itsp-page .process-grid li:last-child { border-right: 1px solid var(--line); border-radius: 0 14px 14px 0; }
.itsp-page .process-grid span { color: var(--brand); font-size: 11.84px; font-weight: 850; }
.itsp-page .process-grid h3 { margin: 18px 0 8px; font-size: 16px; }
.itsp-page .process-grid p { margin: 0; color: var(--muted); font-size: 13.12px; }

.itsp-page .sectors { background: var(--soft); }
.itsp-page .sector-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.itsp-page .sector-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.itsp-page .sector-list span { min-height: 105px; display: grid; place-items: center; padding: 15px; text-align: center; font-size: 13.12px; font-weight: 750; background: #fff; border: 1px solid var(--line); border-radius: 13px; }
.itsp-page .sector-list span::before { content: "◇"; display: block; color: var(--brand); font-size: 22.4px; }
.itsp-page .faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 85px; align-items: start; }
.itsp-page .accordion details { border-bottom: 1px solid var(--line); }
.itsp-page .accordion summary { position: relative; padding: 21px 40px 21px 0; font-weight: 750; cursor: pointer; list-style: none; }
.itsp-page .accordion summary::-webkit-details-marker { display: none; }
.itsp-page .accordion summary::after { content: "+"; position: absolute; right: 2px; top: 18px; display: grid; width: 28px; height: 28px; place-items: center; color: var(--brand); background: #f1e4f7; border-radius: 50%; }
.itsp-page .accordion details[open] summary::after { content: "−"; }
.itsp-page .accordion details p { margin: -5px 40px 22px 0; color: var(--muted); font-size: 14.08px; }

.itsp-page .cta { position: relative; overflow: hidden; padding: 72px 0; color: #fff; background: linear-gradient(105deg, #350650, #68139f 60%, #8f28c5); }
.itsp-page .cta h2 { color: #fff; }
.itsp-page .cta-orb { position: absolute; width: 380px; height: 380px; right: -80px; top: -150px; background: rgba(255,255,255,.12); border-radius: 50%; }
.itsp-page .cta-grid { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 45px; align-items: center; }
.itsp-page .cta h2 { max-width: 760px; }
.itsp-page .cta p { margin-bottom: 0; color: #eaddef; }
.itsp-page .cta-actions { display: flex; flex-direction: column; gap: 12px; }

@media (max-width: 1080px) {
  .itsp-page .site-nav { gap: 14px; }
  .itsp-page .site-nav a:nth-last-child(-n+2) { display: none; }
  .itsp-page .phone { display: none; }
  .itsp-page .outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .itsp-page .included-grid { gap: 40px; }
  .itsp-page .service-list { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .itsp-page .itsp-container { width: min(100% - 28px, 680px); }
  .itsp-page .itsp-header { height: 68px; }
  .itsp-page .nav-bar { gap: 12px; }
  .itsp-page .brand img { width: 132px; }
  .itsp-page .nav-actions { margin-left: auto; }
  .itsp-page .nav-actions .button { display: none; }
  .itsp-page .nav-toggle { order: 5; display: block; width: 42px; height: 42px; padding: 9px 7px; cursor: pointer; }
  .itsp-page .nav-toggle span { display: block; width: 26px; height: 2px; margin: 5px 0; background: var(--brand); transition: transform .2s ease, opacity .2s ease; }
  .itsp-page .site-nav { position: absolute; left: 0; right: 0; top: 68px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 22px; background: #fff; box-shadow: 0 22px 35px rgba(31,4,43,.14); }
  .itsp-page .site-nav a, .itsp-page .site-nav a:nth-last-child(-n+2) { display: block; padding: 11px 4px; border-bottom: 1px solid var(--line); }
  .itsp-page .site-nav a::after { display: none; }
  .itsp-page .nav-check:checked ~ .site-nav { display: flex; }
  .itsp-page .nav-check:checked + .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .itsp-page .nav-check:checked + .nav-toggle span:nth-child(2) { opacity: 0; }
  .itsp-page .nav-check:checked + .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .itsp-page .hero { padding-top: 50px; }
  .itsp-page .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 12px; }
  .itsp-page .hero-content { padding-bottom: 12px; }
  .itsp-page .hero h1 { font-size: clamp(48px, 13vw, 68.8px); }
  .itsp-page .hero-intro { font-size: 15.68px; }
  .itsp-page .hero-actions { flex-direction: column; }
  .itsp-page .hero-actions .button { width: 100%; }
  .itsp-page .trust-points { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
  .itsp-page .operations-visual { height: 290px; }
  .itsp-page .main-dashboard { width: 91%; left: 4%; height: 67%; padding: 16px; }
  .itsp-page .metric-row { margin-top: 16px; }
  .itsp-page .metric-row div { padding: 8px; }
  .itsp-page .chart { height: 68px; margin-top: 16px; }
  .itsp-page .alert-card { width: 165px; right: 2%; top: 58%; }
  .itsp-page .service-card-mini { width: 165px; left: 2%; bottom: 0; }
  .itsp-page .shield { display: none; }
  .itsp-page .hero-proof { grid-template-columns: 1fr 1fr; margin-top: 26px; }
  .itsp-page .hero-proof-label { grid-column: 1 / -1; justify-content: center; }
  .itsp-page .hero-proof > div { border-top: 1px solid var(--line); }
  .itsp-page .hero-proof > div:nth-child(even) { border-left: 0; }
  .itsp-page .section { padding: 66px 0; }
  .itsp-page .outcome-grid, .itsp-page .included-grid, .itsp-page .difference-grid, .itsp-page .sector-grid, .itsp-page .faq-grid, .itsp-page .cta-grid { grid-template-columns: 1fr; }
  .itsp-page .included-intro { position: static; }
  .itsp-page .service-list { margin-top: 12px; }
  .itsp-page .support-band-grid { grid-template-columns: 1fr 1fr; gap: 18px 0; }
  .itsp-page .support-band-grid > div { padding: 7px 15px; border-right: 0; }
  .itsp-page .difference-grid { gap: 35px; }
  .itsp-page .difference-visual { min-height: 330px; }
  .itsp-page .ring-one { width: 270px; height: 270px; }
  .itsp-page .ring-two { width: 175px; height: 175px; }
  .itsp-page .network-centre { width: 90px; height: 90px; }
  .itsp-page .network-node { min-width: 76px; padding: 8px 10px; font-size: 10.24px; }
  .itsp-page .process-grid { grid-template-columns: 1fr; }
  .itsp-page .process-grid li, .itsp-page .process-grid li:first-child, .itsp-page .process-grid li:last-child { border: 1px solid var(--line); border-radius: 12px; }
  .itsp-page .process-grid li + li { margin-top: 10px; }
  .itsp-page .sector-list { grid-template-columns: 1fr 1fr; }
  .itsp-page .cta-actions .button { width: 100%; }
}

@media (max-width: 430px) {
  .itsp-page .trust-points { grid-template-columns: 1fr; }
  .itsp-page .floating-cta b { display: none; }
  .itsp-page .floating-cta { width: 50px; height: 50px; justify-content: center; padding: 0; border-radius: 50%; }
  .itsp-page .outcome-grid { grid-template-columns: 1fr; }
  .itsp-page .hero-proof > * { padding: 18px 14px; }
  .itsp-page .hero-proof small { font-size: 10.24px; }
  .itsp-page .support-band-grid { grid-template-columns: 1fr; }
  .itsp-page .support-band-grid > div { text-align: center; }
  .itsp-page .sector-list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .itsp-page *, .itsp-page *::before, .itsp-page *::after { transition: none !important; animation: none !important; }
}
