:root {
  --green: #163423;
  --green-2: #28523a;
  --green-soft: #edf5ef;
  --gold: #c99725;
  --gold-soft: #fff4cf;
  --purple: #7b2f8f;
  --rust: #a44a3f;
  --white: #ffffff;
  --cream: #f8f4ec;
  --ink: #18231d;
  --text: #334139;
  --muted: #657269;
  --line: #e5e0d6;
  --shadow: 0 24px 64px rgba(22, 52, 35, .11);
  --shadow-soft: 0 14px 38px rgba(22, 52, 35, .07);
  --glass: rgba(255, 255, 255, .66);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-premium: cubic-bezier(.16, 1, .3, 1);
  --scroll: 0%;
  --parallax-y: 0px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 86% 8%, rgba(201, 151, 37, .09), transparent 24rem),
    radial-gradient(circle at 10% 18%, rgba(123, 47, 143, .045), transparent 22rem),
    var(--white);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(22, 52, 35, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 52, 35, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent 72%);
  pointer-events: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(22px, 3vw, 36px);
  min-height: 80px;
  padding: 20px clamp(24px, 7vw, 104px);
  width: 100%;
  background: #ffffff !important;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(22, 52, 35, .08);
  isolation: isolate;
  opacity: 1;
  backdrop-filter: none;
}

.navbar::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: var(--scroll);
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--gold), #25d366, var(--purple));
  transition: width .1s linear;
}

.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  width: clamp(106px, 9.8vw, 140px);
  min-height: 52px;
  padding: 10px 12px;
  color: var(--green);
  isolation: isolate;
  animation:
    logoIntro 1.45s var(--ease-premium) both,
    logoBreath 9.5s ease-in-out 1.45s infinite alternate;
  transition: color .28s ease, transform .28s var(--ease-premium), filter .28s ease;
}

.logo::before {
  position: absolute;
  inset: -7px -18px -10px;
  z-index: -1;
  content: "";
  border-radius: 999px;
  background:
    radial-gradient(circle at 44% 58%, rgba(201, 151, 37, .2), transparent 56%),
    radial-gradient(circle at 70% 62%, rgba(123, 47, 143, .13), transparent 62%);
  filter: blur(15px);
  opacity: .62;
  pointer-events: none;
}

.logo::after {
  position: absolute;
  left: -8px;
  right: -10px;
  bottom: 3px;
  z-index: -1;
  height: 54%;
  content: "";
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(248, 244, 236, .34));
  filter: blur(10px);
  opacity: .54;
  pointer-events: none;
}

.logo:hover,
.logo:focus-visible {
  color: #102418;
  filter: saturate(1.05);
}

.logo img {
  width: 100%;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
  filter:
    drop-shadow(0 7px 12px rgba(22, 52, 35, .09))
    drop-shadow(0 16px 28px rgba(123, 47, 143, .055))
    drop-shadow(0 0 13px rgba(201, 151, 37, .16));
}

.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  position: relative;
  display: block;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--text);
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.1;
  transition: color .28s ease, transform .28s var(--ease-premium), background .28s ease;
}

.nav-links a::after {
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 5px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(123, 47, 143, .55));
  opacity: 0;
  transform: scaleX(.35);
  transform-origin: center;
  transition: opacity .22s ease, transform .22s var(--ease);
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.nav-links a:hover,
.nav-links a.active {
  background: transparent;
  color: var(--green);
}

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

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(229, 224, 214, .9);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(22, 52, 35, .055);
  backdrop-filter: none;
}

.lang-btn {
  min-width: 40px;
  min-height: 34px;
  padding: 8px 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: .78rem;
  font-weight: 900;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, transform .22s var(--ease), box-shadow .22s ease;
}

.lang-btn:hover {
  color: var(--green);
  transform: translateY(-1px);
}

.lang-btn.active {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(22, 52, 35, .16);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.menu-btn:hover { transform: rotate(4deg); border-color: var(--gold); }

.menu-btn span,
.menu-btn::before,
.menu-btn::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  content: "";
  background: currentColor;
  border-radius: 999px;
}

.menu-btn.open span { opacity: 0; }
.menu-btn.open::before { transform: translateY(6px) rotate(45deg); }
.menu-btn.open::after { transform: translateY(-6px) rotate(-45deg); }

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  box-shadow: 0 10px 24px rgba(22, 52, 35, .07);
  transition: transform .34s var(--ease-premium), background .34s ease, color .34s ease, border-color .34s ease, box-shadow .34s ease;
}

.btn::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, .34), transparent);
  transform: translateX(-120%);
  transition: transform .55s ease;
}

.btn:hover {
  box-shadow: 0 16px 34px rgba(22, 52, 35, .12);
  transform: translateY(-3px);
}

