:root {
   --dell-blue: #0672cb;
   --dell-blue-dark: #00468b;
   --dell-blue-hover: #0063b8;
   --dell-ink: #0e0e0e;
   --dell-grey: #636363;
   --dell-grey-light: #f5f6f7;
   --dell-border: #d2d2d2;
   --dell-accent: #94dcf7;
   --max: 1300px;
   --radius: 4px;
   --shadow-sm: 0 1px 2px rgba(0,0,0,.06), 0 2px 4px rgba(0,42,88,.04);
   --shadow-md: 0 4px 12px rgba(0,42,88,.08), 0 8px 24px rgba(0,42,88,.04);
   --shadow-lg: 0 8px 24px rgba(0,42,88,.12), 0 16px 48px rgba(0,42,88,.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

section[id], article[id] { scroll-margin-top: 20px; }

body {
   margin: 0;
   overflow-x: hidden;
   font-family: 'Roboto', sans-serif;
   color: #000;
   font-weight: 300;
}

img { max-width: 100%; }
.management-image img,
.intel-xeon img { display: block; }
a { color: var(--dell-blue); text-decoration: none; }
a:hover { color: var(--dell-blue-hover); text-decoration: underline; }

h1, h2, h3, h4 { color: #000; font-weight: 600; line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2.25rem, 4vw, 3.5rem); font-weight: 300; }
h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 400; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1em; }

header {
   background: #fff;
}

.top-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 10px 5%;
   max-width: 1300px;
   margin: 0 auto;
   box-sizing: content-box;
}

.logos {
   display: flex;
   align-items: center;
   gap: 15px;
}

.logos img:nth-child(1) { height: 25px; padding-top: 2px; box-sizing: content-box; }
.logos img:nth-child(2) { height: 30px; margin-left: 5px; box-sizing: content-box; }

.header-right {
   display: flex;
   align-items: center;
   gap: 20px;
}

.intel-xeon {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   color: #000;
   text-decoration: none;
}
.intel-xeon:hover { text-decoration: none; }
.intel-xeon-label {
   font-size: .6875rem;
   font-weight: 500;
   line-height: 1.2;
   color: var(--dell-grey);
}
.intel-xeon-label sup { font-size: .5rem; vertical-align: super; }
.intel-xeon img { height: 30px; width: auto; }

.hamburger {
   display: none;
   font-size: 28px;
   cursor: pointer;
}

nav {
   background: #f5f6f7;
   width: 100%;
}

nav ul {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   list-style: none;
   margin: 0 auto;
   padding: 18px 4.7%;
   max-width: 1300px;
   box-sizing: content-box;
}

nav ul li a {
   position: relative;
   text-decoration: none;
   color: #636363;
   font-weight: 400;
   font-size: 14px;
   padding: 8px 4px;
   transition: color 0.3s ease;
}

nav ul li a::after {
   content: "";
   position: absolute;
   bottom: 0;
   left: 50%;
   transform: translateX(-50%) scaleX(0);
   width: 40%;
   height: 2px;
   background: #0076ce;
   border-radius: 0;
   transition: transform 0.3s ease;
}

nav ul li a:hover {
   text-decoration: none;
}

nav ul li a:hover::after {
   transform: translateX(-50%) scaleX(1);
}

#menu {
   max-height: none;
   overflow: hidden;
   transition: max-height 0.4s ease-in-out;
}

.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 14px 28px;
   border-radius: 2px;
   font-size: 1rem;
   font-weight: 500;
   text-decoration: none;
   border: 1px solid transparent;
   cursor: pointer;
   transition: background .15s ease, border-color .15s ease, color .15s ease, transform .1s ease;
}

.btn-primary {
   background: var(--dell-blue);
   color: #fff;
   border-color: var(--dell-blue);
}
.btn-primary:hover {
   background: var(--dell-blue-hover);
   border-color: var(--dell-blue-hover);
   color: #fff;
   text-decoration: none;
}
.btn-primary:active { background: var(--dell-blue-dark); }

