/* ============================================================
   Dr. Anne Pleșuvescu — Ecosistem · "Academy" v3
   Inspirat din stilul Brain Academy · brand #1F80FF · logo Dr. Anne
   Headings: Poppins · Body/UI: Open Sans
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Open+Sans:wght@400;500;600;700&family=Sacramento&display=swap");

:root {
  --blue: #1f80ff;
  --blue-deep: #0f5bd6;
  --blue-700: #0a3e91;
  --periwinkle: #4d6ff5;
  --sky: #e9f1ff;
  --sky-2: #f3f8ff;
  --sky-3: #fafcff;
  --ink: #13233d;
  --ink-2: #46546e;
  --muted: #7c879b;
  --line: #e5ecf6;
  --white: #ffffff;
  --amber: #ffb020;

  --accent: var(--blue);
  --accent-deep: var(--blue-deep);

  --maxw: 1200px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --sans: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --head: "Poppins", var(--sans);
  --sh-sm: 0 4px 14px rgba(19, 35, 61, 0.06);
  --sh: 0 18px 44px -20px rgba(19, 60, 120, 0.28);
  --sh-lg: 0 34px 80px -30px rgba(19, 60, 120, 0.4);
  --sh-blue: 0 18px 40px -14px rgba(31, 128, 255, 0.5);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--head);
  font-weight: 700;
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 800;
}
h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}
p {
  margin: 0 0 1rem;
}
.lead {
  font-size: clamp(1.06rem, 1.5vw, 1.25rem);
  color: var(--ink-2);
  font-weight: 400;
  line-height: 1.75;
}
.hl {
  color: var(--blue);
}

.wrap {
  width: min(100% - 2.4rem, var(--maxw));
  margin-inline: auto;
}
.section {
  padding: clamp(3.4rem, 7vw, 6.5rem) 0;
}
.center {
  text-align: center;
}
.mx {
  max-width: 62ch;
}
.mxc {
  max-width: 60ch;
  margin-inline: auto;
}

/* eyebrow pill */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sky);
  color: var(--blue-deep);
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  margin: 0 0 1.2rem;
}
.eyebrow svg {
  width: 15px;
  height: 15px;
}
.script {
  font-family: "Sacramento", cursive;
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--blue);
  line-height: 1;
  display: inline-block;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  justify-content: center;
  font-family: var(--head);
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--sh-blue);
}
.btn-primary:hover {
  background: var(--blue-deep);
  transform: translateY(-3px);
  box-shadow: 0 22px 46px -16px rgba(31, 128, 255, 0.62);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover {
  transform: translateY(-3px);
  background: #0c1830;
}
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue-deep);
  transform: translateY(-3px);
}
.btn-light {
  background: #fff;
  color: var(--blue-deep);
}
.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--blue-deep);
}
.btn-lg {
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
}

/* announcement bar */
.topbar {
  background: var(--ink);
  color: #dce6f5;
  text-align: center;
  font-size: 0.86rem;
  padding: 0.6rem 1rem;
  font-weight: 500;
}
.topbar a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.topbar svg {
  width: 15px;
  height: 15px;
  vertical-align: -2px;
  margin-right: 0.3rem;
  color: var(--blue);
}

/* nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.nav.scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 24px rgba(19, 35, 61, 0.05);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 78px;
}
.brand img {
  height: 60px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-links a {
  padding: 0.6rem 0.95rem;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink-2);
  border-radius: 999px;
  transition: 0.25s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-deep);
  background: var(--sky);
}
.nav-cta {
  margin-left: 0.5rem;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 3px;
  margin: 5px 0;
  transition: 0.3s;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 88% -10%, var(--sky) 0%, transparent 60%),
    radial-gradient(700px 500px at -5% 110%, var(--sky-2) 0%, transparent 55%),
    #fff;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2.6rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero h1 span.u {
  position: relative;
  white-space: nowrap;
}
.hero h1 span.u::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.28em;
  background: var(--sky);
  z-index: -1;
  border-radius: 3px;
}
.hero .lead {
  max-width: 48ch;
  margin: 1.5rem 0 0;
}
.hero-cta {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.hero-trust {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2.2rem;
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 600;
}
.hero-trust .stars {
  color: var(--amber);
  letter-spacing: 1px;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.hero-trust svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
}

/* hero visual: logo card + floating chips */
.hero-visual {
  position: relative;
}
.portrait {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/4.4;
  background: radial-gradient(
    120% 120% at 50% 18%,
    var(--periwinkle) 0%,
    var(--blue) 42%,
    var(--blue-deep) 100%
  );
  box-shadow: var(--sh-lg);
  display: grid;
  place-items: center;
}
.portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      40% 30% at 78% 88%,
      rgba(255, 255, 255, 0.22),
      transparent 70%
    ),
    radial-gradient(
      46% 34% at 16% 10%,
      rgba(255, 255, 255, 0.18),
      transparent 70%
    );
}
.portrait img {
  width: 78%;
  max-width: 380px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.28));
}
.portrait .ph-note {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}
.chip-float {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--sh);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  font-family: var(--head);
  font-size: 0.9rem;
  z-index: 3;
}
.chip-float small {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  color: var(--muted);
  font-size: 0.76rem;
}
.chip-float .ci {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--sky);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.chip-float .ci svg {
  width: 20px;
  height: 20px;
}
.chip-1 {
  top: 8%;
  left: -5%;
}
.chip-2 {
  bottom: 11%;
  right: -6%;
}
.chip-3 {
  bottom: 38%;
  left: -8%;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
.chip-1 {
  animation: float 5s ease-in-out infinite;
}
.chip-2 {
  animation: float 6s ease-in-out infinite 0.5s;
}
.chip-3 {
  animation: float 5.5s ease-in-out infinite 0.2s;
}

/* trust logos / credentials strip */
.credstrip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--sky-3);
}
.credstrip .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.4rem;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 0;
}
.credstrip span {
  font-family: var(--head);
  font-weight: 600;
  color: var(--ink-2);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.credstrip svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

/* section head */
.shead {
  margin-bottom: 2.6rem;
}
.shead.c {
  text-align: center;
}
.shead.c .eyebrow {
  margin-inline: auto;
}
.shead p {
  margin-top: 1rem;
}

/* placeholder image block */
.ph {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--sky), #dce9ff);
  display: grid;
  place-items: center;
  min-height: 260px;
  color: var(--blue-deep);
}
.ph .pin {
  text-align: center;
  opacity: 0.8;
}
.ph .pin svg {
  width: 46px;
  height: 46px;
  margin-bottom: 0.5rem;
}
.ph .pin b {
  display: block;
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.9rem;
}
.ph .pin small {
  font-size: 0.78rem;
  color: var(--blue-deep);
  opacity: 0.7;
}

/* about (founder-led) */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-grid .ph {
  min-height: 420px;
  aspect-ratio: 4/4.6;
}

/* pillar cards */
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pcard {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem 1.7rem;
  display: flex;
  flex-direction: column;
  transition: 0.4s var(--ease);
  overflow: hidden;
}
.pcard::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--c, var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.pcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh);
  border-color: transparent;
}
.pcard:hover::after {
  transform: scaleX(1);
}
.pcard .pi {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 1.3rem;
  background: color-mix(in srgb, var(--c, var(--blue)) 14%, #fff);
  color: var(--c, var(--blue));
}
.pcard .pi svg {
  width: 30px;
  height: 30px;
}
.pcard .tag {
  font-family: var(--head);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c, var(--blue));
  margin-bottom: 0.5rem;
}
.pcard h3 {
  margin-bottom: 0.5rem;
}
.pcard p {
  color: var(--ink-2);
  font-size: 0.97rem;
  flex: 1;
  margin: 0;
}
.pcard .go {
  margin-top: 1.3rem;
  font-family: var(--head);
  font-weight: 600;
  color: var(--c, var(--blue));
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
}
.pcard .go svg {
  width: 17px;
  height: 17px;
  transition: transform 0.3s;
}
.pcard:hover .go svg {
  transform: translateX(5px);
}

/* why-us split with checks */
.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.why .ph {
  min-height: 400px;
  aspect-ratio: 1/1;
}
.checks {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: grid;
  gap: 1rem;
}
.checks li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.checks .ck {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.checks .ck svg {
  width: 16px;
  height: 16px;
}
.checks b {
  font-family: var(--head);
  display: block;
  margin-bottom: 0.1rem;
}
.checks p {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.95rem;
}

/* feature mini grid */
.feat4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.3rem;
  margin-top: 2.6rem;
}
.feat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.7rem;
  transition: 0.4s var(--ease);
}
.feat:hover {
  box-shadow: var(--sh);
  transform: translateY(-5px);
}
.feat .fi {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--sky);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}
.feat .fi svg {
  width: 25px;
  height: 25px;
}
.feat h3 {
  font-size: 1.12rem;
  margin-bottom: 0.4rem;
}
.feat p {
  color: var(--ink-2);
  font-size: 0.94rem;
  margin: 0;
}

/* steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-top: 2.6rem;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.8rem 1.5rem;
  position: relative;
}
.step .sn {
  font-family: var(--head);
  font-weight: 800;
  font-size: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.step h3 {
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
}
.step p {
  color: var(--ink-2);
  font-size: 0.93rem;
  margin: 0;
}

/* program list cards (cursuri) */
.progs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-top: 2.6rem;
}
.prog {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: 0.4s var(--ease);
}
.prog:hover {
  box-shadow: var(--sh);
  transform: translateY(-6px);
}
.prog.feat-card {
  background: linear-gradient(150deg, var(--blue), var(--blue-deep));
  color: #fff;
  border-color: transparent;
}
.prog.feat-card * {
  color: #fff;
}
.prog .ptag {
  font-family: var(--head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.prog.feat-card .ptag {
  color: #bfe;
}
.prog h3 {
  margin: 0.6rem 0 0.2rem;
}
.prog .pm {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 1.1rem;
}
.prog.feat-card .pm {
  color: rgba(255, 255, 255, 0.7);
}
.prog ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}
.prog li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.42rem 0;
  font-size: 0.93rem;
  color: var(--ink-2);
}
.prog.feat-card li {
  color: rgba(255, 255, 255, 0.9);
}
.prog li svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex: 0 0 auto;
  margin-top: 3px;
}
.prog.feat-card li svg {
  color: #bfe;
}

/* chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}
.chip {
  background: var(--sky-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-2);
}
.chip:hover {
  border-color: var(--blue);
  color: var(--blue-deep);
}

/* video band */
.video {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: radial-gradient(
    120% 120% at 50% 0,
    var(--blue) 0,
    var(--blue-deep) 70%
  );
  min-height: 380px;
  display: grid;
  place-items: center;
  box-shadow: var(--sh-lg);
}
.video .play {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  transition: 0.3s var(--ease);
}
.video .play:hover {
  transform: scale(1.08);
}
.video .play svg {
  width: 30px;
  height: 30px;
  color: var(--blue);
  margin-left: 4px;
}
.video .vlabel {
  position: absolute;
  bottom: 1.4rem;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.84rem;
}

/* testimonials */
.tests {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.6rem;
}
.test {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--sh-sm);
}
.test .stars {
  color: var(--amber);
  letter-spacing: 2px;
  margin-bottom: 0.9rem;
}
.test p {
  font-size: 1.02rem;
  color: var(--ink);
  font-style: italic;
}
.test .who {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.3rem;
}
.test .av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--periwinkle), var(--blue));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--head);
  font-weight: 700;
  flex: 0 0 auto;
}
.test .who b {
  font-family: var(--head);
  display: block;
  font-size: 0.95rem;
}
.test .who small {
  color: var(--muted);
  font-size: 0.84rem;
}

/* lead magnet band */
.lead-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: radial-gradient(
    120% 130% at 12% 0,
    var(--periwinkle) 0,
    var(--blue) 45%,
    var(--blue-deep) 100%
  );
  color: #fff;
  padding: clamp(2.6rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}
.lead-band::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.18),
    transparent 65%
  );
  top: -120px;
  right: -60px;
}
.lead-band h2 {
  color: #fff;
  position: relative;
}
.lead-band p {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  margin-top: 0.8rem;
}
.lead-form {
  position: relative;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--r-lg);
  padding: 1.6rem;
}
.lead-form label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  display: block;
  margin-bottom: 0.4rem;
}
.lead-form input {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border-radius: 12px;
  border: 0;
  font-family: var(--sans);
  font-size: 0.96rem;
  margin-bottom: 0.9rem;
  color: var(--ink);
}
.lead-form .btn {
  width: 100%;
}
.lead-form small {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  margin-top: 0.7rem;
  text-align: center;
}

/* CTA band */
.band {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  text-align: center;
  color: #fff;
  background: radial-gradient(
    120% 130% at 50% 0,
    var(--blue) 0,
    var(--blue-deep) 70%
  );
  padding: clamp(2.8rem, 5vw, 4.4rem);
}
.band::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.16),
    transparent 65%
  );
  top: -130px;
  left: 50%;
  transform: translateX(-50%);
}
.band > * {
  position: relative;
}
.band h2 {
  color: #fff;
}
.band p {
  color: rgba(255, 255, 255, 0.9);
  margin: 1rem auto 0;
  max-width: 52ch;
}
.band .hero-cta {
  justify-content: center;
  margin-top: 2rem;
}

/* accordion */
.acc {
  margin-top: 2.4rem;
  display: grid;
  gap: 1rem;
}
.acc-item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  overflow: hidden;
  transition:
    box-shadow 0.3s,
    border-color 0.3s;
}
.acc-item.open {
  box-shadow: var(--sh-sm);
  border-color: transparent;
}
.acc-head {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 1.35rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  font-family: var(--head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  transition: color 0.25s;
}
.acc-head:hover {
  color: var(--blue-deep);
}
.acc-head .chev {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--blue);
  display: grid;
  place-items: center;
  transition: 0.35s var(--ease);
}
.acc-head .chev svg {
  width: 17px;
  height: 17px;
  transition: transform 0.35s;
}
.acc-item.open .chev {
  background: var(--blue);
  color: #fff;
}
.acc-item.open .chev svg {
  transform: rotate(45deg);
}
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.acc-body-in {
  padding: 0 1.5rem 1.4rem;
  color: var(--ink-2);
  font-size: 0.96rem;
}
.acc-body-in p {
  margin: 0 0 0.7rem;
}
.acc-body-in ul {
  margin: 0.3rem 0 0.7rem;
  padding-left: 1.1rem;
}
.acc-body-in li {
  margin: 0.3rem 0;
}

/* note */
.note {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--sky-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--r);
  padding: 1.2rem 1.4rem;
  font-size: 0.94rem;
  color: var(--ink-2);
}
.note svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
  flex: 0 0 auto;
  margin-top: 2px;
}