.btn:hover::after { transform: translateX(120%); }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover {
  background: var(--green);
  color: var(--white);
  box-shadow:
    0 16px 30px rgba(22, 52, 35, .16),
    0 0 22px rgba(201, 151, 37, .24),
    0 0 38px rgba(40, 82, 58, .16);
}
.btn-outline { border: 2px solid var(--green); color: var(--green); }
.btn-outline.light {
  border-color: rgba(255, 255, 255, .58);
  color: var(--white);
  background: rgba(255, 255, 255, .08);
}
.btn-outline:hover {
  border-color: rgba(201, 151, 37, .72);
  background: rgba(255, 255, 255, .62);
  color: var(--green);
  box-shadow:
    0 14px 28px rgba(22, 52, 35, .1),
    0 0 0 4px rgba(201, 151, 37, .1),
    0 0 24px rgba(123, 47, 143, .1);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(104px, 11vw, 156px) clamp(24px, 7vw, 104px) clamp(90px, 9vw, 128px);
  background:
    radial-gradient(circle at 83% 16%, rgba(201, 151, 37, .16), transparent 30%),
    radial-gradient(circle at 12% 84%, rgba(123, 47, 143, .08), transparent 28%),
    linear-gradient(135deg, rgba(237, 245, 239, .96), rgba(248, 244, 236, .96));
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  left: 50%;
  top: 50%;
  width: min(92vw, 980px);
  height: min(64vw, 680px);
  border-radius: 48%;
  background:
    radial-gradient(circle at 30% 40%, rgba(40, 82, 58, .24), transparent 34%),
    radial-gradient(circle at 62% 28%, rgba(201, 151, 37, .22), transparent 30%),
    radial-gradient(circle at 72% 68%, rgba(123, 47, 143, .16), transparent 34%);
  filter: blur(34px);
  opacity: .52;
  transform: translate(-50%, -50%) scale(1);
  animation: heroGlowDrift 16s ease-in-out infinite;
}

.hero::after {
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .26), transparent 42%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, .18));
  opacity: .76;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: clamp(52px, 7.4vw, 98px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.hero .kicker {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(.98rem, 1.35vw, 1.18rem);
  line-height: 1.35;
  letter-spacing: .1em;
  animation: heroHeadlineReveal 1.05s var(--ease-premium) .08s both;
}

.hero h1 {
  animation: heroTitleIn .95s var(--ease-premium) .24s both;
}

.hero .lead {
  animation: heroTextIn .95s var(--ease-premium) .44s both;
}

.hero .hero-actions {
  animation: heroTextIn .95s var(--ease-premium) .64s both;
}

.kicker {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.accent-text {
  color: var(--green);
  background: linear-gradient(120deg, rgba(201, 151, 37, .28), rgba(201, 151, 37, .08));
  border-radius: .18em;
  box-decoration-break: clone;
  padding: 0 .06em;
}

h1,
h2,
h3 { color: var(--green); }

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: #102418;
  font-size: clamp(2.75rem, 6vw, 5.2rem);
  line-height: 1.01;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.9vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.26rem;
  line-height: 1.22;
}

.lead {
  max-width: 660px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.6vw, 1.18rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
}

.hero-card {
  position: relative;
  justify-self: end;
  width: min(100%, 500px);
  transform: translateY(var(--parallax-y));
  transition: transform .48s var(--ease-premium), filter .48s ease;
  animation: heroImageIn 1.2s var(--ease-premium) .42s both;
}

.hero-card:hover {
  filter: saturate(1.03);
  transform: translateY(calc(var(--parallax-y) - 4px)) scale(1.012);
}

.hero-card::before {
  position: absolute;
  inset: 18px -14px -16px 20px;
  z-index: -1;
  content: "";
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(201, 151, 37, .32), rgba(123, 47, 143, .16));
  filter: blur(20px);
  opacity: .56;
  transition: opacity .42s ease, filter .42s ease, transform .42s var(--ease-premium);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 10px solid rgba(255, 255, 255, .76);
  border-radius: 22px;
  box-shadow: var(--shadow);
  animation: heroPhotoFloat 7s ease-in-out 1.6s infinite alternate;
  transition: transform .48s var(--ease-premium), box-shadow .48s ease, filter .48s ease;
}

.hero-card:hover img {
  box-shadow: 0 28px 62px rgba(22, 52, 35, .15);
  filter: saturate(1.05);
}

.hero-card:hover::before {
  opacity: .72;
  filter: blur(24px);
  transform: translateY(-4px);
}

.badge {
  position: absolute;
  left: -22px;
  bottom: 28px;
  max-width: min(280px, 78%);
  padding: 16px 18px;
  border: 1px solid rgba(229, 224, 214, .8);
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 36px rgba(22, 52, 35, .085);
  color: var(--green);
  font-weight: 900;
  line-height: 1.35;
  backdrop-filter: blur(14px);
  animation: badgeFloat 5.4s ease-in-out infinite;
}

.logo-section {
  overflow: hidden;
  padding: clamp(34px, 4vw, 52px) 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 244, 236, .72)),
    var(--white);
  border-bottom: 1px solid rgba(229, 224, 214, .72);
}

.logo-section-head {
  max-width: 760px;
  margin: 0 auto 24px;
  padding: 0 clamp(20px, 7vw, 96px);
  text-align: center;
}

.logo-section-head .kicker {
  margin-bottom: 6px;
}

.logo-section-head p:not(.kicker) {
  color: var(--muted);
  font-size: clamp(.86rem, 1.1vw, .95rem);
  line-height: 1.5;
}

.logo-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-block: 8px;
}

