body.solutions-delivered-page {
  --solutions-brand: #D05927;
  --solutions-brand-dark: #B9471F;
  --solutions-ink: #0E1A3C;
  --solutions-muted: #7A8496;
  --solutions-line: #F0D8CC;
  --solutions-soft: #FFF0E8;
  margin: 0;
  min-height: 100vh;
  background: #fff;
  color: var(--solutions-ink);
  overflow-x: hidden;
}

body.solutions-delivered-page {
  --solutions-full-bleed-width: 100vw;
  --solutions-full-bleed-offset: -50vw;
}

@supports (width: 100svw) {
  body.solutions-delivered-page {
    --solutions-full-bleed-width: 100svw;
    --solutions-full-bleed-offset: -50svw;
  }
}

@supports (width: 100dvw) {
  body.solutions-delivered-page {
    --solutions-full-bleed-width: 100dvw;
    --solutions-full-bleed-offset: -50dvw;
  }
}

body.solutions-delivered-page main {
  margin-top: 0;
  padding-top: 0;
  position: relative;
}

@keyframes solutions-fadeInUp {
  from { opacity: 0; transform: translate3d(0, 20px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes solutions-softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes solutions-softPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(208, 89, 39, 0); }
  50% { box-shadow: 0 12px 30px rgba(208, 89, 39, .26); }
}

@keyframes solutions-cardBreath {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(14, 26, 60, .045);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(14, 26, 60, .1);
  }
}

@keyframes solutions-gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes solutions-drawLine {
  from { width: 0; }
  to { width: 100%; }
}

body.solutions-delivered-page .solutions-background-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body.solutions-delivered-page .solutions-background-decor::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 800px;
  background: linear-gradient(120deg, #FFF7F3, #ffffff 45%, #FFF3EC 70%, transparent);
  background-size: 200% 200%;
  opacity: 0.7;
  animation: solutions-gradientShift 16s ease-in-out infinite;
}

body.solutions-delivered-page .solutions-page {
  position: relative;
  z-index: 2;
  width: var(--container-wide);
  margin: 0 auto;
  padding: 40px 0 0;
}

body.solutions-delivered-page .solutions-culture-section,
body.solutions-delivered-page .solutions-topics-section,
body.solutions-delivered-page .solutions-collab2-section,
body.solutions-delivered-page .solutions-invest-section,
body.solutions-delivered-page .solutions-cta-full-bleed {
  width: var(--solutions-full-bleed-width);
  margin-left: calc(50% + var(--solutions-full-bleed-offset));
  margin-right: calc(50% + var(--solutions-full-bleed-offset));
}

body.solutions-delivered-page .solutions-hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 14px;
  margin-bottom: calc(var(--section-y-normal) + 1.25rem);
  animation: solutions-fadeInUp .9s ease-out both;
}

body.solutions-delivered-page .solutions-hero h1 {
  margin: 0 0 24px;
  font-size: clamp(1.7rem, 4.2vw, 3.35rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  animation: solutions-fadeInUp .95s ease-out both;
  animation-delay: .08s;
}

body.solutions-delivered-page .solutions-hero h1 em {
  color: var(--solutions-brand);
  font-style: italic;
  font-weight: 300;
  text-shadow: 0 0 0 rgba(208, 89, 39, 0);
  animation: solutions-softPulse 4s ease-in-out infinite;
}

body.solutions-delivered-page .solutions-hero p {
  margin: 0 auto 30px;
  max-width: 860px;
  color: #4B5568;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.7;
  font-weight: 300;
  animation: solutions-fadeInUp .95s ease-out both;
  animation-delay: .16s;
}

body.solutions-delivered-page .solutions-brand-highlight {
  color: var(--solutions-brand);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 16px rgba(208, 89, 39, 0.18);
}

/* Phase 7B.3 — hero CTA: visuals from style.css .humera-meeting-cta only */
body.solutions-delivered-page .solutions-main-btn.humera-meeting-cta {
  animation: solutions-fadeInUp .95s ease-out both;
  animation-delay: 0.24s;
}

body.solutions-delivered-page .solutions-hero .solutions-grid + .solutions-main-btn {
  margin-top: 28px;
}

body.solutions-delivered-page .solutions-section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 auto 62px;
  max-width: 1040px;
}

/* Μέσα στο hero το flex column + align-items:center συρρικνώνει το πλάτος· χωρίς stretch οι πλευρικές γραμμές δεν εκτείνονται */
body.solutions-delivered-page .solutions-hero .solutions-section-title {
  align-self: stretch;
  width: 100%;
  box-sizing: border-box;
  margin-top: clamp(1.35rem, 3.5vw, 2.5rem);
}

body.solutions-delivered-page .solutions-section-title .line {
  height: 2px;
  flex: 1;
  background: var(--solutions-line);
  position: relative;
  overflow: hidden;
}

body.solutions-delivered-page .solutions-section-title .line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(208, 89, 39, .3);
  animation: solutions-drawLine 1s ease-out forwards .8s;
}

body.solutions-delivered-page .solutions-section-title span {
  font-size: clamp(0.86rem, 1.7vw, 1.15rem);
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 8px;
  animation: solutions-fadeInUp .9s ease-out both;
  animation-delay: .2s;
}

body.solutions-delivered-page .solutions-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 22px;
  align-items: center;
  padding: 34px 12px;
}

body.solutions-delivered-page .solutions-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--solutions-line), transparent);
  opacity: .95;
  transform: translateY(-50%);
  z-index: 0;
}

body.solutions-delivered-page .solution-item {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

body.solutions-delivered-page .solution-item::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 18px;
  background: rgba(208, 89, 39, .24);
  transform: translateX(-50%);
  transition: height .25s ease, background-color .25s ease;
}

body.solutions-delivered-page .solution-item:nth-child(odd) { transform: translateY(-30px); }
body.solutions-delivered-page .solution-item:nth-child(odd)::before { top: calc(100% + 8px); }
body.solutions-delivered-page .solution-item:nth-child(even) { transform: translateY(30px); }
body.solutions-delivered-page .solution-item:nth-child(even)::before { bottom: calc(100% + 8px); }

body.solutions-delivered-page .solution-item .card {
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(224, 224, 224, .75);
  border-radius: 1.35rem;
  padding: 16px 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  transition: .35s ease;
  box-shadow: 0 8px 20px rgba(14, 26, 60, .045);
  max-width: 360px;
  width: 100%;
  animation: solutions-fadeInUp .8s ease-out both, solutions-cardBreath 4.4s ease-in-out infinite;
}

