/* Προσέγγιση — clean reset για rebuild */

/* ── Accordion: chevron hidden on desktop ── */
body.approach-delivered-page .service-accordion-chevron {
  display: none;
}

body.approach-delivered-page {
  background-color: #FFFBF8;
}

body.approach-delivered-page main {
  margin-top: 0;
  padding-top: 0;
}

@keyframes approach-fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes approach-float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes approach-iconWiggle {
  0% { transform: scale(1.05) rotate(0deg); }
  25% { transform: scale(1.15) rotate(-8deg); }
  50% { transform: scale(1.15) rotate(8deg); }
  75% { transform: scale(1.15) rotate(-4deg); }
  100% { transform: scale(1.15) rotate(0deg); }
}

@keyframes panBackground {
  0% { background-position: 0px 0px; }
  100% { background-position: 100px 100px; }
}

@keyframes floatBlob {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 40px) scale(1.1); }
}

body.approach-delivered-page .animate-fade-in {
  opacity: 0;
  animation: approach-fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.approach-delivered-page .delay-1 { animation-delay: 0.1s; }
body.approach-delivered-page .delay-2 { animation-delay: 0.3s; }
body.approach-delivered-page .delay-3 { animation-delay: 0.5s; }
body.approach-delivered-page .delay-4 { animation-delay: 0.7s; }

body.approach-delivered-page .approach-container-wide {
  width: min(1400px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

body.approach-delivered-page .approach-container-standard {
  width: min(1200px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

body.approach-delivered-page .approach-container-narrow {
  width: min(1120px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

body.approach-delivered-page .approach-container-hero {
  width: min(1300px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  body.approach-delivered-page .approach-container-wide,
  body.approach-delivered-page .approach-container-standard {
    width: min(calc(100% - 32px), 1400px);
  }

  body.approach-delivered-page .approach-container-standard {
    max-width: 1200px;
  }

  body.approach-delivered-page .approach-container-narrow {
    width: min(1120px, calc(100% - 32px));
  }
}

body.approach-delivered-page .approach-section {
  position: relative;
  width: 100%;
  background: #FFFBF8;
  overflow: hidden;
  padding: 20px 20px calc(var(--section-y-tight) - 4px);
  margin-top: 0;
}

body.approach-delivered-page .approach-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Soft fade-out at section bottom into the site base background */
body.approach-delivered-page .approach-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(250, 250, 248, 0) 0%,
    rgba(249, 249, 247, 0.18) 60%,
    rgba(248, 249, 250, 0.76) 84%,
    #f7f8fa 100%
  );
  z-index: 0;
  pointer-events: none;
}

body.approach-delivered-page .approach-section .bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

body.approach-delivered-page .approach-section .blob-1 {
  width: 500px;
  height: 500px;
  background: var(--color-orange-soft, #FFF0E8);
  top: -100px;
  right: -50px;
  animation: floatBlob 12s ease-in-out infinite alternate;
  opacity: 0.28;
}

body.approach-delivered-page .approach-section .blob-2 {
  width: 450px;
  height: 450px;
  background: rgba(208, 89, 39, 0.035);
  bottom: -100px;
  left: -100px;
  animation: floatBlob 15s ease-in-out infinite alternate-reverse;
}

body.approach-delivered-page .approach-section .approach-hero-content {
  padding-top: 0;
  position: relative;
  z-index: 1;
}

body.approach-delivered-page .approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  margin-top: -22px;
  margin-bottom: 12px;
}

/* Fixed header (≤1023px): μηδενίζουμε το αρνητικό margin — αλλιώς το hero «ανεβαίνει» κάτω από τη μπάρα */
@media (max-width: 1023px) {
  body.approach-delivered-page .approach-grid {
    margin-top: 0;
  }
}

body.approach-delivered-page .approach-content .overline {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
}

body.approach-delivered-page .approach-content .overline::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--color-orange);
  margin-top: 8px;
  transition: width 0.3s ease;
}

body.approach-delivered-page .approach-content:hover .overline::after {
  width: 60px;
}

body.approach-delivered-page .approach-content h1 {
  font-size: clamp(2.35rem, 3.6vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--color-navy);
  margin-bottom: 30px;
}

body.approach-delivered-page .services-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

body.approach-delivered-page .service-item {
  display: flex;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(14, 26, 60, 0.12);
  border-radius: 10px;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

body.approach-delivered-page .service-item:first-child {
  border-top: 1px solid rgba(14, 26, 60, 0.12);
}

body.approach-delivered-page .service-item:hover {
  transform: translateX(10px);
  background-color: rgba(255, 240, 232, 0.28);
  border-color: rgba(208, 89, 39, 0.24);
}

body.approach-delivered-page .service-icon {
  width: 32px;
  height: 32px;
  color: var(--color-navy);
  opacity: 0.72;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

body.approach-delivered-page .service-item:hover .service-icon {
  color: var(--color-orange);
  opacity: 1;
  transform: scale(1.1);
}

body.approach-delivered-page .service-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

body.approach-delivered-page .service-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 10px;
}

body.approach-delivered-page .service-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

body.approach-delivered-page .service-description {
  margin: 0;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--color-text-secondary) 92%, var(--color-navy));
  font-weight: 500;
  line-height: 1.55;
  transition: color 0.3s ease;
}

body.approach-delivered-page .service-item:hover .service-title {
  color: var(--color-orange);
}

body.approach-delivered-page .service-item:hover .service-description {
  color: var(--color-navy);
}

body.approach-delivered-page .approach-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.approach-delivered-page .approach-visual::before {
  content: "";
  position: absolute;
  width: min(520px, 78%);
  height: min(360px, 66%);
  top: 50%;
  left: 50%;
  transform: translate(-42%, -42%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 26, 60, 0.18) 0%, rgba(26, 42, 85, 0.13) 36%, rgba(26, 42, 85, 0) 76%);
  filter: blur(34px);
  pointer-events: none;
  z-index: 1;
}

body.approach-delivered-page .mockup-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  transform: translateY(-10px);
  animation: approach-float 5s ease-in-out infinite;
}

body.approach-delivered-page .mockup-image {
  width: 108%;
  max-width: 840px;
  margin-left: -5%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.11));
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.5s ease;
}