/* page hero (subpages) */
.phero {
  background:
    radial-gradient(800px 420px at 85% -15%, var(--sky) 0, transparent 60%),
    #fff;
  padding: clamp(2.6rem, 6vw, 4.4rem) 0 clamp(1.6rem, 4vw, 2.6rem);
}
.crumbs {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
  font-weight: 600;
}
.crumbs a:hover {
  color: var(--blue-deep);
}
.phero h1 {
  max-width: 17ch;
}
.phero .lead {
  max-width: 58ch;
  margin-top: 1.3rem;
}

/* footer */
.footer {
  background: var(--ink);
  color: #a9b6ce;
  padding: clamp(3.4rem, 6vw, 5rem) 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 2rem;
}
.footer .flogo {
  height: 120px;
  margin-bottom: 1.2rem;
}
.footer h4 {
  color: #fff;
  font-family: var(--head);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  font-weight: 600;
}
.footer a {
  display: block;
  color: #9facc6;
  padding: 0.3rem 0;
  font-size: 0.93rem;
  transition: 0.25s;
}
.footer a:hover {
  color: #fff;
}
.footer .muted {
  color: #7c89a4;
  font-size: 0.94rem;
  max-width: 34ch;
}
.foot-news input {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-family: var(--sans);
  margin-bottom: 0.7rem;
}
.foot-news input::placeholder {
  color: #8893a8;
}
.foot-news .btn {
  width: 100%;
}
.footer-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #7c89a4;
  font-size: 0.84rem;
}
.footer-bot a {
  display: inline;
}
.socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  padding: 0;
}
.socials a:hover {
  background: var(--blue);
}
.socials svg {
  width: 18px;
  height: 18px;
}

/* modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(10, 20, 40, 0.55);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.modal-overlay.show {
  display: flex;
  opacity: 1;
}
.modal {
  background: #fff;
  border-radius: var(--r-xl);
  max-width: 560px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--sh-lg);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.4s var(--ease);
}
.modal-overlay.show .modal {
  transform: none;
}
.modal-head {
  background: radial-gradient(
    120% 130% at 50% 0,
    var(--blue),
    var(--blue-deep)
  );
  color: #fff;
  padding: 1.9rem;
  position: relative;
}
.modal-head .script {
  color: rgba(255, 255, 255, 0.9);
}
.modal-head h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-top: 0.1rem;
}
.modal-head p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0.4rem 0 0;
  font-size: 0.92rem;
}
.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: rgba(255, 255, 255, 0.18);
  border: 0;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  display: grid;
  place-items: center;
  transition: 0.25s;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: rotate(90deg);
}
.modal-body {
  padding: 1.7rem;
}
.opt {
  display: flex;
  gap: 1rem;
  align-items: center;
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--r);
  padding: 1.15rem 1.3rem;
  cursor: pointer;
  margin-bottom: 0.9rem;
  transition: 0.3s var(--ease);
}
.opt:hover {
  border-color: var(--blue);
  box-shadow: var(--sh);
  transform: translateY(-2px);
}
.opt .oico {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 13px;
  background: var(--sky);
  color: var(--blue);
  display: grid;
  place-items: center;
}
.opt .oico svg {
  width: 23px;
  height: 23px;
}
.opt b {
  font-family: var(--head);
  display: block;
  font-size: 1.03rem;
  color: var(--ink);
}
.opt small {
  color: var(--muted);
  font-size: 0.86rem;
}
.opt .arr {
  margin-left: auto;
  color: var(--blue);
}
.modal-foot {
  font-size: 0.84rem;
  color: var(--muted);
  text-align: center;
  padding: 0 1.7rem 1.6rem;
}
.modal-foot a {
  color: var(--blue-deep);
  font-weight: 700;
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* responsive */
@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .why,
  .lead-band {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .hero-visual {
    max-width: 460px;
    margin-inline: auto;
    width: 100%;
  }
  .cards3 {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    position: fixed;
    inset: 78px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 1.2rem 1.3rem;
    transform: translateY(-135%);
    transition: transform 0.4s var(--ease);
    box-shadow: var(--sh);
  }
  .nav-links.open {
    transform: none;
  }
  .nav-links a {
    padding: 0.9rem 0.4rem;
    font-size: 1.02rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .nav-cta {
    margin: 0.7rem 0 0;
  }
  .nav-toggle {
    display: block;
  }
  .chip-1 {
    left: 0;
  }
  .chip-2 {
    right: 0;
  }
  .chip-3 {
    display: none;
  }
}
@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero-cta {
    flex-direction: column;
  }
  .hero-cta .btn {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---- branded illustration panels (fill placeholders, not hollow) ---- */
.illus {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  text-align: center;
  padding: 2rem;
  background: radial-gradient(
    130% 120% at 28% 4%,
    var(--periwinkle) 0,
    var(--blue) 46%,
    var(--blue-deep) 100%
  );
  color: #fff;
  box-shadow: var(--sh);
  isolation: isolate;
}
.illus::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.18),
    transparent 65%
  );
  top: -90px;
  right: -70px;
  z-index: -1;
}
.illus::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.28);
  bottom: -70px;
  left: -60px;
  z-index: -1;
}
.illus .ii {
  width: 108px;
  height: 108px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  backdrop-filter: blur(4px);
}
.illus .ii svg {
  width: 56px;
  height: 56px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.6;
}
.illus .ilogo {
  width: 74%;
  max-width: 300px;
  filter: brightness(0) invert(1) drop-shadow(0 10px 24px rgba(0, 0, 0, 0.25));
}
.illus .icap {
  font-family: var(--head);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.3;
}
.illus .isub {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: -0.5rem;
  max-width: 30ch;
}
.illus .ipills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.4rem;
}
.illus .ipill {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.illus .ipill svg {
  width: 15px;
  height: 15px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}
.portrait .pcap {
  position: absolute;
  bottom: 1.1rem;
  left: 1rem;
  right: 1rem;
  text-align: center;
  z-index: 2;
}
.portrait .pcap b {
  font-family: var(--head);
  color: #fff;
  font-size: 1rem;
  display: block;
}
.portrait .pcap small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}
/* video poster decoration */
.video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.06) 0 2px,
    transparent 2px 26px
  );
  opacity: 0.5;
}
.video::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video .play,
.video .vlabel {
  position: relative;
  z-index: 1;
}

