:root {
  --green-900: #012929;
  --green-600: #789d9e;
  --beige: #e0d8cc;
  --white: #ffffff;
  --ink: #102525;
  --muted: #4e6666;
  --line: rgba(1, 41, 41, 0.16);
  --shadow: 0 22px 70px rgba(1, 41, 41, 0.16);
  --radius: 6px;
  --sans: "Poppins", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
[id] { scroll-margin-top: 96px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0 0 1rem; }

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity .72s ease,
    transform .72s cubic-bezier(.2, .78, .22, 1),
    filter .72s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal-scale {
  transform: translate3d(0, 22px, 0) scale(.97);
}
.reveal-left {
  transform: translate3d(-28px, 0, 0);
}
.reveal-right {
  transform: translate3d(28px, 0, 0);
}
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 96px 0; position: relative; overflow: hidden; }
.section-tight { padding: 64px 0; }
.dark { background: var(--green-900); color: var(--white); }
.beige { background: var(--beige); }
.medium { background: var(--green-600); color: var(--white); }
.white { background: var(--white); }
.eyebrow {
  margin-bottom: 14px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-600);
}
.dark .eyebrow, .medium .eyebrow { color: var(--beige); }
h1, h2, h3 {
  font-family: var(--sans);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
}
h1 { font-size: clamp(2.25rem, 4.2vw, 4.6rem); max-width: 930px; }
h2 { font-size: clamp(2rem, 3.6vw, 3.55rem); }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.75rem); }
.hero-question {
  display: block;
  margin-top: 10px;
  max-width: 720px;
  font-family: var(--sans);
  font-size: clamp(2.15rem, 3.25vw, 3.9rem);
  font-weight: 600;
  line-height: 1.04;
  color: var(--white);
}
.seo-h1 {
  font-family: var(--sans);
  font-size: .78rem;
  line-height: 1.4;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-600);
}
.lead { font-size: clamp(1rem, 1.8vw, 1.18rem); color: var(--muted); max-width: 760px; }
.dark .lead, .dark p, .medium p { color: var(--beige); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(1, 41, 41, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(224, 216, 204, .14);
}
.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  min-width: 210px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  padding: 0;
}
.brand-name {
  display: grid;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .74rem;
  font-weight: 600;
}
.brand-name span:last-child { color: var(--beige); font-weight: 300; letter-spacing: .16em; }
.nav-links { display: flex; align-items: center; gap: 16px; color: var(--beige); font-size: .82rem; }
.nav-links a { white-space: nowrap; }
.nav-links a:hover { color: var(--white); }
.nav-toggle { display: none; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  background: var(--green-600);
  color: var(--green-900);
  font-weight: 600;
  border-radius: var(--radius);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); background: #8cadad; }
.btn-light { background: var(--beige); color: var(--green-900); }
.btn-outline { background: transparent; color: var(--beige); border-color: rgba(224, 216, 204, .42); }
.btn-outline:hover { background: rgba(224, 216, 204, .09); }
.btn-compact {
  width: fit-content;
  justify-self: center;
  padding-inline: 28px;
}
.link-arrow { color: var(--green-900); font-weight: 600; border-bottom: 1px solid currentColor; }
.dark .link-arrow { color: var(--beige); }