.logo-carousel::before,
.logo-carousel::after {
  position: absolute;
  top: 0;
  z-index: 2;
  width: min(120px, 16vw);
  height: 100%;
  content: "";
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(to right, rgba(248, 246, 242, .98), transparent);
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(to left, rgba(248, 246, 242, .98), transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scrollLogos 52s linear infinite;
  will-change: transform;
}

.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

.logo-set {
  display: flex;
  flex: 0 0 auto;
  gap: 22px;
  justify-content: center;
  padding-right: 22px;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 122px;
  height: 62px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 12px;
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 8px 22px rgba(22, 52, 35, .04);
  backdrop-filter: blur(8px);
  transition: transform .34s var(--ease-premium), border-color .34s ease, background .34s ease, box-shadow .34s ease;
}

.logo-card img {
  max-width: 82px;
  max-height: 32px;
  object-fit: contain;
  opacity: .65;
  filter: grayscale(100%);
  transition: opacity .34s ease, filter .34s ease, transform .34s var(--ease-premium);
}

.logo-card:hover {
  border-color: rgba(201, 151, 37, .24);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 14px 34px rgba(22, 52, 35, .075);
  transform: translateY(-5px);
}

.logo-card:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.03);
}

.section {
  position: relative;
  padding: clamp(92px, 10vw, 138px) clamp(24px, 7vw, 104px);
}

.section.alt {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .46), transparent 35%, rgba(255, 255, 255, .42)),
    var(--cream);
}

.offer-section {
  background:
    radial-gradient(circle at 82% 16%, rgba(201, 151, 37, .2), transparent 28rem),
    linear-gradient(135deg, #102418, var(--green));
  color: var(--white);
}

.offer-section h2,
.offer-section h3 { color: var(--white); }

.offer-section .lead { color: rgba(255, 255, 255, .72); }

.offer-grid { align-items: stretch; }

.offer-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.offer-tab {
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform .3s var(--ease-premium), background .3s ease, color .3s ease, border-color .3s ease;
}

.offer-tab:hover {
  border-color: rgba(255, 255, 255, .48);
  transform: translateY(-2px);
}

.offer-tab.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.offer-panels {
  position: relative;
  min-height: 340px;
}

.offer-panel {
  display: none;
  height: 100%;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(201, 151, 37, .2), transparent 48%),
    rgba(255, 255, 255, .08);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .15);
}

.offer-panel.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: panelIn .32s ease;
}

.offer-panel span,
.step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 900;
}

.offer-panel p {
  max-width: 560px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .78);
}

.text-link {
  width: fit-content;
  color: var(--gold-soft);
  font-weight: 900;
  border-bottom: 2px solid rgba(255, 244, 207, .46);
  transition: color .2s ease, border-color .2s ease;
}

.text-link:hover {
  color: var(--white);
  border-color: var(--white);
}

.center {
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}

.center .lead { margin-left: auto; margin-right: auto; }

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 78px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.rounded-img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: transform .55s var(--ease-premium), box-shadow .55s ease, filter .55s ease;
}

.rounded-img:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 28px 68px rgba(22, 52, 35, .13);
  filter: saturate(1.04);
}

video.rounded-img {
  background: #102418;
  aspect-ratio: 4 / 5;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: clamp(28px, 3vw, 34px);
  border: 1px solid rgba(229, 224, 214, .82);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .9)),
    var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .36s var(--ease-premium), box-shadow .36s ease, border-color .36s ease, background .36s ease;
}

.card::before,
.testimonial::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(201, 151, 37, .12), transparent 42%);
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events: none;
}

.card:hover {
  border-color: rgba(201, 151, 37, .42);
  box-shadow: 0 24px 54px rgba(22, 52, 35, .13);
  transform: translateY(-7px);
}

.card:hover::before { opacity: 1; }

.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card .btn { margin-top: auto; }

.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--green);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .03em;
  transition: transform .22s ease, background .22s ease;
}

.card:hover .icon {
  background: var(--green);
  color: var(--white);
  transform: scale(1.08) rotate(-3deg);
}

.price {
  margin: 4px 0 10px;
  color: var(--purple);
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: clamp(28px, 3vw, 34px);
  border-top: 4px solid var(--gold);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .36s var(--ease-premium), box-shadow .36s ease, border-color .36s ease;
}

.step:hover {
  box-shadow: 0 22px 48px rgba(22, 52, 35, .12);
  transform: translateY(-6px);
}

.step::after {
  position: absolute;
  top: 48px;
  right: -34px;
  z-index: 1;
  width: 46px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--gold), transparent);
}

.step:last-child::after { display: none; }

.faq-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(40px, 7vw, 78px);
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: border-color .32s ease, transform .32s var(--ease-premium), box-shadow .32s ease;
}

details[open] {
  border-color: rgba(201, 151, 37, .55);
}

details:hover {
  box-shadow: 0 18px 42px rgba(22, 52, 35, .1);
  transform: translateY(-3px);
}

summary {
  position: relative;
  padding: 18px 52px 18px 20px;
  color: var(--green);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  content: "+";
  background: var(--green-soft);
  color: var(--green);
  text-align: center;
  line-height: 26px;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "-";
  background: var(--gold);
  color: var(--ink);
}

details p {
  padding: 0 20px 20px;
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 10vw, 120px) clamp(20px, 7vw, 96px) clamp(62px, 7vw, 88px);
  background:
    radial-gradient(circle at 78% 18%, rgba(201, 151, 37, .28), transparent 26rem),
    radial-gradient(circle at 15% 86%, rgba(123, 47, 143, .18), transparent 22rem),
    linear-gradient(135deg, rgba(16, 36, 24, .97), rgba(40, 82, 58, .94)),
    url("assets/gwamu-babbelbox-2.jpg") center / cover;
  color: var(--white);
}

.page-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  content: "";
  background: linear-gradient(90deg, var(--gold), #25d366, var(--purple));
}

.page-hero > * {
  position: relative;
  z-index: 1;
  max-width: 780px;
  animation: heroTextIn .72s var(--ease) both;
}