/* ============== v3.1 — mai mult albastru, mai modern ============== */

/* HERO pe fundal albastru */
.hero.blue {
  background: radial-gradient(
    120% 120% at 82% -10%,
    #3d8bff 0,
    var(--blue) 38%,
    var(--blue-deep) 100%
  );
  color: #fff;
}
.hero.blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      40% 36% at 12% 100%,
      rgba(255, 255, 255, 0.12),
      transparent 70%
    ),
    radial-gradient(
      34% 30% at 92% 8%,
      rgba(255, 255, 255, 0.14),
      transparent 70%
    );
  pointer-events: none;
}
.hero.blue .hero-grid {
  position: relative;
  z-index: 1;
}
.hero.blue .eyebrow {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.hero.blue h1 {
  color: #fff;
}
.hero.blue .hero h1 span.u::after,
.hero.blue h1 .u::after {
  background: rgba(255, 255, 255, 0.22);
}
.hero.blue .lead {
  color: rgba(255, 255, 255, 0.92);
}
.hero.blue .hero-trust {
  color: rgba(255, 255, 255, 0.85);
}
.hero.blue .hero-trust svg {
  color: #fff;
}
.hero.blue .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.hero.blue .btn-ghost:hover {
  background: #fff;
  color: var(--blue-deep);
  border-color: #fff;
}
.hero.blue .btn-primary {
  background: #fff;
  color: var(--blue-deep);
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.4);
}
.hero.blue .btn-primary:hover {
  background: #eaf2ff;
}
.hero.blue .portrait {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.5);
}
.hero.blue .chip-float {
  color: var(--ink);
}

/* foto reală — card cu accent */
.photo-card {
  position: relative;
}
.photo-card .pimg {
  position: relative;
  z-index: 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4/5;
  background: var(--sky);
}
.photo-card .pimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-card::before {
  content: "";
  position: absolute;
  inset: auto -18px -18px auto;
  width: 62%;
  height: 62%;
  border-radius: var(--r-xl);
  background: radial-gradient(
    130% 130% at 30% 0,
    var(--periwinkle),
    var(--blue-deep)
  );
  z-index: 0;
}
.photo-card::after {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  width: 90px;
  height: 90px;
  border-radius: 22px;
  border: 2px dashed rgba(31, 128, 255, 0.4);
  z-index: 0;
}
.photo-badge {
  position: absolute;
  z-index: 2;
  left: -22px;
  bottom: 34px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--sh);
  padding: 0.8rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.9rem;
}
.photo-badge small {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  color: var(--muted);
  font-size: 0.76rem;
}
.photo-badge .pbi {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--sky);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.photo-badge .pbi svg {
  width: 21px;
  height: 21px;
}

/* slogan pe albastru */
.slogan-band {
  background: radial-gradient(
    120% 130% at 50% 0,
    var(--blue) 0,
    var(--blue-deep) 75%
  );
  color: #fff;
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.slogan-band .script {
  color: rgba(255, 255, 255, 0.9);
}
.slogan-band h2 {
  color: #fff;
  max-width: 20ch;
  margin: 0.4rem auto 0;
}

/* ecosistem: 2 carduri */
.cards2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 780px) {
  .cards2 {
    grid-template-columns: 1fr;
  }
}

