:root {
  --black: #060608;
  --white: #F8F6F1;
  --teal: #00C896;
  --teal-dim: rgba(0, 200, 150, 0.08);
  --teal-border: rgba(0, 200, 150, 0.2);
  --amber: #F5A623;
  --blue: #4A9EFF;
  --coral: #FF6B6B;
  --border: rgba(255, 255, 255, 0.07);
  --card: #0D0D1A;
  --mid: #0A0A14;
  --muted: rgba(248, 246, 241, 0.5);
  --muted2: rgba(248, 246, 241, 0.25);
  --teal-deep: #0E5D4F;
  --util-bg: #0B2436;
}

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

i {
  display: flex;
  line-height: 1;
}

.fi-rr-arrow-small-right,
.fi-rr-arrow-small-left {
  display: flex;
  font-size: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
.cur {
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 100000;
  mix-blend-mode: difference;
}

.cur-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 200, 150, 0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transition: width 0.2s, height 0.2s, border-color 0.2s;
}

/* HERO */
.hero {
  min-height: 93vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 2rem 0;
  position: relative;
  overflow: hidden;
  background-color: #EFF8F4;
  background-image: url('../images/h1_hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(239, 248, 244, 0.88) 0%, rgba(239, 248, 244, 0.9) 55%, rgba(239, 248, 244, 0.96) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 6, 8, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 6, 8, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0A8F68;
  border: 1px solid var(--teal-border);
  background: rgba(0, 200, 150, 0.06);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
  animation: fadeUp 0.5s ease both;
}

.hero-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.3;
    transform: scale(1.6);
  }
}

h1 {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 auto 1.5rem;
  max-width: 920px;
  color: var(--black);
  position: relative;
  z-index: 10;
  animation: fadeUp 0.5s 0.1s ease both;
}

h1 .line2 {
  display: block;
  color: #0A8F68;
  position: relative;
  z-index: 10;
}

h1 .line3 {
  display: block;
  -webkit-text-stroke: 1px rgba(6, 6, 8, 0.25);
  color: transparent;
  position: relative;
  z-index: 10;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(6, 6, 8, 0.6);
  max-width: 580px;
  line-height: 1.85;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  position: relative;
  z-index: 10;
  animation: fadeUp 0.5s 0.2s ease both;
}

.hero-sub strong {
  color: var(--black);
  font-weight: 600;
  position: relative;
  z-index: 10;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
  animation: fadeUp 0.5s 0.3s ease both;
}

.btn-main {
  font-family: 'Roboto', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 15px 34px;
  border-radius: 100px;
  background: var(--teal);
  color: var(--black);
  position: relative;
  z-index: 10;
  border: none;
  cursor: none;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 200, 150, 0.25);
}

.btn-main i {
  display: inline-flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.btn-main:hover i {
  transform: translateX(8px);
}

.btn-ghost {
  font-family: 'Roboto', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 15px 34px;
  border-radius: 100px;
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(6, 6, 8, 0.16);
  cursor: none;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
  position: relative;
  z-index: 10;
}

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-3px);
}

/* TRUST BAR */
.trust-bar-wrap {
  width: 100%;
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem 0;
  width: 100%;
  max-width: 1440px;
  margin: 4rem auto 0;
  padding: 20px;
  background: var(--white);
  position: relative;
  z-index: 10;
  border-radius: 20px;
  border: 1px solid rgba(6, 6, 8, 0.06);
  box-shadow: 0 25px 60px rgba(6, 6, 8, 0.1);
  animation: fadeUp 0.5s 0.4s ease both;
}

.trust-item {
  flex: 1;
  min-width: 190px;
  padding: 0 10px;
  border-right: 1px solid rgba(6, 6, 8, 0.08);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item-inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.trust-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.15rem;
}

.trust-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #00C896;
  font-size: 28px;
  flex-shrink: 0;
}

.trust-ico i {
  display: flex;
  width: 28px;
  height: 28px;
}

.trust-text strong {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
  text-transform: capitalize;
}

.trust-val {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: normal;
  color: #00C896;
  line-height: 1.4;
  text-transform: capitalize;
}

.trust-bar-wrap--bottom {
  display: none;
}

@media (max-width: 1024px) {
  .hero {
    background-position: center 15%;
  }

  h1 {
    max-width: 640px;
  }

  .trust-bar-wrap--top {
    display: none;
  }

  .trust-bar-wrap--bottom {
    display: block;
    margin-top: 0;
  }

  .trust-bar-wrap--bottom .trust-bar {
    margin: 0 auto;
    border-radius: 0;
  }

  .trust-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 0;
  }

  .trust-item {
    width: 100%;
    padding: 0 0 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(6, 6, 8, 0.08);
  }

  .trust-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
}