.btn-ghost {
   background: transparent;
   color: #fff;
   border: 1px solid rgba(255,255,255,.7);
}
.btn-ghost:hover {
   background: rgba(255,255,255,.12);
   border-color: #fff;
   color: #fff;
   text-decoration: none;
}

.tip-btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 18px;
   height: 18px;
   margin-left: 6px;
   padding: 0;
   border: 0;
   background: transparent;
   color: inherit;
   cursor: help;
   vertical-align: -3px;
   position: relative;
   opacity: .75;
   transition: opacity .15s ease;
}
.tip-btn svg { width: 18px; height: 18px; }
.tip-btn:hover, .tip-btn:focus-visible { opacity: 1; outline: none; }
.tip-btn::after {
   content: attr(data-tip);
   position: absolute;
   bottom: calc(100% + 10px);
   left: 50%;
   transform: translateX(-50%) translateY(4px);
   width: max-content;
   max-width: 280px;
   padding: 10px 14px;
   background: #1b2538;
   color: #fff;
   font: 400 12px/1.5 'Roboto', sans-serif;
   font-style: normal;
   text-align: left;
   border-radius: 4px;
   box-shadow: 0 8px 24px rgba(0,0,0,.25);
   opacity: 0;
   pointer-events: none;
   transition: opacity .15s ease, transform .15s ease;
   z-index: 30;
   white-space: normal;
}
.tip-btn::before {
   content: "";
   position: absolute;
   bottom: calc(100% + 4px);
   left: 50%;
   transform: translateX(-50%);
   border: 6px solid transparent;
   border-top-color: #1b2538;
   opacity: 0;
   pointer-events: none;
   transition: opacity .15s ease;
   z-index: 30;
}
.tip-btn:hover::after,
.tip-btn:focus-visible::after,
.tip-btn:hover::before,
.tip-btn:focus-visible::before {
   opacity: 1;
   transform: translateX(-50%) translateY(0);
}

.ff-card .tip-btn::after {
   left: auto;
   right: -8px;
   transform: translateX(0) translateY(4px);
   max-width: 320px;
}
.ff-card .tip-btn::before {
   left: auto;
   right: 0;
   transform: none;
}
.ff-card .tip-btn:hover::after,
.ff-card .tip-btn:focus-visible::after {
   transform: translateX(0) translateY(0);
}
.ff-card .tip-btn:hover::before,
.ff-card .tip-btn:focus-visible::before {
   transform: none;
}

.hero {
   position: relative;
   background: #0a0f1a;
   color: #fff;
   min-height: 560px;
   display: flex;
   align-items: center;
   overflow: hidden;
}

.hero-bg {
   position: absolute;
   inset: 0;
   background-size: cover;
   background-position: center right;
}

.hero::after {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(90deg, rgba(10,15,26,.98) 0%, rgba(10,15,26,.85) 35%, rgba(10,15,26,.1) 70%, rgba(10,15,26,0) 100%);
}

.hero-content {
   position: relative;
   z-index: 1;
   max-width: var(--max);
   width: 100%;
   margin: 0 auto;
   padding: 96px 32px;
}

.hero h1 {
   color: #fff;
   margin: 0 0 20px;
   max-width: 560px;
   font-weight: 300;
}

.hero-lead {
   font-size: 1.125rem;
   max-width: 520px;
   color: #d8dee6;
   margin: 0 0 40px;
   line-height: 1.5;
}

.hero-ctas {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
}

.floating-cards {
   background: #141d28;
   padding: 0 32px 64px;
}

.floating-cards-inner {
   max-width: var(--max);
   margin: 0 auto;
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   gap: 20px;
   margin-top: -56px;
   position: relative;
   z-index: 5;
}