body.approach-delivered-page .mockup-image:hover {
  transform: translateY(-14px) scale(1.02) rotate(-1deg);
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.25));
}

@media (max-width: 1024px) {
  body.approach-delivered-page .approach-grid {
    grid-template-columns: 1fr;
  }

  body.approach-delivered-page .approach-visual {
    min-height: 350px;
  }

  body.approach-delivered-page .mockup-image {
    width: 100%;
    margin-left: 0;
  }

}

/* Hero εικόνα: πιο καθαρή ευθυγράμμιση μόνο σε στενές οθόνες */
@media (max-width: 768px) {
  body.approach-delivered-page .approach-visual {
    min-height: 300px;
    padding-bottom: 0.25rem;
  }

  body.approach-delivered-page .approach-visual::before {
    width: min(420px, 88vw);
    height: min(280px, 52vw);
    transform: translate(-50%, -46%);
    left: 50%;
    top: 50%;
  }

  body.approach-delivered-page .mockup-wrapper {
    transform: translateY(4px);
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  body.approach-delivered-page .mockup-image {
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

@media (max-width: 767px) {
  body.approach-delivered-page #header-container .header-mobile-toggle {
    background: #FFFBF8;
  }

  body.approach-delivered-page .approach-section {
    background: #FFFBF8;
  }


  /* Smooth hero → white blend at section bottom on mobile */
  body.approach-delivered-page .approach-section::after {
    background: linear-gradient(
      180deg,
      rgba(250, 250, 248, 0) 0%,
      rgba(250, 250, 248, 0.15) 50%,
      rgba(255, 255, 255, 0.82) 78%,
      #ffffff 100%
    );
  }

  /* Reduce heavy GPU blur on mobile */
  body.approach-delivered-page .approach-section .bg-blob,
  body.approach-delivered-page .approach-section .blob-1 {
    filter: blur(30px);
  }

  body.approach-delivered-page .approach-focus-section .approach-focus-soft-arc {
    filter: blur(20px);
  }

  body.approach-delivered-page .approach-focus-section .approach-focus-organic-blob {
    filter: blur(25px);
  }
}

@media (max-width: 768px) {
  body.approach-delivered-page .approach-section {
    padding: 16px 15px 40px;
  }

  body.approach-delivered-page .approach-section .approach-hero-content {
    padding-top: 0;
  }

  body.approach-delivered-page .service-item { padding: 22px 0; gap: 12px; }
  body.approach-delivered-page .service-icon { margin-right: 14px; width: 28px; height: 28px; }
  body.approach-delivered-page .service-icon svg { width: 18px; height: 18px; }
  body.approach-delivered-page .service-title { font-size: 1rem; }
  body.approach-delivered-page .service-description { font-size: 0.9rem; }

  body.approach-delivered-page .approach-content h1 {
    font-size: 2.05rem;
  }

  /* ── Mobile accordion cards — premium ── */

  body.approach-delivered-page .services-list {
    gap: 10px;
  }

  body.approach-delivered-page .service-item[data-accordion-item] {
    padding: 0;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(208, 89, 39, 0.13);
    border-radius: 20px;
    background: linear-gradient(135deg, #fffdf9 0%, #fff8f2 100%);
    box-shadow:
      0 4px 20px rgba(208, 89, 39, 0.07),
      0 1px 4px rgba(14, 26, 60, 0.04);
    overflow: hidden;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
  }

  body.approach-delivered-page .service-item[data-accordion-item]:first-child {
    border-top: 1px solid rgba(208, 89, 39, 0.13);
  }

  body.approach-delivered-page .service-item[data-accordion-item]:hover,
  body.approach-delivered-page .service-item[data-accordion-item]:active {
    transform: scale(0.99);
    background: linear-gradient(135deg, #fff4ed 0%, #ffeedd 100%);
  }

  body.approach-delivered-page .service-item[data-accordion-item][data-open] {
    border-color: rgba(208, 89, 39, 0.22);
    box-shadow:
      0 6px 24px rgba(208, 89, 39, 0.10),
      0 1px 4px rgba(14, 26, 60, 0.04);
  }

  /* Header row: icon + title + chevron — icon stays anchored to header regardless of card height */
  body.approach-delivered-page .service-accordion-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 14px 14px 14px;
  }

  /* Icon — styled rounded square, lives inside the header row */
  body.approach-delivered-page .service-item[data-accordion-item] .service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 13px;
    background: linear-gradient(135deg, #fff0e8 0%, #ffdfc8 100%);
    border: 1px solid rgba(208, 89, 39, 0.20);
    color: #D05927;
    margin: 0;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(208, 89, 39, 0.12);
  }

  body.approach-delivered-page .service-item[data-accordion-item] .service-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.8;
  }

  body.approach-delivered-page .service-item[data-accordion-item] .service-title {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 800;
    margin: 0;
    color: #0E1A3C;
    letter-spacing: -0.01em;
  }

  body.approach-delivered-page .service-item[data-accordion-item][data-open] .service-title {
    color: #D05927;
  }

  /* Chevron */
  body.approach-delivered-page .service-accordion-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(208, 89, 39, 0.08);
    color: rgba(208, 89, 39, 0.8);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.18s ease;
  }

  body.approach-delivered-page .service-item[data-accordion-item][data-open] .service-accordion-chevron {
    transform: rotate(180deg);
    background: rgba(208, 89, 39, 0.14);
  }

  /* Collapsible description — indented to align under title; instant open/close */
  body.approach-delivered-page .service-item[data-accordion-item] .service-description {
    overflow: hidden;
    max-height: 0;
    padding: 0 16px 0 70px;
    font-size: 0.875rem;
    line-height: 1.6;
    transition: none;
  }

  body.approach-delivered-page .service-item[data-accordion-item][data-open] .service-description {
    max-height: 400px;
    padding: 0 16px 18px 70px;
  }

  @media (prefers-reduced-motion: reduce) {
    body.approach-delivered-page .service-accordion-chevron,
    body.approach-delivered-page .service-item[data-accordion-item] .service-description {
      transition: none;
    }
  }
}

/* ── Desktop restore for new accordion HTML structure (icon inside accordion-header) ── */
@media (min-width: 768px) {
  body.approach-delivered-page .service-item[data-accordion-item] {
    flex-direction: column;
    align-items: stretch;
    padding: 22px 0;
    overflow: visible;
    cursor: default;
    border: none;
    background: none;
    box-shadow: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(14, 26, 60, 0.12);
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  }
  body.approach-delivered-page .service-item[data-accordion-item]:first-child {
    border-top: 1px solid rgba(14, 26, 60, 0.12);
    border-radius: 0;
  }
  body.approach-delivered-page .service-item[data-accordion-item]:hover {
    transform: translateX(10px);
    background-color: rgba(255, 240, 232, 0.28);
    border-color: rgba(208, 89, 39, 0.24);
  }
  body.approach-delivered-page .service-item[data-accordion-item]:active {
    transform: none;
    background: none;
  }
  body.approach-delivered-page .service-item[data-accordion-item] .service-accordion-header {
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding: 0 0 8px 0;
  }
  body.approach-delivered-page .service-item[data-accordion-item] .service-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    margin: 0 20px 0 0;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    color: var(--color-navy);
    opacity: 0.72;
  }
  body.approach-delivered-page .service-item[data-accordion-item] .service-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.8;
  }
  body.approach-delivered-page .service-item[data-accordion-item] .service-title {
    flex: 1;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-navy);
    letter-spacing: -0.02em;
  }
  body.approach-delivered-page .service-item[data-accordion-item] .service-description {
    margin-left: 52px;
    max-height: none;
    padding: 0 10px 0 0;
    overflow: visible;
    font-size: 0.95rem;
    line-height: 1.55;
    color: color-mix(in srgb, var(--color-text-secondary) 92%, var(--color-navy));
  }
}