.hero {
  min-height: calc(100vh - 82px);
  padding: 72px 0 44px;
  display: grid;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(360px, .72fr);
  gap: clamp(42px, 5vw, 78px);
  align-items: center;
}
.hero-copy { min-width: 0; }
.hero-copy .lead { margin: 26px 0; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin: 28px 0; }
.trust-row { display: grid; gap: 12px; max-width: 720px; color: var(--beige); font-size: .93rem; }
.trust-row span { display: flex; align-items: center; gap: 10px; }
.trust-row i, .mini-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(120, 157, 158, .8);
  border-radius: 4px;
  display: inline-grid;
  place-items: center;
  color: var(--green-600);
  font-style: normal;
  font-weight: 600;
}
.hero-photo {
  position: relative;
  min-height: 560px;
  align-self: center;
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 26px 26px -26px -26px;
  border: 1px solid rgba(120, 157, 158, .42);
  border-radius: var(--radius);
}
.hero-photo img {
  width: 100%;
  height: min(68vh, 650px);
  min-height: 520px;
  object-fit: cover;
  object-position: 50% 20%;
  position: relative;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.watermark {
  position: absolute;
  opacity: .055;
  width: 520px;
  height: 520px;
  object-fit: cover;
  object-position: 16% 7%;
  pointer-events: none;
}
.hero .watermark { left: -160px; bottom: -130px; }

.course-hero {
  min-height: calc(100vh - 82px);
  padding: 74px 0 58px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.course-hero::before,
.course-hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(120, 157, 158, .14);
  border-radius: 50%;
  pointer-events: none;
}
.course-hero::before {
  right: -92px;
  top: -82px;
}
.course-hero::after {
  left: -150px;
  bottom: -170px;
}
.course-hero > .container {
  width: min(1420px, calc(100% - 56px));
}
.course-hero-grid {
  display: block;
  position: relative;
  z-index: 1;
}
.course-hero-copy {
  max-width: 1040px;
  margin-left: 0;
}
.course-badge {
  width: fit-content;
  margin: 0 0 34px;
  padding: 10px 18px;
  border: 1px solid rgba(120, 157, 158, .36);
  color: var(--green-600);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.course-hero h1 {
  max-width: 980px;
  font-family: var(--sans);
  font-size: clamp(3rem, 4.25vw, 5rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--white);
}
.course-hero h1 > span {
  display: block;
}
.course-hero h1 em {
  color: var(--green-600);
  font-style: italic;
  font-weight: 600;
}
.course-hero .lead {
  max-width: 760px;
  margin-top: 28px;
  font-size: 1rem;
  line-height: 1.75;
}
.course-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 26px;
}
.course-pills span {
  border: 1px solid rgba(224, 216, 204, .28);
  border-radius: 0;
  padding: 10px 16px;
  color: var(--beige);
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
}
.course-hero .course-pills {
  flex-wrap: nowrap;
  max-width: 100%;
}
.course-hero .course-pills span {
  padding-inline: 14px;
  font-size: .76rem;
}
.course-secondary-link {
  color: var(--green-600);
  font-weight: 600;
}
.course-secondary-link:hover {
  color: var(--beige);
}
.course-hero-card,
.purchase-card,
.module-card,
.fit-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .64);
  padding: 30px;
}
.course-hero-card {
  background: rgba(255, 255, 255, .055);
  border-color: rgba(224, 216, 204, .18);
}
.course-hero-card h2 {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3rem);
}
.trust-bar {
  background: var(--beige);
  color: var(--green-900);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  text-align: center;
  font-weight: 600;
}
.course-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.course-tagline {
  color: var(--green-600);
  font-weight: 600;
  margin-top: 14px;
}
.course-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}
.course-specs span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: rgba(224, 216, 204, .34);
}
.modules-list {
  display: grid;
  gap: 16px;
}
.module-card h3 {
  font-size: 1.35rem;
}
.module-card p {
  margin-bottom: .45rem;
}
.purchase-card {
  position: sticky;
  top: 110px;
  background: var(--beige);
  box-shadow: 0 20px 54px rgba(1, 41, 41, .14);
}
.price-label {
  display: block;
  margin-top: 20px;
  color: var(--muted);
  font-weight: 600;
}
.course-price {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--green-900);
  margin: 8px 0;
}
.security-note {
  color: var(--green-900);
  font-weight: 600;
  margin-top: 18px;
}
.included-list,
.fit-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  gap: 10px;
}
.included-list li,
.fit-card li {
  display: flex;
  gap: 10px;
}
.included-list li::before,
.fit-card.yes li::before {
  content: "✓";
  color: var(--green-600);
  font-weight: 600;
}
.fit-card.no li::before {
  content: "✗";
  color: var(--green-900);
  font-weight: 600;
}
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.fit-card.yes {
  border-color: rgba(120, 157, 158, .55);
}
.fit-card.no {
  background: rgba(224, 216, 204, .45);
}