body.solutions-delivered-page .solution-item:nth-child(1) .card { animation-delay: .18s, .2s; }
body.solutions-delivered-page .solution-item:nth-child(2) .card { animation-delay: .28s, .7s; }
body.solutions-delivered-page .solution-item:nth-child(3) .card { animation-delay: .38s, 1.1s; }
body.solutions-delivered-page .solution-item:nth-child(4) .card { animation-delay: .48s, 1.5s; }

body.solutions-delivered-page .solution-item:hover .card {
  transform: translateY(-4px);
  border-color: rgba(208, 89, 39, .22);
  box-shadow: 0 14px 30px rgba(14, 26, 60, .08);
}

body.solutions-delivered-page .solution-item:hover::before {
  height: 22px;
  background: rgba(208, 89, 39, .36);
}

body.solutions-delivered-page .solution-item .icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: .35s ease;
  border: 1px solid rgba(224, 224, 224, .55);
}

body.solutions-delivered-page .solution-item .icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.solutions-delivered-page .solution-item .icon.soft { background: var(--solutions-soft); color: var(--solutions-brand); }
body.solutions-delivered-page .solution-item .icon.slate { background: #f1f5f9; color: var(--solutions-ink); }
body.solutions-delivered-page .solution-item:nth-child(odd) .icon { animation: solutions-softFloat 4.5s ease-in-out infinite; }
body.solutions-delivered-page .solution-item:nth-child(even) .icon { animation: solutions-softFloat 4.5s ease-in-out infinite reverse; animation-delay: .35s; }
body.solutions-delivered-page .solution-item:hover .icon { transform: scale(1.08) rotate(3deg); }

body.solutions-delivered-page .solution-item .card h3 {
  margin: 0 0 8px;
  font-size: 0.98rem;
  line-height: 1.35;
  transition: color .3s ease;
}

body.solutions-delivered-page .solution-item .card p {
  margin: 0;
  color: var(--solutions-muted);
  line-height: 1.48;
  font-size: .85rem;
  font-weight: 300;
  transition: color .3s ease;
}

body.solutions-delivered-page .solution-item:hover h3 { color: var(--solutions-brand); }
body.solutions-delivered-page .solution-item:hover p { color: var(--solutions-ink); }

body.solutions-delivered-page .solutions-needs-section {
  position: relative;
  margin-top: 46px;
  border-top: none;
  isolation: isolate;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: visible;
  overflow-x: clip;
  background: #F9EBE0;
  padding-top: 88px;
  padding-bottom: 92px;
}

body.solutions-delivered-page .solutions-needs-section::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  width: 200%;
  transform: translateX(-50%);
  height: 280px;
  pointer-events: none;
  border-radius: 50%;
  background: #F9EBE0;
  z-index: 0;
}

body.solutions-delivered-page .solutions-needs-section::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 160%;
  height: 280px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #F9EBE0;
  pointer-events: none;
  z-index: 0;
}

body.solutions-delivered-page .solutions-needs-bg-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: radial-gradient(
    circle at 50% 44%,
    rgba(253, 245, 240, 1) 0%,
    rgba(253, 245, 240, 0.82) 42%,
    rgba(253, 245, 240, 0.44) 68%,
    rgba(253, 245, 240, 0) 100%
  );
}

body.solutions-delivered-page .solutions-needs-bg-circle-shape {
  position: absolute;
  width: 1060px;
  height: 1060px;
  background: radial-gradient(circle, rgba(253, 245, 240, 0.92) 0%, rgba(253, 245, 240, 0.52) 48%, rgba(253, 245, 240, 0.16) 72%, rgba(253, 245, 240, 0) 100%);
  border-radius: 50%;
  top: -8%;
  left: 52%;
  transform: translateX(-50%);
  opacity: 0.96;
  filter: blur(12px);
  z-index: 0;
}

body.solutions-delivered-page .solutions-needs-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--solutions-line) 1.5px, transparent 0);
  background-size: 30px 30px;
  opacity: 0.055;
}

body.solutions-delivered-page .solutions-needs-main {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 42px 24px 56px;
}

body.solutions-delivered-page .solutions-needs-topbar-wrap {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

body.solutions-delivered-page .solutions-needs-topbar {
  width: 96px;
  height: 6px;
  background: var(--solutions-brand);
  border-radius: 999px;
}

body.solutions-delivered-page .solutions-needs-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

body.solutions-delivered-page .solutions-needs-top-line {
  display: none;
}

body.solutions-delivered-page .solutions-needs-header {
  margin: 0 0 clamp(16px, 2.2vw, 24px);
  text-align: center;
}

body.solutions-delivered-page .solutions-needs-title {
  max-width: 940px;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--solutions-ink);
  margin: 0;
  font-weight: 700;
}

body.solutions-delivered-page .solutions-needs-title-soft {
  color: rgba(14, 26, 60, 0.22);
  font-style: italic;
  font-weight: 300;
}

body.solutions-delivered-page .solutions-needs-title-accent {
  display: block;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  font-weight: 700;
}

body.solutions-delivered-page .solutions-needs-title-accent span {
  color: var(--solutions-brand);
}

body.solutions-delivered-page .solutions-needs-paragraph {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(1.04rem, 1.35vw, 1.2rem);
  line-height: 1.48;
  color: var(--solutions-muted);
  font-weight: 400;
  text-align: center;
}

body.solutions-delivered-page .solutions-needs-paragraph strong {
  font-weight: 700;
  color: var(--solutions-ink);
}

body.solutions-delivered-page .solutions-needs-branches {
  width: min(100%, 820px);
  margin-top: clamp(24px, 3vw, 34px);
}

body.solutions-delivered-page .solutions-needs-branch-stem {
  width: 1px;
  height: 38px;
  margin: 0 auto;
  background: linear-gradient(to bottom, transparent, rgba(208, 89, 39, 0.28));
}

body.solutions-delivered-page .solutions-needs-branch-line {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(208, 89, 39, 0.24) 12%, rgba(208, 89, 39, 0.24) 88%, transparent);
}

body.solutions-delivered-page .solutions-needs-branch-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 5vw, 72px);
  margin-top: 30px;
}

body.solutions-delivered-page .solutions-needs-branch-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

body.solutions-delivered-page .solutions-needs-branch-item span {
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, rgba(208, 89, 39, 0.26), transparent);
}