body.approach-delivered-page .fade-in-up {
  animation: approach-second-fadeInUp 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

@keyframes approach-second-fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

body.approach-delivered-page .highlight-underline {
  border-bottom: 2px solid #D05927;
  padding-bottom: 1px;
  font-weight: 500;
}

@media (min-width: 1024px) {
  body.approach-delivered-page .connector-line {
    position: absolute;
    top: 24px;
    left: 50%;
    right: -50%;
    height: 1px;
    background: #E2E8F0;
    z-index: 0;
  }
}

body.approach-delivered-page .icon-box {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Corporate wellbeing row: lift entire item (icon + text), not icon alone */
body.approach-delivered-page .approach-corporate-section .relative.grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 > .group {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body.approach-delivered-page .approach-corporate-section .relative.grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 > .group:hover {
  transform: translateY(-8px);
}

body.approach-delivered-page .approach-corporate-section .relative.grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 > .group:hover .icon-box {
  border-color: #D05927;
}

@keyframes approach-second-float-slow {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

@keyframes approach-second-float-delayed {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(30px) scale(0.95); }
}

@keyframes approach-second-pulse-soft {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.9; }
}

@keyframes approach-focus-morph {
  0% { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; }
  34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
  67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
  100% { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; }
}

body.approach-delivered-page .animate-float-slow { animation: approach-second-float-slow 10s ease-in-out infinite; }
body.approach-delivered-page .animate-float-delayed { animation: approach-second-float-delayed 12s ease-in-out infinite; }
body.approach-delivered-page .animate-pulse-soft { animation: approach-second-pulse-soft 2s ease-in-out infinite; }

body.approach-delivered-page .shape-leaf-right { border-radius: 20px; border-top-left-radius: 50px; border-bottom-right-radius: 50px; }
body.approach-delivered-page .shape-leaf-left { border-radius: 20px; border-top-right-radius: 50px; border-bottom-left-radius: 50px; }

body.approach-delivered-page .flow-bridge-separator {
  position: relative;
  margin-top: -1px;
  line-height: 0;
  color: #F7F8FA;
}

body.approach-delivered-page .flow-bridge-separator::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(247, 248, 250, 0.72));
  filter: blur(10px);
  pointer-events: none;
}

