:root {
  --ink: #271344;
  --text: #282331;
  --muted: #5f5968;
  --pink: #ff4f87;
  --red: #e4192f;
  --coral: #ff6468;
  --green: #9fca45;
  --gold: #ffc21c;
  --soft: #fcf9f4;
  --shadow: 0 20px 45px rgba(39, 19, 68, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Open Sans", Arial, sans-serif;
  background:
    radial-gradient(circle at 4% 18%, rgba(159, 202, 69, 0.1) 0 34px, transparent 35px),
    radial-gradient(circle at 94% 42%, rgba(255, 79, 135, 0.08) 0 42px, transparent 43px),
    #fff;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

body > .site-header,
.site-header.dynamic-header,
.page-header {
  display: none !important;
}

.page .entry-title,
.type-page > .entry-title,
.site-footer:not(.edugreen-footer) {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 248, 235, 0.98) 0%, rgba(255, 255, 255, 0.98) 54%, rgba(240, 247, 225, 0.98) 100%);
  border-bottom: 1px solid rgba(39, 19, 68, 0.08);
  padding: 10px clamp(18px, 5vw, 64px) 12px;
  box-shadow: 0 12px 34px rgba(39, 19, 68, 0.12);
}

body.admin-bar .topbar {
  top: 32px;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand img {
  width: 132px;
  height: auto;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid rgba(159, 202, 69, 0.36);
  border-radius: 16px;
  filter: drop-shadow(0 10px 18px rgba(39, 19, 68, 0.12));
}

.quick-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-size: 16px;
}

.quick-info a:not(.quick-cta):not(.social-dot) {
  color: var(--pink);
  font-weight: 800;
}

.quick-info span {
  color: #392b48;
  font-weight: 700;
}

.quick-cta {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  color: #271344;
  font-size: 14px;
  font-weight: 900;
  background: #ffcf4d;
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease;
}

.quick-cta:hover {
  background: #fff;
  transform: translateY(-2px);
}

.quick-cta--mail {
  color: #fff;
  background: var(--pink);
}

.social-dot {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  font-weight: 800;
  background: #20b8ef;
  border-radius: 50%;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 27px);
  max-width: 1080px;
  margin: 12px auto 0;
  padding: 12px 24px;
  overflow-x: auto;
  color: #21142e;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(39, 19, 68, 0.08);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(39, 19, 68, 0.11);
  scrollbar-width: none;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
  position: relative;
  font-size: 15px;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 4px;
  content: "";
  background: var(--pink);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav a:hover {
  color: var(--pink);
  transform: translateY(-2px);
}

.nav a:hover::after,
.nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav a.is-active {
  color: var(--pink);
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: 46px;
  align-items: center;
  min-height: 760px;
  padding: 110px clamp(22px, 5vw, 74px) 92px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: -8vw;
  bottom: -98px;
  left: -8vw;
  height: 170px;
  content: "";
  background: #fff;
  border-radius: 50% 50% 0 0;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: #25212b;
  font-size: clamp(43px, 4.5vw, 66px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  color: var(--red);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  color: #2b2432;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  color: #fff;
  font-weight: 800;
  background: var(--ink);
  border: 0;
  border-radius: 10px;
  box-shadow: 0 9px 0 rgba(39, 19, 68, 0.18);
  cursor: pointer;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent 0 35%, rgba(255, 255, 255, 0.35) 45%, transparent 56% 100%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 0 rgba(39, 19, 68, 0.13);
}

.button:hover::after {
  transform: translateX(120%);
}

.button--light {
  color: var(--ink);
  background: #fff;
}

.button--phone {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 9px 0 rgba(255, 194, 28, 0.3);
}

.button--pink {
  background: var(--pink);
  box-shadow: 0 9px 0 rgba(255, 79, 135, 0.25);
  animation: softPulse 2.4s ease-in-out infinite;
}

.hero__media {
  position: relative;
  z-index: 2;
  min-height: 500px;
  overflow: hidden;
  border-radius: 0 0 0 120px;
  box-shadow: var(--shadow);
}

.hero__media img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.page-hero {
  min-height: 620px;
}

.hero--home {
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  min-height: 790px;
  background: #fff;
}

.hero--home::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, #fff 0 37%, rgba(255, 255, 255, 0.94) 48%, rgba(255, 255, 255, 0.7) 58%, rgba(255, 255, 255, 0.08) 78%),
    radial-gradient(circle at 82% 16%, rgba(255, 207, 77, 0.32) 0 9%, transparent 10%),
    radial-gradient(circle at 18% 24%, rgba(32, 184, 239, 0.08), transparent 24%);
  pointer-events: none;
}