/* banda separată pentru cursuri (B2B) */
.courseband {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: radial-gradient(130% 130% at 85% 0, #16336b, var(--ink) 70%);
  color: #fff;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.4rem;
  align-items: center;
  padding: clamp(2.4rem, 5vw, 3.6rem);
}
.courseband::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(31, 128, 255, 0.35),
    transparent 65%
  );
  top: -120px;
  left: -60px;
}
.courseband > * {
  position: relative;
  z-index: 1;
}
.courseband .b2b {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(31, 128, 255, 0.22);
  color: #bfe;
  border: 1px solid rgba(120, 170, 255, 0.4);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.courseband h2 {
  color: #fff;
}
.courseband p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0.8rem;
}
.courseband .cb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}
.courseband .cb-tags span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.83rem;
  font-weight: 600;
}
.courseband .cb-cta {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.courseband .cb-visual {
  display: grid;
  place-items: center;
}
.courseband .cb-visual .ii {
  width: 120px;
  height: 120px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
}
.courseband .cb-visual .ii svg {
  width: 60px;
  height: 60px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
}
@media (max-width: 780px) {
  .courseband {
    grid-template-columns: 1fr;
  }
  .courseband .cb-visual {
    display: none;
  }
}

/* avatar foto in testimonial/nav-about */
.av-photo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

/* ====== carduri principale închise (Medic + Sănătate Intimă) ====== */
.pcard.dark {
  background: radial-gradient(130% 130% at 82% 0, #16336b 0, var(--ink) 72%);
  border-color: transparent;
  color: #fff;
}
.pcard.dark::after {
  height: 0;
}
.pcard.dark .tag {
  color: #7fb2ff;
}
.pcard.dark h3 {
  color: #fff;
}
.pcard.dark p {
  color: rgba(255, 255, 255, 0.82);
}
.pcard.dark .pi {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
}
.pcard.dark .go {
  color: #9dc2ff;
}
.pcard.dark:hover {
  box-shadow: 0 30px 70px -28px rgba(11, 26, 51, 0.6);
  transform: translateY(-8px);
}

/* ====== banda cursuri pe alb (mai puțin proeminentă) ====== */
.courseband.light {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: var(--sh-sm);
}
.courseband.light::before {
  background: radial-gradient(circle, rgba(31, 128, 255, 0.1), transparent 65%);
}
.courseband.light .b2b {
  background: var(--sky);
  color: var(--blue-deep);
  border-color: var(--line);
}
.courseband.light h2 {
  color: var(--ink);
}
.courseband.light p {
  color: var(--ink-2);
}
.courseband.light .cb-tags span {
  background: var(--sky-2);
  border: 1px solid var(--line);
  color: var(--ink-2);
}
.courseband.light .cb-visual .ii {
  background: var(--sky);
  border: 1px solid var(--line);
}
.courseband.light .cb-visual .ii svg {
  stroke: var(--blue);
}

/* one-page anchor offset */
section[id],
div[id="contact-cursuri"] {
  scroll-margin-top: 104px;
}

/* delimitare clara intre pilonii de pe pagina unica */
#medic,
#sanatate-intima,
#cursuri {
  border-top: 1px solid var(--line);
}
#medic,
#sanatate-intima {
  padding-top: clamp(3.4rem, 7vw, 6rem);
}

/* programare online (Calendly inline) */
.booking-embed {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  padding: 0.4rem;
}
.booking-embed .calendly-inline-widget {
  border-radius: calc(var(--r-lg) - 6px);
  overflow: hidden;
}

.booking-embed {
  position: relative;
}
.embed-ph {
  position: absolute;
  inset: 0.4rem;
  z-index: 0;
  border-radius: calc(var(--r-lg) - 6px);
  background: linear-gradient(135deg, var(--sky), #dce9ff);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-align: center;
  color: var(--blue-deep);
  padding: 2rem;
}
.embed-ph .ii {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--sh-sm);
}
.embed-ph .ii svg {
  width: 38px;
  height: 38px;
  color: var(--blue);
}
.embed-ph b {
  font-family: var(--head);
  font-size: 1.1rem;
}
.embed-ph small {
  color: var(--blue-deep);
  opacity: 0.75;
  font-size: 0.86rem;
  max-width: 34ch;
}

/* ============ HIGHLIGHT = Creamy Avocado (#F1F9DC) + text albastru ============ */
:root {
  --avocado: #f1f9dc;
}

/* CTA band + lead-magnet band devin verde avocado cu text albastru */
.band,
.lead-band {
  background: var(--avocado) !important;
  color: var(--ink);
}
.band::before,
.lead-band::before {
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.45),
    transparent 65%
  ) !important;
}
.band h2,
.lead-band h2,
.band .script,
.lead-band .script {
  color: var(--blue-deep);
}
.band p,
.lead-band p {
  color: #274a78;
}

/* butoane pe verde: albastru plin, contrast bun */
.band .btn-light,
.lead-form .btn-light {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--sh-blue);
}
.band .btn-light:hover,
.lead-form .btn-light:hover {
  background: var(--blue-deep);
  color: #fff;
}
.band .btn-outline-light {
  background: transparent;
  color: var(--blue-deep);
  border-color: var(--blue-deep);
}
.band .btn-outline-light:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* formularul din lead-band: card alb, lizibil pe verde */
.lead-form {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
}
.lead-form label {
  color: var(--ink-2);
}
.lead-form input {
  border: 1px solid var(--line);
}
.lead-form small {
  color: var(--muted);
}