.page-hero h1,
.page-hero h2 { color: var(--white); }

.page-hero .lead { color: rgba(255, 255, 255, .84); }

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  height: clamp(260px, 30vw, 380px);
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  filter: saturate(.95);
  transition: transform .38s var(--ease-premium), filter .38s ease, box-shadow .38s ease;
}

.gallery img:hover {
  filter: saturate(1.12);
  box-shadow: var(--shadow);
  transform: translateY(-6px) scale(1.012);
}

.testimonial {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .36s var(--ease-premium), box-shadow .36s ease;
}

.testimonial:hover {
  box-shadow: 0 22px 48px rgba(22, 52, 35, .13);
  transform: translateY(-6px);
}

.testimonial::before {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  content: "“";
  font-size: 3rem;
  font-weight: 900;
  line-height: .6;
}

.profile-dot {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border: 1px solid rgba(201, 151, 37, .4);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), rgba(255, 255, 255, .86));
  color: var(--green);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(22, 52, 35, .08);
}

.testimonial strong {
  display: block;
  margin-top: 18px;
  color: var(--green);
}

.contact-box {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(28px, 5vw, 48px);
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 12%, rgba(201, 151, 37, .24), transparent 18rem),
    linear-gradient(135deg, rgba(16, 36, 24, .98), rgba(40, 82, 58, .94));
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-box h2 { color: var(--white); }
.contact-box p { color: rgba(255, 255, 255, .82); }

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(248, 244, 236, .52), rgba(255, 255, 255, .88));
}

.response-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  margin-top: 24px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: var(--gold-soft);
  font-size: .86rem;
  font-weight: 900;
}

.contact-list a,
.contact-list span {
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  color: var(--white);
  transition: transform .2s ease, background .2s ease;
}

.contact-list a:hover {
  background: rgba(255, 255, 255, .14);
  transform: translateX(4px);
}

.form input,
.form textarea,
.form select {
  width: 100%;
  margin-bottom: 14px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 14px;
  background: rgba(255, 255, 255, .11);
  color: var(--white);
  font: inherit;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.form {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .13);
  backdrop-filter: blur(18px);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: rgba(201, 151, 37, .9);
  background: rgba(255, 255, 255, .13);
  box-shadow: 0 0 0 4px rgba(201, 151, 37, .16);
}

.form textarea { resize: vertical; }
.form option { color: var(--ink); }
.form ::placeholder { color: rgba(255, 255, 255, .72); }
.form button { width: 100%; border: 0; cursor: pointer; background: var(--gold); color: var(--ink); }

.form-status {
  min-height: 24px;
  margin-top: 12px;
  color: var(--gold-soft);
  font-weight: 800;
  opacity: 0;
  transition: opacity .2s ease;
}

.form-status.visible { opacity: 1; }

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 88;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: var(--shadow);
  color: var(--white);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: whatsAppPulse 2.4s ease-in-out infinite;
}

.whatsapp::after {
  position: absolute;
  right: 70px;
  width: max-content;
  max-width: 170px;
  padding: 9px 12px;
  border-radius: 999px;
  content: attr(data-tooltip);
  background: var(--green);
  color: var(--white);
  font-size: .82rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity .2s ease, transform .2s ease;
}

.whatsapp:hover {
  box-shadow: 0 20px 48px rgba(37, 211, 102, .35);
  transform: translateY(-4px) scale(1.04);
}

.whatsapp:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(.99);
  transition: opacity .95s var(--ease-premium), transform .95s var(--ease-premium), filter .95s var(--ease-premium);
  transition-delay: var(--reveal-delay, 0ms);
  filter: blur(3px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.cards .reveal:nth-child(2),
.steps .reveal:nth-child(2),
.gallery .reveal:nth-child(2),
.faq-list .reveal:nth-child(2) { --reveal-delay: 110ms; }

.cards .reveal:nth-child(3),
.steps .reveal:nth-child(3),
.gallery .reveal:nth-child(3),
.faq-list .reveal:nth-child(3) { --reveal-delay: 220ms; }

.layered-media.reveal,
.media-note.reveal { --reveal-delay: 120ms; }

@keyframes logoIntro {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.965);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logoBreath {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-2px) scale(1.003); }
}

@keyframes imageFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes heroHeadlineReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(calc(var(--parallax-y) + 18px)) scale(.985);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(var(--parallax-y)) scale(1);
  }
}

@keyframes heroPhotoFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-4px); }
}

@keyframes heroGlowDrift {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .48;
  }
  50% {
    transform: translate(-48%, -52%) scale(1.06);
    opacity: .58;
  }
}

@keyframes scrollLogos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes whatsAppPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .36), var(--shadow); }
  50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0), var(--shadow); }
}

.layered-media {
  position: relative;
  isolation: isolate;
  transform: translateY(var(--parallax-y));
  transition: transform .55s var(--ease-premium);
}

.layered-media::before {
  position: absolute;
  inset: 28px -18px -20px 22px;
  z-index: -1;
  content: "";
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(201, 151, 37, .3), rgba(123, 47, 143, .12));
  filter: blur(18px);
}

