:root {
  --fp-bg-gradient-start: #1a0366;
  --fp-bg-gradient-mid: #1a0b2e;
  --fp-bg-gradient-end: #1f0366;
  --fp-nav-bg: #151235;
  --fp-hero-bg: #241879;
  --fp-card-bg: #ffffff;
  --fp-dark-text: #1f1d44;
  --fp-muted-text: #656388;
  --fp-gray-text: #8692a7;
  --fp-body-text: #e9d4ff;
  --fp-feature-text: #f3e8ff;
  --fp-white: #ffffff;
  --fp-green-check: #05DF72;
  --fp-radius: 16px;
  --fp-radius-sm: 8px;
  --fp-transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.fp-page {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--fp-white);
  line-height: 1.6;
  overflow-x: hidden;
  background: linear-gradient(180deg, var(--fp-bg-gradient-start) 0%, var(--fp-bg-gradient-mid) 50%, var(--fp-bg-gradient-end) 100%);
  margin: 0;
  padding: 0;
}

.fp-page img {
  max-width: 100%;
  height: auto;
}

.fp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   HEADER / NAVBAR
   ======================================== */
.fp-header {
  background: var(--fp-nav-bg);
  padding: 17px 0;
  position: relative;
  z-index: 100;
  box-shadow: 0 4px 4px rgba(137, 137, 137, 0.2);
}

.fp-header .fp-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.fp-header__logo svg {
  height: 38px;
  width: auto;
  display: block;
}

/* ========================================
   HERO BANNER
   ======================================== */
.fp-hero {
  background: var(--fp-hero-bg);
  position: relative;
  overflow: hidden;
  min-height: 650px;
}

.fp-hero__blur {
  position: absolute;
  inset: 0;
  filter: blur(370px);
  z-index: 0;
  pointer-events: none;
}

.fp-hero__ellipse {
  position: absolute;
  border-radius: 50%;
}

.fp-hero__ellipse--purple1 {
  width: 449px;
  height: 449px;
  background: #b26ee6;
  top: -100px;
  left: -100px;
}

.fp-hero__ellipse--purple2 {
  width: 405px;
  height: 405px;
  background: #b26ee6;
  top: -50px;
  right: 100px;
}

.fp-hero__ellipse--yellow {
  width: 287px;
  height: 287px;
  background: #ffd35c;
  top: 200px;
  left: -80px;
}

.fp-hero__ellipse--green {
  width: 284px;
  height: 284px;
  background: #aceac7;
  bottom: -100px;
  right: -50px;
}

.fp-hero__ellipse--blue {
  width: 405px;
  height: 405px;
  background: #3cadff;
  bottom: -150px;
  left: 100px;
}

.fp-hero__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 40px;
  min-height: 650px;
}

.fp-hero__content {
  flex: 0 0 50%;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.fp-hero__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: var(--fp-white);
  margin: 0 0 8px;
}

.fp-hero__title-gradient {
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  margin: 0 0 28px;
  background: linear-gradient(90deg, #ffb33a, #ff576a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fp-hero__subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  color: var(--fp-white);
  margin: 0 0 28px;
}

.fp-hero__cta {
  display: inline-block;
  padding: 18px 60px;
  background: linear-gradient(90deg, #55ffad, #14b8ff);
  border-radius: 123px;
  color: var(--fp-dark-text);
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity var(--fp-transition), transform var(--fp-transition);
  text-align: center;
}

.fp-hero__cta:hover {
  opacity: 0.9;
  transform: scale(1.02);
  text-decoration: none;
  color: var(--fp-dark-text);
}

.fp-hero__image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 67%;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.fp-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.fp-pricing {
  padding: 100px 0;
}

.fp-pricing__header {
  text-align: center;
  margin-bottom: 64px;
}

.fp-pricing__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--fp-white);
  margin: 0 0 16px;
  line-height: 1.2;
}

.fp-pricing__subtitle {
  font-size: 20px;
  color: var(--fp-body-text);
  opacity: 0.8;
  margin: 0;
  line-height: 28px;
}

.fp-pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.fp-card {
  position: relative;
  transition: transform var(--fp-transition);
}