body.solutions-delivered-page .solutions-needs-branch-item strong {
  color: var(--solutions-ink);
  font-size: clamp(0.72rem, 0.9vw, 0.9rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

body.solutions-delivered-page .solutions-needs-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
  position: relative;
}

body.solutions-delivered-page .solutions-needs-column {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

body.solutions-delivered-page .solutions-needs-column-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.solutions-delivered-page .solutions-needs-kicker {
  font-size: clamp(0.82rem, 0.9vw, 0.95rem);
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
  margin: 0;
  color: #1f2937;
  font-weight: 700;
}

body.solutions-delivered-page .solutions-needs-list {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 2.2vw, 28px);
  padding-left: 0.5rem;
}

body.solutions-delivered-page .solutions-needs-list-row {
  display: flex;
  align-items: center;
}

body.solutions-delivered-page .solutions-needs-list-text {
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.35;
  color: var(--solutions-ink);
  font-weight: 600;
  margin: 0;
}

body.solutions-delivered-page .solutions-needs-right-intro {
  font-size: clamp(0.95rem, 1.05vw, 1.08rem);
  line-height: 1.35;
  margin: 0;
  color: #1f2937;
  font-weight: 500;
}

body.solutions-delivered-page .solutions-needs-greek-marker {
  font-weight: 700;
  color: var(--solutions-ink);
  width: 30px;
  font-size: 1.15rem;
  display: inline-block;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

body.solutions-delivered-page .solutions-needs-divider-vertical {
  width: 1px;
  background-color: rgba(208, 89, 39, 0.22);
  height: 100%;
  opacity: 1;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
}

body.solutions-delivered-page .solutions-needs-horizontal-line {
  height: 1.5px;
  background-color: #E7E9EF;
  flex-grow: 1;
  margin-left: 12px;
  transition: background-color 0.3s ease;
  opacity: 0.5;
}

body.solutions-delivered-page .solutions-needs-list-item-border {
  border-left: 2px solid #E7E9EF;
  padding-left: 1rem;
  transition: border-color 0.3s ease;
}

body.solutions-delivered-page .solutions-needs-brand {
  color: var(--solutions-brand);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1;
  font-weight: 700;
  display: inline-block;
  padding: 0.25rem 0;
}

body.solutions-delivered-page .solutions-needs-points {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.2vw, 28px);
}

body.solutions-delivered-page .solutions-needs-solution-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

body.solutions-delivered-page .solutions-needs-point-head {
  display: flex;
  align-items: center;
}

body.solutions-delivered-page .solutions-needs-point-text {
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  line-height: 1.55;
  color: var(--solutions-muted);
  font-weight: 300;
  margin: 0;
}

body.solutions-delivered-page .solutions-needs-wavy-line {
  width: 64px;
  height: 3px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 4"><path d="M0 2 Q 10 0, 20 2 T 40 2 T 60 2 T 80 2" fill="none" stroke="%23D05927" stroke-width="2"/></svg>') repeat-x;
  margin-bottom: 0.5rem;
}

body.solutions-delivered-page .solutions-needs-point-emphasis {
  font-weight: 700;
  color: var(--solutions-ink);
  border-bottom: 2px solid rgba(208, 89, 39, 0.1);
  transition: border-color 0.3s ease;
}

body.solutions-delivered-page .solutions-needs-point-strong {
  font-weight: 700;
  color: var(--solutions-ink);
}

body.solutions-delivered-page .solutions-needs-section .solutions-needs-hover-group:hover .solutions-needs-list-item-border {
  border-color: var(--solutions-brand);
}

body.solutions-delivered-page .solutions-needs-section .solutions-needs-hover-group:hover .solutions-needs-greek-marker {
  color: var(--solutions-brand);
}

body.solutions-delivered-page .solutions-needs-section .solutions-needs-hover-group:hover .solutions-needs-horizontal-line {
  background-color: var(--solutions-brand);
  opacity: 1;
}

body.solutions-delivered-page .solutions-culture-section {
  position: relative;
  margin-top: 44px;
  padding: 64px 0 70px;
  isolation: isolate;
  background-color: #FAFAF8;
}

body.solutions-delivered-page .solutions-culture-section::before {
  content: "";
  position: absolute;
  top: -44px;
  left: 0;
  right: 0;
  height: 44px;
  background: linear-gradient(
    180deg,
    rgba(250, 250, 248, 0) 0%,
    rgba(250, 250, 248, 0.72) 58%,
    #FAFAF8 100%
  );
  pointer-events: none;
  z-index: 0;
}

body.solutions-delivered-page .solutions-culture-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(84px, 12vw, 140px);
  background: linear-gradient(
    180deg,
    rgba(250, 250, 248, 0) 0%,
    rgba(250, 250, 248, 0.8) 44%,
    var(--color-bg-soft) 100%
  );
  pointer-events: none;
  z-index: 1;
}