/* WHO WE SERVE */
.serve-heading-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.serve-section-wrap {
  background: var(--white);
}

.serve-section {
  padding: 100px 3rem;
  max-width: 1440px;
  margin: 0 auto;
  background: var(--white);
}

.section-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.85rem;
  display: block;
}

.section-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 0.85rem;
  color: var(--black);
}

.section-desc {
  font-size: 18px;
  color: var(--muted);
  max-width: 700px;
  line-height: 1.85;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--mid);
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1280px) {
  .serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .serve-grid {
    grid-template-columns: 1fr;
  }
}

.serve-card {
  background: #EFF5F9;
  padding: 2rem 1.75rem;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(6, 6, 8, 0.08);
  border-radius: 20px;
}

.serve-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--serve-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.serve-card:hover {
  background: #E3EDF5;
}

.serve-card:hover::after {
  transform: scaleX(1);
}

.serve-ico {
  width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  border-radius: 50%;
  transform: rotate(-14deg);
  margin-bottom: 1.1rem;
  transition: transform 0.3s;
}

.serve-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(248, 246, 241, 0.7);
  transform: rotate(14deg);
  filter: grayscale(60%);
  transition: filter 0.3s;
}

.serve-card:hover .serve-ico {
  transform: rotate(0deg);
}

.serve-card:hover .serve-img {
  filter: grayscale(100%);
}

.serve-title {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.serve-desc {
  font-size: 16px;
  color: rgba(6, 6, 8, 0.65);
  line-height: 1.65;
}

.serve-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem;
  margin-top: auto;
  padding-top: 0.85rem;
}

.stag {
  font-size: 14px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  background: color-mix(in srgb, var(--serve-color) 12%, transparent);
  color: var(--serve-color);
  border: 1px solid color-mix(in srgb, var(--serve-color) 35%, transparent);
}

/* ABOUT US */
.about-section {
  position: relative;
  background-image: url('../images/bg-offer.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 3rem;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

@media (max-width: 900px) {
  .about-section {
    background-attachment: scroll;
  }
}

.about-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.about-heading-wrap {
  max-width: 720px;
  margin-bottom: 3rem;
}

.about-heading-wrap .section-title {
  text-align: left;
  color: var(--white);
}

.about-heading-wrap .section-desc {
  text-align: left;
  margin: 0;
  max-width: none;
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.about-card {
  background: #F8F6F1;
  border: 1px solid rgba(6, 6, 8, 0.08);
  border-radius: 18px;
  padding: 2rem;
}

.about-card-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.about-card-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--mid);
}

.about-founder-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
}

.about-founder-link i {
  display: inline-flex;
  transition: transform 0.2s ease;
}

.about-founder-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 700px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ECOSYSTEM PREVIEW */
.eco-preview {
  position: relative;
  padding: 100px 3rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 55% at 18% 15%, rgba(0, 200, 150, 0.07), transparent 60%),
    radial-gradient(ellipse 55% 55% at 85% 85%, rgba(74, 158, 255, 0.05), transparent 60%),
    var(--white);
  border-top: 1px solid rgba(6, 6, 8, 0.08);
  border-bottom: 1px solid rgba(6, 6, 8, 0.08);
}

.eco-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(6, 6, 8, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent 78%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent 78%);
  pointer-events: none;
}

.eco-preview-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: center;
}

.eco-preview-copy .section-desc {
  color: rgba(6, 6, 8, 0.65);
  text-align: left;
  max-width: 460px;
  margin: 0 0 1.6rem;
}

.eco-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  margin: 0 0 2.2rem;
}

.eco-legend-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(6, 6, 8, 0.65);
}

.eco-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(6, 6, 8, 0.06);
}

.eco-preview-visual {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eco-canvas {
  width: 100%;
  height: 100%;
}

.eco-preview-label {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  color: rgba(6, 6, 8, 0.65);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(6, 6, 8, 0.08);
  padding: 6px 14px;
  border-radius: 100px;
}

.eco-pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}

/* CV SECTION */
.cv-section {
  position: relative;
  background:
    linear-gradient(to top, rgba(0, 200, 150, 0.52), transparent 65%),
    var(--white);
  border-top: 1px solid rgba(6, 6, 8, 0.08);
  padding: 100px 3rem;
  overflow: hidden;
}

.cv-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.cv-heading-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}

.cv-heading-wrap .section-desc {
  text-align: left;
}

