/* ==========================================================================
   SATU.KG LANDING PAGE — VANILLA CSS (FIGMA DESIGN SYSTEM)
   ========================================================================== */

:root {
  --bg-page: #EEEEEE;
  --bg-container: #EEEEEE;
  --bg-card: #FFFFFF;
  --bg-dark: #292524;
  --bg-dark-soft: #302c2b;

  --accent-lime: #9AE600;
  --accent-lime-hover: #88ce00;
  --accent-red-bg: #FEF2F2;
  --accent-red-text: #EF4444;
  --accent-green-bg: #F0FDF4;
  --accent-green-text: #16A34A;

  --text-main: #292524;
  --text-muted: #666666;
  --text-light: #FFFFFF;
  --text-dark: #292524;

  --border-light: #E7E7E7;
  --border-dark: #373230;

  --font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scrollbar-color: #9AE600 #292524;
  scrollbar-width: thin;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.5;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 0;
  font-size: 14px;
}

/* MOBILE WRAPPER CONSTRAINER */
.mobile-wrapper {
  width: 100%;
  max-width: 440px;
  /* Constrained to mobile layout matching Figma 393px width */
  background-color: var(--bg-container);
  min-height: 100vh;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow-x: clip;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo,
.footer-logo {
  text-decoration: none;
  outline: none;
}

.logo {
  display: flex;
  align-items: center;
}

.header-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.header-logo-img {
  height: 36px;
  width: auto;
  display: block;
  background: #ffffff;
  padding: 6px 6px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-header-login {
  background-color: var(--text-dark);
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.btn-header-login:hover {
  background-color: #333333;
}

.btn-header-menu {
  width: 36px;
  height: 36px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* HERO SECTION (FULL BACKGROUND LANDSCAPE) */
.hero-section {
  position: relative;
  min-height: calc(99vh - 60px);
  padding: 12px 16px 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  border-radius: 0 0 16px 16px;
  background-image: url(assets/images/hero-bg.webp);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-header-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.badge-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  margin-bottom: 8px;
}

.flag-emoji-img {
  width: 16px;
  height: 16px;
  display: block;
}

.hero-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.hero-bold {
  font-weight: 800;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.35;
  margin-top: 6px;
  margin-bottom: 10px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}

.pill-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
}

.wa-icon {
  flex-shrink: 0;
  display: inline-block;
  transform-origin: center;
  animation: waWiggle 4s ease-in-out infinite;
  animation-delay: 2s;
}

.emoji-smartphone {
  display: inline-block;
  transform-origin: bottom center;
  animation: phoneVibrate 4s ease-in-out infinite;
}

@keyframes phoneVibrate {

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

  5%,
  15%,
  25% {
    transform: rotate(-10deg) scale(1.15);
  }

  10%,
  20% {
    transform: rotate(10deg) scale(1.15);
  }

  30% {
    transform: rotate(0deg) scale(1);
  }
}

.emoji-crm {
  display: inline-block;
  transform-origin: center;
  animation: crmPulse 4s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes crmPulse {

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

  12% {
    transform: scale(1.3);
  }

  24% {
    transform: scale(1);
  }
}

@keyframes waWiggle {

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

  8%,
  24% {
    transform: scale(1.2) rotate(15deg);
  }

  16% {
    transform: scale(1.2) rotate(-15deg);
  }

  32% {
    transform: scale(1) rotate(0deg);
  }
}

/* FLOATING ORDER CARD */
.floating-order-card {
  position: absolute;
  top: 42%;
  right: 12px;
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 11px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  text-align: left;
  z-index: 10;
  max-width: 220px;
  transform-origin: bottom left;
  animation: cardEntrance 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both,
    cardFloat 4s ease-in-out 0.6s infinite;
}

.order-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 12px;
}

.bell-icon {
  display: inline-block;
  font-size: 12px;
  transform-origin: top center;
  animation: bellRing 4s ease-in-out infinite;
}

/* Animations */
@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes cardFloat {
  0% {
    transform: scale(1) translateY(0) rotate(0deg);
  }

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

  100% {
    transform: scale(1) translateY(0) rotate(0deg);
  }
}

@keyframes bellRing {

  0%,
  100% {
    transform: rotate(0);
  }

  2%,
  6% {
    transform: rotate(15deg);
  }

  4%,
  8% {
    transform: rotate(-15deg);
  }

  10% {
    transform: rotate(0);
  }
}

.order-card-items {
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 4px;
  font-size: 10.5px;
}

.order-card-total {
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 4px;
  font-size: 11px;
}

.order-card-pointer {
  position: absolute;
  bottom: -5px;
  left: 20px;
  width: 10px;
  height: 10px;
  background-color: var(--bg-card);
  transform: rotate(45deg);
}

/* HERO ACTION BOX (INPUT + BUTTON) */
.hero-action-box {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

/* DOMAIN SWITCHER TABS */
.domain-toggle-tabs {
  display: flex;
  background-color: #f8f8f8;
  border-radius: var(--radius-sm);
  padding: 3px;
  gap: 4px;
}

.domain-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.domain-tab-btn:hover {
  color: var(--text-dark);
}

.domain-tab-btn.active {
  background-color: #FFFFFF;
  color: var(--text-dark);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.domain-input-wrapper {
  background-color: #F8F8F8;
  border-radius: var(--radius-sm);
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.domain-input-wrapper:focus-within {
  border-color: transparent;
  box-shadow: 0 0 0 3px #9AE600;
  background-color: #FFFFFF;
}

.domain-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  outline: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  text-align: right;
  padding: 0;
}

.domain-input::placeholder {
  color: #A1A1AA;
  font-weight: 400;
}

.domain-tld {
  color: var(--text-dark);
  font-weight: 800;
  font-size: 15px;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.btn-create-free {
  background-color: var(--accent-lime);
  color: var(--text-dark);
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s ease, transform 0.15s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.btn-create-free:hover {
  background-color: var(--accent-lime-hover);
}

.btn-create-free:active {
  transform: scale(0.98);
}

/* GENERAL SECTION STYLES */
.section {
  padding: 32px 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
}

.badge-red {
  background-color: var(--accent-red-bg);
  color: var(--accent-red-text);
}

.badge-green {
  background-color: var(--accent-green-bg);
  color: var(--accent-green-text);
}

.badge-dark {
  background-color: var(--text-dark);
  color: var(--text-light);
}

.section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
}

/* COMPARISON CAROUSEL SECTION */
.comparison-section {
  padding: 32px 0 24px 0;
  background-color: var(--bg-container);
}

.comparison-main-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.35;
  padding: 0 24px;
  margin-bottom: 24px;
}

.carousel-wrapper {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-track {
  width: 100%;
  min-width: 0;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 calc(50% - 136.5px);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.carousel-track.active-drag {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.comp-carousel-card {
  flex: 0 0 273px;
  width: 273px;
  min-height: 334px;
  scroll-snap-align: center;
  background-color: #F8F8F8;
  border-radius: 24px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.comp-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.comp-badge-before {
  font-size: 12px;
  font-weight: 500;
  color: #666666;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 6px;
  background: #eeeeee;
  gap: 4px;
  margin-bottom: 10px;
}

.comp-badge-before span {
  display: inline-block;
  animation: dislikeBounce 3s ease-in-out infinite;
  animation-delay: 3.5s;
}

@keyframes dislikeBounce {

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

  10% {
    transform: translateY(4px);
  }

  17% {
    transform: translateY(-2px);
  }

  24% {
    transform: translateY(3px);
  }

  30% {
    transform: translateY(0);
  }
}

.comp-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 8px;
}

.comp-card-desc {
  font-size: 13px;
  color: #666666;
  line-height: 1.45;
}

.comp-bottom-white {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 16px 14px;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.comp-badge-after {
  background-color: var(--accent-lime);
  color: var(--text-dark);
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.comp-badge-after span {
  display: inline-block;
  transform-origin: bottom center;
  animation: likeBounce 3s ease-in-out infinite;
}

@keyframes likeBounce {

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

  10% {
    transform: scale(2) rotate(-15deg);
  }

  17% {
    transform: scale(1.6) rotate(10deg);
  }

  24% {
    transform: scale(2) rotate(-5deg);
  }

  30% {
    transform: scale(1) rotate(0deg);
  }
}

.comp-sub-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 6px;
}

.comp-sub-desc {
  font-size: 13px;
  color: #222222;
  line-height: 1.45;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #D8D8D8;
  transition: all 0.25s ease;
  cursor: pointer;
}

.dot.active {
  background-color: var(--text-dark);
}

/* 3 SIMPLE STEPS SECTION (FULL WIDTH LIKE HERO SECTION) */
.steps-section {
  position: relative;
  padding: 32px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--bg-container);
  overflow: hidden;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 6px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

.steps-title {
  font-size: 24px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.3;
  padding: 0 16px;
  margin-bottom: 20px;
}

.steps-bold {
  font-weight: 800;
}

/* STAGE WRAPPER WITH FULL WIDTH STEP-BG IMAGE (NO ROUNDED CORNERS, 100% WIDTH) */
.step-bg-wrapper {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 0;
  overflow: visible;
}

.step-bg-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

/* 3D OVERLAYS ON STEP-BG WITH FLIGHT ANIMATIONS */
.decor-butterfly-yellow {
  position: absolute;
  bottom: 32%;
  left: 29px;
  width: 72px;
  height: auto;
  z-index: 20;
  pointer-events: none;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
  animation: floatButterflyYellow 4.2s ease-in-out infinite alternate;
}

.decor-bee {
  position: absolute;
  top: 28%;
  right: 70px;
  width: 75px;
  height: auto;
  z-index: 20;
  pointer-events: none;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
  animation: floatBee 3.2s ease-in-out infinite alternate;
}

.decor-butterfly-blue {
  position: absolute;
  bottom: 40%;
  right: 10px;
  width: 80px;
  height: auto;
  z-index: 20;
  pointer-events: none;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
  animation: floatButterflyBlue 3.8s ease-in-out 0.6s infinite alternate;
}

@keyframes floatBee {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-8px) translateX(4px) rotate(3deg);
  }

  66% {
    transform: translateY(-4px) translateX(-3px) rotate(-2deg);
  }

  100% {
    transform: translateY(-10px) translateX(2px) rotate(4deg);
  }
}

@keyframes floatButterflyYellow {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

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

  100% {
    transform: translateY(-5px) rotate(3deg);
  }
}

@keyframes floatButterflyBlue {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

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

  100% {
    transform: translateY(-4px) rotate(-3deg);
  }
}

.btn-add-product-floating {
  position: absolute;
  bottom: 35%;
  right: 30px;
  background-color: #222222;
  color: #FFFFFF;
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 30;
}

.plus-icon {
  font-size: 16px;
  font-weight: 700;
}

/* 3 STEPS TIMELINE CARD (FLOATING OVER STEP-BG MEADOW IMAGE) */
.steps-timeline-card {
  position: relative;
  width: calc(100% - 24px);
  margin: -120px 0px 0px 0px;
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 24px 20px;
  z-index: 25;
  text-align: left;
}

.steps-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-timeline-item {
  display: flex;
  gap: 16px;
  position: relative;
  padding-bottom: 0;
}

.step-timeline-item:last-child {
  padding-bottom: 0;
}

.step-icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-circle-svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  z-index: 2;
  transition: transform 0.3s ease;
}

.step-svg-circle {
  transition: fill 0.3s ease, stroke 0.3s ease;
}

/* SYNCHRONIZED SEQUENTIAL GREEN PULSE (TOTAL 10.0s SLOW SMOOTH LOOP) */
.step-timeline-item:nth-child(1) .step-circle-svg {
  animation: circleGlowPulse 10s ease-in-out 0s infinite;
}

.step-timeline-item:nth-child(1) .step-svg-circle {
  animation: circleFillPulse 10s ease-in-out 0s infinite;
}

.step-timeline-item:nth-child(2) .step-circle-svg {
  animation: circleGlowPulse 10s ease-in-out 4.4s infinite;
}

.step-timeline-item:nth-child(2) .step-svg-circle {
  animation: circleFillPulse 10s ease-in-out 4.4s infinite;
}

.step-timeline-item:nth-child(3) .step-circle-svg {
  animation: circleGlowPulse 10s ease-in-out 8.6s infinite;
}

.step-timeline-item:nth-child(3) .step-svg-circle {
  animation: circleFillPulse 10s ease-in-out 8.6s infinite;
}

@keyframes circleGlowPulse {
  0% {
    box-shadow: 0 0 0px rgba(154, 230, 0, 0);
    transform: scale(1);
  }

  6% {
    box-shadow: 0 0 16px rgba(154, 230, 0, 0.85);
    transform: scale(1.1);
  }

  14% {
    box-shadow: 0 0 0px rgba(154, 230, 0, 0);
    transform: scale(1);
  }

  100% {
    box-shadow: 0 0 0px rgba(154, 230, 0, 0);
    transform: scale(1);
  }
}

@keyframes circleFillPulse {
  0% {
    fill: #FFFFFF;
    stroke: #EEEEEE;
  }

  6% {
    fill: #9AE600;
    stroke: #88CE00;
  }

  14% {
    fill: #FFFFFF;
    stroke: #EEEEEE;
  }

  100% {
    fill: #FFFFFF;
    stroke: #EEEEEE;
  }
}

.step-line {
  position: absolute;
  top: 40px;
  bottom: 0px;
  width: 2px;
  background-color: #EAEAEA;
  z-index: 1;
  overflow: hidden;
  border-radius: 2px;
}

.step-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(180deg, transparent 0%, var(--accent-lime) 50%, transparent 100%);
  box-shadow: 0 0 6px var(--accent-lime);
}

.step-timeline-item:nth-child(1) .step-line::after {
  animation: stepLineBeam 10s cubic-bezier(0.4, 0, 0.2, 1) 1.4s infinite;
}

.step-timeline-item:nth-child(2) .step-line::after {
  animation: stepLineBeam 10s cubic-bezier(0.4, 0, 0.2, 1) 5.8s infinite;
}

@keyframes stepLineBeam {
  0% {
    top: -100%;
    opacity: 0;
  }

  4% {
    opacity: 1;
  }

  24% {
    opacity: 1;
  }

  28% {
    top: 100%;
    opacity: 0;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

.step-content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-pill {
  display: inline-block;
  background-color: #F8F8F8;
  color: #8F8F8F;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
  border: 1px solid #EAEAEA;
}

.step-item-title {
  font-size: 16px;
  font-weight: 600;
  color: #292524;
  line-height: 1.35;
  margin-bottom: 6px;
}

.step-item-desc {
  font-size: 13px;
  color: #666666;
  line-height: 1.45;
  padding-bottom: 30px;
}

.step-item-desc strong {
  color: #292524;
  font-weight: 600;
}

.btn-create-free {
  width: 100%;
  height: 48px;
  background-color: var(--accent-lime);
  color: var(--text-dark);
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none;
  box-sizing: border-box;
}

.btn-create-free:hover {
  background-color: var(--accent-lime-hover);
}

/* FEATURES SECTION */
.features-section {
  position: relative;
  padding: 40px 0 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--bg-container);
  overflow: hidden;
}

.features-title {
  font-size: 24px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.3;
  padding: 0 16px;
  margin-bottom: 24px;
}

.features-bold {
  font-weight: 800;
}

.features-bg-box {
  position: relative;
  width: 100%;
  height: 260px;
  background-image: url(assets/images/features-bg.webp);
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  margin-bottom: -20px;
  border-radius: 0 0 16px 16px;
}

.decor-chuko {
  position: absolute;
  top: 48%;
  left: 48%;
  width: 32px;
  height: auto;
  pointer-events: none;
  z-index: 5;
  transform-origin: center;
  animation: chukoSpinFloat 6s ease-in-out infinite;
}

@keyframes chukoSpinFloat {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }

  25% {
    transform: translate(-42%, -58%) rotate(90deg) scale(1.2);
  }

  50% {
    transform: translate(-50%, -50%) rotate(180deg) scale(1);
  }

  75% {
    transform: translate(-58%, -42%) rotate(270deg) scale(0.8);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg) scale(1);
  }
}

/* FEATURES CAROUSEL SLIDER (PLACED NATURALLY BELOW BG IMAGE) */
.features-carousel-wrapper {
  margin-top: 24px;
  z-index: 20;
}

.feat-carousel-card {
  flex: 0 0 273px;
  width: 273px;
  min-height: 442px;
  scroll-snap-align: center;
  background-color: #F8F8F8;
  border-radius: 24px;
  padding: 20px 12px 12px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.feat-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.feat-icon-circle {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-icon-circle img {
  width: 40px;
  height: 40px;
}

.feat-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
}

/* MOCKUP CONTAINER INSIDE CARD */
.feat-mockup-box {
  width: 100%;
  height: 253px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #FFFFFF;
  margin-top: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* FOR WHOM SECTION */
.for-whom-section {
  text-align: center;
  align-items: center;
  padding: 32px 12px;
}

.for-whom-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
}

/* EMOJI TABS ROW */
.whom-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0px 0px;
  height: 72px;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.whom-tabs::-webkit-scrollbar {
  display: none;
}

.whom-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.whom-tab .whom-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  background: #F3F3F3;
  transition: all 0.25s ease;
}

.whom-tab .whom-tab-label {
  display: none;
}

.whom-tab.active .whom-emoji {
  width: 56px;
  height: 56px;
  font-size: 28px;
  background: #E8F5E9;
  box-shadow: 0 2px 12px rgba(76, 175, 80, 0.2);
}

.whom-tab.active .whom-tab-label {
  display: none;
}

.whom-tab.active {
  transform: scale(1.05);
}

/* DESCRIPTION CARD */
.whom-card {
  background: #F8F8F8;
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  width: 100%;
}

.whom-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.whom-card-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* PRICING SECTION */
.pricing-section {
  text-align: center;
}

.pricing-box {
  background-color: #F8F8F8;
  border-radius: var(--radius-xl);
  padding: 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-hero-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px 0 -20px 0;
  width: 100%;
}

.pricing-hero-img {
  width: 100%;
  max-width: 290px;
  height: auto;
  display: block;
}

.billing-toggle-container {
  display: flex;
  background-color: #EEEEEE;
  padding: 4px;
  border-radius: 12px;
  gap: 4px;
}

.billing-btn {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: #666;
  border-radius: 9px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.billing-btn.active {
  background-color: var(--bg-card);
  color: var(--text-dark);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.discount-badge {
  background-color: #F8F8F8;
  color: #555;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-full);
}

.billing-btn.active .discount-badge {
  background-color: var(--accent-lime);
  color: var(--text-dark);
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-card {
  background-color: var(--bg-card);
  padding: 18px 16px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}

.plan-card.active {
  border: 2px solid var(--accent-lime);
  box-shadow: 0 4px 20px rgba(154, 230, 0, 0.1);
}

.plan-card-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}

.plan-radio-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #DDDDDD;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.plan-card.active .plan-radio-circle {
  border-color: var(--accent-lime);
  background-color: var(--accent-lime);
}

.plan-radio-circle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--text-dark);
  display: none;
}

.plan-card.active .plan-radio-circle::after {
  display: block;
}

.plan-info {
  flex-grow: 1;
}

.plan-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.plan-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.plan-price-wrapper {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.plan-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
}

.price-val {
  font-size: 18px;
  font-weight: 800;
}

.currency {
  font-size: 12px;
  font-weight: 700;
}

.period {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.trial-note-text {
  font-size: 10px;
  color: #777777;
  margin-top: 2px;
}

.yearly-sub-note {
  font-size: 10px;
  color: #888888;
  margin-top: 2px;
}

.plan-details {
  display: none;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid #EEEEEE;
  padding-top: 16px;
  margin-top: 4px;
}

.plan-card.active .plan-details {
  display: flex;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.plan-features li {
  font-size: 12px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #EBF7EE;
  color: #2E7D32;
  font-size: 10px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-pricing-cta {
  display: block;
  width: 100%;
  margin-top: 16px;
  background-color: var(--accent-lime);
  color: var(--text-dark);
  font-weight: 800;
  font-size: 13px;
  padding: 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-pricing-cta:hover {
  opacity: 0.9;
}

/* FAQ SECTION */
.faq-section {
  align-items: center;
  text-align: center;
}

.faq-section .section-title {
  text-align: center;
  margin-top: 4px;
}

.faq-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  gap: 10px;
}

.faq-toggle-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--accent-lime);
  border: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #F0F0F0;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle-btn {
  background-color: var(--text-dark);
  color: var(--text-light);
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(180deg, #9AE600, #E7E563, #EEEEEE, #E7E563, #9AE600);
  background-size: 100% 300%;
  animation: ctaGradientShift 8s ease infinite;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 24px 12px 44px 12px;
  border-radius: 20px 20px 0 0;
}

.cta-banner {
  color: var(--text-dark);
  padding: 20px 20px 0 20px;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  overflow: hidden;
}

.cta-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
  max-width: 320px;
}

.cta-desc {
  font-size: 13px;
  color: #292524;
  line-height: 1.45;
  font-weight: 500;
  opacity: 0.95;
  max-width: 310px;
  margin-bottom: 12px;
}

.cta-image {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
  animation: ctaImageFloat 5s ease-in-out infinite;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  background-color: var(--accent-lime);
  color: var(--text-dark);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
  animation: ctaBtnShift 8s ease infinite;
}

.cta-btn:hover {
  animation: none;
  background-color: var(--accent-lime-hover);
}

.cta-btn:active {
  transform: scale(0.98);
}

/* FOOTER */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 32px 16px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 800;
}

.footer-auth-buttons {
  display: flex;
  gap: 10px;
}

.btn-footer {
  flex: 1;
  padding: 10px;
  border-radius: var(--radius-md);
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  background-color: var(--bg-dark-soft);
  color: var(--text-light);
}

.btn-footer.active {
  background-color: var(--accent-lime);
  color: var(--text-dark);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border-dark);
  padding-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background-color: var(--bg-dark-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.contact-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 11px;
  color: var(--text-muted);
}

.contact-val {
  font-size: 14px;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: underline;
}

.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
  border-top: 1px solid var(--border-dark);
  padding-top: 16px;
  margin-top: 4px;
}

.footer-investor-note {
  margin-top: 6px;
  font-size: 10px;
  opacity: 0.85;
}

.footer-investor-note a {
  color: var(--text-muted);
  text-decoration: underline;
  font-weight: 600;
}



/* SCROLL REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
  will-change: transform, opacity;
}

.reveal-up {
  transform: translateY(30px);
}

.reveal-down {
  transform: translateY(-30px);
}

.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

.reveal-scale {
  transform: scale(0.95);
}

.reveal.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* BADGE-PILL EMOJI ANIMATIONS */
.emoji-flash {
  display: inline-block;
  animation: flashPulse 2s ease-in-out infinite;
}

.emoji-sparkle {
  display: inline-block;
  transform-origin: center;
  animation: gemSparkle 3s ease-in-out infinite;
}

.emoji-target {
  display: inline-block;
  transform-origin: center;
  animation: targetHit 2.5s ease-in-out infinite;
}

.emoji-tag {
  display: inline-block;
  transform-origin: top center;
  animation: tagSwing 3s ease-in-out infinite;
}

.emoji-thinking {
  display: inline-block;
  transform-origin: center;
  animation: faceThink 4s ease-in-out infinite;
}

@keyframes flashPulse {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(255, 230, 0, 0));
  }

  50% {
    transform: scale(1.25);
    filter: drop-shadow(0 0 4px rgba(255, 230, 0, 0.8));
  }
}