body.solutions-delivered-page .solutions-culture-section.bg-pattern {
  background-image:
    linear-gradient(#F0F2F5 1px, transparent 1px),
    linear-gradient(90deg, #F0F2F5 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center top;
}

body.solutions-delivered-page .solutions-culture-glow-top,
body.solutions-delivered-page .solutions-culture-glow-bottom,
body.solutions-delivered-page .solutions-culture-blob {
  position: absolute;
  pointer-events: none;
}

body.solutions-delivered-page .solutions-culture-glow-top {
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  height: 400px;
  background: var(--solutions-brand);
  filter: blur(150px);
  opacity: 0.12;
  z-index: 0;
}

body.solutions-delivered-page .solutions-culture-glow-bottom {
  display: none;
}

body.solutions-delivered-page .solutions-culture-blob {
  width: 600px;
  height: 600px;
  background: var(--solutions-brand);
  filter: blur(120px);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.06;
  animation: solutions-culture-move 25s infinite alternate ease-in-out;
}

body.solutions-delivered-page .solutions-culture-blob-1 {
  top: 0;
  left: -120px;
}

body.solutions-delivered-page .solutions-culture-blob-2 {
  background: var(--solutions-ink);
  width: 800px;
  height: 800px;
  right: -200px;
  bottom: -200px;
  opacity: 0.04;
  animation-duration: 30s;
  animation-delay: -5s;
}

@keyframes solutions-culture-move {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(100px, 50px) scale(1.1); }
  100% { transform: translate(-50px, 150px) scale(0.9); }
}

body.solutions-delivered-page .solutions-culture-shell {
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

body.solutions-delivered-page .solutions-culture-header {
  margin: 0 0 44px;
  max-width: 760px;
  text-align: left;
}

body.solutions-delivered-page .solutions-culture-title {
  margin: 0 0 22px;
  color: var(--solutions-ink);
  font-size: clamp(1.9rem, 3.15vw, 2.65rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
}

body.solutions-delivered-page .solutions-culture-title-em {
  color: var(--solutions-brand);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3rem);
}

body.solutions-delivered-page .solutions-culture-lead {
  margin: 0;
  font-size: 1rem;
  color: #4B5568;
  line-height: 1.75;
  font-weight: 300;
  max-width: 700px;
}

body.solutions-delivered-page .highlight {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--solutions-brand);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

body.solutions-delivered-page .humera-brand {
  color: var(--solutions-brand);
  font-weight: 700;
  font-style: italic;
}

body.solutions-delivered-page .premium-card {
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(30px);
  box-shadow: 0 0 40px rgba(14, 26, 60, 0.06), 0 0 20px rgba(208, 89, 39, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

body.solutions-delivered-page .premium-card:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(208, 89, 39, 0.25);
  transform: translateY(-0.6rem);
  box-shadow: 0 40px 80px -15px rgba(14, 26, 60, 0.12), 0 20px 40px -20px rgba(208, 89, 39, 0.2);
}

body.solutions-delivered-page .solutions-culture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

body.solutions-delivered-page .solutions-culture-card {
  padding: 28px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
}

body.solutions-delivered-page .solutions-culture-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}

body.solutions-delivered-page .icon-box {
  transition: all 0.7s ease;
  border-radius: 1.5rem;
}

body.solutions-delivered-page .solutions-culture-icon-box {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--solutions-brand);
  border: 1px solid #E7E9EF;
  box-shadow: 0 4px 10px rgba(14, 26, 60, 0.06);
}

body.solutions-delivered-page .solutions-culture-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.solutions-delivered-page .premium-card:hover .icon-box {
  background-color: var(--solutions-brand);
  color: #fff;
  transform: rotate(15deg) scale(1.1);
  box-shadow: 0 15px 30px -5px rgba(208, 89, 39, 0.4);
}

body.solutions-delivered-page .card-number {
  transition: all 0.5s ease;
  letter-spacing: 0.4em;
  font-size: 11px;
  font-weight: 700;
  color: #7A8496;
  opacity: 0.2;
}

body.solutions-delivered-page .premium-card:hover .card-number {
  color: var(--solutions-brand);
  opacity: 1;
}

body.solutions-delivered-page .uppercase-no-accents {
  text-transform: uppercase;
}

body.solutions-delivered-page .solutions-culture-card-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.solutions-delivered-page .solutions-culture-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: #7A8496;
  transition: color 0.3s ease;
}

body.solutions-delivered-page .premium-card:hover .solutions-culture-tag {
  color: var(--solutions-brand);
}

body.solutions-delivered-page .solutions-culture-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--solutions-ink);
}

body.solutions-delivered-page .solutions-culture-card p {
  margin: 0;
  color: #4B5568;
  font-size: 1rem;
  line-height: 1.7;
}

body.solutions-delivered-page .solutions-culture-card .strong {
  font-weight: 700;
  color: var(--solutions-ink);
}

body.solutions-delivered-page .solutions-culture-cta-wrap {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(240, 242, 245, 0.6);
}

body.solutions-delivered-page .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--solutions-brand);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: all 0.3s ease;
}

body.solutions-delivered-page .cta-text-wrap {
  position: relative;
}

body.solutions-delivered-page .cta-line {
  transition: all 0.3s ease;
  width: 0;
  height: 2px;
  background-color: var(--solutions-brand);
  position: absolute;
  bottom: -4px;
  left: 0;
}

body.solutions-delivered-page .cta-button:hover .cta-line {
  width: 100%;
}

body.solutions-delivered-page .cta-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #FFF0E8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

body.solutions-delivered-page .cta-icon-box svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.solutions-delivered-page .cta-button:hover .cta-icon-box {
  background-color: var(--solutions-brand);
  color: #fff;
  transform: rotate(45deg);
}

body.solutions-delivered-page .solutions-bottom-line {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--solutions-line), transparent);
  opacity: .4;
  z-index: 5;
  animation: solutions-gradientShift 10s linear infinite;
  background-size: 180% 100%;
}

@media (max-width: 1024px) {
  body.solutions-delivered-page .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px 18px;
    padding: 22px 0;
  }

  body.solutions-delivered-page .solutions-grid::before { top: 50%; }
  body.solutions-delivered-page .solution-item:nth-child(odd) { transform: translateY(-20px); }
  body.solutions-delivered-page .solution-item:nth-child(even) { transform: translateY(20px); }
  body.solutions-delivered-page .solution-item .card { max-width: 420px; }

  body.solutions-delivered-page .solutions-needs-section {
    margin-top: 72px;
  }

  body.solutions-delivered-page .solutions-needs-main {
    padding: 46px 22px 58px;
  }

  body.solutions-delivered-page .solutions-needs-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  body.solutions-delivered-page .solutions-needs-divider-vertical {
    display: none;
  }

  body.solutions-delivered-page .solutions-needs-header {
    text-align: center;
  }

  body.solutions-delivered-page .solutions-needs-topbar-wrap {
    justify-content: flex-start;
  }

  body.solutions-delivered-page .solutions-needs-branch-items {
    gap: 20px;
  }

  body.solutions-delivered-page .solutions-culture-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.solutions-delivered-page .solutions-culture-shell {
    max-width: 760px;
  }
}