.section-head { max-width: 820px; margin-bottom: 42px; }
.signals-head {
  max-width: 1060px;
}
.process-head {
  max-width: 1120px;
}
.process-title {
  margin-inline: auto;
  font-size: clamp(2.45rem, 3.05vw, 3.45rem);
}
.process-title span {
  white-space: nowrap;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.approach-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-items: stretch;
}
.approach-card-center {
  width: calc(50% - 11px);
  justify-self: center;
  grid-column: 1 / -1;
}
.card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .55);
  padding: 28px;
  min-height: 100%;
  border-radius: var(--radius);
}
.dark .card { background: rgba(255, 255, 255, .045); border-color: rgba(224, 216, 204, .17); }
.medium .card { background: rgba(1, 41, 41, .12); border-color: rgba(255, 255, 255, .22); }
.card h3 { color: var(--green-900); margin-bottom: 10px; font-size: 1.55rem; }
.dark .card h3, .medium .card h3 { color: var(--white); }
.signal-card {
  min-height: 238px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.signal-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 1.7vw, 1.68rem);
  line-height: 1.12;
}
.signal-card p {
  max-width: 35ch;
}
.closing {
  margin-top: 36px;
  display: grid;
  gap: 20px;
  max-width: 860px;
}

.split {
  display: grid;
  grid-template-columns: minmax(300px, .86fr) minmax(0, 1.05fr);
  gap: clamp(38px, 6vw, 84px);
  align-items: center;
}
.portrait { position: relative; }
.portrait::after {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid rgba(120, 157, 158, .56);
  border-radius: var(--radius);
  z-index: 0;
}
.portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: var(--radius);
}
.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}
.check-list li { display: flex; gap: 10px; color: var(--beige); }
.check-list li::before { content: "✓"; color: var(--green-600); font-weight: 600; }

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.step {
  counter-increment: step;
  padding-top: 76px;
  position: relative;
}
.step h3 {
  font-size: clamp(1.45rem, 1.55vw, 1.62rem);
  white-space: nowrap;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--green-900);
  color: var(--beige);
  font-weight: 600;
  border-radius: var(--radius);
}

.testimonials-carousel {
  position: relative;
}
.testimonials-viewport {
  position: relative;
  overflow: hidden;
}
.testimonials-carousel .testimonials {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px 2px 30px;
}
.testimonials-carousel .testimonials::-webkit-scrollbar { display: none; }
.quote {
  background: rgba(255, 255, 255, .45);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: var(--radius);
}
.quote p:first-child { font-family: var(--sans); font-weight: 600; font-size: 1.25rem; line-height: 1.35; color: var(--green-900); }
.quote small { color: var(--muted); font-weight: 600; }
.testimonials-carousel .testimonial-image {
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 8px 18px rgba(1, 41, 41, .07);
  flex: 0 0 calc((100% - 44px) / 3);
  scroll-snap-align: start;
}
.testimonials-carousel .testimonial-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(1, 41, 41, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--green-900);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(1, 41, 41, .14);
  transform: translateY(-50%);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.carousel-arrow:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.05);
}
.carousel-arrow[hidden] {
  display: none;
}
.carousel-arrow-prev { left: -21px; }
.carousel-arrow-next { right: -21px; }

.faq { display: grid; gap: 12px; max-width: 930px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); padding: 22px 24px; background: var(--white); border-radius: var(--radius); }
.faq summary { cursor: pointer; font-weight: 600; color: var(--green-900); }
.faq summary::marker { color: var(--green-600); }
.faq p { margin: 14px 0 0; color: var(--muted); }

.final-cta { text-align: center; }
.final-cta .watermark { left: 50%; top: 50%; transform: translate(-50%, -50%); opacity: .07; }
.final-cta .container { position: relative; z-index: 1; }
.final-cta-copy {
  max-width: 1120px;
}
.final-cta-copy span {
  display: block;
  white-space: nowrap;
}