.hero--home::after {
  z-index: 5;
  height: 150px;
  background: #fff;
  transform: rotate(-1deg);
}

.hero--home .hero__copy {
  z-index: 6;
  margin-left: clamp(6px, 4vw, 86px);
}

.hero--home .eyebrow {
  color: var(--pink);
  font-size: 28px;
  font-weight: 900;
}

.hero--home .hero__media {
  position: absolute;
  inset: 0 0 0 39%;
  z-index: 0;
  min-height: 100%;
  border-radius: 0;
  box-shadow: none;
}

.hero--home .hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), transparent 36%);
}

.hero--home .hero__media img {
  width: 100%;
  height: 100%;
  min-height: 790px;
  object-fit: cover;
  object-position: center;
}

.shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  animation: floaty 4.8s ease-in-out infinite;
}

.shape--sun {
  top: 180px;
  right: 42px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff3a5 0 18%, #ffcf4d 19% 100%);
}

.shape--cloud {
  top: 240px;
  right: 300px;
  width: 150px;
  height: 52px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 22px rgba(39, 19, 68, 0.16);
}

.shape--cloud::before,
.shape--cloud::after {
  position: absolute;
  bottom: 18px;
  content: "";
  background: #fff;
  border-radius: 50%;
}

.shape--cloud::before {
  left: 24px;
  width: 58px;
  height: 58px;
}

.shape--cloud::after {
  right: 24px;
  width: 70px;
  height: 70px;
}