@media (max-width: 700px) {
  body.solutions-delivered-page .solutions-page {
    width: calc(100% - 24px);
    padding-bottom: 0;
  }

  body.solutions-delivered-page .solutions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
  }

  body.solutions-delivered-page .solutions-grid::before { display: none; }
  body.solutions-delivered-page .solution-item,
  body.solutions-delivered-page .solution-item:nth-child(odd),
  body.solutions-delivered-page .solution-item:nth-child(even) { transform: none; }
  body.solutions-delivered-page .solution-item::before { display: none; }

  body.solutions-delivered-page .solution-item .card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
    width: 100%;
  }

  body.solutions-delivered-page .solutions-section-title span { letter-spacing: .3em; }
  body.solutions-delivered-page .solutions-hero {
    margin-bottom: 72px;
    padding-top: 18px;
  }

  body.solutions-delivered-page .solutions-needs-section {
    margin-top: 56px;
  }

  body.solutions-delivered-page .solutions-needs-main {
    padding: 36px 16px 44px;
  }

  body.solutions-delivered-page .solutions-needs-header {
    margin-bottom: 18px;
  }

  body.solutions-delivered-page .solutions-needs-title {
    line-height: 1;
  }

  body.solutions-delivered-page .solutions-needs-paragraph {
    font-size: 1rem;
    line-height: 1.5;
  }

  body.solutions-delivered-page .solutions-needs-branches {
    margin-top: 24px;
  }

  body.solutions-delivered-page .solutions-needs-branch-stem,
  body.solutions-delivered-page .solutions-needs-branch-line {
    display: none;
  }

  body.solutions-delivered-page .solutions-needs-branch-items {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 0;
  }

  body.solutions-delivered-page .solutions-needs-branch-item {
    gap: 10px;
  }

  body.solutions-delivered-page .solutions-needs-branch-item span {
    width: 48px;
    height: 2px;
    background: rgba(208, 89, 39, 0.28);
  }

  body.solutions-delivered-page .solutions-needs-branch-item strong {
    letter-spacing: 0.26em;
  }

  body.solutions-delivered-page .solutions-needs-bg-circle-shape {
    width: 620px;
    height: 620px;
    top: 26%;
    left: 66%;
    opacity: 0.6;
  }

  body.solutions-delivered-page .solutions-needs-greek-marker {
    width: 32px;
  }

  body.solutions-delivered-page .solutions-needs-list-item-border {
    padding-left: 1rem;
  }

  body.solutions-delivered-page .solutions-needs-list {
    padding-left: 0;
  }

  body.solutions-delivered-page .solutions-culture-section {
    margin-top: 44px;
    padding: 46px 0 54px;
  }

  body.solutions-delivered-page .solutions-culture-section::after {
    height: 92px;
  }

  body.solutions-delivered-page .solutions-culture-shell {
    padding: 0 16px;
  }

  body.solutions-delivered-page .solutions-culture-header {
    margin-bottom: 34px;
  }

  body.solutions-delivered-page .solutions-culture-title {
    font-size: 1.7rem;
  }

  body.solutions-delivered-page .solutions-culture-title-em {
    font-size: 2rem;
  }

  body.solutions-delivered-page .solutions-culture-blob-2,
  body.solutions-delivered-page .solutions-culture-glow-bottom {
    opacity: 0.06;
  }

  body.solutions-delivered-page .solutions-topics-section {
    margin-top: 0;
    padding-top: 0;
  }

  body.solutions-delivered-page .solutions-collab2-section::after {
    height: 88px;
  }
}

body.solutions-delivered-page .solutions-topics-section {
  position: relative;
  margin-top: 0;
  padding: 0 0 80px;
  background: var(--color-bg-soft);
  overflow: hidden;
}

body.solutions-delivered-page .solutions-topics-section::before {
  content: none;
}

body.solutions-delivered-page .solutions-topics-section::after {
  content: none;
}

body.solutions-delivered-page .solutions-topics-container {
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

body.solutions-delivered-page .solutions-topics-blobs {
  display: none;
}

body.solutions-delivered-page .solutions-topics-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.24;
}

body.solutions-delivered-page .solutions-topics-blob-1 {
  width: 600px;
  height: 600px;
  background: var(--color-orange-soft);
  top: 0;
  left: -120px;
  opacity: 0.2;
}

body.solutions-delivered-page .solutions-topics-blob-2 {
  width: 800px;
  height: 800px;
  background: var(--color-orange-soft);
  bottom: -200px;
  right: -200px;
  opacity: 0.12;
}

body.solutions-delivered-page .solutions-topics-accent {
  width: 100%;
  height: clamp(52px, 11vw, 96px);
  position: relative;
  overflow: hidden;
  background: transparent;
  z-index: 2;
}

body.solutions-delivered-page .solutions-topics-accent svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

body.solutions-delivered-page .solutions-topics-wave-soft,
body.solutions-delivered-page .solutions-topics-wave-main {
  stroke: none;
}

body.solutions-delivered-page .solutions-topics-wave-soft {
  fill: color-mix(in srgb, var(--color-bg-warm) 82%, var(--color-orange-soft) 18%);
}

body.solutions-delivered-page .solutions-topics-wave-main {
  fill: color-mix(in srgb, var(--color-bg-soft) 78%, var(--color-orange-soft) 22%);
}

body.solutions-delivered-page .solutions-topics-wave-stroke {
  fill: none;
  stroke: var(--color-orange);
  stroke-opacity: 0.12;
  stroke-width: 1.15;
}

body.solutions-delivered-page .solutions-topics-header {
  text-align: center;
  margin: -14px 0 22px;
}

body.solutions-delivered-page .solutions-topics-header h2 {
  margin: 0 0 10px;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.018em;
  text-transform: none;
  color: var(--solutions-ink);
}

body.solutions-delivered-page .solutions-topics-header-line {
  width: 30px;
  height: 2px;
  background: var(--solutions-brand);
  margin: 0 auto;
  border-radius: 10px;
}

body.solutions-delivered-page .solutions-topics-scene {
  width: 100%;
  max-width: 1400px;
  height: 440px;
  margin: 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  perspective: 2000px;
}

body.solutions-delivered-page .solutions-topics-carousel {
  width: 320px;
  height: 390px;
  position: absolute;
  transform-style: preserve-3d;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

body.solutions-delivered-page .solutions-topics-carousel-item {
  position: absolute;
  width: 300px;
  height: 370px;
  left: 10px;
  top: 10px;
  border: 1px solid #E7E9EF;
  border-radius: 26px;
  background: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  backface-visibility: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

body.solutions-delivered-page .solutions-topics-carousel-item.active {
  border-color: #F0D8CC;
  background: linear-gradient(135deg, #ffffff 0%, #fffdfc 100%);
  box-shadow: 0 40px 80px -15px rgba(14, 26, 60, 0.12), 0 15px 30px -10px rgba(208, 89, 39, 0.08);
  transform: scale(1.05) translateY(-10px);
  z-index: 10;
}

body.solutions-delivered-page .solutions-topics-carousel-item:not(.active) {
  opacity: 0.15;
  filter: blur(1.5px) grayscale(0.6);
  transform: scale(0.9);
}

body.solutions-delivered-page .solutions-topics-icon-box {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

body.solutions-delivered-page .solutions-topics-carousel-item.active .solutions-topics-icon-box {
  background: linear-gradient(135deg, var(--solutions-brand) 0%, #E8713D 100%);
  color: #fff;
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 12px 25px rgba(208, 89, 39, 0.25);
}

body.solutions-delivered-page .solutions-topics-carousel-item:not(.active) .solutions-topics-icon-box {
  background-color: #FFF7F3;
  color: #34415F;
}

body.solutions-delivered-page .solutions-topics-icon-box svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.solutions-delivered-page .solutions-topics-carousel-item h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.25;
  color: #0E1A3C;
  margin-top: 8px;
}

body.solutions-delivered-page .solutions-topics-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 20px 0 40px;
  position: relative;
  z-index: 10;
}

body.solutions-delivered-page .solutions-topics-nav-buttons {
  display: flex;
  align-items: center;
  gap: 60px;
}

body.solutions-delivered-page .solutions-topics-nav-btn {
  background: transparent;
  border: none;
  color: #0E1A3C;
  opacity: 0.3;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 32px;
  height: 32px;
}

body.solutions-delivered-page .solutions-topics-nav-btn:hover {
  color: var(--solutions-brand);
  opacity: 1;
  transform: scale(1.2);
}

body.solutions-delivered-page .solutions-topics-nav-btn svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.solutions-delivered-page .solutions-topics-indicators {
  display: flex;
  gap: 10px;
}

body.solutions-delivered-page .solutions-topics-dot {
  width: 8px;
  height: 5px;
  border-radius: 10px;
  background: #E7E9EF;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body.solutions-delivered-page .solutions-topics-dot.active {
  width: 36px;
  background: var(--solutions-brand);
}

body.solutions-delivered-page .solutions-topics-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(14, 26, 60, 0.22);
  background: transparent;
  color: rgba(14, 26, 60, 0.82);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.3s ease;
}

body.solutions-delivered-page .solutions-topics-view-all-btn:hover {
  background-color: rgba(14, 26, 60, 0.05);
  border-color: rgba(14, 26, 60, 0.35);
  color: #0E1A3C;
  transform: translateY(-1px);
}

body.solutions-delivered-page .solutions-topics-view-all-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
}

/* Εκτός .solutions-page (stacking z-index:2) — επάνω από #site-header (50) και mobile nav dropdown (60) */
body.solutions-delivered-page .solutions-topics-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 26, 60, 0.2);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.solutions-delivered-page .solutions-topics-modal-overlay.open {
  display: flex;
  opacity: 1;
}