/* ============ MIX ARMONIOS — albastru brand predominant + accent avocado ============ */
/* fără navy: cardurile principale devin albastru de brand, cu accent verde */
.pcard.dark {
  background: radial-gradient(
    130% 130% at 82% 0,
    #3d8bff 0,
    #1462c8 76%
  ) !important;
}
.pcard.dark .pi {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.pcard.dark .tag {
  color: #f1f9dc;
} /* accent avocado */
.pcard.dark .go {
  color: #f1f9dc;
}
.pcard.dark h3,
.pcard.dark p {
  color: #fff;
}
.pcard.dark:hover {
  box-shadow: 0 30px 70px -28px rgba(20, 98, 200, 0.55);
}

/* footer: albastru de brand (fără navy), cu titluri în accent avocado */
.footer {
  background: radial-gradient(120% 140% at 82% 0, #2e86ff 0, #124fa8 78%);
}
.footer h4 {
  color: #f1f9dc;
}
.footer .muted {
  color: rgba(255, 255, 255, 0.82);
}
.footer a {
  color: rgba(255, 255, 255, 0.86);
}
.footer a:hover {
  color: #f1f9dc;
}
.footer .socials a {
  background: rgba(255, 255, 255, 0.14);
}
.footer .socials a:hover {
  background: #f1f9dc;
  color: #124fa8;
}
.footer-bot {
  border-top-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.7);
}

/* accent verde discret și pe eyebrow-ul benzii de cursuri (rămâne pe alb) */
.courseband.light .b2b {
  background: #edf8d6;
  color: #5e7a17;
  border-color: #dcf0ae;
}

/* ============ ECHILIBRARE VERDE — accente distribuite, albastru predominant ============ */
:root {
  --mint: #f1f9dc;
} /* avocado foarte deschis, pt tinte de sectiune */

/* banda „ghid gratuit" revine la ALBASTRU (ca sa nu fie 2 benzi verzi jos) */
.lead-band {
  background: radial-gradient(
    120% 130% at 12% 0,
    #4d9bff 0,
    #1f80ff 45%,
    #1257c0 100%
  ) !important;
  color: #fff;
}
.lead-band::before {
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2),
    transparent 65%
  ) !important;
}
.lead-band h2,
.lead-band .script {
  color: #fff !important;
}
.lead-band p {
  color: rgba(255, 255, 255, 0.9) !important;
}
.lead-form {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: none !important;
}
.lead-form label {
  color: rgba(255, 255, 255, 0.85) !important;
}
.lead-form input {
  border: 0 !important;
}
.lead-form small {
  color: rgba(255, 255, 255, 0.7) !important;
}
.lead-form .btn-light {
  background: #fff !important;
  color: var(--blue-deep) !important;
  box-shadow: none !important;
}
.lead-form .btn-light:hover {
  background: #eaf2ff !important;
}

/* accente verzi ușoare, distribuite pe pagină (sus + mijloc) */
.credstrip {
  background: var(--mint) !important;
} /* sus, sub hero */
#programare {
  background: var(--mint) !important;
} /* mijloc, la programare */
/* banda finală CTA rămâne singurul verde puternic (jos) */