.fp-card:hover {
  transform: translateY(-4px);
}

.fp-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 10px 30px;
  background: linear-gradient(180deg, #fd4aa9, #ff926e);
  color: var(--fp-white);
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  border-radius: 16px 16px 16px 0;
  position: relative;
  z-index: 1;
  margin-bottom: -16px;
}

.fp-card__body {
  background: var(--fp-card-bg);
  border-radius: var(--fp-radius);
  padding: 32px 16px;
  position: relative;
  z-index: 0;
}

.fp-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 0;
  border: none;
}

.fp-card__name {
  font-size: 32px;
  font-weight: 700;
  color: var(--fp-dark-text);
  margin: 0;
  letter-spacing: -1px;
  line-height: 1;
}

.fp-card__users {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border: none;
  background: none;
  border-radius: 8px;
  font-size: 22px;
  font-weight: 600;
  color: var(--fp-dark-text);
  position: relative;
}

.fp-card__users::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1.5px;
  background: linear-gradient(135deg, #7140f4, #cd55ff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.fp-card__users svg {
  flex-shrink: 0;
}

.fp-card__users span {
  background: linear-gradient(135deg, #7140f4, #cd55ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 22px;
}

.fp-card__divider {
  height: 0.5px;
  background: #655f88;
  margin: 24px 0;
}

.fp-card__dropdown {
  margin-bottom: 16px;
  position: relative;
  z-index: 10;
}

.fp-card__dropdown.is-open {
  z-index: 20;
}

.fp-card__dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--fp-dark-text);
  background: var(--fp-card-bg);
  border: 1px solid #e0dce8;
  border-radius: var(--fp-radius-sm);
  cursor: pointer;
  padding: 10px 16px;
  width: 100%;
  text-align: left;
  line-height: 32px;
  font-family: inherit;
}

.fp-card__dropdown.is-open .fp-card__dropdown-toggle {
  border-radius: var(--fp-radius-sm) var(--fp-radius-sm) 0 0;
  border-bottom-color: transparent;
}

.fp-card__dropdown-chevron {
  flex-shrink: 0;
  transition: transform var(--fp-transition);
}

.fp-card__dropdown.is-open .fp-card__dropdown-chevron {
  transform: rotate(180deg);
}

.fp-card__dropdown-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--fp-card-bg);
  border: 1px solid #e0dce8;
  border-top: none;
  border-radius: 0 0 var(--fp-radius-sm) var(--fp-radius-sm);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.fp-card__dropdown.is-open .fp-card__dropdown-list {
  display: block;
}

.fp-card__dropdown-item {
  padding: 10px 16px;
  font-size: 24px;
  font-weight: 500;
  color: var(--fp-dark-text);
  cursor: pointer;
  line-height: 32px;
  transition: background var(--fp-transition);
}

.fp-card__dropdown-item:hover {
  background: #f5f3fa;
}

.fp-card__dropdown-item.is-selected {
  display: none;
}

.fp-card__dropdown-label {
  display: block;
  width: 100%;
  font-size: 24px;
  font-weight: 500;
  color: var(--fp-dark-text);
  text-align: center;
  line-height: 32px;
}

.fp-card__price {
  text-align: center;
  margin-bottom: 24px;
}

.fp-card__price-current {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 4px;
}