.cv-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(245, 166, 35, 0.25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.cv-builder {
  background: var(--white);
  border: 1px solid var(--teal);
  border-radius: 20px;
  padding: 1.85rem;
}

.cv-builder-hd {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.4rem;
}

.cv-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.cv-other-input {
  margin-top: 0.5rem;
}

.cv-other-input.hidden {
  display: none;
}

.cv-upload-field {
  border: 1px dashed rgba(11, 122, 117, 0.35);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  background: rgba(11, 122, 117, 0.04);
}

.cv-upload-field input[type='file'] {
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

.cv-upload-status {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: #0b7a75;
}

.cv-upload-status.hidden {
  display: none;
}

.ats-box {
  background: rgba(0, 200, 150, 0.07);
  border: 1px solid rgba(0, 200, 150, 0.18);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  display: none;
  gap: 0.85rem;
  align-items: center;
}

.ats-box.show {
  display: flex;
}

.ats-lbl {
  font-family: 'Roboto', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  display: block;
  margin-bottom: 5px;
}

.ats-track {
  flex: 1;
  height: 4px;
  background: rgba(0, 200, 150, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.ats-fill {
  height: 100%;
  background: var(--teal);
  border-radius: 2px;
  transition: width 0.5s ease;
  width: 0%;
}

.ats-hint {
  font-size: 0.68rem;
  color: var(--muted2);
  margin-top: 4px;
}

.cv-tips {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cv-tip {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

.cv-tip span {
  font-size: 14px;
  color: var(--teal);
}

.tdot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.tdot.g {
  background: #22c55e;
}

.tdot.a {
  background: var(--amber);
}

.tdot.r {
  background: var(--coral);
}

.cv-gen {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 16px;
  border-radius: 100px;
  background: var(--teal);
  color: var(--black);
  border: none;
  cursor: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  margin-top: 0.35rem;
}

.cv-gen:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 200, 150, 0.25);
}

.cv-features {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.cv-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 6px 8px;
  border-radius: 10px;
  background: rgba(0, 200, 150, 0.40);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cv-feat:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.cv-feat-ico {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: var(--teal);
  border: 1px solid var(--teal-border);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.4s ease, color 0.4s ease;
}

.cv-feat-ico i {
  display: flex;
  width: 18px;
  height: 18px;
}

.cv-feat:hover .cv-feat-ico {
  background: var(--white);
  color: var(--teal);
}

.cv-feat-title {
  font-family: 'Roboto', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.cv-feat-desc {
  font-size: 14px;
  color: var(--black);
  line-height: 1.6;
}

/* INSTRUCTOR */
.instructor-section {
  padding: 0 3rem 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.inst-wrap {
  background: linear-gradient(135deg, rgba(0, 200, 150, 0.07), rgba(0, 200, 150, 0.02));
  border: 1px solid var(--teal-border);
  border-radius: 24px;
  padding: 2.75rem 3rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.inst-av {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}

.inst-name {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.inst-role {
  font-size: 0.78rem;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 0.65rem;
}

.inst-bio {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
}

.inst-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
}

.ibadge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 11px;
  border-radius: 100px;
  border: 1px solid var(--teal-border);
  color: var(--teal);
  background: var(--teal-dim);
}

/* PLANS */
.plans-section {
  background: #EFF8F4;
  border-top: 1px solid rgba(6, 6, 8, 0.08);
  padding: 100px 3rem;
}

.plans-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.plans-heading-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.plans-heading-wrap .section-title {
  color: var(--black);
  text-align: center;
  max-width: 700px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 760px;
  margin: 0 auto;
}

.plan {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(6, 6, 8, 0.08);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(6, 6, 8, 0.05);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.plan:hover {
  transform: translateY(-6px);
}

.plan::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  transform: translate(35%, 35%) scale(1);
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
  pointer-events: none;
}

.plan:hover::after {
  transform: translate(35%, 35%) scale(60);
}

.plan:hover .plan-name,
.plan:hover .plan-period,
.plan:hover .plan-feats li {
  color: var(--white);
}

.plan:hover .plan-price {
  color: var(--black);
}

.plan:hover .plan-feats {
  border-top-color: rgba(248, 246, 241, 0.25);
}

.plan:hover .plan-feats li::before {
  background: var(--white);
  color: var(--teal);
}

.plan.featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px rgba(0, 200, 150, 0.25), 0 25px 60px rgba(0, 200, 150, 0.18);
}

.plan-soon {
  opacity: 0.45;
  cursor: not-allowed;
}

.plan-soon .plan-name,
.plan-soon .plan-price,
.plan-soon .plan-period,
.plan-soon .plan-feats li {
  opacity: 0.7;
}

.plan.featured::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: radial-gradient(120% 100% at 50% 100%, rgba(0, 200, 150, 0.25) 0%, rgba(0, 200, 150, 0) 70%);
  pointer-events: none;
}

.plan-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-family: 'Roboto', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--teal);
  background: rgba(0, 200, 150, 0.08);
  color: var(--teal);
  white-space: nowrap;
  z-index: 1;
  transition: color 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.plan:hover .plan-badge {
  color: var(--black);
  border-color: var(--black);
  background: rgba(6, 6, 8, 0.08);
}

.plan-name {
  position: relative;
  z-index: 1;
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.4rem;
  transition: color 0.4s ease;
}

.plan-price {
  position: relative;
  z-index: 1;
  font-family: 'Roboto', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--teal);
  margin-bottom: 0.4rem;
  transition: color 0.4s ease;
}

.plan-period {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  color: rgba(6, 6, 8, 0.55);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  transition: color 0.4s ease;
}

.plan-feats {
  position: relative;
  z-index: 1;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(6, 6, 8, 0.08);
  flex-grow: 1;
  transition: border-color 0.4s ease;
}

.plan-feats li {
  font-size: 14px;
  color: rgba(6, 6, 8, 0.6);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  line-height: 1.5;
  transition: color 0.4s ease;
}

.plan-feats li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--black);
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.6rem;
  margin-top: 1px;
  transition: background 0.4s ease, color 0.4s ease;
}

.plan-btn {
  position: relative;
  z-index: 1;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 13px;
  border-radius: 100px;
  border: 1px solid rgba(6, 6, 8, 0.14);
  background: rgba(6, 6, 8, 0.04);
  cursor: none;
  color: var(--black);
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.plan-btn:hover {
  background: var(--teal);
  color: var(--black);
  border-color: var(--teal);
}

.plan.featured .plan-btn {
  background: var(--teal);
  color: var(--black);
  border-color: var(--teal);
  box-shadow: 0 10px 30px rgba(0, 200, 150, 0.35);
}

.plan.featured .plan-btn:hover {
  transform: translateY(-2px);
}

.plan:hover .plan-btn {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}

/* CTA BAND */
.cta-band {
  position: relative;
  overflow: hidden;
  background-color: var(--teal);
  background-image: url('../images/bg-cta.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 170px 3rem;
  text-align: center;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 70%;
  opacity: 0.9;
  background: var(--teal);
  clip-path: polygon(0 0, 50% 0, 78% 100%, 0 100%);
  z-index: 1;
}

.cta-band h2 {
  position: relative;
  z-index: 2;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 0.85rem;
  max-width: 720px;
  margin: 0 auto;
}

.cta-band h2 span {
  color: #4763c0d2;
}

.cta-band p {
  position: relative;
  z-index: 2;
  font-size: 0.95rem;
  color: var(--black);
  max-width: 460px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.cta-band .btn-dark {
  position: relative;
  z-index: 2;
}

.btn-dark {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 15px 38px;
  border-radius: 100px;
  background: var(--teal);
  color: var(--white);
  border: none;
  cursor: none;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  gap: 10px;
}

.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* FOOTER */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 4.5rem 3rem 0;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

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

.footer-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 0.9rem;
}

.footer-cols {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col-title {
  font-family: 'Roboto', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.3rem;
}

.footer-col a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  width: fit-content;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--teal);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--muted2);
}

.footer-paypal-form {
  display: inline-block;
}

.footer-paypal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-paypal-btn img {
  height: 16px;
  width: auto;
  display: block;
}

.footer-paypal-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.12);
}