.shape--pencil {
  top: 314px;
  left: 46%;
  width: 84px;
  height: 18px;
  background: linear-gradient(90deg, #ffd166 0 72%, #271344 73% 88%, #ff7a59 89%);
  border-radius: 999px;
  transform: rotate(-12deg);
}

.hero--home .shape {
  z-index: 6;
}

.hero--home .shape--sun {
  top: 30px;
  right: 9%;
  width: 112px;
  height: 112px;
  animation: sunPeek 7s ease-in-out infinite;
}

.hero--home .shape--cloud {
  top: 72px;
  right: 7%;
  width: 220px;
  height: 72px;
  animation: cloudDrift 8s ease-in-out infinite;
}

.hero--home .shape--cloud::before {
  left: 42px;
  width: 82px;
  height: 82px;
}

.hero--home .shape--cloud::after {
  right: 36px;
  width: 96px;
  height: 96px;
}

.hero--home .shape--cloud-small {
  top: 78px;
  right: 39%;
  width: 130px;
  height: 42px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(39, 19, 68, 0.14);
  animation: cloudDriftSmall 6.8s ease-in-out infinite;
}

.hero--home .shape--cloud-small::before,
.hero--home .shape--cloud-small::after {
  position: absolute;
  bottom: 13px;
  content: "";
  background: #fff;
  border-radius: 50%;
}

.hero--home .shape--cloud-small::before {
  left: 23px;
  width: 52px;
  height: 52px;
}

.hero--home .shape--cloud-small::after {
  right: 24px;
  width: 60px;
  height: 60px;
}

.hero--home .shape--pencil {
  top: auto;
  right: 31%;
  bottom: 205px;
  left: auto;
  width: 112px;
  height: 22px;
  animation: pencilFloat 5.8s ease-in-out infinite;
}

.shape--rainbow {
  right: -82px;
  bottom: 74px;
  width: 390px;
  height: 236px;
  overflow: visible;
  border-radius: 390px 390px 0 0;
  background: radial-gradient(ellipse at center bottom, transparent 0 36%, #fff 37% 43%, #5a38ff 44% 49%, #188dff 50% 55%, #25c75b 56% 61%, #ffe14b 62% 67%, #ff8a00 68% 73%, #ff3131 74% 80%, transparent 81%);
  animation: rainbowFloat 7.5s ease-in-out infinite;
}

.shape--rainbow::before {
  position: absolute;
  right: 90px;
  bottom: -20px;
  width: 168px;
  height: 52px;
  content: "";
  background: #fff;
  border-radius: 999px;
  box-shadow:
    -54px 0 0 8px #fff,
    40px -8px 0 10px #fff,
    94px 4px 0 12px #fff,
    0 12px 26px rgba(39, 19, 68, 0.14);
}

.shape--rainbow::after {
  position: absolute;
  top: 92px;
  left: 76px;
  width: 14px;
  height: 14px;
  content: "";
  background: #fff;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  filter: drop-shadow(72px 38px 0 #fff) drop-shadow(142px -8px 0 #fff);
  animation: sparkle 1.6s ease-in-out infinite;
}

.shape--bird {
  top: 18px;
  left: 12%;
  width: 68px;
  height: 48px;
  background: #ffc857;
  clip-path: polygon(9% 35%, 46% 8%, 62% 34%, 94% 40%, 63% 54%, 50% 92%, 35% 56%);
  transform: rotate(18deg);
  animation: birdFly 7s ease-in-out infinite;
}

.shape--bird::before {
  position: absolute;
  top: 18px;
  left: 7px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--pink);
  border-radius: 50%;
}

.shape--leaf {
  top: 176px;
  left: -22px;
  width: 74px;
  height: 30px;
  background: linear-gradient(135deg, #8dc63f, #4caf50);
  border-radius: 80% 0 80% 0;
  transform: rotate(16deg);
  animation: leafSway 5.5s ease-in-out infinite;
}

.shape--leaf::after {
  position: absolute;
  top: 14px;
  left: 10px;
  width: 54px;
  height: 2px;
  content: "";
  background: rgba(255, 255, 255, 0.55);
  transform: rotate(-10deg);
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes cloudDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-18px, 10px, 0);
  }
}

@keyframes cloudDriftSmall {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(24px, -8px, 0) scale(1.04);
  }
}

@keyframes sunPeek {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(14px) rotate(12deg);
  }
}

@keyframes rainbowFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.84);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes birdFly {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(18deg);
  }

  50% {
    transform: translate3d(28px, -12px, 0) rotate(10deg);
  }
}

@keyframes leafSway {
  0%,
  100% {
    transform: rotate(16deg) translateY(0);
  }

  50% {
    transform: rotate(4deg) translateY(8px);
  }
}

@keyframes pencilFloat {
  0%,
  100% {
    transform: rotate(-12deg) translateY(0);
  }

  50% {
    transform: rotate(-7deg) translateY(-12px);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 9px 0 rgba(255, 79, 135, 0.25), 0 0 0 0 rgba(255, 79, 135, 0.25);
  }

  50% {
    box-shadow: 0 9px 0 rgba(255, 79, 135, 0.18), 0 0 0 12px rgba(255, 79, 135, 0);
  }
}

@keyframes bounceSoft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes spinAround {
  0% {
    transform: translateX(-50%) rotate(0deg);
  }

  100% {
    transform: translateX(-50%) rotate(360deg);
  }
}

.service-tile span {
  animation-name: spinTileCircle;
}