.media-note {
  position: absolute;
  right: -12px;
  bottom: 28px;
  max-width: 245px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .56);
  border-radius: 16px;
  background: rgba(255, 255, 255, .82);
  color: var(--green);
  font-weight: 900;
  line-height: 1.35;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.story-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(201, 151, 37, .1), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(237, 245, 239, .7));
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.story-card {
  position: relative;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(229, 224, 214, .76);
  border-radius: 16px;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.story-card:first-child {
  grid-row: span 2;
}

.story-card.soft {
  background: rgba(255, 255, 255, .62);
}

.premium-footer {
  padding: clamp(54px, 7vw, 78px) clamp(20px, 7vw, 96px) 28px;
  background:
    radial-gradient(circle at 82% 10%, rgba(201, 151, 37, .18), transparent 24rem),
    linear-gradient(135deg, #102418, #132b1d 62%, #101713);
  color: rgba(255, 255, 255, .72);
}

.portal-entry,
.portal-dashboard-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 151, 37, .14), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(123, 47, 143, .11), transparent 26rem),
    linear-gradient(135deg, #fffdf9, var(--cream) 52%, #f3f8f4);
}

.portal-nav {
  position: sticky;
}

.login-shell,
.portal-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.login-shell {
  display: grid;
  min-height: calc(100vh - 80px);
  place-items: center;
  padding: clamp(44px, 7vw, 84px) clamp(20px, 7vw, 96px);
}

.portal-shell {
  padding: clamp(40px, 7vw, 82px) clamp(20px, 7vw, 96px) clamp(56px, 8vw, 96px);
}

.app-dashboard {
  display: grid;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.portal-glow {
  position: fixed;
  z-index: -1;
  width: min(48vw, 520px);
  aspect-ratio: 1;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(42px);
  opacity: .42;
  animation: portalFloat 14s ease-in-out infinite alternate;
}

.portal-glow-one {
  left: -12%;
  top: 14%;
  background: radial-gradient(circle, rgba(201, 151, 37, .36), transparent 68%);
}

.portal-glow-two {
  right: -10%;
  bottom: 4%;
  background: radial-gradient(circle, rgba(123, 47, 143, .24), transparent 66%);
  animation-delay: -5s;
}

.login-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 430px);
  align-items: center;
  width: min(100%, 1020px);
  gap: clamp(28px, 6vw, 72px);
}

.login-copy h1,
.portal-welcome h1 {
  margin-bottom: 14px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: .92;
  letter-spacing: 0;
}

.login-copy .lead {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.portal-card,
.login-card,
.portal-mini-card,
.resource-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .66);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .58)),
    rgba(255, 255, 255, .72);
  box-shadow: 0 28px 74px rgba(22, 52, 35, .11);
  backdrop-filter: blur(18px);
}

.dashboard-hero,
.dashboard-section {
  max-width: 1180px;
  width: 100%;
  margin-inline: auto;
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  align-items: center;
  gap: clamp(22px, 4vw, 48px);
  padding: clamp(24px, 4vw, 42px);
  border-radius: 30px;
}

.dashboard-hero h1 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(2.55rem, 5.4vw, 4.8rem);
  line-height: .95;
}

.next-session-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(201, 151, 37, .28);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 244, 207, .68), rgba(255, 255, 255, .72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72), 0 18px 38px rgba(22, 52, 35, .08);
}

.next-session-card span,
.compact-card span,
.status-grid span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.next-session-card strong {
  color: var(--green);
  font-size: 2.2rem;
  line-height: 1;
}

.next-session-card small {
  color: var(--muted);
  font-weight: 750;
}

.next-session-card .btn {
  width: 100%;
  margin-top: 8px;
}

.dashboard-section {
  min-width: 0;
}

.today-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.compact-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .66);
  border-radius: 22px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 16px 38px rgba(22, 52, 35, .075);
  transition: transform .24s var(--ease-premium), box-shadow .24s ease, border-color .24s ease;
}

.compact-card:hover {
  border-color: rgba(201, 151, 37, .38);
  box-shadow: 0 22px 46px rgba(22, 52, 35, .1);
  transform: translateY(-3px);
}

.compact-card h3 {
  margin: 8px 0 5px;
  font-size: 1.05rem;
}

.compact-card p {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.55;
}

.compact-card a,
.text-action {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  color: var(--green);
  font-size: .9rem;
  font-weight: 950;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 22px;
}

.progress-panel {
  padding: 24px;
  border-radius: 26px;
}

.progress-panel .portal-progress {
  margin-top: 0;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.status-grid article {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(229, 224, 214, .72);
  border-radius: 18px;
  background: rgba(255, 255, 255, .68);
}

.status-grid strong {
  color: var(--green);
}

.compact-list .portal-mini-card {
  padding: 16px;
}

.compact-list .portal-mini-card p {
  display: none;
}

.text-action {
  margin-top: 14px;
}

.resource-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.resource-tiles a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(229, 224, 214, .78);
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 30px rgba(22, 52, 35, .055);
  color: var(--green);
  font-weight: 950;
  transition: transform .24s var(--ease-premium), border-color .24s ease, box-shadow .24s ease;
}

.resource-tiles a:hover {
  border-color: rgba(201, 151, 37, .5);
  box-shadow: 0 18px 40px rgba(22, 52, 35, .09);
  transform: translateY(-2px);
}

.journal-compact {
  max-width: 820px;
  width: 100%;
}

.journal-compact textarea {
  min-height: 150px;
}

.login-card {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 28px;
  overflow: hidden;
}

.portal-card-line {
  height: 4px;
  margin: -8px 0 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--green), var(--purple));
}

.login-card label,
.journal-section label {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green);
  font-size: .82rem;
  font-weight: 900;
}

.login-card input,
.journal-section input,
.journal-section textarea {
  width: 100%;
  border: 1px solid rgba(229, 224, 214, .95);
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease, transform .22s var(--ease);
}