.fp-card__price-sell {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  background: linear-gradient(90deg, #fd4aa9, #ff926e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fp-card__price-unit {
  font-size: 24px;
  font-weight: 700;
  color: var(--fp-dark-text);
  line-height: 32px;
}

.fp-card__price-original {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  color: var(--fp-gray-text);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.fp-card__price-old {
  text-decoration: line-through;
}

.fp-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.fp-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  font-size: 18px;
  color: var(--fp-muted-text);
  line-height: 26px;
  font-weight: 500;
}

.fp-card__features li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.fp-card__cta {
  display: block;
  max-width: 280px;
  margin: 0 auto;
  padding: 9px 24px;
  background: linear-gradient(90deg, #55ffb3, #14b9ff);
  color: var(--fp-dark-text);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity var(--fp-transition), transform var(--fp-transition);
  box-shadow: 1px 1px 4px rgba(117, 171, 255, 1);
  line-height: 24px;
}

.fp-card__cta:hover {
  opacity: 0.9;
  transform: scale(1.02);
  text-decoration: none;
  color: var(--fp-dark-text);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.fp-features {
  padding: 100px 0;
}

.fp-features__header {
  text-align: center;
  margin-bottom: 64px;
}

.fp-features__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--fp-white);
  margin: 0 0 16px;
}

.fp-features__subtitle {
  font-size: 20px;
  color: var(--fp-body-text);
  opacity: 0.8;
  margin: 0;
  line-height: 28px;
}

.fp-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fp-feature-card {
  position: relative;
  border-radius: 14px;
  padding: 76px 24px 34px;
  text-align: center;
  background: transparent;
  overflow: visible;
  margin-top: 50px;
}

.fp-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(135deg, #e558e7, #6773f8);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.fp-feature-card__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #e558e7, #6773f8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.fp-feature-card__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--fp-white);
}

.fp-feature-card__desc {
  text-align: left;
}

.fp-feature-card__desc p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  color: var(--fp-feature-text);
  line-height: 24px;
  margin: 0 0 12px;
}

.fp-feature-card__desc p svg {
  flex-shrink: 0;
  margin-top: 4px;
}

/* ========================================
   3-STEP PROCESS
   ======================================== */
.fp-steps {
  padding: 100px 0;
}

.fp-steps__title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 48px;
  color: var(--fp-white);
}

.fp-steps__divider {
  display: none;
}

.fp-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.fp-steps__grid::before {
  content: '';
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ad46ff, #f6339a, #ad46ff);
  z-index: 0;
}

.fp-step {
  text-align: center;
}

.fp-step__number {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #e558e7, #6773f8);
  position: relative;
  z-index: 1;
}

.fp-step__number span {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3c0366;
  font-size: 36px;
  font-weight: 700;
  color: var(--fp-white);
}

