  :root {
      --ds-navy: #092845;
      --ds-deep: #061423;
      --ds-panel: #123653;
      --ds-cyan: #08bad5;
      --ds-text: #0b2f59;
      --ds-muted: #65748a;
      --ds-soft: #f7fafc;
      --ds-border: #e7eef5;
      --ds-green: #20c76f;
      --ds-red: #ff5c66;
      --ds-yellow: #ffbd2e;
  }

  body {
      font-family: "Outfit", sans-serif;
      color: var(--ds-text);
      background: #0b1121;
  }

  .digital-page {
      background: #fff;
      margin-bottom: 0 !important;
  }

  .digital-page * {
      letter-spacing: 0;
  }

  .digital-page h1,
  .digital-page h2,
  .digital-page h3,
  .digital-page h4,
  .digital-page p {
      margin-top: 0;
  }

  .digital-page p {
      color: var(--ds-muted);
      font-size: 17px;
      line-height: 1.8;
      font-weight: 400;
  }

  .digital-page .container {
      max-width: 1210px;
  }

  .ds-accent {
      color: var(--ds-cyan);
  }

  .ds-section {
      padding: 96px 0;
  }

  .ds-section-soft {
      background: var(--ds-soft);
  }

  .ds-section-dark {
      background: var(--ds-navy);
      color: #fff;
  }

  .ds-heading {
      color: var(--ds-text);
      font-size: clamp(2rem, 3vw, 3rem);
      line-height: 1.12;
      font-weight: 800;
      margin-bottom: 18px;
  }

  .ds-section-dark .ds-heading,
  .ds-section-dark p {
      color: #fff;
  }

  .ds-section-dark p {
      color: rgba(230, 242, 255, .76);
  }

  .ds-center {
      max-width: 820px;
      text-align: center;
      margin: 0 auto 54px;
  }

  .ds-badge {
      margin-top: 30px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 999px;
      padding: 8px 16px;
      color: var(--ds-cyan);
      background: rgba(8, 186, 213, .08);
      border: 1px solid rgba(8, 186, 213, .28);
      font-size: 14px;
      line-height: 1;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 5px;
  }

  .ds-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 0 28px;
      border-radius: 8px;
      font-size: 17px;
      font-weight: 800;
      line-height: 1;
      text-decoration: none;
      border: 1px solid transparent;
      transition: all .28s ease;
  }

  .ds-btn:hover {
      transform: translateY(-3px);
      text-decoration: none;
  }

  .ds-btn-primary {
      color: #fff;
      background: var(--ds-cyan);
      box-shadow: 0 18px 36px rgba(8, 186, 213, .28);
  }

  .ds-btn-primary:hover {
      color: #fff;
      background: #11c8e4;
      box-shadow: 0 22px 42px rgba(8, 186, 213, .34);
  }

  .ds-btn-secondary {
      color: #fff;
      background: rgba(255, 255, 255, .04);
      border-color: rgba(255, 255, 255, .2);
  }

  .ds-btn-secondary:hover {
      color: #fff;
      background: rgba(255, 255, 255, .1);
      border-color: rgba(255, 255, 255, .38);
  }

  .ds-hero {
      position: relative;
      overflow: hidden;
      padding: 142px 0 88px;
      background:
          radial-gradient(circle at 18% 22%, rgba(1, 199, 200, .14) 0%, rgba(1, 199, 200, 0) 26%),
          radial-gradient(circle at 78% 12%, rgba(43, 127, 255, .18) 0%, rgba(43, 127, 255, 0) 24%),
          linear-gradient(135deg, #0b1222 0%, #0e1930 46%, #0b1e35 70%, #061423 100%);
      color: #fff;
  }

  .ds-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
          linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
      background-size: 38px 38px;
      pointer-events: none;
  }

  .ds-hero::after {
      content: "";
      position: absolute;
      left: -5%;
      right: -5%;
      bottom: -34px;
      height: 72px;
      background: #fff;
      border-radius: 50% 50% 0 0 / 38% 38% 0 0;
  }

  .ds-hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(360px, 1fr);
      gap: clamp(36px, 7vw, 90px);
      align-items: center;
  }

  .ds-hero h1 {
      color: #fff;
      font-size: 45px;
      line-height: .98;
      font-weight: 800;
      max-width: 660px;
      margin: 22px 0 18px;
  }

  .ds-hero p {
      max-width: 620px;
      color: rgba(231, 242, 255, .86);
      font-size: 1.06rem;
      line-height: 1.8;
      margin-bottom: 28px;
  }

  .ds-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 30px;
  }

  .ds-pill {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .09);
      border: 1px solid rgba(255, 255, 255, .14);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      transition: all .25s ease;
  }

  .ds-pill:hover {
      background: rgba(8, 186, 213, .14);
      border-color: rgba(8, 186, 213, .36);
      transform: translateY(-2px);
  }

  .ds-hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
  }

  .ds-setup-panel {
      position: relative;
      border-radius: 18px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .14);
      padding: 34px;
      backdrop-filter: blur(14px);
      box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
      transition: all .3s ease;
  }

  .ds-setup-panel:hover {
      transform: translateY(-8px);
      border-color: rgba(8, 186, 213, .3);
      box-shadow: 0 34px 84px rgba(0, 0, 0, .3);
  }

  .ds-step-corner {
      position: absolute;
      top: -16px;
      right: -18px;
      background: var(--ds-cyan);
      color: #fff;
      border-radius: 999px;
      padding: 10px 18px;
      font-size: 12px;
      font-weight: 800;
  }

  .ds-panel-title {
      display: block;
      color: var(--ds-cyan);
      text-transform: uppercase;
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 20px;
  }

  .ds-check-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .ds-check-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: rgba(255, 255, 255, .86);
      font-size: 15px;
      line-height: 1.5;
      margin-bottom: 17px;
      transition: all .25s ease;
  }

  .ds-check-list i {
      color: var(--ds-cyan);
      margin-top: 2px;
      transition: all .25s ease;
  }

  .ds-setup-panel .ds-check-list li:hover {
      color: #fff;
      transform: translateX(6px);
  }

  .ds-setup-panel .ds-check-list li:hover i {
      transform: scale(1.16);
  }

  .ds-panel-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 28px;
      padding-top: 26px;
      border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .ds-panel-stats span {
      display: block;
      color: rgba(255, 255, 255, .48);
      font-size: 14px;
      margin-bottom: 6px;
  }

  .ds-panel-stats strong {
      color: #fff;
      font-size: 18px;
      line-height: 1;
      font-weight: 800;
  }

  .ds-panel-stats strong.ds-accent {
      color: #fff;
  }

  .ds-framework {
      border-radius: 16px;
      border: 1px solid rgba(8, 186, 213, .28);
      background: #eefcff;
      padding: 26px 30px;
      display: grid;
      grid-template-columns: 60px 1fr auto;
      gap: 22px;
      align-items: center;
      margin-bottom: 60px;
      transition: all .28s ease;
  }

  .ds-framework:hover {
      transform: translateY(-5px);
      border-color: rgba(8, 186, 213, .46);
      box-shadow: 0 22px 44px rgba(8, 186, 213, .1);
      background: #e9fbff;
  }

  .ds-framework:hover .ds-framework-icon {
      background: var(--ds-cyan);
      color: #fff;
      box-shadow: 0 14px 28px rgba(8, 186, 213, .2);
  }

  .ds-framework-icon,
  .ds-card-icon,
  .ds-process-icon,
  .ds-deliverable-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(8, 186, 213, .12);
      color: var(--ds-cyan);
      font-size: 20px;
      transition: all .28s ease;
  }

  .ds-framework h3,
  .ds-card h3,
  .ds-process-card h3,
  .ds-deliverable h3,
  .ds-stack-card h3 {
      color: var(--ds-text);
      font-size: 20px;
      line-height: 1.35;
      font-weight: 800;
      margin-bottom: 12px;
  }

  .ds-framework p,
  .ds-card p,
  .ds-process-card p,
  .ds-deliverable p,
  .ds-stack-card li {
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 0;
  }

  .ds-step-dots {
      display: flex;
      gap: 12px;
  }

  .ds-step-dots span {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #dfe8f1;
      color: #8290a2;
      font-weight: 800;
      transition: all .25s ease;
  }

  .ds-step-dots span:hover {
      transform: translateY(-3px);
  }

  .ds-step-dots span.active,
  .ds-step-dots span.done {
      background: var(--ds-cyan);
      color: #fff;
      box-shadow: 0 10px 22px rgba(8, 186, 213, .24);
  }

  .ds-step-dots span.done {
      background: var(--ds-navy);
  }

  .ds-cards-three,
  .ds-process-grid,
  .ds-deliverables-grid,
  .ds-stack-grid,
  .ds-result-stats {
      display: grid;
      gap: 28px;
  }

  .ds-cards-three {
      grid-template-columns: repeat(3, 1fr);
  }

  .ds-card,
  .ds-process-card,
  .ds-deliverable,
  .ds-result-stat {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--ds-border);
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 8px 24px rgba(11, 45, 80, .035);
      transition: all .28s ease;
  }

  .ds-card::before,
  .ds-process-card::before,
  .ds-deliverable::before,
  .ds-result-stat::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 3px;
      background: linear-gradient(90deg, var(--ds-cyan), #2b7fff);
      opacity: 0;
      transform: scaleX(.35);
      transform-origin: left;
      transition: all .28s ease;
  }

  .ds-card {
      padding: 32px;
      min-height: 238px;
  }

  .ds-card:hover,
  .ds-process-card:hover,
  .ds-deliverable:hover,
  .ds-result-stat:hover,
  .ds-stack-card:hover {
      transform: translateY(-7px);
      border-color: #d8e8f5;
      box-shadow: 0 24px 45px rgba(11, 45, 80, .08);
  }

  .ds-card:hover::before,
  .ds-process-card:hover::before,
  .ds-deliverable:hover::before,
  .ds-result-stat:hover::before {
      opacity: 1;
      transform: scaleX(1);
  }

  .ds-card:hover .ds-card-icon,
  .ds-process-card:hover .ds-process-icon,
  .ds-deliverable:hover .ds-deliverable-icon {
      background: var(--ds-cyan);
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 14px 28px rgba(8, 186, 213, .22);
  }

  .ds-card-icon,
  .ds-deliverable-icon {
      margin-bottom: 24px;
  }

  .ds-process-grid {
      grid-template-columns: repeat(3, 1fr);
  }

  .ds-process-card {
      padding: 32px;
      min-height: 325px;
  }

  .ds-process-top {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
  }

  .ds-week {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      border-radius: 999px;
      padding: 0 14px;
      background: rgba(8, 186, 213, .1);
      color: var(--ds-cyan);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      transition: all .25s ease;
  }

  .ds-process-card:hover .ds-week {
      background: var(--ds-cyan);
      color: #fff;
  }

  .ds-process-number {
      position: absolute;
      right: 28px;
      top: 24px;
      color: rgba(11, 47, 89, .04);
      font-size: 54px;
      line-height: 1;
      font-weight: 800;
  }

  .ds-mini-list {
      list-style: none;
      padding: 0;
      margin: 22px 0 0;
  }

  .ds-mini-list li {
      position: relative;
      padding-left: 16px;
      color: #5a6b86;
      font-size: 13px;
      line-height: 1.8;
      transition: all .25s ease;
  }

  .ds-process-card:hover .ds-mini-list li {
      color: #324963;
  }

  .ds-mini-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 11px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--ds-cyan);
  }

  .ds-deliverables-grid {
      grid-template-columns: repeat(3, 1fr);
  }

  .ds-deliverable {
      padding: 30px;
      min-height: 218px;
  }

  .ds-deliverable-tag {
      position: absolute;
      top: 28px;
      right: 28px;
      border-radius: 999px;
      padding: 6px 12px;
      font-size: 12px;
      font-weight: 700;
      color: #2f63ff;
      background: rgba(47, 99, 255, .08);
      transition: all .25s ease;
  }

  .ds-deliverable:hover .ds-deliverable-tag {
      transform: translateY(-2px);
      box-shadow: 0 10px 22px rgba(11, 45, 80, .08);
  }

  .tag-green {
      color: #16a05d;
      background: rgba(32, 199, 111, .1);
  }

  .tag-yellow {
      color: #c68600;
      background: rgba(255, 189, 46, .14);
  }

  .tag-red {
      color: #e93f50;
      background: rgba(255, 92, 102, .1);
  }

  .tag-cyan {
      color: #0a9ec0;
      background: rgba(8, 186, 213, .1);
  }

  .tag-gray {
      color: #5c6d84;
      background: #f0f4f8;
  }

  .ds-stall-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
      margin: 54px 0;
  }

  .ds-stall-stat {
      text-align: center;
      border-radius: 14px;
      padding: 28px 20px;
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .1);
      transition: all .28s ease;
  }

  .ds-stall-stat:hover {
      transform: translateY(-6px);
      background: rgba(8, 186, 213, .1);
      border-color: rgba(8, 186, 213, .28);
      box-shadow: 0 22px 44px rgba(0, 0, 0, .14);
  }

  .ds-stall-stat strong {
      display: block;
      color: var(--ds-cyan);
      font-size: 34px;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 10px;
  }

  .ds-stall-stat span {
      color: rgba(230, 242, 255, .7);
      font-size: 13px;
      line-height: 1.6;
  }

  .ds-compare {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-radius: 16px;
      overflow: hidden;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
      transition: all .28s ease;
  }

  .ds-compare:hover {
      border-color: rgba(8, 186, 213, .18);
      box-shadow: 0 28px 65px rgba(0, 0, 0, .16);
  }

  .ds-compare-col {
      padding: 34px;
      transition: all .28s ease;
  }

  .ds-compare-col:hover {
      background: rgba(255, 255, 255, .04);
  }

  .ds-compare-col.good {
      background: rgba(8, 186, 213, .1);
  }

  .ds-compare-col.good:hover {
      background: rgba(8, 186, 213, .14);
  }

  .ds-compare h3 {
      color: #fff;
      font-size: 16px;
      font-weight: 800;
      margin-bottom: 22px;
      text-transform: uppercase;
  }

  .ds-compare .bad h3 {
      color: #ff6b75;
  }

  .ds-compare .good h3 {
      color: var(--ds-cyan);
  }

  .ds-compare li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color: rgba(230, 242, 255, .82);
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 14px;
      transition: all .25s ease;
  }

  .ds-compare li:hover {
      transform: translateX(5px);
      color: #fff;
  }

  .ds-compare li i {
      margin-top: 4px;
  }

  .bad li i {
      color: var(--ds-red);
  }

  .good li i {
      color: var(--ds-cyan);
  }

  .ds-stack-grid {
      grid-template-columns: repeat(3, 1fr);
  }

  .ds-stack-card {
      border-radius: 12px;
      padding: 28px;
      border: 1px solid rgba(8, 186, 213, .36);
      background: #effdff;
      transition: all .28s ease;
      position: relative;
      overflow: hidden;
  }

  .ds-stack-card::after {
      content: "";
      position: absolute;
      width: 140px;
      height: 140px;
      right: -84px;
      bottom: -88px;
      border-radius: 50%;
      background: rgba(8, 186, 213, .11);
      opacity: 0;
      transition: all .28s ease;
  }

  .ds-stack-card:hover::after {
      opacity: 1;
      transform: scale(1.12);
  }

  .ds-stack-card.blue {
      border-color: #9bc5ff;
      background: #f0f7ff;
  }

  .ds-stack-card.green {
      border-color: #9ee8ba;
      background: #f1fff6;
  }

  .ds-stack-card.yellow {
      border-color: #ffd97b;
      background: #fffaf0;
  }

  .ds-stack-card.orange {
      border-color: #ffc194;
      background: #fff6ee;
  }

  .ds-stack-card.lime {
      border-color: #b8e986;
      background: #f8fff0;
  }

  .ds-stack-card h3 {
      display: flex;
      gap: 10px;
      align-items: center;
      margin-bottom: 18px;
      font-size: 16px;
  }

  .ds-stack-card h3::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--ds-cyan);
      transition: all .25s ease;
  }

  .ds-stack-card:hover h3::before {
      transform: scale(1.45);
      box-shadow: 0 0 0 5px rgba(8, 186, 213, .12);
  }

  .ds-stack-card.blue h3::before {
      background: #3a7cff;
  }

  .ds-stack-card.green h3::before {
      background: var(--ds-green);
  }

  .ds-stack-card.yellow h3::before {
      background: #ffab00;
  }

  .ds-stack-card.orange h3::before {
      background: #ff7a2a;
  }

  .ds-stack-card.lime h3::before {
      background: #78c91f;
  }

  .ds-stack-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .ds-stack-card li {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #53677f;
      margin-bottom: 12px;
      transition: all .25s ease;
  }

  .ds-stack-card li:hover {
      color: var(--ds-text);
      transform: translateX(4px);
  }

  .ds-stack-card li i {
      color: var(--ds-text);
      font-size: 12px;
  }

  .ds-compliance {
      display: flex;
      align-items: center;
      gap: 22px;
      margin-top: 44px;
      border-radius: 12px;
      padding: 28px 34px;
      background: var(--ds-navy);
      color: #fff;
      transition: all .28s ease;
  }

  .ds-compliance:hover {
      transform: translateY(-5px);
      box-shadow: 0 24px 54px rgba(11, 45, 80, .14);
      background: #0b3158;
  }

  .ds-compliance i {
      width: 54px;
      height: 54px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      background: var(--ds-cyan);
      font-size: 24px;
      flex: 0 0 auto;
  }

  .ds-compliance strong {
      display: block;
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 6px;
  }

  .ds-compliance span {
      color: rgba(230, 242, 255, .78);
  }

  .ds-results-grid {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(360px, 1fr);
      gap: 44px;
      align-items: stretch;
  }

  .ds-result-image {
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      min-height: 430px;
      background: #dcecf6;
      box-shadow: 0 16px 34px rgba(11, 45, 80, .08);
      transition: all .28s ease;
  }

  .ds-result-image:hover {
      transform: translateY(-6px);
      box-shadow: 0 26px 54px rgba(11, 45, 80, .12);
  }

  .ds-result-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .35s ease;
  }

  .ds-result-image:hover img {
      transform: scale(1.04);
  }

  .ds-result-caption {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 30px;
      color: #fff;
      background: linear-gradient(0deg, rgba(6, 20, 35, .88), rgba(6, 20, 35, 0));
  }

  .ds-result-caption strong {
      display: block;
      color: #fff;
      font-size: 18px;
      font-weight: 800;
  }

  .ds-inner {
      padding: 25px;
  }

  .ds-result-stats {
      grid-template-columns: repeat(2, 1fr);
  }

  .ds-result-stat {
      padding: 28px;
      min-height: 132px;
  }

  .ds-result-stat strong {
      display: block;
      color: var(--ds-cyan);
      font-size: 30px;
      line-height: 1;
      font-weight: 800;
      margin-bottom: 10px;
  }

  .ds-result-stat span {
      color: #53677f;
      font-size: 13px;
      line-height: 1.5;
  }

  .ds-quote {
      margin-top: 28px;
      border-radius: 14px;
      padding: 34px;
      background: var(--ds-navy);
      color: #fff;
      transition: all .28s ease;
  }

  .ds-quote:hover {
      transform: translateY(-5px);
      background: #0b3158;
      box-shadow: 0 24px 54px rgba(11, 45, 80, .14);
  }

  .ds-quote-mark {
      color: var(--ds-cyan);
      font-size: 44px;
      line-height: .7;
      display: block;
      margin-bottom: 16px;
  }

  .ds-quote p {
      color: #fff;
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 24px;
  }

  .ds-author {
      display: flex;
      align-items: center;
      gap: 14px;
  }

  .ds-author span {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--ds-cyan);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
  }

  .ds-author strong {
      display: block;
      color: #fff;
      font-weight: 800;
  }

  .ds-author small {
      color: rgba(230, 242, 255, .64);
  }

  .ds-cta-wrap {
      padding: 86px 0;
      background: #fff;
  }

  .ds-cta {
      display: grid;
      grid-template-columns: 1fr 1fr;
      overflow: hidden;
      border-radius: 18px;
      background: var(--ds-navy);
      color: #fff;
      box-shadow: 0 24px 70px rgba(11, 45, 80, .12);
      transition: all .28s ease;
  }

  .ds-cta:hover {
      transform: translateY(-5px);
      box-shadow: 0 32px 80px rgba(11, 45, 80, .16);
  }

  .ds-cta-left,
  .ds-cta-right {
      padding: clamp(36px, 5vw, 60px);
  }

  .ds-cta-right {
      background: rgba(8, 186, 213, .08);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }

  .ds-cta h2 {
      color: #fff;
      font-size: clamp(2rem, 3vw, 3rem);
      line-height: 1.12;
      font-weight: 800;
      margin-bottom: 18px;
  }

  .ds-cta p,
  .ds-cta li {
      color: rgba(230, 242, 255, .78);
  }

  .ds-cta ul {
      list-style: none;
      padding: 0;
      margin: 28px 0 34px;
  }

  .ds-cta li {
      display: flex;
      gap: 12px;
      align-items: center;
      margin-bottom: 14px;
      font-size: 15px;
      transition: all .25s ease;
  }

  .ds-cta li:hover {
      transform: translateX(5px);
      color: #fff;
  }

  .ds-cta li i {
      color: var(--ds-cyan);
  }

  .ds-cta-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
  }

  .ds-commitment {
      border-radius: 14px;
      background: #fff;
      color: var(--ds-text);
      padding: 30px;
      margin-bottom: 34px;
      transition: all .28s ease;
  }

  .ds-commitment:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(255, 189, 46, .18);
  }

  .ds-commitment span {
      display: block;
      text-transform: uppercase;
      font-size: 12px;
      font-weight: 800;
      margin-bottom: 8px;
  }

  .ds-commitment strong {
      display: block;
      font-size: clamp(3rem, 6vw, 4.8rem);
      font-weight: 800;
      line-height: 1;
  }

  .ds-commitment small {
      color: var(--ds-text);
      font-weight: 800;
  }

  .ds-cta-mini-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 34px;
  }

  .ds-cta-mini-stats div {
      border-radius: 12px;
      padding: 22px 10px;
      background: rgba(255, 255, 255, .08);
      transition: all .25s ease;
  }

  .ds-cta-mini-stats div:hover {
      transform: translateY(-4px);
      background: rgba(8, 186, 213, .12);
  }

  .ds-cta-mini-stats strong {
      display: block;
      color: var(--ds-cyan);
      font-size: 28px;
      font-weight: 800;
  }

  .ds-cta-mini-stats span {
      color: rgba(230, 242, 255, .58);
      font-size: 12px;
  }

  .digital-page+footer,
  .digital-page+.footer-dark {
      margin-top: 0 !important;
  }



  @media (max-width: 1199px) {

      .ds-deliverables-grid,
      .ds-process-grid,
      .ds-stack-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (max-width: 991px) {

      .ds-hero-grid,
      .ds-results-grid,
      .ds-cta {
          grid-template-columns: 1fr;
      }

      .ds-cards-three,
      .ds-stall-stats {
          grid-template-columns: repeat(2, 1fr);
      }

      .ds-framework {
          grid-template-columns: 56px 1fr;
      }

      .ds-step-dots {
          grid-column: 1 / -1;
          justify-content: flex-start;
      }
  }

  @media (max-width: 767px) {
      .ds-section {
          padding: 30px 0;
      }

      .ds-hero {
          padding-top: 116px;
      }

      .ds-hero h1 {
          font-size: 2.5rem;
      }

      .ds-heading,
      .ds-cta h2 {
          font-size: 2rem;
      }

      .ds-hero-actions,
      .ds-btn,
      .ds-cta-actions {
          width: 100%;
      }

      .ds-framework,
      .ds-cards-three,
      .ds-process-grid,
      .ds-deliverables-grid,
      .ds-stall-stats,
      .ds-compare,
      .ds-stack-grid,
      .ds-result-stats,
      .ds-cta-mini-stats,
      .ds-panel-stats {
          grid-template-columns: 1fr;
      }

      .ds-cta-mini-stats {
          display: flex
      }

      .ds-stall-stat strong {
          font-size: 30px;
      }

      .ds-panel-stats div {
          width: 33%;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          flex-direction: column;
          justify-content: space-around;
      }

      .ds-cta-wrap {
          /* padding: 86px 0; */
          background: #fff;
      }

      .ds-cta-mini-stats div {
          padding: 5px 0px;
      }

      .ds-cta-mini-stats strong {
          font-size: 24px;
      }

      .ds-stall-stats {
          grid-template-columns: repeat(2, 1fr);
      }

      .ds-stall-stat {

          display: flex;
          flex-direction: column;
          justify-content: center;
      }

      .ds-panel-stats {
          grid-template-columns: 1fr;
          display: flex;
      }

      .ds-framework {
          padding: 22px;
      }

      .ds-result-image {
          min-height: 330px;
      }

      .ds-compare-col,
      .ds-cta-left,
      .ds-cta-right {
          padding: 28px;
      }
  }