.footer-paypal-btn-pro {
  background: #00C896;
  color: #060608;
}

.footer-paypal-btn-pro:hover {
  background: #00b085;
  box-shadow: 0 8px 20px rgba(0, 200, 150, 0.25);
}

.footer-paypal-btn-pro.is-unlocked {
  background: rgba(0, 200, 150, 0.15);
  color: #00C896;
  cursor: default;
  box-shadow: none;
}

.footer-paypal-btn-pro.is-unlocked:hover {
  transform: none;
  box-shadow: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE — tablet */
@media (max-width: 900px) {
  nav {
    padding: 0 1.5rem;
  }

  .hero {
    padding: 100px 1.5rem 60px;
  }

  h1 {
    font-size: 3rem;
  }

  .trust-item {
    min-width: 160px;
  }

  .offer-card {
    flex-basis: calc((100% - 1.5rem) / 2);
  }

  .eco-preview {
    padding: 60px 1.5rem;
  }

  .eco-preview-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .eco-preview-copy {
    text-align: center;
  }

  .eco-preview-copy .section-title {
    text-align: center;
  }

  .eco-preview-copy .section-desc {
    text-align: center;
    margin: 0 auto 1.6rem;
  }

  .eco-legend {
    justify-content: center;
  }

  .cv-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cv-heading-wrap {
    align-items: center;
    text-align: center;
  }

  .cv-heading-wrap .section-title {
    text-align: center;
  }

  .cv-heading-wrap .section-desc {
    text-align: center;
  }

  .cv-section {
    padding: 60px 1.5rem;
  }

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

  .inst-wrap {
    flex-direction: column;
    padding: 2rem;
  }

  .cta-band {
    padding: 60px 1.5rem;
  }

  footer {
    padding: 3.5rem 1.5rem 0;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-cols {
    justify-content: center;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .serve-section,
  .offer-section,
  .instructor-section,
  .plans-section {
    padding: 60px 1.5rem;
  }
}

/* RESPONSIVE — mobile */
@media (max-width: 600px) {
  .trust-bar-wrap--bottom {
    padding: 0;
  }

  .hero {
    min-height: 70vh;
    padding: 20px 1rem 50px;
  }

  .hero-eyebrow {
    font-size: 0.62rem;
    padding: 4px 12px;
    margin-bottom: 1.5rem;
  }

  h1 {
    font-size: 2.4rem;
    letter-spacing: -0.03em;
  }

  .hero-sub {
    font-size: 0.92rem;
    margin-bottom: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-main,
  .btn-ghost {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }

  .serve-section,
  .offer-section,
  .instructor-section,
  .plans-section,
  .about-section {
    padding: 50px 1rem;
  }

  .section-title {
    font-size: 1.7rem;
    text-align: center;
  }

  .section-desc {
    font-size: 0.88rem;
    margin-bottom: 2rem;
  }

  .serve-card {
    padding: 1.5rem;
  }

  .serve-desc {
    font-size: 14px;
  }

  .offer-card {
    flex-basis: 100%;
    padding: 1.5rem;
  }

  .offer-carousel-controls {
    justify-content: center;
  }

  .eco-preview {
    padding: 50px 1rem;
  }

  .eco-preview-inner {
    gap: 2.5rem;
  }

  .eco-preview-copy .section-desc {
    max-width: none;
  }

  .eco-preview-visual {
    height: 280px;
  }

  .cv-section {
    padding: 50px 1rem;
  }

  .cv-builder {
    padding: 14px;
  }

  .cv-builder-hd {
    font-size: 16px;
  }

  .cv-row {
    grid-template-columns: 1fr;
  }

  .cv-feat {
    flex-direction: column;
  }

  .plans-section {
    padding: 50px 1rem;
  }

  .plan {
    padding: 14px;
  }

  .plan-price {
    font-size: 2rem;
  }

  .inst-wrap {
    padding: 1.5rem;
    border-radius: 18px;
  }

  .inst-av {
    width: 60px;
    height: 60px;
    font-size: 1.1rem;
  }

  .cta-band {
    padding: 50px 1rem;
  }

  .cta-band p {
    font-size: 0.88rem;
  }

  .btn-dark {
    width: 100%;
    text-align: center;
  }

  footer {
    padding: 2.5rem 1rem 0;
  }

  .footer-cols {
    gap: 2rem;
  }
}

/* Cursor: disable custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {

  body,
  .lang-btn,
  .help-link,
  .utility-social a,
  .nav-links>a,
  .nav-signin,
  .nav-signup,
  .btn-main,
  .btn-ghost,
  .plan-btn,
  .cv-gen,
  .btn-dark {
    cursor: auto;
  }

  .cur,
  .cur-ring {
    display: none;
  }
}

/* PAGE LOADER */
html.is-loading,
html.is-loading body {
  overflow: hidden;
  height: 100%;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  transition: opacity .5s ease, visibility .5s ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ecg {
  width: 380px;
  height: 100px;
}

.ecg-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.ecg-track {
  fill: none;
  stroke: rgba(248, 246, 241, 0.1);
  stroke-width: 3;
  stroke-linejoin: round;
}

.ecg-pulse {
  fill: none;
  stroke: url(#ecgFade);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 22 78;
  stroke-dashoffset: 0;
  animation: ecgSweep 3s linear infinite;
  filter: drop-shadow(0 0 6px rgba(0, 200, 150, 0.6));
}

@keyframes ecgSweep {
  to {
    stroke-dashoffset: -100;
  }
}