@keyframes spinTileCircle {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.intro,
.section-title,
.testimonials,
.gallery {
  max-width: 840px;
  margin: 0 auto;
  padding: 86px 22px 54px;
  text-align: center;
}

.intro h2,
.daily h2,
.services-showcase h2,
.testimonials-strip h2 {
  position: relative;
  display: inline-block;
}

.intro h2::after,
.daily h2::after,
.services-showcase h2::after,
.testimonials-strip h2::after {
  position: absolute;
  right: 12%;
  bottom: -12px;
  left: 12%;
  height: 7px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--pink) 0 12px, transparent 12px 20px);
  border-radius: 999px;
}

.cards,
.activity-grid,
.service-grid,
.testimonial-grid,
.gallery__grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: 22px;
}

.cards--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  padding-bottom: 70px;
}

.color-card {
  position: relative;
  min-height: 405px;
  padding: 42px 28px;
  color: #fff;
  text-align: center;
  border-radius: 24px;
  box-shadow: inset 0 -10px 0 rgba(0, 0, 0, 0.12), var(--shadow);
  transition: transform 200ms ease;
}

.color-card::before {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 112px;
  height: 112px;
  content: "";
  border: 2px dashed rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: spinAround 15s linear infinite;
}

.color-card:hover {
  transform: translateY(-12px) rotate(-1deg);
}

.color-card img {
  width: 142px;
  height: 142px;
  margin: 0 auto 28px;
  object-fit: cover;
  border: 2px dashed rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  outline: 10px solid rgba(255, 255, 255, 0.12);
  transition: transform 260ms ease;
}

.color-card:hover img {
  transform: scale(1.08) rotate(3deg);
}

.color-card h3,
.color-card p {
  color: #fff;
}

.color-card--coral {
  background: var(--coral);
}

.color-card--green {
  background: var(--green);
}

.color-card--gold {
  background: var(--gold);
}

.signup-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 22px 88px;
}

.signup-strip h2 {
  color: #2a2331;
  font-size: clamp(28px, 3vw, 38px);
}

.mission {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  padding: 90px clamp(22px, 5vw, 74px);
  background: var(--soft);
}

.mission__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: transform 340ms ease, filter 340ms ease;
}

.mission__image:hover img {
  filter: saturate(1.12);
  transform: scale(1.025) rotate(-0.6deg);
}

.mission__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.mission__grid article,
.activity,
.service,
.testimonials article {
  position: relative;
  padding: 28px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.mission__grid article:hover,
.activity:hover,
.service:hover,
.testimonials article:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 58px rgba(39, 19, 68, 0.18);
}

.activity-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding-bottom: 86px;
}

.activity img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
}

.activity p,
.service p,
.testimonials p {
  font-size: 16px;
}

.brand-divider {
  display: grid;
  min-height: 260px;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(rgba(39, 19, 68, 0.62), rgba(39, 19, 68, 0.62)),
    url("../img/edugreen-afterschool-geografie-cu-glob-37.jpg") center / cover;
}

.brand-divider h2 {
  color: #fff;
  font-size: clamp(46px, 8vw, 110px);
}

.services {
  padding-bottom: 90px;
}

.section-block {
  padding: 80px clamp(22px, 5vw, 74px);
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-inline: 0;
}

.service-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service h3::before {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  place-items: center;
  content: "*";
  color: #fff;
  background: var(--pink);
  border-radius: 50%;
  transition: transform 260ms ease, background 260ms ease;
}

.service:hover h3::before {
  background: var(--gold);
  transform: rotate(18deg) scale(1.12);
}

.daily {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  padding: 92px 22px 110px;
  text-align: center;
}

.daily::before {
  position: absolute;
  top: 230px;
  bottom: 90px;
  left: 50%;
  width: 2px;
  content: "";
  background: linear-gradient(var(--pink), var(--green), var(--gold), #20b8ef);
  opacity: 0.22;
}

.daily__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 150px;
  margin-top: 74px;
}

.daily__item {
  position: relative;
  min-height: 126px;
  padding: 18px 0;
  transition: transform 240ms ease;
}

.daily__item:hover {
  transform: translateY(-8px);
}