body.solutions-delivered-page .solutions-topics-modal-content {
  background: #fff;
  width: 100%;
  max-width: 820px;
  max-height: 85vh;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(14, 26, 60, 0.08);
  box-shadow: 0 0 60px -15px rgba(208, 89, 39, 0.25), 0 20px 40px -20px rgba(14, 26, 60, 0.1);
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body.solutions-delivered-page .solutions-topics-modal-overlay.open .solutions-topics-modal-content {
  transform: translateY(0);
}

body.solutions-delivered-page .solutions-topics-modal-header {
  padding: 24px 24px 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

body.solutions-delivered-page .solutions-topics-modal-header h3 {
  margin: 0;
  color: #0E1A3C;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  letter-spacing: -0.01em;
}

body.solutions-delivered-page .solutions-topics-modal-header p {
  margin: 4px 0 0;
  color: #64748B;
  font-size: 15px;
  opacity: 0.7;
}

body.solutions-delivered-page .solutions-topics-close-btn {
  border: none;
  background: transparent;
  width: 32px;
  height: 32px;
  color: #7A8496;
  cursor: pointer;
  border-radius: 999px;
  transition: background-color 0.3s ease;
}

body.solutions-delivered-page .solutions-topics-close-btn:hover {
  background-color: #F8FAFC;
}

body.solutions-delivered-page .solutions-topics-close-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.solutions-delivered-page .solutions-topics-modal-body {
  padding: 8px 24px 24px;
  overflow-y: auto;
}

body.solutions-delivered-page .solutions-topics-modal-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #F1F5F9;
}

body.solutions-delivered-page .solutions-topics-list-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #F1F5F9;
  transition: all 0.2s ease;
  cursor: default;
}

body.solutions-delivered-page .solutions-topics-list-item:hover {
  transform: translateX(2px);
}

body.solutions-delivered-page .solutions-topics-list-item-index {
  width: 22px;
  flex-shrink: 0;
  color: #0E1A3C;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.01em;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

body.solutions-delivered-page .solutions-topics-bottom-accent {
  width: 100%;
  height: 0;
  margin-top: auto;
  position: relative;
  background: transparent;
  z-index: 1;
}

body.solutions-delivered-page .solutions-topics-bottom-accent::after {
  content: none;
}

body.solutions-delivered-page .solutions-topics-list-item h3 {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.35;
  font-weight: 600;
  color: #0E1A3C;
  transition: all 0.3s ease;
}

body.solutions-delivered-page .solutions-topics-list-item:hover .solutions-topics-list-item-index {
  opacity: 1;
}

body.solutions-delivered-page .solutions-topics-list-item:hover h3 {
  color: #D05927;
  transform: translateX(4px);
}

body.solutions-delivered-page .solutions-collab2-section {
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-soft);
  padding: 72px 0 76px;
}

body.solutions-delivered-page .solutions-collab2-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 108px;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--color-bg-soft) 88%, var(--color-bg-main) 12%) 0%,
    color-mix(in srgb, var(--color-orange-soft) 16%, transparent) 54%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
  z-index: 0;
}

body.solutions-delivered-page .solutions-collab2-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 118px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    color-mix(in srgb, var(--color-bg-main) 18%, transparent) 62%,
    color-mix(in srgb, var(--color-bg-main) 48%, transparent) 84%,
    color-mix(in srgb, var(--color-bg-main) 74%, transparent) 100%
  );
  pointer-events: none;
  z-index: 0;
}

body.solutions-delivered-page .solutions-collab2-grain-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.solutions-delivered-page .solutions-collab2-top-intro-glow {
  position: absolute;
  top: -170px;
  left: 0;
  width: 100%;
  height: 520px;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--color-orange-soft) 88%, transparent) 0%,
    color-mix(in srgb, var(--color-orange) 16%, transparent) 42%,
    transparent 100%
  );
  filter: blur(88px);
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

body.solutions-delivered-page .solutions-collab2-bg-question {
  position: absolute;
  -webkit-text-stroke: 1px rgba(208, 89, 39, 0.08);
  color: transparent;
  line-height: 1;
  font-weight: 700;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

body.solutions-delivered-page .solutions-collab2-bg-question-1 {
  top: -10px;
  right: -10px;
  font-size: min(30rem, 36vw);
  opacity: 0.3;
}

body.solutions-delivered-page .solutions-collab2-bg-question-2 {
  top: 35%;
  left: -20px;
  font-size: min(22rem, 28vw);
  opacity: 0.1;
  transform: rotate(-12deg);
}

body.solutions-delivered-page .solutions-collab2-bg-question-3 {
  bottom: -10%;
  right: 15%;
  font-size: min(18rem, 22vw);
  opacity: 0.15;
  transform: rotate(8deg);
}

body.solutions-delivered-page .solutions-collab2-bg-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 12% 12%,
    color-mix(in srgb, var(--color-orange-soft) 90%, var(--color-orange) 10%) 0%,
    transparent 52%
  );
  opacity: 0.16;
  z-index: 0;
  pointer-events: none;
}