.fp-step__icon {
  width: 56px;
  height: 56px;
  margin: 24px auto 16px;
  background: linear-gradient(135deg, #e558e7, #6773f8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fp-step__label {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--fp-white);
}

.fp-step__desc {
  font-size: 16px;
  color: var(--fp-body-text);
  opacity: 0.8;
  line-height: 26px;
  max-width: 340px;
  margin: 0 auto;
}

/* ========================================
   REGISTRATION FORM
   ======================================== */
.fp-register {
  padding: 100px 0;
}

.fp-register__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 40px;
  padding: 40px 100px;
  border-radius: 32px;
  background: linear-gradient(135deg, #4f41a9, #302671);
  position: relative;
  overflow: hidden;
}

.fp-register__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  padding: 1px;
  background: linear-gradient(135deg, #6773f8, #ba9fe1);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.fp-register__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--fp-white);
}

.fp-register__packages {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fp-register__radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.fp-register__radio-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: var(--fp-transition);
  color: var(--fp-white);
}

.fp-register__radio-label:hover {
  opacity: 0.85;
}

.fp-register__checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  flex-shrink: 0;
  position: relative;
  transition: var(--fp-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fp-register__checkbox svg {
  opacity: 0;
  transition: opacity var(--fp-transition);
}

.fp-register__radio:checked ~ .fp-register__checkbox {
  border-color: #55ffad;
  background: linear-gradient(135deg, #55ffad, #14b8ff);
}

.fp-register__radio:checked ~ .fp-register__checkbox svg {
  opacity: 1;
}

.fp-register__plan-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 2px;
}

.fp-register__plan-name {
  font-size: 20px;
  font-weight: 400;
}

.fp-register__plan-prices {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
}

.fp-register__plan-old {
  font-size: 12px;
  color: #bec4d0;
  text-decoration: line-through;
}

.fp-register__plan-sale {
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(90deg, #55ffad, #14b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fp-register__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fp-register__input-group {
  position: relative;
}

.fp-register__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.fp-register__input-wrap svg {
  position: absolute;
  left: 16px;
  pointer-events: none;
  z-index: 1;
}

.fp-register__input-wrap input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: var(--fp-white);
  font-size: 20px;
  outline: none;
  transition: border-color var(--fp-transition);
  font-family: inherit;
}

.fp-register__input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.fp-register__input-wrap input:focus {
  border-color: #55ffad;
}

.fp-register__input-group input.error,
.fp-register__input-wrap input.error {
  border-color: #fd4aa9;
}

.fp-register__input-group label.error,
.fp-register__input-group div.error {
  color: #fd4aa9;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

.fp-register__submit {
  width: 100%;
  padding: 14px 40px;
  background: linear-gradient(90deg, #55ffad, #14b8ff);
  color: var(--fp-dark-text);
  font-size: 20px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity var(--fp-transition);
  margin-top: 8px;
  font-family: inherit;
}

.fp-register__submit:hover {
  opacity: 0.9;
}

/* ========================================
   NOTES SECTION
   ======================================== */
.fp-notes {
  padding: 100px 0 80px;
}

.fp-notes__title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 48px;
  color: var(--fp-white);
}

.fp-notes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fp-note-card {
  position: relative;
  border-radius: 14px;
  padding: 32px 24px;
  background: transparent;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.fp-note-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(135deg, #38c8f9, #ffbe4c);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.fp-note-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.fp-note-card__icon--yellow,
.fp-note-card__icon--blue,
.fp-note-card__icon--red {
  background: #EFB84D;
}

.fp-note-card__content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.fp-note-card__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--fp-white);
}

.fp-note-card__desc {
  font-size: 14px;
  color: var(--fp-body-text);
  opacity: 0.7;
  line-height: 1.7;
  margin: 0;
}

/* ========================================
   FOOTER
   ======================================== */
.fp-footer {
  background: var(--fp-nav-bg);
  padding: 55px 20px;
}

.fp-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.fp-footer__logo img {
  height: 38px;
}

.fp-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: var(--fp-white);
}

.fp-footer__contact-item a {
  color: var(--fp-white);
  text-decoration: none;
  transition: opacity var(--fp-transition);
}

.fp-footer__contact-item a:hover {
  opacity: 0.8;
  text-decoration: none;
  color: var(--fp-white);
}

.fp-footer__contact-item svg {
  flex-shrink: 0;
}

.fp-footer__address {
  max-width: 350px;
}

.fp-footer__address span {
  font-size: 18px;
}

/* ========================================
   RESPONSIVE: TABLET (< 992px)
   ======================================== */
@media (max-width: 991px) {
  .fp-hero {
    min-height: auto;
  }

  .fp-hero__inner {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: auto;
  }

  .fp-hero__content {
    flex: 0 0 auto;
    max-width: 100%;
  }

  .fp-hero__cta {
    font-size: 20px;
    padding: 16px 40px;
  }

  .fp-hero__image {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: 760px;
    margin: 0 0 24px auto;
    overflow: visible;
  }

  .fp-hero__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
    margin: 0 auto 24px;
    overflow: visible;
  }

  .fp-hero__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
  }

  .fp-hero__title {
    font-size: 36px;
    line-height: 44px;
  }

  .fp-hero__title-gradient {
    font-size: 36px;
    line-height: 44px;
  }

  .fp-pricing__title,
  .fp-features__title,
  .fp-steps__title,
  .fp-notes__title {
    font-size: 36px;
  }

  .fp-pricing__cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .fp-features__grid {
    display: block;
    max-width: none;
    margin: 0;
  }

  .fp-features__grid .slick-list {
    overflow: hidden;
    padding: 40px 0px 0px !important;
    margin: -40px 0px 0;
    height: auto !important;
  }

  .fp-features__grid .slick-track {
    display: flex;
    align-items: stretch;
  }

  .fp-features__grid .slick-slide {
    /* padding: 20px 22px; */
    height: auto;
  }

  .fp-features__grid .slick-slide > div {
    height: 100%;
  }

  .fp-features__grid .slick-slide .fp-feature-card {
    height: 100%;
    display: flex !important;
    flex-direction: column;
    padding: 56px 20px 24px;
    margin-top: 40px;
  }

  .fp-features__grid .slick-slide .fp-feature-card__icon {
    width: 64px;
    height: 64px;
    top: -32px;
  }

  .fp-features__grid .slick-slide .fp-feature-card__icon svg {
    width: 28px;
    height: 28px;
  }

  .fp-features__grid .slick-slide .fp-feature-card__title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .fp-features__grid .slick-slide .fp-feature-card__desc p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px;
  }

  .fp-features__grid .slick-dots {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex !important;
    justify-content: center;
    gap: 8px;
  }

  .fp-features__grid .slick-dots li {
    margin: 0;
    padding: 0;
  }

  .fp-features__grid .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0;
    font-size: 0;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .fp-features__grid .slick-dots li.slick-active button {
    background: #55ffad;
  }

  .fp-steps__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fp-steps__grid::before {
    display: none;
  }

  .fp-steps__divider {
    display: none;
  }

  .fp-register__inner {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .fp-notes__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fp-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .fp-footer__address {
    max-width: 100%;
  }
}