.daily__item--left {
  text-align: right;
}

.daily__item--right {
  text-align: left;
}

.daily__dot {
  position: absolute;
  top: 28px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 8px solid #fff;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(39, 19, 68, 0.18);
  animation: bounceSoft 3.6s ease-in-out infinite;
}

.daily__item--left .daily__dot {
  right: -105px;
}

.daily__item--right .daily__dot {
  left: -105px;
}

.daily__dot--green {
  background: var(--green);
}

.daily__dot--blue {
  background: #20b8ef;
}

.daily__dot--coral {
  background: var(--coral);
}

.daily__dot--gold {
  background: var(--gold);
}

.services-showcase {
  padding: 92px clamp(22px, 5vw, 74px);
  text-align: center;
}

.service-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1040px;
  margin: 64px auto 0;
}

.service-tile {
  position: relative;
  min-height: 248px;
  padding: 58px 30px 30px;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.service-tile:hover {
  transform: translateY(-12px) rotate(-0.7deg);
  box-shadow: 0 30px 70px rgba(39, 19, 68, 0.2);
}

.service-tile::after {
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 110px;
  height: 110px;
  content: "";
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: scale(0.9);
  transition: transform 260ms ease;
}

.service-tile:hover::after {
  transform: scale(1.45);
}

.service-tile span {
  position: absolute;
  top: 34px;
  left: 30px;
  width: 54px;
  height: 54px;
  border: 6px solid #fff;
  border-radius: 50%;
  animation: spinAround 14s linear infinite;
}

.service-tile h3,
.service-tile p {
  position: relative;
  z-index: 1;
  color: #fff;
}

.service-tile h3 {
  margin-top: 58px;
}

.service-tile--green {
  background: var(--green);
}

.service-tile--coral {
  background: var(--coral);
}

.service-tile--gold {
  background: var(--gold);
}

.testimonials-strip {
  padding: 86px clamp(22px, 5vw, 74px) 0;
  text-align: center;
  background: var(--soft);
}

.testimonial-placeholders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 52px auto 70px;
}

.testimonial-placeholders article {
  padding: 34px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: transform 240ms ease;
}

.testimonial-placeholders article:hover {
  transform: translateY(-8px);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 48px 28px;
  background: var(--green);
}

.stats-band div {
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  justify-self: center;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  transition: transform 240ms ease, background 240ms ease;
}

.stats-band div:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-8px) scale(1.04);
}

.stats-band strong {
  margin-top: 22px;
  font-size: 30px;
}

.stats-band span {
  max-width: 90px;
  margin-top: -12px;
  font-size: 12px;
  line-height: 1.35;
}

.final-signup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 30px 0 52px;
  text-align: left;
}

.testimonials {
  max-width: none;
  background: var(--soft);
}

.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-bottom: 58px;
}

.final-cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: 90px clamp(22px, 5vw, 74px);
}

.final-cta div {
  padding: 34px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.gallery {
  max-width: none;
}

.gallery__grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
  padding-bottom: 84px;
}

.gallery__grid--many {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery__grid img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: transform 320ms ease, filter 320ms ease, box-shadow 320ms ease;
}

.gallery__grid img:hover {
  filter: saturate(1.12) brightness(1.04);
  transform: translateY(-8px) scale(1.035);
  box-shadow: 0 30px 70px rgba(39, 19, 68, 0.22);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
  padding: 88px clamp(22px, 5vw, 74px);
  color: #fff;
  background: var(--ink);
}

.contact h2,
.contact p {
  color: #fff;
}

.contact__form {
  display: grid;
  gap: 14px;
  scroll-margin-top: 150px;
}

.cta-cards {
  display: grid;
  gap: 12px;
}