.login-card input {
  min-height: 54px;
  padding: 0 16px;
}

.journal-section input {
  min-height: 54px;
  margin-top: 8px;
  padding: 0 16px;
}

.journal-section textarea {
  min-height: 190px;
  margin-top: 12px;
  padding: 18px;
  resize: vertical;
}

.login-card input:focus,
.journal-section input:focus,
.journal-section textarea:focus {
  border-color: rgba(201, 151, 37, .92);
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(201, 151, 37, .14), 0 16px 34px rgba(22, 52, 35, .08);
  transform: translateY(-1px);
}

.booking-fields {
  display: grid;
  gap: 14px;
}

.booking-field ul {
  margin-top: 6px;
  padding-left: 18px;
  color: var(--rust);
  font-size: .86rem;
  font-weight: 800;
}

.booking-current {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 800;
}

.portal-login-btn {
  width: 100%;
  margin-top: 8px;
  border: 0;
  cursor: pointer;
}

.forgot-link {
  justify-self: center;
  color: var(--green);
  font-size: .92rem;
  font-weight: 900;
}

.forgot-link::after {
  display: block;
  width: 0;
  height: 2px;
  margin-top: 2px;
  content: "";
  border-radius: 999px;
  background: var(--gold);
  transition: width .22s var(--ease);
}

.forgot-link:hover::after {
  width: 100%;
}

.portal-note {
  margin-top: 2px;
  color: var(--muted);
  font-size: .84rem;
  text-align: center;
}

.demo-user {
  display: grid;
  gap: 3px;
  margin-top: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(201, 151, 37, .24);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 244, 207, .62), rgba(255, 255, 255, .72));
  color: var(--muted);
  font-size: .84rem;
}

.demo-user strong {
  color: var(--green);
}

.demo-user small {
  color: var(--ink);
  font-weight: 800;
}

.login-error {
  min-height: 1.2em;
  color: #a44a3f;
  font-size: .84rem;
  font-weight: 800;
  text-align: center;
  opacity: 0;
  transition: opacity .2s ease;
}

.login-error.visible {
  opacity: 1;
}

.portal-welcome,
.next-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto 24px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 30px;
}

.portal-quote {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.24rem);
}

.welcome-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.portal-progress {
  max-width: 560px;
  margin-top: 28px;
}

.portal-progress-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: var(--green);
  font-size: .92rem;
  font-weight: 900;
}

.portal-progress-label strong {
  color: var(--gold);
}

.portal-progress-track {
  overflow: hidden;
  height: 12px;
  border: 1px solid rgba(229, 224, 214, .78);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  box-shadow: inset 0 1px 3px rgba(22, 52, 35, .06);
}

.portal-progress-track span {
  display: block;
  width: 60%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold));
  box-shadow: 0 0 18px rgba(201, 151, 37, .28);
}

.progress-orb {
  display: grid;
  flex: 0 0 auto;
  width: 138px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, var(--white) 58%, transparent 60%),
    conic-gradient(var(--gold) 0 68%, rgba(229, 224, 214, .72) 68% 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .8), 0 20px 42px rgba(22, 52, 35, .1);
  color: var(--green);
}

.progress-orb span {
  align-self: end;
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.progress-orb small {
  align-self: start;
  color: var(--muted);
  font-weight: 800;
}

.portal-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  max-width: 1180px;
  margin: 0 auto;
  gap: 24px;
}

.portal-section,
.journal-section {
  min-width: 0;
}

.portal-wide {
  max-width: 1180px;
  margin: 24px auto 0;
}

.portal-section-heading {
  margin-bottom: 18px;
}

.portal-section-heading h2,
.next-step h2 {
  margin: 0;
}

.session-list,
.resource-grid {
  display: grid;
  gap: 14px;
}

.portal-mini-card,
.resource-card {
  overflow: hidden;
  padding: 20px;
  border-radius: 24px;
  transition: transform .28s var(--ease-premium), box-shadow .28s ease, border-color .28s ease;
}

.portal-mini-card:hover,
.resource-card:hover,
.portal-card:hover {
  border-color: rgba(201, 151, 37, .42);
  box-shadow: 0 30px 78px rgba(22, 52, 35, .14);
  transform: translateY(-4px);
}

.session-date,
.resource-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: .8rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.portal-mini-card h3,
.resource-card h3 {
  margin-bottom: 6px;
}

.portal-mini-card p,
.resource-card p {
  color: var(--muted);
}

.card-row,
.next-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.card-row a {
  color: var(--green);
  font-weight: 900;
}

.status-pill {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 950;
}

.status-pill.upcoming {
  background: var(--green-soft);
  color: var(--green);
}

.status-pill.open {
  background: var(--gold-soft);
  color: var(--ink);
}

.status-pill.done {
  background: rgba(255, 255, 255, .8);
  color: var(--muted);
  border: 1px solid var(--line);
}

.resource-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  color: var(--green);
  font-size: .9rem;
  font-weight: 950;
}

.resource-card a::after {
  width: 0;
  height: 2px;
  margin: 1.45em 0 0 8px;
  content: "";
  border-radius: 999px;
  background: var(--gold);
  transition: width .22s var(--ease);
}

.resource-card a:hover::after {
  width: 22px;
}

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

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

.journal-section,
.next-step {
  max-width: 1180px;
  margin: 24px auto 0;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 30px;
}