/* ========================================
   RESPONSIVE: MOBILE (< 768px)
   ======================================== */
@media (max-width: 767px) {
  .fp-header .fp-container {
    justify-content: center;
  }

  .fp-hero__inner {
    padding-top: 24px;
    padding-bottom: 20px;
    gap: 16px;
  }

  .fp-hero__title {
    font-size: 24px;
    line-height: 32px;
  }

  .fp-hero__title-gradient {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
  }

  .fp-hero__subtitle {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .fp-hero__cta {
    font-size: 20px;
    padding: 16px 40px;
    width: 100%;
    max-width: 370px;
  }

  .fp-hero__image {
    margin: 0 auto;
  }

  .fp-pricing,
  .fp-features,
  .fp-steps,
  .fp-notes {
    padding: 48px 0;
  }

  .fp-pricing__header,
  .fp-features__header {
    margin-bottom: 40px;
  }

  .fp-pricing__title,
  .fp-features__title,
  .fp-steps__title,
  .fp-notes__title {
    font-size: 32px;
    line-height: 40px;
  }

  .fp-pricing__subtitle,
  .fp-features__subtitle {
    font-size: 18px;
    line-height: 24px;
  }

  .fp-pricing__cards {
    max-width: 100%;
  }

  .fp-card__badge {
    font-size: 36px;
    line-height: 44px;
    padding: 12px 8px 24px;
  }

  .fp-card__name {
    font-size: 28px;
  }

  .fp-card__dropdown-toggle {
    font-size: 20px;
  }

  .fp-card__dropdown-item {
    font-size: 20px;
  }

  .fp-card__dropdown-label {
    font-size: 20px;
  }

  .fp-card__price-sell {
    font-size: 28px;
  }

  .fp-card__price-unit {
    font-size: 20px;
  }

  .fp-feature-card {
    padding: 48px 20px 28px;
  }

  .fp-feature-card__icon {
    width: 80px;
    height: 80px;
    top: -40px;
  }

  .fp-steps__title {
    margin-bottom: 32px;
  }

  .fp-register {
    padding: 48px 0;
  }

  .fp-register__inner {
    padding: 24px 16px;
    gap: 24px;
    border-radius: 20px;
  }

  .fp-register__plan-name {
    font-size: 16px;
  }

  .fp-register__input-wrap input {
    font-size: 16px;
    padding: 12px 14px 12px 44px;
  }

  .fp-register__submit {
    font-size: 18px;
  }

  .fp-step__number {
    width: 100px;
    height: 100px;
  }

  .fp-step__number span {
    width: 88px;
    height: 88px;
    font-size: 28px;
  }

  .fp-step__icon {
    width: 48px;
    height: 48px;
    margin: 16px auto 12px;
    border-radius: 10px;
  }

  .fp-step__icon svg {
    width: 20px;
    height: 20px;
  }

  .fp-notes__title {
    margin-bottom: 32px;
  }

  .fp-footer {
    padding: 40px 20px;
  }

  .fp-footer__contact-item {
    font-size: 14px;
  }

  .fp-footer__address span {
    font-size: 14px;
  }
}

/* ========================================
   UTILITY: hide legacy form elements
   ======================================== */
.fp-page .header,
.fp-page .banner,
.fp-page .footer:not(.fp-footer) {
  display: none !important;
}