.cta-cards--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.cta-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  min-height: 104px;
  padding: 18px 20px 18px 58px;
  color: #271344;
  background: #fff;
  border: 1px solid rgba(39, 19, 68, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(39, 19, 68, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cta-card::before {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #271344;
  font-size: 16px;
  font-weight: 900;
  background: var(--gold);
  border-radius: 50%;
  content: "!";
}

.cta-card[href^="tel:"]::before {
  content: "☎";
}

.cta-card[href^="mailto:"]::before {
  color: #fff;
  background: #20b8ef;
  content: "@";
}

.cta-card[href*="inscriere"]::before {
  color: #fff;
  background: var(--pink);
  content: "✓";
}

.cta-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 78, 140, 0.34);
  box-shadow: 0 22px 44px rgba(39, 19, 68, 0.2);
}

.cta-card strong {
  color: var(--pink);
  font-size: 16px;
}

.cta-card span {
  color: #473c53;
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.elementor-widget-edugreen_cta_cards .elementor-widget-container {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 22px;
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 194, 28, 0.24), transparent 24%),
    linear-gradient(135deg, rgba(255, 248, 235, 0.96), rgba(241, 248, 225, 0.96));
  border: 1px solid rgba(39, 19, 68, 0.08);
  border-radius: 24px;
  box-shadow: 0 20px 52px rgba(39, 19, 68, 0.12);
}

.elementor-widget-edugreen_cta_cards .cta-cards--compact {
  margin-top: 0;
}

.contact__form label {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.contact__form label span {
  color: #ffcf4d;
}

.contact__form input,
.contact__form textarea,
.contact__form select {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  color: #23192e;
  font: inherit;
  background: #fff;
  border: 0;
  border-radius: 10px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact__form input:focus,
.contact__form textarea:focus,
.contact__form select:focus {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(255, 207, 77, 0.38);
  transform: translateY(-2px);
}

.contact__form select {
  appearance: auto;
}

.contact__form textarea {
  min-height: 132px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  line-height: 1.5;
}

.form-checkbox input {
  width: 20px;
  min-height: 20px;
  margin-top: 4px;
}

.form-hp {
  display: none;
}

.form-notice {
  padding: 14px 16px;
  color: #1f172b;
  background: #fff;
  border-radius: 10px;
  font-weight: 800;
}

.form-notice--success {
  border-left: 6px solid var(--green);
}

.form-notice--error {
  border-left: 6px solid var(--coral);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(160px, 1fr));
  gap: 30px;
  box-sizing: border-box;
  width: 100vw !important;
  max-width: none !important;
  margin-right: calc(50% - 50vw) !important;
  margin-left: calc(50% - 50vw) !important;
  padding: 54px clamp(22px, 5vw, 74px) 24px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 16%, rgba(255, 194, 28, 0.16), transparent 24%),
    radial-gradient(circle at 92% 20%, rgba(159, 202, 69, 0.2), transparent 22%),
    linear-gradient(135deg, #271344 0%, #332055 58%, #1f5148 100%);
  border-top: 8px solid #ffc21c;
}

.footer-logo {
  display: inline-block;
  padding: 9px 13px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.footer-logo img {
  width: 154px;
  height: auto;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  margin: 10px 0 0;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 18px;
}

.footer-column h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 20px;
}

.footer-column a,
.footer-social {
  color: #fff;
}

.footer-social {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 14px;
  color: #271344;
  font-weight: 800;
  background: #ffc21c;
  border-radius: 10px;
  transition: transform 180ms ease, background 180ms ease;
}

.footer-social:hover,
.footer-cta:hover {
  transform: translateY(-3px);
}

.footer-nav {
  display: grid;
  gap: 9px;
}

.footer-nav a {
  color: #fff;
  opacity: 0.82;
  transition: transform 180ms ease, opacity 180ms ease, color 180ms ease;
}

.footer-nav a:hover,
.footer-column a:hover {
  opacity: 1;
  color: #ffcf4d;
  transform: translateX(4px);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 18px;
  padding: 0 20px;
  color: #271344;
  font-weight: 800;
  background: #ffc21c;
  border-radius: 10px;
  box-shadow: 0 8px 0 rgba(255, 194, 28, 0.2);
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.66);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 14px;
}