body.solutions-delivered-page .solutions-collab2-inner {
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

body.solutions-delivered-page .solutions-collab2-header {
  margin-bottom: 92px;
  text-align: center;
}

body.solutions-delivered-page .solutions-collab2-header h2 {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.2rem 0.75rem;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  letter-spacing: -0.02em;
}

body.solutions-delivered-page .solutions-collab2-sub {
  font-weight: 200;
  font-style: italic;
  color: #0E1A3C;
}

body.solutions-delivered-page .solutions-collab2-main {
  font-weight: 700;
  color: #D05927;
  position: relative;
  display: inline-block;
}

body.solutions-delivered-page .solutions-collab2-main::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 30px;
  height: 1.5px;
  border-radius: 2px;
  background-color: #0E1A3C;
  opacity: 0.15;
}

body.solutions-delivered-page .solutions-collab2-path-wrap {
  position: relative;
}

body.solutions-delivered-page .solutions-collab2-path {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 0;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: solutions-collab2-drawPath 3s ease-out forwards;
}

body.solutions-delivered-page .solutions-collab2-path path {
  stroke: rgba(14, 26, 60, 0.1);
  stroke-width: 2;
  stroke-linecap: round;
}

body.solutions-delivered-page .solutions-collab2-path circle {
  fill: #D05927;
}

body.solutions-delivered-page .solutions-collab2-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
  position: relative;
  z-index: 1;
}

body.solutions-delivered-page .solutions-collab2-step-card {
  text-align: center;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

body.solutions-delivered-page .solutions-collab2-step-card:hover {
  transform: translateY(-5px);
}

body.solutions-delivered-page .solutions-collab2-step-icon-container {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  margin: 0 auto 32px;
  border: 1px solid #E7E9EF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #fff;
  transition: all 0.5s ease;
}

body.solutions-delivered-page .solutions-collab2-step-icon-container svg {
  width: 28px;
  height: 28px;
  stroke: #0E1A3C;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

body.solutions-delivered-page .solutions-collab2-step-number-tag {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #F8FAFC;
  border: 1px solid #E7E9EF;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #94A3B8;
  transition: all 0.5s ease;
}

body.solutions-delivered-page .solutions-collab2-step-card h3 {
  margin: 0 0 12px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0E1A3C;
  transition: color 0.3s ease;
}

body.solutions-delivered-page .solutions-collab2-step-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #64748B;
  font-weight: 500;
}

body.solutions-delivered-page .solutions-collab2-step-card:hover .solutions-collab2-step-icon-container {
  border-color: #D05927;
  background: #fff;
  box-shadow: 0 15px 35px -10px rgba(14, 26, 60, 0.1);
}

body.solutions-delivered-page .solutions-collab2-step-card:hover .solutions-collab2-step-icon-container svg {
  stroke: #D05927;
}

body.solutions-delivered-page .solutions-collab2-step-card:hover .solutions-collab2-step-number-tag {
  background-color: #0E1A3C;
  color: #FFFFFF;
}

body.solutions-delivered-page .solutions-collab2-step-card:hover h3 {
  color: #D05927;
}

@keyframes solutions-collab2-drawPath {
  to { stroke-dashoffset: 0; }
}

body.solutions-delivered-page .solutions-invest-section {
  position: relative;
  padding: 46px 24px 24px;
  background: var(--color-bg-main);
  overflow-x: hidden;
  overflow-y: visible;
}

body.solutions-delivered-page .solutions-invest-section::after {
  content: none;
  display: none;
}

body.solutions-delivered-page .solutions-invest-section::before {
  content: "";
  position: absolute;
  top: -54px;
  left: 50%;
  width: min(980px, calc(100% - 140px));
  height: 220px;
  transform: translateX(-50%);
  background:
    radial-gradient(
      ellipse at 50% 60%,
      rgba(38, 92, 170, 0.11) 0%,
      rgba(38, 92, 170, 0.065) 26%,
      rgba(38, 92, 170, 0.02) 42%,
      rgba(38, 92, 170, 0.006) 54%,
      rgba(38, 92, 170, 0) 64%
    ),
    radial-gradient(
      ellipse at 50% 78%,
      rgba(14, 26, 60, 0.038) 0%,
      rgba(14, 26, 60, 0.014) 34%,
      rgba(14, 26, 60, 0) 56%
    );
  filter: none;
  pointer-events: none;
  z-index: 0;
}

body.solutions-delivered-page .solutions-invest-bg-element {
  position: absolute;
  z-index: 0;
  opacity: 0.08;
  pointer-events: none;
  color: var(--color-orange);
}

body.solutions-delivered-page .solutions-invest-bg-element svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 0.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.solutions-delivered-page .solutions-invest-bg-arrow-left {
  top: 40px;
  left: 10px;
  width: 220px;
  height: 220px;
}

body.solutions-delivered-page .solutions-invest-bg-arrow-right {
  right: 10px;
  bottom: 24px;
  width: 260px;
  height: 260px;
}

body.solutions-delivered-page .solutions-invest-container {
  width: min(100%, 1120px);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(14, 26, 60, 0.08);
  border-radius: 40px;
  padding: 3.9rem 1.5rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.32) inset,
    0 8px 24px -8px rgba(14, 26, 60, 0.08),
    0 24px 60px -12px rgba(14, 26, 60, 0.10),
    0 48px 120px 0 rgba(38, 92, 170, 0.09),
    0 80px 160px 20px rgba(14, 26, 60, 0.05); 
}

body.solutions-delivered-page .solutions-invest-fade-up {
  animation: solutions-invest-fadeUp 0.9s ease-out both;
}

@keyframes solutions-invest-fadeUp {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}

body.solutions-delivered-page .solutions-invest-header {
  text-align: center;
  margin-bottom: 38px;
}