body.approach-delivered-page .flow-bridge-shell {
  background-color: #F7F8FA;
}

body.approach-delivered-page .flow-editorial-item {
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(208, 89, 39, 0.08);
  box-shadow: 0 18px 50px rgba(14, 26, 60, 0.04);
}

body.approach-delivered-page .flow-path-line {
  height: 1px;
  width: 100%;
  background: rgba(208, 89, 39, 0.08);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

body.approach-delivered-page .flow-editorial-item:hover .flow-path-line {
  background: #D05927;
  height: 2px;
  opacity: 0.3;
}

body.approach-delivered-page .flow-reveal-text {
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

body.approach-delivered-page main > .relative.overflow-hidden.bg-white > section.relative.z-10.py-24.md\:py-32 {
  position: relative;
}

body.approach-delivered-page main > .relative.overflow-hidden.bg-white > section.relative.z-10.py-24.md\:py-32::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.88) 32%,
    rgba(247, 248, 250, 0.52) 66%,
    rgba(247, 248, 250, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

body.approach-delivered-page .approach-focus-section {
  padding-top: 0.6rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

body.approach-delivered-page .approach-focus-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 132px;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(247, 248, 250, 0.92) 0%,
    rgba(247, 248, 250, 0.68) 42%,
    rgba(247, 248, 250, 0.24) 74%,
    rgba(247, 248, 250, 0) 100%
  );
}

body.approach-delivered-page .approach-focus-section::after {
  content: none;
}

body.approach-delivered-page .approach-focus-section .approach-focus-heading-row {
  margin-bottom: 3rem;
}

body.approach-delivered-page .approach-focus-section .approach-focus-heading-row--chapter {
  position: relative;
  flex-direction: column;
  gap: 0.8rem;
  overflow: visible;
  padding-top: 1.9rem;
}

body.approach-delivered-page .approach-focus-section .approach-focus-heading-row--chapter::before {
  content: none;
}

body.approach-delivered-page .approach-focus-section .blob-base {
  animation: approach-focus-morph 15s linear infinite;
  will-change: border-radius;
}

body.approach-delivered-page .approach-focus-section .approach-focus-soft-arc {
  position: absolute;
  width: min(1200px, 130vw);
  height: min(1200px, 130vw);
  background: radial-gradient(
    circle,
    rgba(253, 245, 240, 0.95) 0%,
    rgba(253, 245, 240, 0.48) 58%,
    rgba(253, 245, 240, 0) 100%
  );
  border-radius: 50%;
  top: -34%;
  right: -20%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

body.approach-delivered-page .approach-focus-section .approach-focus-arc-outline {
  position: absolute;
  top: -220px;
  right: -5%;
  width: 110%;
  opacity: 0.36;
  z-index: 1;
  pointer-events: none;
}

body.approach-delivered-page .approach-focus-section .approach-focus-arc-outline svg path {
  stroke: rgba(208, 89, 39, 0.55);
  stroke-width: 1.5;
  stroke-linecap: round;
}

/* Κυματιστή γραμμή «Σημεία Εστίασης»: πιο ορατή σε mobile (ίδιο SVG, δυνατότερο stroke/θέση) */
@media (max-width: 768px) {
  body.approach-delivered-page .approach-focus-section .approach-focus-arc-outline {
    top: -72px;
    left: 50%;
    right: auto;
    width: 160%;
    max-width: none;
    transform: translateX(-50%);
    opacity: 0.62;
  }

  body.approach-delivered-page .approach-focus-section .approach-focus-arc-outline svg path {
    stroke: rgba(208, 89, 39, 0.72);
    stroke-width: 2.25;
  }
}

body.approach-delivered-page .approach-focus-section .approach-focus-organic-blob {
  position: absolute;
  right: 6%;
  top: 2%;
  width: min(500px, 46vw);
  height: min(500px, 46vw);
  background: #fdf5f0;
  opacity: 0.46;
  z-index: 0;
  filter: blur(64px);
  pointer-events: none;
}

body.approach-delivered-page .approach-focus-section h2 {
  font-size: clamp(2rem, 3.1vw, 2.75rem);
  line-height: 1.08;
}

body.approach-delivered-page .approach-focus-section .grid.group\/board {
  gap: 1.25rem;
}

body.approach-delivered-page .approach-focus-section .hover-target {
  padding: 1.25rem;
}

body.approach-delivered-page .approach-focus-section .hover-target h3 {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

body.approach-delivered-page .approach-focus-section .hover-target p {
  font-size: 0.95rem;
  line-height: 1.58;
}

body.approach-delivered-page .approach-corporate-section {
  min-height: 76vh;
  padding-top: 4.5rem;
  padding-bottom: 4.25rem;
  position: relative;
}

body.approach-delivered-page .approach-corporate-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(220px, 38vw);
  height: 1px;
  background: rgba(14, 26, 60, 0.22);
  pointer-events: none;
}

body.approach-delivered-page .approach-corporate-section h1 {
  font-size: clamp(2.2rem, 3.4vw, 3.25rem);
}

body.approach-delivered-page .approach-corporate-section p.text-xl.md\:text-2xl {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.5;
}

@media (min-width: 1024px) {
  body.approach-delivered-page .approach-corporate-section .approach-corporate-left {
    transform: translateX(1.5rem);
  }

  body.approach-delivered-page .approach-corporate-section .approach-corporate-right {
    transform: translateX(-1.5rem);
  }
}

body.approach-delivered-page .approach-corporate-section .grid.grid-cols-1.lg\:grid-cols-2.gap-12.lg\:gap-0.items-center.mb-32.lg\:mb-44.fade-in-up {
  margin-bottom: 3.75rem;
}

body.approach-delivered-page .approach-corporate-section .relative.grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 p.text-xl {
  font-size: 1.08rem;
}

body.approach-delivered-page section.flow-bridge-shell--editorial {
  padding-top: 2.2rem;
}

body.approach-delivered-page .flow-editorial-item > .absolute.inset-0.bg-brand-navy {
  background: rgba(14, 26, 60, 0.84);
  transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

body.approach-delivered-page .flow-editorial-item .flow-reveal-text {
  transform: translateX(-10px);
  filter: blur(1.5px);
  transition-duration: 580ms;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

body.approach-delivered-page .flow-editorial-item:hover .flow-reveal-text {
  transform: translateX(0);
  filter: blur(0);
}

body.approach-delivered-page .flow-editorial-item div[class*="group-hover:opacity-0"] {
  transition-duration: 520ms;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 768px) {
  body.approach-delivered-page .approach-focus-section {
    padding-top: 0.75rem;
    padding-bottom: 4.75rem;
  }

  body.approach-delivered-page .approach-focus-section .approach-focus-heading-row {
    margin-bottom: 2rem;
  }

  body.approach-delivered-page .approach-focus-section h2 {
    font-size: 1.85rem;
  }

  body.approach-delivered-page .approach-corporate-section {
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  body.approach-delivered-page .approach-corporate-section h1 {
    font-size: 2rem;
  }

  /* «Corporate wellbeing»: κεντράρισμα τίτλου σε mobile */
  body.approach-delivered-page .approach-corporate-section .approach-corporate-left {
    text-align: center;
    justify-self: center;
    width: 100%;
    max-width: 100%;
  }

  body.approach-delivered-page .approach-corporate-section .approach-corporate-left h1 {
    margin-left: auto;
    margin-right: auto;
  }

  /* Κείμενο δίπλα/κάτω: ελαφρώς μεγαλύτερο και σταθερότερο (χωρίς αλλαγή copy) */
  body.approach-delivered-page .approach-corporate-section .approach-corporate-right p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.58;
    letter-spacing: -0.01em;
  }

  body.approach-delivered-page .approach-corporate-section .grid.grid-cols-1.lg\:grid-cols-2.gap-12.lg\:gap-0.items-center.mb-32.lg\:mb-44.fade-in-up {
    margin-bottom: 3rem;
  }

  body.approach-delivered-page section.flow-bridge-shell--editorial {
    padding-top: 1.75rem;
  }

}

/* Phase 7E.3 — shared CTA frame inside flow-bridge: keep section/orb background visible; no white section wash */
body.approach-delivered-page .approach-final-cta-shell .approach-cta-embed.humera-cta-premium {
  background-color: transparent;
  box-shadow: none;
  overflow: visible;
  isolation: auto;
}

/* Phase 7D.1 — primary "Κλείστε Συνάντηση" CTA: same transition stack as global humera-meeting-cta (calm hover; no pulse). */
body.approach-delivered-page button[data-meeting-modal-open].humera-meeting-cta {
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

/* ── Mobile: «Πέρα από το corporate wellbeing» — 2 X circles + vertical line to checkmark ── */
@media (max-width: 767px) {
  .approach-x-check-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
    position: relative;
    align-items: flex-start;
  }

  /* Horizontal line connecting the centers of the two X icon circles */
  /* top = text min-height(56px) + icon margin-top(14px) + icon-center(24px) = 94px */
  .approach-x-check-grid::before {
    content: '';
    position: absolute;
    top: 94px;
    left: 25%;
    width: 50%;
    height: 2px;
    background: rgba(14, 26, 60, 0.18);
    border-radius: 2px;
    pointer-events: none;
    z-index: 0;
  }

  /* Vertical line from horizontal midpoint down toward the checkmark */
  /* height = row1(118px) + item4-margin-top(56px) - top(94px) = 80px, +24px to reach item4 icon center = 104px */
  .approach-x-check-grid::after {
    content: '';
    position: absolute;
    top: 94px;
    left: calc(50% - 1px);
    width: 2px;
    height: 104px;
    background: linear-gradient(to bottom, rgba(14, 26, 60, 0.18) 0%, rgba(14, 26, 60, 0.06) 100%);
    border-radius: 2px;
    pointer-events: none;
    z-index: 0;
  }

  /* Items 1 & 2: side by side, centered, text above icon */
  .approach-x-check-grid > div:nth-child(1),
  .approach-x-check-grid > div:nth-child(2) {
    flex: 0 0 50% !important;
    width: 50% !important;
    flex-direction: column-reverse !important;
    align-items: center !important;
    text-align: center !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  /* Text label: min-height ensures both items are equal height so icons align */
  .approach-x-check-grid > div:nth-child(1) p,
  .approach-x-check-grid > div:nth-child(2) p {
    min-height: 56px;
    margin: 0;
  }

  /* X icon-boxes: remove bottom margin (was below icon in col-normal), add top margin (now above icon in col-reverse) */
  .approach-x-check-grid > div:nth-child(1) .icon-box,
  .approach-x-check-grid > div:nth-child(2) .icon-box {
    margin-bottom: 0 !important;
    margin-top: 14px;
  }

  /* Item 3: hidden on mobile */
  .approach-x-check-grid > div:nth-child(3) {
    display: none !important;
  }

  /* Item 4: full width, centered, offset to receive the vertical line */
  .approach-x-check-grid > div:nth-child(4) {
    flex: 0 0 100% !important;
    width: 100% !important;
    align-items: center !important;
    text-align: center !important;
    margin-top: 56px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Icon boxes centered within their flex items */
  .approach-x-check-grid > div .icon-box {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Fix D: mobile-safe approach board cards — disable hover/tap-based blur and hidden text.
   On mobile, inter-card blur-[4px] creates simultaneous GPU hits on tap (4x blur events).
   flow-reveal-text starts opacity-0/blur and only reveals on hover — invisible until tap. */
@media (max-width: 1023px) {
  /* Disable inter-card dimming + blur when another card is focused/tapped */
  body.approach-delivered-page .hover-target {
    opacity: 1 !important;
    filter: none !important;
  }

  /* Sub-phase 2E revision: reveal text ορατό ΜΟΝΟ όταν .is-active */
  body.approach-delivered-page .flow-reveal-text {
    filter: none !important;
  }

  /* Disable the large decorative blob float animation — still rendered, just static */
  body.approach-delivered-page .animate-float-delayed {
    animation: none;
  }
}

/* ============================================================
   Sub-phase 2A: Mobile Decorative Cleanup (<1024px)
   ============================================================ */
@media (max-width: 1023px) {
  body.approach-delivered-page .approach-section .bg-blob,
  body.approach-delivered-page .relative.overflow-hidden.bg-white > .absolute.inset-0.z-0.pointer-events-none,
  body.approach-delivered-page .approach-focus-section .approach-focus-soft-arc,
  body.approach-delivered-page .approach-focus-section .approach-focus-arc-outline,
  body.approach-delivered-page .approach-focus-section .approach-focus-organic-blob,
  body.approach-delivered-page .approach-focus-section .blob-base,
  body.approach-delivered-page .approach-corporate-section .absolute.inset-0.z-0,
  body.approach-delivered-page .humera-cta-premium__grid,
  body.approach-delivered-page .humera-cta-premium__icon-halo {
    display: none !important;
  }

  body.approach-delivered-page .bg-blob,
  body.approach-delivered-page .blob-base,
  body.approach-delivered-page .approach-focus-organic-blob,
  body.approach-delivered-page .approach-focus-soft-arc,
  body.approach-delivered-page .animate-float-delayed,
  body.approach-delivered-page .animate-float-slow,
  body.approach-delivered-page .animate-pulse-soft,
  body.approach-delivered-page .animate-float {
    animation: none !important;
    will-change: auto !important;
  }

  /* One-shot entrance: keep visible when animation disabled */
  body.approach-delivered-page .animate-fade-in,
  body.approach-delivered-page .fade-in-up {
    animation: none !important;
    will-change: auto !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   Sub-phase 2E (hardened): Editorial cards tap-to-activate
   Confirmed via live diagnostic: opacity:0 δεν αρκεί γιατί
   τα παιδιά του CTA wrapper έχουν δικό τους opacity:1.
   Χρησιμοποιούμε visibility + display:none για σκληρό hiding.
   ============================================================ */

/* Cursor hint */
.flow-editorial-item {
  cursor: pointer;
}

/* ===== Active state ===== */

/* Navy slide-in */
.flow-editorial-item.is-active > div.absolute.inset-0.bg-brand-navy {
  transform: translateX(0) !important;
}

/* Number color */
.flow-editorial-item.is-active span.text-slate-500 {
  color: var(--brand-orange, #D05927) !important;
}

/* Teaser text → white */
.flow-editorial-item.is-active p.text-brand-navy {
  color: #FFFFFF !important;
}

/* Orange spans inside teaser */
.flow-editorial-item.is-active p .text-brand-orange {
  color: var(--brand-orange, #D05927) !important;
}

/* Reveal answer text → show */
.flow-editorial-item.is-active .flow-reveal-text {
  opacity: 1 !important;
  filter: none !important;
  transform: translateX(0) !important;
  visibility: visible !important;
  display: block !important;
}

/* CTA wrapper → HARD HIDE όταν active. Στοχεύουμε ΟΛΑ τα πιθανά selectors. */
.flow-editorial-item.is-active .absolute.flex.items-center.text-brand-orange,
.flow-editorial-item.is-active div[class*="absolute"][class*="text-brand-orange"][class*="opacity-75"],
.flow-editorial-item.is-active > div > div > div.md\:w-\[40\%\] > div.absolute {
  opacity: 0 !important;
  visibility: hidden !important;
  display: none !important;
  pointer-events: none !important;
}

/* Επιπλέον safety: τα παιδιά του CTA wrapper δεν φαίνονται */
.flow-editorial-item.is-active .absolute.flex.items-center.text-brand-orange *,
.flow-editorial-item.is-active div[class*="absolute"][class*="text-brand-orange"][class*="opacity-75"] * {
  opacity: 0 !important;
  visibility: hidden !important;
}

/* ===== Mobile layout (≤1023px) ===== */
@media (max-width: 1023px) {
  /* INACTIVE: reveal text εντελώς εξαφανισμένο */
  .flow-editorial-item:not(.is-active) .flow-reveal-text {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* ACTIVE: reveal text σε normal block flow */
  .flow-editorial-item.is-active .flow-reveal-text {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    margin-top: 0.75rem !important;
    color: #FFFFFF !important;
  }

  /* INACTIVE: CTA πλήρως ορατό και ωραίο */
  .flow-editorial-item:not(.is-active) .absolute.flex.items-center.text-brand-orange,
  .flow-editorial-item:not(.is-active) div[class*="absolute"][class*="text-brand-orange"][class*="opacity-75"] {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    transform: translateX(0) !important;
  }

  /* Compact inactive cards: μικρότερο min-height στο right column */
  .flow-editorial-item .md\:w-\[40\%\].relative,
  .flow-editorial-item .md\:w-\[40\%\] {
    min-height: 2.5rem !important;
  }

  /* Compact padding σε inactive */
  .flow-editorial-item:not(.is-active) {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  /* Active card πιο breathing room */
  .flow-editorial-item.is-active {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
}

/* ===== Desktop: hover δουλεύει κανονικά μέσω Tailwind ===== */