.next-step {
  background:
    linear-gradient(135deg, rgba(22, 52, 35, .96), rgba(40, 82, 58, .9)),
    var(--green);
  color: var(--white);
}

.next-step p {
  max-width: 560px;
  color: rgba(255, 255, 255, .76);
}

.next-step .kicker,
.next-step h2 {
  color: var(--white);
}

.next-step .btn-outline {
  border-color: rgba(255, 255, 255, .72);
  color: var(--white);
}

.journal-save {
  width: fit-content;
  margin-top: 16px;
  border: 0;
  cursor: pointer;
}

.whatsapp-action:hover {
  border-color: #25d366;
  background: #25d366;
  color: var(--green);
}

.admin-entry,
.admin-page {
  min-height: 100vh;
  background: #f7f5ef;
  color: var(--text);
}

.admin-login-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(24px, 6vw, 72px);
  background:
    radial-gradient(circle at 18% 12%, rgba(201, 151, 37, .14), transparent 26rem),
    radial-gradient(circle at 82% 88%, rgba(22, 52, 35, .12), transparent 24rem),
    #f7f5ef;
}

.admin-login-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 420px);
  align-items: center;
  width: min(100%, 980px);
  gap: clamp(28px, 6vw, 76px);
}

.admin-login-logo {
  display: inline-flex;
  width: 160px;
  margin-bottom: 28px;
}

.admin-login-panel h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: .95;
}

.admin-login-panel p {
  max-width: 520px;
  color: var(--muted);
}

.admin-login-card {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 26px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 28px 68px rgba(22, 52, 35, .12);
  backdrop-filter: blur(16px);
}

.admin-login-card label {
  color: var(--green);
  font-size: .82rem;
  font-weight: 900;
}

.admin-login-card input,
.admin-search input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  outline: none;
}

.admin-login-card input {
  padding: 0 15px;
}

.admin-login-card input:focus,
.admin-search input:focus {
  border-color: rgba(201, 151, 37, .9);
  box-shadow: 0 0 0 5px rgba(201, 151, 37, .12);
}

.admin-page {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 22px;
  background: #102418;
  color: rgba(255, 255, 255, .74);
}

.admin-brand {
  display: inline-flex;
  width: 140px;
  margin-bottom: 28px;
  padding: 10px;
  border-radius: 18px;
  background: var(--white);
}

.admin-sidebar nav {
  display: grid;
  gap: 6px;
}

.admin-sidebar nav a,
.admin-exit {
  padding: 11px 12px;
  border-radius: 14px;
  color: rgba(255, 255, 255, .76);
  font-weight: 850;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  transform: translateX(2px);
}

.admin-exit {
  margin-top: auto;
  background: rgba(255, 255, 255, .08);
}

.admin-main {
  min-width: 0;
  padding: clamp(22px, 4vw, 44px);
}

.admin-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}

.admin-topbar h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.admin-search input {
  padding: 0 18px;
}

.admin-kpis,
.admin-grid {
  display: grid;
  gap: 16px;
}

.admin-kpis {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.admin-kpis article,
.admin-panel {
  border: 1px solid rgba(229, 224, 214, .82);
  border-radius: 20px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 16px 42px rgba(22, 52, 35, .07);
}

.admin-kpis article {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.admin-kpis span,
.admin-task-list span,
.admin-resource-row span,
.admin-log-list span {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-kpis strong {
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.admin-kpis small,
.admin-muted,
.admin-log-list small {
  color: var(--muted);
}

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

.admin-panel {
  min-width: 0;
  padding: 18px;
}

.admin-panel-wide {
  grid-column: 1 / -1;
}

.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.admin-panel-head h2 {
  margin: 0;
  font-size: 1.2rem;
}

.admin-panel button {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--green);
  font: inherit;
  font-size: .82rem;
  font-weight: 900;
  cursor: pointer;
}

.admin-panel button:hover {
  border-color: rgba(201, 151, 37, .6);
  box-shadow: 0 8px 18px rgba(22, 52, 35, .08);
}

.admin-table,
.admin-task-list,
.admin-timeline,
.admin-log-list {
  display: grid;
  gap: 10px;
}

.admin-table div,
.admin-task-list article,
.admin-timeline div,
.admin-resource-row,
.admin-log-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 12px;
  padding: 12px;
  border: 1px solid rgba(229, 224, 214, .66);
  border-radius: 14px;
  background: rgba(248, 244, 236, .46);
}

.admin-table small,
.admin-timeline span,
.admin-resource-row small {
  grid-column: 1 / -1;
  color: var(--muted);
}

.admin-table span {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: .76rem;
  font-weight: 950;
}

.admin-task-list button {
  grid-row: span 2;
}

.admin-timeline time {
  color: var(--gold);
  font-weight: 950;
}

.upload-dropzone {
  display: grid;
  min-height: 160px;
  place-items: center;
  padding: 20px;
  border: 1px dashed rgba(201, 151, 37, .72);
  border-radius: 18px;
  background: rgba(255, 244, 207, .36);
  color: var(--muted);
  text-align: center;
}

.upload-dropzone strong {
  color: var(--green);
}

@keyframes portalFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(24px, -18px, 0) scale(1.08);
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .7fr .9fr;
  gap: clamp(28px, 6vw, 72px);
  max-width: 1120px;
  margin: 0 auto;
}

.premium-footer .footer-logo {
  display: inline-flex;
  width: min(150px, 56vw);
  margin-bottom: 16px;
  color: var(--white);
  animation: none;
}

.premium-footer .footer-logo img {
  max-height: 54px;
  filter:
    drop-shadow(0 10px 20px rgba(0, 0, 0, .16))
    drop-shadow(0 0 10px rgba(201, 151, 37, .14));
}

.premium-footer p {
  max-width: 420px;
}

.premium-footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: .94rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.premium-footer a,
.premium-footer span {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .74);
  transition: color .2s ease, transform .2s ease;
}

