: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%; }
.portfolio-card-img img,
.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); }

.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;
}

.claim { text-align: center; }

.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 { padding: 80px 32px; }

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

.portfolio-header h2 {
   max-width: 900px;
   margin: 0 auto;
   text-align: center;
   text-wrap: balance;
}

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

.portfolio-grid .portfolio-card {
   flex: 0 1 calc(33.333% - 16px);
   min-width: 280px;
}

.portfolio-card--featured {
   flex: 0 0 100% !important;
   flex-direction: row !important;
}

.portfolio-card--featured .portfolio-card-img {
   flex: 0 0 50%;
   aspect-ratio: auto;
   min-height: 320px;
}

.portfolio-card--featured .portfolio-card-img img {
   height: 100%;
   width: 100%;
   object-fit: cover;
}

.portfolio-card--featured .portfolio-card-body {
   flex: 1;
   padding: 48px;
   justify-content: center;
}

.portfolio-card--featured .portfolio-card-body h3 {
   font-size: 1.75rem;
   margin-bottom: 16px;
}

.portfolio-card--featured .portfolio-card-body p {
   font-size: 1.0625rem;
   line-height: 1.6;
}

@media (max-width: 900px) {
   .portfolio-grid .portfolio-card { flex: 0 1 calc(50% - 12px); }
   .portfolio-card--featured { flex-direction: column !important; }
   .portfolio-card--featured .portfolio-card-img { flex: 0 0 auto; min-height: 0; aspect-ratio: 16/9; }
   .portfolio-card--featured .portfolio-card-body { padding: 24px; }
   .portfolio-card--featured .portfolio-card-body h3 { font-size: 1.25rem; }
   .portfolio-card--featured .portfolio-card-body p { font-size: 1rem; }
}
@media (max-width: 560px) {
   .portfolio-grid .portfolio-card { flex: 0 1 100%; }
}

.portfolio-card {
   background: #fff;
   border: 1px solid var(--dell-border);
   border-radius: var(--radius);
   overflow: hidden;
   display: flex;
   flex-direction: column;
   transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}

.portfolio-card:hover {
   box-shadow: var(--shadow-md);
   transform: translateY(-4px);
   border-color: var(--dell-accent);
}

.portfolio-card-img {
   display: block;
   aspect-ratio: 16/9;
   overflow: hidden;
   background: #f5f7fa;
}
.portfolio-card-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform .35s ease;
}
.portfolio-card:hover .portfolio-card-img img { transform: scale(1.04); }

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

.portfolio-card-body h3 { margin-bottom: 12px; }
.portfolio-card-body h3 a { color: var(--dell-ink); }
.portfolio-card-body h3 a:hover { color: var(--dell-blue); text-decoration: none; }
.portfolio-card-body p { color: var(--dell-grey); flex: 1; line-height: 1.6; }

.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; }

.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;
}

.btn-light {
   background: #fff;
   color: var(--dell-ink);
   border-color: #fff;
}
.btn-light:hover {
   background: #e6e6e6;
   border-color: #e6e6e6;
   color: var(--dell-ink);
   text-decoration: none;
}

.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: left center;
      background-size: auto 100%;
   }
   .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);
   padding: 24px;
   display: flex;
   flex-direction: column;
   transition: transform .2s ease, background .2s ease;
}

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

.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;
}

.ownership { padding: 80px 32px; background: #f5f7ff; }

.ownership-grid {
   max-width: var(--max);
   margin: 0 auto;
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 40px;
}

.ownership-card {
   text-align: left;
   padding: 0;
   display: flex;
   flex-direction: column;
   align-items: flex-start;
}

.ownership-icon {
   width: 56px;
   height: 56px;
   margin-bottom: 20px;
   display: flex;
   align-items: center;
   justify-content: flex-start;
}
.ownership-icon img,
.ownership-icon svg { width: 100%; height: 100%; display: block; }

.ownership-card h3 {
   color: #000;
   font-size: 1.25rem;
   font-weight: 600;
   margin: 0 0 12px;
}

.ownership-card p {
   color: var(--dell-grey);
   margin: 0 0 16px;
   flex: 1;
}

.ownership-card .card-link {
   margin-top: 0;
   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, .ownership { 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; }
   .portfolio-grid { gap: 16px; }
   .portfolio-grid .portfolio-card { flex: 0 1 100%; min-width: 0; }
}