@keyframes gemSparkle {

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

  50% {
    transform: scale(1.2) rotate(15deg);
  }
}

@keyframes targetHit {

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

  50% {
    transform: scale(1.2);
  }
}

@keyframes tagSwing {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-12deg);
  }

  75% {
    transform: rotate(12deg);
  }
}

@keyframes faceThink {

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

  25% {
    transform: rotate(-8deg) scale(1.1);
  }

  75% {
    transform: rotate(8deg) scale(1.1);
  }
}

@keyframes ctaGradientShift {
  0% {
    background-position: 50% 0%;
  }

  50% {
    background-position: 50% 100%;
  }

  100% {
    background-position: 50% 0%;
  }
}

@keyframes ctaBtnShift {

  0%,
  100% {
    background-color: #9AE600;
  }

  50% {
    background-color: #E7E563;
  }
}

@keyframes ctaImageFloat {

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

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

/* OFF-CANVAS SIDEBAR MENU */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.sidebar-menu {
  position: fixed;
  top: 0;
  right: -290px;
  width: 280px;
  height: 100vh;
  background-color: var(--bg-card);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.sidebar-menu.active {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.sidebar-logo-img {
  height: 22px;
  width: auto;
}

.btn-sidebar-close {
  background: #eee;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.btn-sidebar-close:hover {
  background-color: #F4F4F5;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.sidebar-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.sidebar-link:hover {
  background-color: #F4F4F5;
  color: #151515;
}

.sidebar-link.contact {
  color: var(--accent-green-text);
  border-top: 1px solid var(--border-light);
  border-radius: 0;
  margin-top: 12px;
  padding-top: 16px;
}

.sidebar-link.contact:hover {
  background-color: var(--accent-green-bg);
}

.sidebar-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.btn-sidebar-login {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  transition: background-color 0.2s ease;
}

.btn-sidebar-login:hover {
  background-color: #F4F4F5;
}

.btn-sidebar-register {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background-color: var(--accent-lime);
  color: var(--text-dark);
  transition: background-color 0.2s ease;
}

.btn-sidebar-register:hover {
  background-color: var(--accent-lime-hover);
}

/* PRIVACY POLICY MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 16px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: var(--bg-card);
  width: 100%;
  max-width: 380px;
  max-height: 80vh;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
  opacity: 1;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
}

.modal-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
}

.btn-modal-close {
  background: #EEEEEE;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  padding: 0;
}

.btn-modal-close:hover {
  background-color: #E2E2E2;
}

.modal-body {
  padding: 20px;
  overflow-y: auto;
  font-size: 13px;
  color: var(--text-main);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  scrollbar-width: thin;
  scrollbar-color: #CCCCCC transparent;
}

.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
  background-color: #CCCCCC;
  border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background-color: #AAAAAA;
}

.modal-body p {
  margin: 0;
}

.modal-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 6px;
}

.modal-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border-light);
  background-color: #FBFBFB;
}

.btn-close-modal {
  width: 100%;
  height: 44px;
  background-color: #FFFFFF;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-close-modal:hover {
  background-color: #F4F4F5;
}

.btn-close-modal:active {
  transform: scale(0.98);
}