.footer {
  background: var(--green-900);
  color: var(--beige);
  padding: 58px 0 22px;
  border-top: 1px solid rgba(224, 216, 204, .16);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .8fr .8fr 1.1fr;
  gap: 34px;
}
.footer h3 {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .74rem;
  color: var(--green-600);
  margin-bottom: 12px;
}
.footer a { display: block; margin: 7px 0; }
.footer p { margin: 7px 0; }
.footer .contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}
.social-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}
.footer-location {
  margin-top: 22px;
}
.footer .brand {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  min-width: 0;
}
.footer .brand-mark {
  width: 54px;
  height: 54px;
}
.footer-bottom {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(224, 216, 204, .12);
  font-size: .82rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-bottom a { margin: 0; }

.whatsapp-float {
  position: fixed !important;
  right: 24px !important;
  bottom: 24px !important;
  left: auto !important;
  top: auto !important;
  z-index: 30;
  width: 58px !important;
  height: 58px !important;
  max-width: 58px !important;
  max-height: 58px !important;
  min-width: 58px;
  min-height: 58px;
  display: inline-grid !important;
  place-items: center;
  border-radius: 50%;
  background: #1f8f5f;
  box-shadow: 0 14px 32px rgba(1, 41, 41, .28);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  line-height: 0;
  flex: 0 0 auto;
}
.whatsapp-float:hover {
  background: #24a86d;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(1, 41, 41, .34);
}
.whatsapp-float img,
.whatsapp-float svg {
  width: 31px !important;
  height: 31px !important;
  max-width: 31px !important;
  max-height: 31px !important;
  object-fit: contain;
  display: block;
  margin: 0;
  color: var(--white);
  fill: currentColor;
}

.page-hero {
  padding: 86px 0 72px;
  background: var(--green-900);
  color: var(--white);
}
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.8rem); }
.breadcrumbs {
  color: var(--beige);
  font-size: .82rem;
  margin-bottom: 26px;
}
.content { max-width: 880px; }
.content h2 { margin: 44px 0 16px; font-size: clamp(2rem, 3vw, 3.2rem); }
.content h3 { margin: 28px 0 10px; }
.content ul { padding-left: 20px; }
.service-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
}
.blog-list { display: grid; gap: 18px; }
.blog-item { padding: 26px; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius); }
.blog-item h2 { font-size: 2rem; margin-bottom: 10px; }

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.contact-box { padding: 32px; background: var(--beige); border: 1px solid var(--line); border-radius: var(--radius); }
.about-detail-section {
  position: relative;
  isolation: isolate;
}
.about-detail-section .container {
  position: relative;
  z-index: 1;
}
.about-watermark {
  position: absolute;
  right: -8vw;
  top: 0;
  width: 58vw;
  height: 100%;
  opacity: .045;
  transform: none;
  pointer-events: none;
  z-index: 0;
  object-fit: contain;
}
.authority-gallery-section {
  background:
    linear-gradient(135deg, rgba(1, 41, 41, .96), rgba(1, 41, 41, .9)),
    var(--green-900);
  color: var(--beige);
  position: relative;
  overflow: hidden;
}
.authority-gallery-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -220px;
  border: 1px solid rgba(120, 157, 158, .18);
  border-radius: 50%;
  pointer-events: none;
}
.authority-head {
  max-width: 920px;
}
.authority-head h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  margin-bottom: 26px;
}
.authority-head p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(224, 216, 204, .86);
}
.certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  position: relative;
  z-index: 1;
}
.certificate-card {
  display: grid;
  grid-template-columns: minmax(118px, .82fr) 1fr;
  gap: 20px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(224, 216, 204, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .12);
}
.certificate-open {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}
.certificate-frame {
  position: relative;
  min-height: 168px;
  border: 1px solid rgba(224, 216, 204, .26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(224, 216, 204, .14), rgba(120, 157, 158, .08));
  display: block;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.certificate-open:hover .certificate-frame,
.certificate-open:focus-visible .certificate-frame {
  transform: translateY(-2px);
  border-color: rgba(120, 157, 158, .72);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .18);
}
.certificate-frame img {
  width: 100%;
  height: 100%;
  min-height: 168px;
  border: 0;
  display: block;
  background: var(--white);
  object-fit: cover;
  object-position: center;
}
.certificate-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 5px 8px;
  border-radius: 6px;
  background: #e41f53;
  color: var(--white);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.certificate-frame > span:not(.certificate-label) {
  color: rgba(224, 216, 204, .7);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: center;
}
.certificate-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.2;
  margin-bottom: 10px;
}
.certificate-card p {
  color: rgba(224, 216, 204, .82);
  font-size: .88rem;
  line-height: 1.62;
}
.pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(8, 12, 12, .88);
  backdrop-filter: blur(8px);
}
.pdf-modal.is-open {
  display: flex;
}
.pdf-modal__viewer {
  width: min(1180px, 94vw);
  height: min(86vh, 900px);
  border: 1px solid rgba(224, 216, 204, .18);
  border-radius: var(--radius);
  background: #1f2222;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .45);
}
.pdf-modal__viewer img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #1f2222;
}
.pdf-modal__close {
  position: fixed;
  top: 18px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(224, 216, 204, .26);
  border-radius: 50%;
  background: rgba(1, 41, 41, .82);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
body.pdf-modal-open {
  overflow: hidden;
}
.scientific-article-section {
  background: var(--beige);
  color: var(--green-900);
  position: relative;
  overflow: hidden;
}
.scientific-article-section::before {
  content: "";
  position: absolute;
  inset: auto -120px -220px auto;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(1, 41, 41, .12);
  border-radius: 50%;
  pointer-events: none;
}
.scientific-article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.scientific-article-copy {
  text-align: left;
  max-width: 860px;
}
.scientific-article-copy h2 {
  color: var(--green-900);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.04;
  max-width: 820px;
  margin-bottom: 28px;
}
.scientific-article-copy p:not(.eyebrow) {
  max-width: 780px;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  color: rgba(1, 41, 41, .78);
}
.scientific-article-card {
  border: 1px solid rgba(1, 41, 41, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .58);
  padding: clamp(28px, 4vw, 42px);
  box-shadow: 0 24px 56px rgba(1, 41, 41, .12);
}
.article-file-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  font-size: 1.45rem;
}
.scientific-article-card h3 {
  color: var(--green-900);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1.18;
  margin-bottom: 14px;
}
.scientific-article-card p {
  color: rgba(1, 41, 41, .72);
  margin-bottom: 26px;
}
.scientific-article-card .btn {
  width: 100%;
  justify-content: center;
}