body.solutions-delivered-page .solutions-invest-kicker {
  display: block;
  margin-bottom: 22px;
  color: #D05927;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

body.solutions-delivered-page .solutions-invest-header h2 {
  margin: 0 0 22px;
  color: #0E1A3C;
  font-size: clamp(1.75rem, 3.1vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

body.solutions-delivered-page .solutions-invest-header h2 span {
  color: #D05927;
  font-style: italic;
  font-weight: 300;
}

body.solutions-delivered-page .solutions-invest-intro-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

body.solutions-delivered-page .solutions-invest-intro-line span {
  width: 48px;
  height: 1px;
  background: #D05927;
  opacity: 0.2;
}

body.solutions-delivered-page .solutions-invest-intro-line p {
  margin: 0;
  color: #4B5568;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

body.solutions-delivered-page .solutions-invest-grid-wrap {
  max-width: 900px;
  margin: 0 auto;
}

body.solutions-delivered-page .solutions-invest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

body.solutions-delivered-page .solutions-invest-card {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border-radius: 16px;
  border: 1px solid #f1f3f6;
  background: #ffffff;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

body.solutions-delivered-page .solutions-invest-card:hover {
  transform: translateY(-2px);
  border-color: #0E1A3C;
  box-shadow: 0 10px 30px -10px rgba(14, 26, 60, 0.15);
}

body.solutions-delivered-page .solutions-invest-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8FAFC;
  color: #0E1A3C;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

body.solutions-delivered-page .solutions-invest-icon-box svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.solutions-delivered-page .solutions-invest-card:hover .solutions-invest-icon-box {
  background: #FFFFFF;
  color: #D05927;
  box-shadow: 0 4px 12px rgba(14, 26, 60, 0.05);
  transform: scale(1.05);
}

body.solutions-delivered-page .solutions-invest-card h3 {
  margin: 0;
  color: #0E1A3C;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

body.solutions-delivered-page .solutions-invest-hover-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #D05927;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

body.solutions-delivered-page .solutions-invest-card:hover .solutions-invest-hover-line {
  width: 40px;
}

body.solutions-delivered-page .solutions-invest-card-last {
  max-width: 440px;
}

body.solutions-delivered-page .solutions-cta-final-section {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--color-bg-warm);
}

body.solutions-delivered-page .solutions-cta-final-bridge {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
  background: none;
}

body.solutions-delivered-page .solutions-cta-final-bridge::before {
  content: none;
  display: none;
}

body.solutions-delivered-page .solutions-cta-final-background {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--color-bg-warm);
}

body.solutions-delivered-page .solutions-cta-final-background::before {
  content: none;
  display: none;
}

body.solutions-delivered-page .solutions-cta-final-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 20px;
  text-align: center;
  animation: solutions-cta-final-fadeUp 0.9s ease-out both;
}

@keyframes solutions-cta-final-fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

body.solutions-delivered-page .solutions-cta-final-heading {
  margin: 0 0 30px;
  color: #1a2b4b;
  font-size: clamp(2.1rem, 4.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}

body.solutions-delivered-page .solutions-cta-final-highlight {
  color: #cc7a52;
  position: relative;
  display: inline-block;
}

body.solutions-delivered-page .solutions-cta-final-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  height: 3px;
  background-color: rgba(204, 113, 68, 0.25);
}

body.solutions-delivered-page .solutions-cta-final-description {
  margin: 0 auto 44px;
  max-width: 850px;
  color: #374151;
  font-size: 1.14rem;
  line-height: 1.7;
}

body.solutions-delivered-page .solutions-cta-final-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 20px 40px 20px 48px;
  border-radius: 100px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  background-color: #cc7144;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 15px 35px rgba(204, 113, 68, 0.35);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body.solutions-delivered-page .solutions-cta-final-btn:hover {
  background-color: #b35f36;
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 20px 40px rgba(204, 113, 68, 0.45);
}

body.solutions-delivered-page .solutions-cta-final-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease;
}

body.solutions-delivered-page .solutions-cta-final-icon-circle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.solutions-delivered-page .solutions-cta-final-btn:hover .solutions-cta-final-icon-circle {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  body.solutions-delivered-page .solutions-topics-section {
    padding: 0 0 68px;
  }

  body.solutions-delivered-page .solutions-topics-scene {
    height: 420px;
  }

  body.solutions-delivered-page .solutions-topics-carousel {
    width: 280px;
    height: 350px;
  }

  body.solutions-delivered-page .solutions-topics-carousel-item {
    width: 260px;
    height: 330px;
    padding: 1.75rem;
  }

  body.solutions-delivered-page .solutions-collab2-header {
    margin-bottom: 76px;
  }

  body.solutions-delivered-page .solutions-collab2-path {
    display: none;
  }

  body.solutions-delivered-page .solutions-collab2-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  body.solutions-delivered-page .solutions-invest-container {
    border-radius: 34px;
    padding: 3.25rem 1.25rem;
  }

  body.solutions-delivered-page .solutions-invest-header {
    margin-bottom: 34px;
  }

  body.solutions-delivered-page .solutions-cta-final-bridge {
    height: 0;
  }

}

@media (max-width: 700px) {
  body.solutions-delivered-page .solutions-topics-section {
    padding: 0 0 56px;
  }

  body.solutions-delivered-page .solutions-topics-accent {
    height: clamp(52px, 11vw, 96px);
  }

  body.solutions-delivered-page .solutions-topics-header {
    margin-top: -6px;
  }

  body.solutions-delivered-page .solutions-topics-header h2 {
    font-size: 1.5rem;
  }

  body.solutions-delivered-page .solutions-topics-bottom-accent {
    height: 0;
  }

  body.solutions-delivered-page .solutions-collab2-section {
    padding: 70px 0 56px;
  }

  body.solutions-delivered-page .solutions-collab2-inner {
    width: calc(100% - 24px);
  }

  body.solutions-delivered-page .solutions-collab2-header {
    margin-bottom: 42px;
  }

  body.solutions-delivered-page .solutions-collab2-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body.solutions-delivered-page .solutions-invest-section {
    padding: 36px 12px 60px;
  }

  body.solutions-delivered-page .solutions-invest-container {
    border-radius: 24px;
    padding: 2.35rem 0.95rem;
  }

  body.solutions-delivered-page .solutions-invest-bg-arrow-left,
  body.solutions-delivered-page .solutions-invest-bg-arrow-right {
    display: none;
  }

  body.solutions-delivered-page .solutions-invest-intro-line {
    gap: 12px;
  }

  body.solutions-delivered-page .solutions-invest-intro-line span {
    width: 24px;
  }

  body.solutions-delivered-page .solutions-invest-intro-line p {
    letter-spacing: 0.08em;
  }

  body.solutions-delivered-page .solutions-invest-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  body.solutions-delivered-page .solutions-invest-card {
    padding: 0.95rem 0.9rem;
    gap: 0.72rem;
  }

  body.solutions-delivered-page .solutions-invest-card h3 {
    font-size: 0.74rem;
    letter-spacing: 0.09em;
  }

  body.solutions-delivered-page .solutions-cta-final-inner {
    padding: 68px 20px;
  }

  body.solutions-delivered-page .solutions-cta-final-heading {
    font-size: 2rem;
  }

  body.solutions-delivered-page .solutions-cta-final-description {
    font-size: 1.05rem;
  }
}