.mobile-action-bar {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.elementor-widget-edugreen_hero,
.elementor-widget-edugreen_service_tiles,
.elementor-widget-edugreen_daily,
.elementor-widget-edugreen_color_cards,
.elementor-widget-edugreen_info_grid,
.elementor-widget-edugreen_gallery,
.elementor-widget-edugreen_testimonials_stats,
.elementor-widget-edugreen_signup_strip,
.elementor-widget-edugreen_cta_cards,
.elementor-widget-edugreen_form {
  width: 100%;
}

.elementor-widget-edugreen_hero .hero,
.elementor-widget-edugreen_form .edugreen-shortcode-form {
  width: 100vw;
  max-width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.elementor-widget-edugreen_service_tiles .services-showcase,
.elementor-widget-edugreen_daily .daily,
.elementor-widget-edugreen_gallery .gallery,
.elementor-widget-edugreen_testimonials_stats .testimonials-strip,
.elementor-widget-edugreen_signup_strip .signup-strip {
  width: 100%;
}

.elementor-editor-active .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1060px) {
  .activity-grid,
  .service-grid,
  .service-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .daily__grid {
    gap: 34px 110px;
  }

  .daily__item--left .daily__dot {
    right: -84px;
  }

  .daily__item--right .daily__dot {
    left: -84px;
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: 78px;
  }

  body.admin-bar .topbar {
    top: 46px;
  }

  .topbar {
    padding: 10px 18px 12px;
  }

  .signup-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar__inner {
    align-items: center;
    gap: 12px;
  }

  .quick-info {
    align-items: flex-end;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    margin-left: auto;
    font-size: 13px;
    line-height: 1.25;
  }

  .quick-info span {
    flex-basis: auto;
    max-width: 230px;
    text-align: right;
  }

  .quick-cta {
    min-height: 32px;
    padding-inline: 12px;
  }

  .nav {
    width: min(100%, 760px);
    margin-top: 10px;
    padding: 10px 14px;
    justify-content: flex-start;
    gap: 18px;
    border-radius: 16px;
    scroll-padding-inline: 14px;
    scroll-snap-type: x proximity;
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 34px), transparent 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 34px), transparent 100%);
  }

  .nav a {
    scroll-snap-align: start;
  }

  .hero,
  .mission,
  .contact,
  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero--home {
    min-height: 760px;
    padding-bottom: 410px;
  }

  .hero--home::before {
    background:
      linear-gradient(180deg, #fff 0 47%, rgba(255, 255, 255, 0.92) 58%, rgba(255, 255, 255, 0.24) 78%),
      radial-gradient(circle at 82% 16%, rgba(255, 207, 77, 0.24) 0 9%, transparent 10%);
  }

  .hero--home .hero__copy {
    margin-left: 0;
  }

  .hero--home .hero__media {
    inset: auto 0 0;
    height: 430px;
    min-height: 430px;
  }

  .hero--home .hero__media::after {
    background: linear-gradient(180deg, #fff 0, rgba(255, 255, 255, 0.04) 34%);
  }

  .hero--home .hero__media img {
    min-height: 430px;
  }

  .shape--rainbow {
    right: -118px;
    bottom: 48px;
    width: 320px;
    height: 196px;
  }

  .hero--home .shape--cloud {
    right: 14px;
  }

  .cards--three,
  .gallery__grid,
  .testimonial-grid,
  .daily__grid,
  .testimonial-placeholders,
  .stats-band {
    grid-template-columns: 1fr;
  }

  .daily::before {
    left: 50px;
  }

  .daily__item,
  .daily__item--left,
  .daily__item--right {
    padding-left: 112px;
    text-align: left;
  }

  .daily__item--left .daily__dot,
  .daily__item--right .daily__dot {
    left: 20px;
    right: auto;
  }

  .stats-band div {
    width: 150px;
    height: 150px;
  }

  .final-signup {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 22px;
  }

  .contact {
    gap: 26px;
    padding-top: 70px;
  }

  .elementor-widget-edugreen_cta_cards .elementor-widget-container {
    width: calc(100% - 32px);
    padding: 14px;
    border-radius: 20px;
  }

  .cta-cards--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .cta-cards--compact .cta-card {
    align-items: center;
    min-height: 96px;
    padding: 52px 12px 14px;
    text-align: center;
  }

  .cta-cards--compact .cta-card::before {
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
  }

  .cta-cards--compact .cta-card:nth-child(1) {
    order: 1;
  }

  .cta-cards--compact .cta-card:nth-child(3) {
    order: 2;
  }

  .cta-cards--compact .cta-card:nth-child(2) {
    grid-column: 1 / -1;
    order: 3;
  }

  .mobile-action-bar {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    padding: 8px;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border: 2px solid rgba(39, 19, 68, 0.2);
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(39, 19, 68, 0.28);
    backdrop-filter: blur(10px);
  }

  .mobile-action-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 6px;
    color: #271344;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    background: #fff;
    border-radius: 12px;
  }

  .mobile-action-bar a:nth-child(2) {
    color: #fff;
    background: var(--pink);
  }

  .mobile-action-bar a:nth-child(1) {
    background: var(--gold);
  }

  .mobile-action-bar a:nth-child(3) {
    color: #fff;
    background: #20b8ef;
  }

  .mobile-action-bar a:nth-child(4) {
    color: #271344;
    background: #d8ec8e;
  }

  .mission__grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 86px;
  }

  .topbar {
    padding: 8px 12px 10px;
  }

  .topbar__inner {
    gap: 10px;
  }

  .brand img {
    width: 100px;
    padding: 7px 10px;
    border-radius: 14px;
  }

  .quick-info {
    gap: 5px;
    font-size: 12px;
  }

  .quick-info span {
    max-width: 180px;
  }

  .quick-cta {
    min-height: 30px;
    padding-inline: 11px;
    font-size: 13px;
  }

  .nav {
    width: calc(100% - 24px);
    margin-top: 8px;
    padding: 10px 12px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    overflow: visible;
    border-radius: 20px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .nav a {
    padding-block: 3px;
    font-size: 13px;
    line-height: 1.1;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .hero {
    padding-top: 52px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 340px);
  }

  .button {
    width: 100%;
  }

  .hero__media,
  .hero__media img {
    min-height: 330px;
  }

  .shape--cloud,
  .shape--sun,
  .shape--pencil,
  .shape--cloud-small,
  .shape--bird,
  .shape--leaf {
    display: none;
  }

  .hero--home {
    min-height: 700px;
    padding-top: 56px;
    padding-bottom: 330px;
  }

  .hero--home .hero__media,
  .hero--home .hero__media img {
    min-height: 330px;
    height: 330px;
  }

  .shape--rainbow {
    right: -138px;
    bottom: 28px;
    width: 270px;
    height: 166px;
  }

  .activity-grid,
  .service-grid,
  .service-grid--two,
  .service-grid--three,
  .service-tiles {
    grid-template-columns: 1fr;
  }

  .daily {
    padding-top: 70px;
  }

  .daily::before {
    display: none;
  }

  .daily__item,
  .daily__item--left,
  .daily__item--right {
    padding-left: 0;
    text-align: center;
  }

  .daily__item--left .daily__dot,
  .daily__item--right .daily__dot {
    position: static;
    margin: 0 auto 18px;
  }

  .service-tile {
    min-height: 220px;
  }

  .contact {
    padding-inline: 18px;
  }

  .contact__form {
    scroll-margin-top: 124px;
  }

  .mobile-action-bar {
    right: 8px;
    bottom: 8px;
    left: 8px;
    gap: 6px;
    border-radius: 16px;
  }

  .mobile-action-bar a {
    min-height: 42px;
    font-size: 12px;
  }
}