.supervision-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 86px;
}
.supervision-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(44px, 6vw, 90px);
  align-items: center;
}
.supervision-hero-copy {
  max-width: 860px;
}
.supervision-hero-copy > p:not(.eyebrow):not(.lead) {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(224, 216, 204, .84);
  font-size: 1.04rem;
}
.supervision-hero-card,
.supervision-note,
.tripod-grid article,
.supervision-card-grid article {
  border: 1px solid rgba(120, 157, 158, .3);
  border-radius: var(--radius);
}
.supervision-hero-card {
  background: rgba(255, 255, 255, .055);
  padding: clamp(38px, 4.6vw, 58px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .12);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.supervision-hero-card span {
  display: block;
  width: min(100%, 330px);
  color: var(--green-600);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.supervision-hero-card strong {
  display: block;
  color: var(--white);
  width: min(100%, 300px);
  font-size: clamp(2.35rem, 3.6vw, 3.25rem);
  line-height: 1.08;
  margin-bottom: 24px;
}
.supervision-hero-card p {
  width: min(100%, 300px);
}
.supervision-note {
  background: var(--beige);
  color: var(--green-900);
  padding: clamp(28px, 4vw, 42px);
  align-self: center;
  box-shadow: 0 18px 45px rgba(1, 41, 41, .08);
}
.supervision-note h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 18px;
}
.supervision-note p {
  color: rgba(1, 41, 41, .72);
}
.supervision-tripod {
  background: var(--green-600);
  color: var(--white);
}
.supervision-tripod .section-head {
  max-width: 980px;
}
.supervision-tripod .section-head p:not(.eyebrow),
.tripod-close {
  color: rgba(255, 255, 255, .82);
}
.tripod-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}
.tripod-grid article {
  background: rgba(1, 41, 41, .14);
  border-color: rgba(255, 255, 255, .2);
  padding: 30px;
}
.tripod-grid span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--green-900);
  color: var(--beige);
  font-weight: 700;
  margin-bottom: 24px;
}
.tripod-grid h3,
.supervision-card-grid h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  margin-bottom: 12px;
}
.tripod-grid p {
  color: rgba(255, 255, 255, .78);
}
.tripod-close {
  max-width: 880px;
  margin-top: 30px;
  font-size: 1.05rem;
}
.supervision-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.supervision-card-grid article {
  background: rgba(255, 255, 255, .46);
  padding: 30px;
  box-shadow: 0 14px 34px rgba(1, 41, 41, .06);
}
.supervision-card-grid article p {
  color: rgba(1, 41, 41, .7);
}
.supervision-card-feature {
  grid-column: 1 / -1;
  max-width: 640px;
  justify-self: center;
  text-align: center;
}
.supervision-fit-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}
.supervision-fit .check-list {
  margin: 0;
  grid-template-columns: 1fr;
  background: var(--green-900);
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius);
}
.supervision-fit .check-list li {
  color: var(--beige);
}
.supervision-exchange h2 {
  color: var(--white);
}
.supervision-exchange {
  background: var(--green-600);
}
.supervision-exchange .eyebrow,
.supervision-exchange p {
  color: rgba(255, 255, 255, .86);
}
.supervision-final .container {
  max-width: 960px;
}
.supervision-final p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.supervision-final .btn {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .nav { height: 74px; }
  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(224, 216, 204, .35);
    border-radius: var(--radius);
    background: transparent;
    color: var(--white);
    font-size: 1.5rem;
  }
  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    background: var(--green-900);
    border-top: 1px solid rgba(224, 216, 204, .13);
    padding: 22px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .hero-grid, .course-hero-grid, .split, .contact-panel, .course-product-layout, .fit-grid, .scientific-article-grid, .supervision-hero-grid, .supervision-fit-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .course-hero { min-height: auto; }
  .hero-photo { min-height: auto; }
  .hero-photo img { height: auto; min-height: 0; aspect-ratio: 4 / 5; }
  .grid-3, .steps, .service-nav, .footer-grid, .certificate-grid, .tripod-grid, .supervision-card-grid { grid-template-columns: 1fr; }
  .supervision-card-feature { max-width: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-card-center {
    width: 100%;
    grid-column: auto;
  }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .testimonials-carousel .testimonial-image { flex-basis: min(82vw, 420px); }
  .carousel-arrow-prev { left: 4px; }
  .carousel-arrow-next { right: 4px; }
  .about-watermark {
    right: -190px;
    top: 50%;
    width: 560px;
    height: 80%;
    opacity: .032;
    transform: translateY(-50%);
  }
  .purchase-card { position: static; }
  .course-specs { grid-template-columns: 1fr; }
  .certificate-card {
    grid-template-columns: minmax(120px, 180px) 1fr;
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 72px 0; }
  .hero { padding-top: 48px; }
  .course-hero { padding: 56px 0 48px; }
  .course-hero > .container { width: min(100% - 28px, 1160px); }
  .course-hero-copy { margin-left: 0; }
  .course-hero h1 { font-size: clamp(2.45rem, 11vw, 3.5rem); }
  .course-badge { font-size: .62rem; letter-spacing: .12em; }
  .course-hero .course-pills { flex-wrap: wrap; }
  .course-pills span { width: 100%; text-align: center; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .btn-compact { width: 100%; }
  .process-title { font-size: clamp(2rem, 9vw, 2.7rem); }
  .process-title span { white-space: normal; }
  .step h3 { white-space: normal; }
  .final-cta-copy span { white-space: normal; }
  .whatsapp-float {
    right: 16px !important;
    bottom: 16px !important;
    width: 52px !important;
    height: 52px !important;
    max-width: 52px !important;
    max-height: 52px !important;
    min-width: 52px;
    min-height: 52px;
  }
  .whatsapp-float img,
  .whatsapp-float svg {
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
  }
  .brand-name { font-size: .66rem; }
  .check-list { grid-template-columns: 1fr; }
  .card, .quote, .service-card { padding: 22px; }
  .signal-card { min-height: auto; }
  .certificate-card {
    grid-template-columns: 1fr;
  }
  .certificate-frame {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
