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

body.approach-delivered-page {
  background: var(--color-bg-soft);
}

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: linear-gradient(
    180deg,
    var(--color-bg-soft) 0%,
    #f9f9f7 56%,
    #f8f9fa 100%
  );
  overflow: hidden;
  padding: 0 20px calc(var(--section-y-tight) - 4px);
  margin-top: 0;
}

/* Dotted layer starts exactly at section top (under header) */
body.approach-delivered-page .approach-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(208, 89, 39, 0.055) 2px, transparent 2px);
  background-size: 32px 32px;
  background-repeat: repeat;
  background-position: 0 0;
  animation: panBackground 20s linear infinite;
  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.6;
}

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: 768px) {
  body.approach-delivered-page .approach-section {
    padding: 0 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;
  }
}

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