.floating-card {
   background: #293b4d;
   border-radius: var(--radius);
   padding: 28px 28px 24px;
   color: #d8dee6;
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   justify-content: flex-start;
   box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

.floating-card .card-eyebrow {
   font-size: .75rem;
   font-weight: 700;
   letter-spacing: .1em;
   text-transform: uppercase;
   color: #fff;
   margin: 0 0 16px;
}

.floating-card p {
   font-size: .9375rem;
   line-height: 1.55;
   color: #c8cfda;
   margin: 0 0 16px;
}

.floating-card .card-link {
   margin-top: auto;
}

.floating-cards-nav { display: none; }

@media (max-width: 768px) {
   .floating-cards { padding: 32px 0 56px; }
   .floating-cards-inner {
      grid-template-columns: none;
      display: flex;
      gap: 0;
      margin-top: 0;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
      padding: 0 24px;
   }
   .floating-cards-inner::-webkit-scrollbar { display: none; }
   .floating-card {
      flex: 0 0 calc(100% - 0px);
      scroll-snap-align: center;
      margin-right: 16px;
      min-height: 220px;
   }
   .floating-card:last-child { margin-right: 0; }
   .floating-cards-nav {
      display: flex;
      gap: 8px;
      justify-content: flex-end;
      padding: 20px 24px 0;
   }
   .fc-nav-btn {
      width: 44px;
      height: 44px;
      border-radius: 4px;
      background: #2a3346;
      color: #fff;
      border: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .2s ease;
   }
   .fc-nav-btn:hover { background: #3a4458; }
   .fc-nav-btn:disabled { opacity: .35; cursor: default; }
}

.floating-card p em {
   font-style: italic;
   color: #a4adbb;
}

.card-link-light {
   color: #4ca7e8;
   font-weight: 500;
}
.card-link-light:hover { color: #7cc0ef; }

.number-claim {
   background: #141d28;
   padding: 56px 32px 96px;
   color: #fff;
}

.number-claim-grid {
   max-width: 900px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 64px;
}

.number-claim-grid--4 {
   max-width: var(--max);
   grid-template-columns: repeat(4, minmax(0, 1fr));
   grid-template-rows: auto auto auto auto;
   gap: 16px 40px;
}

.number-claim-grid--4 .claim {
   display: grid;
   grid-template-rows: subgrid;
   grid-row: span 4;
   gap: 16px;
}

@media (max-width: 1024px) {
   .number-claim-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 48px; }
}
@media (max-width: 640px) {
   .number-claim-grid--4 {
      grid-template-columns: 1fr;
      grid-template-rows: none;
      gap: 48px;
      justify-items: center;
   }
   .number-claim-grid--4 .claim {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      grid-row: auto;
      width: 100%;
      max-width: 360px;
   }
   .number-claim-grid--4 .claim h2 br { display: none; }
}

.claim { text-align: center; position: relative; }
.number-claim-grid--4 .claim h2 { margin: 0; }
.number-claim-grid--4 .claim-prefix { margin: 0; }
.number-claim-grid--4 .claim-value { margin: 0; }
.number-claim-grid--4 .claim-suffix { margin: 0; }

.claim h2 {
   color: #fff;
   font-weight: 300;
   font-size: clamp(1.75rem, 2.5vw, 2.25rem);
   margin: 0 0 8px;
}

.claim-prefix {
   color: #d8dee6;
   font-size: 1rem;
   margin: 0 0 16px;
   min-height: 1.5em;
}

.claim-value {
   font-size: clamp(3rem, 6vw, 4.5rem);
   font-weight: 200;
   color: #fff;
   line-height: 1;
   margin-bottom: 16px;
}

.claim-suffix {
   color: #c8cfda;
   max-width: 360px;
   margin: 0 auto;
   font-size: .9375rem;
   line-height: 1.5;
}

.portfolio {
   background: #141d28;
   color: #fff;
   padding: 72px 32px 96px;
}

.portfolio-header {
   max-width: var(--max);
   margin: 0 auto 32px;
   text-align: center;
}

.portfolio-header h2 {
   max-width: 900px;
   margin: 0 auto;
   color: #fff;
   font-weight: 300;
   font-size: clamp(1.875rem, 3.2vw, 2.5rem);
   text-align: center;
   text-wrap: balance;
}

.portfolio-filter {
   max-width: var(--max);
   margin: 0 auto 48px;
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   justify-content: center;
}

.pf-btn {
   background: transparent;
   color: #fff;
   border: 1px solid rgba(255,255,255,.5);
   padding: 10px 22px;
   border-radius: 999px;
   font: 500 14px/1 'Roboto', sans-serif;
   cursor: pointer;
   transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.pf-btn:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.pf-btn.active {
   background: #fff;
   color: var(--dell-ink);
   border-color: #fff;
}

.portfolio-panel { max-width: var(--max); margin: 0 auto; }
.portfolio-panel[hidden] { display: none; }

.cat-header {
   color: #fff;
   font-size: 1.625rem;
   font-weight: 400;
   margin: 0 0 8px;
   text-align: left;
}

.cat-desc {
   color: #c8cfda;
   font-size: 1rem;
   margin: 0 0 32px;
   text-align: left;
}

.ff-grid {
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   gap: 20px;
}

@media (max-width: 1024px) {
   .ff-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
   .ff-grid { grid-template-columns: 1fr; }
}

.ff-card {
   background: #1d2c3b;
   border-radius: 4px;
   display: flex;
   flex-direction: column;
   overflow: hidden;
   transition: transform .2s ease, background .2s ease;
}
.ff-card:hover { transform: translateY(-2px); background: #293b4d; }

.ff-image {
   display: flex;
   align-items: center;
   justify-content: center;
   aspect-ratio: 18/10;
   background: #293b4d;
   position: relative;
   overflow: hidden;
}
.ff-image.image-gray { background: #c8cfda; }
.ff-image img { max-height: 80%; max-width: 90%; object-fit: contain; }

.ff-badge {
   position: absolute;
   top: 12px;
   right: 12px;
   background: #fff;
   color: var(--dell-blue);
   font-size: .75rem;
   font-weight: 500;
   padding: 6px 14px;
   border-radius: 999px 0 0 999px;
   right: -1px;
}

.ff-content {
   padding: 24px 28px 0;
   display: flex;
   flex-direction: column;
   flex: 1;
}

.ff-title {
   color: #fff;
   font-size: 1.625rem;
   font-weight: 400;
   margin: 0 0 12px;
}
.ff-title a { color: #fff; text-decoration: none; }
.ff-title a:hover { text-decoration: underline; }

.ff-subtitle {
   color: #d8dee6;
   font-size: 1rem;
   line-height: 1.45;
   margin: 0 0 20px;
}
.ff-subtitle .tip-btn {
   color: #d8dee6;
   border-color: #d8dee6;
}

.ff-best-for {
   color: #fff;
   font-size: .8125rem;
   font-weight: 700;
   letter-spacing: .04em;
   margin: 0 0 10px;
}

.ff-bullets {
   color: #d8dee6;
   font-size: .9375rem;
   line-height: 1.5;
   padding-left: 20px;
   margin: 0 0 24px;
}
.ff-bullets li { margin-bottom: 6px; }

.ff-cta {
   display: block;
   margin: auto -28px 0;
   padding: 16px 28px;
   background: #f5f6f7;
   color: var(--dell-ink);
   text-align: left;
   font-weight: 500;
   font-size: .9375rem;
   text-decoration: none;
   border-top: 1px solid rgba(0,0,0,.08);
   transition: background .15s ease;
}
.ff-cta:hover { background: #fff; color: var(--dell-blue); text-decoration: none; }
.ff-cta-arrow {
   display: inline-block;
   vertical-align: -3px;
   margin-left: 6px;
   transition: transform .15s ease;
}
.ff-cta:hover .ff-cta-arrow { transform: translateX(3px); }

.card-link {
   color: var(--dell-blue);
   font-weight: 500;
   font-size: .9375rem;
   margin-top: 12px;
   align-self: flex-start;
}
.card-link:hover { color: var(--dell-blue-dark); text-decoration: underline; }

.value-pillars {
   background: #141d28;
   color: #fff;
   padding: 80px 32px;
}

.vp-inner {
   max-width: var(--max);
   margin: 0 auto;
}

.vp-header {
   display: grid;
   grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
   gap: 48px;
   align-items: center;
   margin-bottom: 56px;
}

.vp-text h2 {
   color: #fff;
   font-weight: 300;
   font-size: clamp(1.875rem, 3.2vw, 2.5rem);
   margin: 0 0 20px;
   line-height: 1.2;
}

.vp-subtitle {
   color: #c8cfda;
   font-size: 1rem;
   line-height: 1.6;
   margin: 0;
}

.vp-video {
   position: relative;
   display: block;
   border-radius: 4px;
   overflow: hidden;
   aspect-ratio: 16/9;
   background: #1d2c3b;
   border: 0;
   padding: 0;
   cursor: pointer;
   width: 100%;
}
.vp-video img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}
.vp-play {
   position: absolute;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
   width: 72px;
   height: 72px;
   border-radius: 50%;
   background: rgba(255,255,255,.92);
   color: var(--dell-blue);
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 4px 16px rgba(0,0,0,.3);
   transition: transform .15s ease, background .15s ease;
}
.vp-play svg { margin-left: 4px; }
.vp-video:hover .vp-play { transform: translate(-50%, -50%) scale(1.06); background: #fff; }

.vp-grid {
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   gap: 20px;
}

.vp-card {
   background: #1d2c3b;
   border-radius: 4px;
   padding: 32px 28px;
   display: flex;
   flex-direction: column;
   transition: background .15s ease;
}
.vp-card:hover { background: #293b4d; }

.vp-icon {
   width: 50px;
   height: 50px;
   margin-bottom: 20px;
}
.vp-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }

.vp-card h3 {
   color: #fff;
   font-size: 1.25rem;
   font-weight: 500;
   margin: 0 0 12px;
   line-height: 1.3;
}
.vp-card p {
   color: #c8cfda;
   font-size: .9375rem;
   line-height: 1.5;
   margin: 0 0 20px;
   flex: 1;
}


@media (max-width: 900px) {
   .vp-header { grid-template-columns: 1fr; gap: 32px; }
   .vp-grid { grid-template-columns: 1fr; }
}

.video-modal {
   position: fixed;
   inset: 0;
   z-index: 1000;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 32px;
}
.video-modal[hidden] { display: none; }

.video-modal-backdrop {
   position: absolute;
   inset: 0;
   background: rgba(0,0,0,.85);
   backdrop-filter: blur(4px);
   cursor: pointer;
}

.video-modal-content {
   position: relative;
   width: 100%;
   max-width: 1100px;
   aspect-ratio: 16/9;
   background: #000;
   border-radius: 6px;
   overflow: hidden;
   box-shadow: 0 24px 80px rgba(0,0,0,.5);
}

.video-modal-content video {
   width: 100%;
   height: 100%;
   display: block;
   background: #000;
}

.video-modal-close {
   position: absolute;
   top: -42px;
   right: 0;
   width: 36px;
   height: 36px;
   background: transparent;
   border: 0;
   color: #fff;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 4px;
   transition: background .15s ease;
}
.video-modal-close:hover { background: rgba(255,255,255,.12); }

@media (max-width: 768px) {
   .video-modal { padding: 16px; }
   .video-modal-close { top: -38px; }
}

.management {
   background: #141d28;
   color: #fff;
   padding: 80px 32px;
}

.management-header {
   max-width: 1100px;
   margin: 0 auto 56px;
   text-align: center;
}

.management-header h2 {
   color: #fff;
   font-weight: 300;
   font-size: clamp(1.875rem, 3.2vw, 2.75rem);
   margin: 0 0 20px;
}

.management-subtitle {
   color: #c8cfda;
   font-size: 1rem;
   line-height: 1.5;
   max-width: 760px;
   margin: 0 auto;
}

.management-inner {
   max-width: var(--max);
   margin: 0 auto;
   padding: 0 0 0;
   display: grid;
   grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
   gap: 0;
   align-items: stretch;
}

.accordion {
   display: flex;
   flex-direction: column;
   height: 100%;
   min-height: 100%;
}

.accordion-item {
   background: #1d2c3b;
   border-bottom: 1px solid rgba(255,255,255,.06);
   transition: background .2s ease;
   display: flex;
   flex-direction: column;
}

.accordion-item.open {
   flex: 1 1 auto;
background: #293b4d; }

.accordion-item:last-child { border-bottom: 0; }

.accordion-head {
   width: 100%;
   background: none;
   border: 0;
   color: #fff;
   padding: 28px 32px;
   font: inherit;
   text-align: left;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   cursor: pointer;
}

.accordion-title {
   font-size: 1.5rem;
   font-weight: 400;
}

.accordion-icon {
   width: 24px;
   height: 24px;
   position: relative;
   flex: none;
}

.accordion-icon::before,
.accordion-icon::after {
   content: "";
   position: absolute;
   top: 50%;
   left: 50%;
   width: 14px;
   height: 2px;
   background: #fff;
   transform-origin: center;
}

.accordion-icon::before { transform: translate(-50%, -50%); }
.accordion-icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .25s ease; }

.accordion-item.open .accordion-icon::after { transform: translate(-50%, -50%) rotate(0); }

.accordion-panel {
   max-height: 0;
   overflow: hidden;
   padding: 0 32px;
   transition: max-height .35s ease, padding .35s ease;
}

.accordion-item.open .accordion-panel {
   max-height: 400px;
   padding: 0 32px 28px;
}

.accordion-panel p {
   color: #c8cfda;
   font-size: .9375rem;
   line-height: 1.55;
   margin: 0 0 20px;
}


.management-image {
   background: #0a0f1a;
   overflow: hidden;
   min-height: 460px;
}

.management-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

.ai-banner {
   position: relative;
   color: #fff;
   min-height: 520px;
   background-color: #000;
   display: flex;
   align-items: center;
   overflow: hidden;
}

.ai-banner-image {
   position: absolute;
   inset: 0;
   background-size: cover;
   background-position: left center;
   background-repeat: no-repeat;
}

.ai-banner::before {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,.75) 60%, rgba(0,0,0,.92) 100%);
   pointer-events: none;
}

.ai-banner-inner {
   position: relative;
   z-index: 1;
   max-width: 1300px;
   width: 100%;
   margin: 0 auto;
   padding: 80px 5%;
   display: flex;
   justify-content: flex-end;
}

.ai-banner-content {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   gap: 24px;
   max-width: 520px;
}

.ai-banner-content h2 {
   color: #fff;
   font-weight: 300;
   font-size: clamp(1.875rem, 3.2vw, 2.75rem);
   margin: 0;
   line-height: 1.2;
}

.ai-banner-content p {
   color: #d8dee6;
   font-size: 1.0625rem;
   line-height: 1.5;
   margin: 0;
}

@media (max-width: 900px) {
   .ai-banner {
      min-height: 0;
      flex-direction: column;
      align-items: stretch;
   }
   .ai-banner::before { display: none; }
   .ai-banner-image {
      position: relative;
      inset: auto;
      height: 320px;
      background-position: center;
      background-size: 100%;
      background-repeat: no-repeat;
   }
   #private-cloud-banner .ai-banner-image {
      background-size: 100%;
      background-position: center;
   }
   .ai-banner-inner {
      padding: 32px 24px 40px;
      justify-content: flex-start;
   }
   .ai-banner-content {
      align-items: stretch;
      text-align: center;
      max-width: 100%;
      width: 100%;
   }
   .ai-banner-content h2 { text-align: center; }
   .ai-banner-content p { text-align: center; }
   .ai-banner-content .btn { width: 100%; justify-content: center; }
}

.zasoby {
   background: #141d28;
   color: #fff;
   padding: 80px 32px;
}

.zasoby-inner {
   max-width: var(--max);
   margin: 0 auto;
}

.zasoby h2 {
   color: #fff;
   font-weight: 300;
   font-size: clamp(1.875rem, 3.2vw, 2.75rem);
   text-align: center;
   margin: 0 0 48px;
}

.tabs { width: 100%; }

.tab-list {
   list-style: none;
   margin: 0 0 40px;
   padding: 0;
   display: flex;
   gap: 8px;
   flex-wrap: wrap;
   justify-content: center;
   border-bottom: 1px solid rgba(255,255,255,.15);
}

.tab-btn {
   background: none;
   border: 0;
   color: #c8cfda;
   padding: 16px 28px;
   font: inherit;
   font-size: 1rem;
   font-weight: 500;
   cursor: pointer;
   position: relative;
   transition: color .2s ease;
}

.tab-btn:hover { color: #fff; }

.tab-btn.active { color: #fff; }
.tab-btn.active::after {
   content: "";
   position: absolute;
   left: 16px;
   right: 16px;
   bottom: -1px;
   height: 3px;
   background: var(--dell-blue);
   border-radius: 2px 2px 0 0;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: tabFade .25s ease; }

@keyframes tabFade {
   from { opacity: 0; transform: translateY(8px); }
   to { opacity: 1; transform: translateY(0); }
}

.tab-cta {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   color: #4ca7e8;
   font-weight: 500;
   margin: 0 0 32px;
   font-size: 1rem;
}
.tab-cta:hover { color: #7cc0ef; text-decoration: underline; }

.tab-cards {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 20px;
}

.tab-card {
   background: #1d2c3b;
   border-radius: var(--radius);
   overflow: hidden;
   display: flex;
   flex-direction: column;
   transition: transform .2s ease, background .2s ease;
}

.tab-card:hover {
   background: #293b4d;
   transform: translateY(-2px);
}

.tab-card-img {
   aspect-ratio: 16/9;
   background: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
}
.tab-card-img img { width: 100%; height: 100%; object-fit: cover; }

.tab-card-body {
   padding: 24px;
   display: flex;
   flex-direction: column;
   flex: 1;
}

button.card-link {
   background: none;
   border: 0;
   padding: 0;
   font-family: inherit;
   font-weight: 500;
   font-size: .9375rem;
   cursor: pointer;
   text-align: left;
}

.tab-card--logo .tab-card-img {
   background: #fff;
   aspect-ratio: 16/9;
   padding: 24px;
}
.tab-card--logo .tab-card-img img {
   width: 100%;
   height: 100%;
   object-fit: contain;
}

.card-badge {
   display: inline-block;
   color: #8fb4e0;
   font-size: .6875rem;
   font-weight: 700;
   letter-spacing: .12em;
   text-transform: uppercase;
   margin-bottom: 14px;
}

.tab-card h3 {
   color: #fff;
   font-size: 1.125rem;
   font-weight: 600;
   margin: 0 0 12px;
   line-height: 1.3;
}

.tab-card p {
   color: #c8cfda;
   font-size: .9375rem;
   line-height: 1.5;
   margin: 0 0 16px;
   flex: 1;
}

.tab-card .card-link {
   margin-top: auto;
   align-self: flex-start;
}


.contact {
   background: #f5f6f7;
   padding: 60px 5% 90px 5%;
   text-align: center;
   color: #000;
   font-size: 30px;
}

.contact h2 {
   margin-bottom: 10px;
   font-size: 30px;
   font-weight: 300;
}

.contact h3 {
   margin-bottom: 10px;
   font-size: 21px;
   padding: 0;
   margin-top: 0;
   font-weight: 300;
}

.contact p a {
   text-decoration: none;
   color: #000;
   padding: 0;
   margin: 0;
   font-weight: 300;
}

.contact p {
   margin: 5px 0;
   font-size: 15px;
   font-weight: 300;
}

.contact img {
   max-height: 60px;
   margin: 20px auto;
}

.contact .btn {
   display: inline-block;
   margin-top: 20px;
   padding: 15px 25px;
   background: #e5194a;
   color: #fff;
   text-decoration: none;
   border-radius: 0;
   font-weight: 300;
   font-size: 17px;
   min-width: 200px;
   transition: background-color .5s ease, color .5s ease;
   border: 1px solid #e5194a;
   box-sizing: content-box;
   text-align: center;
}

.contact .btn:hover {
   background-color: #fff;
   color: #e5194a;
   border: 1px solid #e5194a;
   text-decoration: none;
}

.copy {
   background: #fff;
}

.copy-box {
   max-width: 1300px;
   padding-top: 15px;
   padding-bottom: 15px;
   font-size: 9px;
   margin: 0 auto;
   line-height: 12px;
   opacity: 0.5;
   text-align: center;
}

footer {
   background: #fff;
   color: #000;
   text-align: center;
   padding: 20px;
   font-size: 12px;
}

#scrollTopBtn {
   position: fixed;
   bottom: 30px;
   right: 30px;
   background: #0076ce;
   color: #fff;
   border: none;
   border-radius: 50%;
   width: 50px;
   height: 50px;
   font-size: 28px;
   cursor: pointer;
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 999;
   transition: opacity 0.3s ease, transform 0.3s ease;
   opacity: 0;
}

#scrollTopBtn.show {
   display: flex;
   opacity: 1;
}

#scrollTopBtn:hover {
   transform: scale(1.1);
}

@media (max-width: 980px) {
   .hero-content { grid-template-columns: 1fr; }
   .management-inner { grid-template-columns: 1fr; gap: 0; }
   .management-image { display: none; }
   .number-claim-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 1180px) {
   .hamburger { display: block; }
   #menu { max-height: 0; }
   #menu.active { max-height: 500px; }
   nav ul li a::after { display: none; }
   nav a {
      font-size: 16px;
      padding-top: 3px;
      padding-bottom: 3px;
      display: block;
   }
   nav ul {
      flex-direction: column;
      gap: 10px;
      margin-top: 10px;
      padding-bottom: 30px;
   }
}

@media (max-width: 768px) {
   .top-bar { padding: 10px 5%; }
   .intel-xeon-label { display: none; }
   .intel-xeon img { height: 32px; }
   .header-right { gap: 12px; }
   .portfolio, .management, .zasoby{ padding: 56px 16px; }
   .ai-banner { padding: 0; }
   .number-claim { padding: 48px 16px 64px; }
   .copy { padding: 24px 16px; }

   .hero {
      min-height: 0;
      display: flex;
      flex-direction: column;
      background: #000;
      align-items: stretch;
   }
   .hero::after { display: none; }
   .hero-bg {
      position: relative;
      inset: auto;
      height: 320px;
      background-position: center;
      background-size: cover;
   }
   .hero-content {
      padding: 32px 24px 40px;
      max-width: 100%;
   }
   .hero h1 { font-size: 3rem; max-width: 100%; }
   .hero-lead { font-size: 1rem; max-width: 100%; margin-bottom: 32px; }
   .hero-ctas { width: 100%; }
   .hero-ctas .btn { width: 100%; justify-content: center; }

   .portfolio { padding: 56px 8px; }
   .portfolio-header { padding: 0 8px; }
}