.premium-footer a:hover {
  color: var(--gold-soft);
  transform: translateX(4px);
}

.footer-bottom {
  max-width: 1120px;
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .54);
  font-size: .9rem;
}

@media (max-width: 900px) {
  .admin-page,
  .admin-topbar,
  .admin-kpis,
  .admin-grid,
  .admin-login-panel {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    min-height: 0;
  }

  .admin-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .login-panel,
  .portal-grid,
  .dashboard-hero,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .login-panel {
    align-items: start;
  }

  .login-copy h1,
  .portal-welcome h1 {
    font-size: clamp(2.7rem, 12vw, 4.7rem);
  }

  .portal-welcome,
  .next-step {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

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

  .progress-orb {
    width: 118px;
  }

  .next-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .navbar {
    min-height: 72px;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .menu-btn { display: block; flex: 0 0 auto; }
  .nav-links {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 18px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 22px 44px rgba(22, 52, 35, .1);
    backdrop-filter: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity .24s ease, transform .24s var(--ease), visibility .24s ease;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }
  .nav-links a { padding: 13px 14px; }
  .language-switcher {
    margin-left: auto;
    order: 2;
  }
  .menu-btn { order: 3; }
  .hero-grid,
  .grid-2,
  .contact-box,
  .faq-wrap { grid-template-columns: 1fr; }
  .cards,
  .gallery,
  .steps,
  .story-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .story-card:first-child { grid-row: auto; }
  .hero {
    padding-top: 74px;
  }
  .hero-grid {
    gap: 38px;
  }
  .hero-card {
    justify-self: start;
    width: min(100%, 430px);
  }
  .badge {
    position: static;
    max-width: none;
    margin-top: 12px;
  }
  .logo-track {
    animation-duration: 56s;
  }
  .logo-set {
    gap: 14px;
    padding-right: 14px;
  }
  .offer-panels { min-height: 0; }
  .step::after { display: none; }
  .media-note {
    position: static;
    max-width: none;
    margin-top: 12px;
  }
  .premium-footer { text-align: left; }
}

@media (max-width: 520px) {
  .admin-main {
    padding: 16px;
  }

  .admin-sidebar {
    padding: 16px;
  }

  .admin-sidebar nav {
    grid-template-columns: 1fr;
  }

  .admin-panel-head,
  .admin-table div,
  .admin-task-list article,
  .admin-timeline div,
  .admin-resource-row,
  .admin-log-list div {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .login-shell,
  .portal-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .login-card,
  .portal-welcome,
  .journal-section,
  .next-step,
  .portal-mini-card,
  .resource-card {
    border-radius: 20px;
  }

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

  .app-dashboard {
    gap: 18px;
  }

  .dashboard-hero,
  .progress-panel,
  .compact-card,
  .resource-tiles a {
    border-radius: 18px;
  }

  .dashboard-hero h1 {
    font-size: clamp(2.25rem, 13vw, 3.3rem);
  }

  .next-session-card strong {
    font-size: 1.9rem;
  }

  .status-grid,
  .resource-tiles {
    grid-template-columns: 1fr;
  }

  .portal-progress-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .resource-grid-four {
    grid-template-columns: 1fr;
  }

  .journal-save {
    width: 100%;
  }

  .card-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .navbar { padding-inline: 14px; }
  .logo {
    width: 90px;
    min-height: 42px;
    padding: 7px 8px;
  }

  .logo img { max-height: 37px; }
  .language-switcher {
    gap: 2px;
    padding: 3px;
  }
  .lang-btn {
    min-width: 34px;
    min-height: 31px;
    padding: 7px 8px;
    font-size: .72rem;
  }
  .btn,
  .hero-actions { width: 100%; }
  .offer-tab { flex: 1 1 100%; }
  .page-hero,
  .hero,
  .section { padding-left: 18px; padding-right: 18px; }
  .hero {
    padding-top: 46px;
    padding-bottom: 54px;
  }
  .logo-section {
    padding-top: 28px;
    padding-bottom: 30px;
  }
  .logo-carousel {
    padding-block: 3px;
  }
  .logo-carousel::before,
  .logo-carousel::after {
    width: 42px;
  }
  .logo-track {
    animation-duration: 62s;
  }
  .logo-set {
    gap: 10px;
    justify-content: center;
    padding-right: 10px;
  }
  .logo-card {
    width: 102px;
    height: 56px;
    padding: 11px;
    border-radius: 14px;
  }
  .logo-card img {
    max-width: 66px;
    max-height: 26px;
  }
  .lead { margin-bottom: 24px; }
  .btn { min-height: 50px; }
  .card,
  .testimonial,
  .step,
  details { box-shadow: 0 10px 26px rgba(22, 52, 35, .08); }
  .contact-box,
  .form,
  .story-card { border-radius: 18px; }
  .footer-bottom { margin-top: 28px; }
  .whatsapp { right: 16px; bottom: 16px; }
  .whatsapp::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .logo-track {
    animation: none !important;
  }

  .portal-glow {
    animation: none !important;
  }
}