/* info programare: pret / plata / metoda + acord T&C */
.book-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 0 auto 1.4rem;
  max-width: 820px;
}
.book-info .bi {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--sh-sm);
  flex: 1 1 220px;
  min-width: 200px;
}
.book-info .bi-ic {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--sky);
  color: var(--blue);
  display: grid;
  place-items: center;
}
.book-info .bi-ic svg {
  width: 22px;
  height: 22px;
}
.book-info b {
  font-family: var(--head);
  display: block;
  font-size: 1.05rem;
  color: var(--ink);
}
.book-info small {
  color: var(--muted);
  font-size: 0.84rem;
}
.book-terms {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  max-width: 820px;
  margin: 0 auto 1.8rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--r);
  padding: 1rem 1.3rem;
  font-size: 0.93rem;
  color: var(--ink-2);
}
.book-terms svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
  flex: 0 0 auto;
  margin-top: 1px;
}
.book-terms a {
  color: var(--blue-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============ O SINGURĂ NUANȚĂ galben/verde (#F1F9DC) peste tot ============ */
:root {
  --avocado: #f1f9dc;
  --mint: #f1f9dc;
}
/* pill cursuri: aceeași nuanță, text lizibil */
.courseband.light .b2b {
  background: #f1f9dc !important;
  color: #5b6b39 !important;
  border-color: #e6efc8 !important;
}

/* ============ COACHING — secțiune centrată, sub cele 2 carduri ============ */
.courseband {
  display: flex !important;
  flex-direction: column-reverse;
  align-items: center;
  text-align: center;
  grid-template-columns: none !important;
  gap: 1.4rem;
}
.courseband > div {
  max-width: 680px;
}
.courseband .b2b {
  margin-left: auto;
  margin-right: auto;
}
.courseband .cb-tags {
  justify-content: center;
}
.courseband .cb-cta {
  justify-content: center;
}
.courseband .cb-visual {
  margin-bottom: 0.2rem;
}
.courseband .cb-visual .ii {
  width: 84px;
  height: 84px;
  border-radius: 22px;
}
.courseband .cb-visual .ii svg {
  width: 42px;
  height: 42px;
}
@media (max-width: 780px) {
  .courseband .cb-visual {
    display: grid;
  }
}

/* ============ CALENDAR CUSTOM DE PROGRAMARE ============ */
.cal-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh);
  padding: clamp(1.2rem, 3vw, 2rem);
  max-width: 920px;
  margin-inline: auto;
}
.cal-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}
.cal-steps .cs {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--sky);
  color: var(--blue);
  transition: 0.3s;
}
.cal-steps .cs.active {
  background: var(--blue);
  color: #fff;
}
.cal-steps .cs.ok {
  background: #f1f9dc;
  color: #5b6b39;
}
.cal-steps i {
  width: 34px;
  height: 2px;
  background: var(--line);
}
.cal-h {
  text-align: center;
  margin-bottom: 1.4rem;
}
.cal-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
}
@media (max-width: 720px) {
  .cal-grid {
    grid-template-columns: 1fr;
  }
}
.cal-cal {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1rem;
}
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.7rem;
}
.cal-nav b {
  font-family: var(--head);
  font-size: 1.02rem;
  text-transform: capitalize;
}
.cal-nav button {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--blue);
  transition: 0.2s;
}
.cal-nav button:hover {
  background: var(--sky);
  border-color: var(--blue);
}
.cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.2rem;
  margin-bottom: 0.3rem;
}
.cal-dow span {
  text-align: center;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--muted);
}
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.28rem;
}
.cal-days button {
  aspect-ratio: 1;
  border: 0;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  transition: 0.18s;
}
.cal-days button:hover:not(:disabled) {
  background: var(--sky);
  color: var(--blue-deep);
}
.cal-days button:disabled {
  color: #c7d0de;
  cursor: not-allowed;
}
.cal-days button.sel {
  background: var(--blue);
  color: #fff;
}
.cal-days .empty {
  visibility: hidden;
}
.cal-slots {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1rem;
  min-height: 220px;
}
.cal-slots-t {
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  margin: 0.2rem 0 1rem;
  text-transform: capitalize;
}
.cal-slot-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 0.5rem;
}
.cal-slot-list button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 0.55rem 0;
  cursor: pointer;
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  transition: 0.18s;
}
.cal-slot-list button:hover {
  border-color: var(--blue);
  color: var(--blue-deep);
}
.cal-slot-list button.sel {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.cal-slots .cal-empty {
  color: var(--muted);
  font-size: 0.9rem;
}
.cal-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.cal-actions .btn:only-child {
  margin-left: auto;
}
.cal-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cal-fields .full {
  grid-column: 1/-1;
}
@media (max-width: 560px) {
  .cal-fields {
    grid-template-columns: 1fr;
  }
}
.cf label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 0.35rem;
}
.cf input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 11px;
  font-family: var(--sans);
  font-size: 0.96rem;
  transition: 0.2s;
}
.cf input:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31, 128, 255, 0.14);
}
.cf input:invalid:not(:placeholder-shown) {
  border-color: #e0607a;
}
.cf small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 0.3rem;
}
.cal-summary {
  background: var(--sky-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.3rem;
  font-size: 0.96rem;
}
.cal-summary .row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0;
  border-bottom: 1px dashed var(--line);
}
.cal-summary .row:last-child {
  border-bottom: 0;
}
.cal-summary .row b {
  font-family: var(--head);
}
.cal-check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.8rem;
  font-size: 0.93rem;
  color: var(--ink-2);
  cursor: pointer;
}
.cal-check input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--blue);
}
.cal-check a {
  color: var(--blue-deep);
  font-weight: 700;
  text-decoration: underline;
}
.cal-done {
  text-align: center;
  padding: 1.5rem 0;
}
.cal-done-ic {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #f1f9dc;
  color: #5b6b39;
  display: grid;
  place-items: center;
  margin: 0 auto 1.2rem;
}
.cal-done-ic svg {
  width: 38px;
  height: 38px;
}
.cal-done-txt {
  font-family: var(--head);
  font-weight: 600;
  color: var(--ink);
  font-size: 1.05rem;
}
.cal-done-sub {
  color: var(--ink-2);
  max-width: 46ch;
  margin: 0.5rem auto 1.4rem;
}
.cal-err {
  color: #c23b57;
  font-size: 0.88rem;
  text-align: center;
  margin-top: 0.8rem;
  min-height: 1.1em;
}

/* ACCORDIONS */
ul li {
  text-align: left;
}
