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

section {
  padding: 50px 0px;
}

:root {
  --green: #22c55e;
  --green-dark: #16a34a;
  --text: #111827;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --bg: #ffffff;
  --nav-height: 64px;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
}

/* ── Header ── */
header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0px;
  gap: 32px;
}

/* ── Logo ── */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.5px;
}

.logo-name .hat {
  display: inline-block;
  position: relative;
}

/* The caret accent on the "u" */
.logo-name .hat::after {
  content: '';
  display: block;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--green);
  border-top: 2px solid var(--green);
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg) skewX(-10deg);
  pointer-events: none;
}

.logo-tagline {
  font-size: 9.5px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 3px;
}

/* ── Primary Nav ── */
.nav-links {
  display: flex;
  margin-bottom: 0px;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links a,
.nav-links button {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  font-size: 1rem;
  font-weight: bold;
  color: var(--text-muted);
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
  white-space: nowrap;
  position: relative;
}

.nav-links a:hover,
.nav-links button:hover {
  color: var(--text);
}

.nav-links .active {
  color: var(--text);
}

/* green underline for active */
.nav-links .active::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 14px;
  right: 14px;
  height: 2.5px;
  background: var(--green);
  border-radius: 2px 2px 0 0;
}

/* chevron icon */
.chevron {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.resources-btn[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

/* ── Dropdown ── */
.dropdown-wrapper {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  min-width: 180px;
  padding: 6px;
  z-index: 200;
}

.dropdown.open {
  display: block;
}

.dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  color: var(--text-muted);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.dropdown a:hover {
  background: #f3f4f6;
  color: var(--text);
}

/* ── CTA ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-login {
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
  white-space: nowrap;
}

.btn-login:hover {
  border-color: #9ca3af;
  background: #f9fafb;
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.15s;
}

.hamburger:hover {
  background: #f3f4f6;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s, width 0.25s;
  transform-origin: center;
}

.hamburger span:nth-child(2) {
  width: 70%;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 100%;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 99;
  padding: 23px 0px 0px;
  overflow-y: auto;
  border-top: 1px solid var(--border);
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a,
.mobile-menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 17px;
  font-size: 1rem;
  font-weight: bold;
  color: var(--text);
  border: none;
  background: none;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child,
.mobile-menu button:last-child {
  border-bottom: none;
}

.mobile-menu .active {
  color: var(--green);
}

.mobile-sub {
  display: none;
  flex-direction: column;
  padding-left: 16px;
}

.mobile-sub.open {
  display: flex;
}

.mobile-sub a {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  padding: 10px 0;
}

.mobile-login {
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
}


/* ── Responsive ── */
@media (max-width: 768px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}



.logo img {
  width: 150px;
}

/* Button */
.ai-launch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;

  background: #28c76f;
  color: #ffffff;

  font-size: 16px;
  font-weight: 600;

  padding: 0.45rem 0.9rem;
  border-radius: 0.5rem;
  border: none;

  cursor: pointer;
  transition: all 0.3s ease;
}

/* Icon */
.ai-btn-icon {
  font-size: 0.9rem;
}

/* Hover */
.ai-launch-btn:hover {
  background: #22b863;
  transform: translateY(-0.1rem);
  box-shadow: 0 0.3rem 0.8rem rgba(40, 199, 111, 0.3);
}

/* Active click */
.ai-launch-btn:active {
  transform: scale(0.96);
}

/* Focus */
.ai-launch-btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.15rem rgba(40, 199, 111, 0.3);
}

/* Responsive */
@media (max-width: 576px) {
  .ai-launch-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}


/* Badge */
.jdai-badge {
  display: inline-block;
  background: #e6f9ef;
  color: #16a34a;
  padding: 0.4rem 0.8rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.jdai-badge span {
  font-weight: 600;
}

/* Title */
.jdai-title {
  font-size: 2.9rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.9rem;
}

.jdai-title span {
  color: #16a34a;
  border-bottom: 0.2rem solid #16a34a;
}

/* Sub */
.jdai-sub {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.jdai-sub span {
  color: #16a34a;
  font-weight: 500;
}

/* Card */
.jdai-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.05);
}

/* Group */
.jdai-group {
  margin-bottom: 1.2rem;
}

.jdai-label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: block;
}

/* Input */
.jdai-input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 0.0625rem solid #ddd;
  border-radius: 0.4rem;
  font-size: 0.85rem;
}

/* Options */
.jdai-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.jdai-chip {
  border: 0.0625rem solid #ddd;
  padding: 0.4rem 0.7rem;
  border-radius: 0.5rem;
  background: #fff;
  font-size: 0.8rem;
  cursor: pointer;
}

.jdai-chip.active {
  border-color: #16a34a;
  background: #e6f9ef;
  color: #16a34a;
}

/* Upload */
.jdai-upload {
  border: 0.1rem dashed #ddd;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: #666;
}

.jdai-upload span {
  display: block;
  font-size: 0.7rem;
  margin-top: 0.3rem;
}

/* Button */
.jdai-btn {
  width: 100%;
  background: #16a34a;
  color: #fff;
  padding: 0.7rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  cursor: pointer;
}

/* Footer */
.jdai-footer {
  font-size: 0.75rem;
  color: #777;
  text-align: center;
  margin-top: 0.8rem;
}

/* Responsive */
@media (max-width: 36rem) {
  .jdai-title {
    font-size: 1.6rem;
  }
}

.astro-flow-wrapper {
  max-width: 64rem;
}

/* Box */
.astro-flow-box {
  background: #f6fbf8;
  border-radius: 1rem;
  padding: 1rem;
  border: 0.06rem solid #dfeee6;
}

/* Step */
.astro-flow-step {
  gap: 0.6rem;
}

/* Icon */
.astro-flow-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: #e8f5ee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e8e5a;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Text */
.astro-flow-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e8e5a;
}

.astro-flow-desc {
  font-size: 0.8rem;
  color: #666;
}

/* Arrow */
.astro-flow-arrow {
  font-size: 1.2rem;
  color: #999;
  margin: 0 0.6rem;
}

/* Responsive */
@media (max-width: 48rem) {
  .astro-flow-box {
    align-items: flex-start;
    gap: 1rem;
  }

  .astro-flow-arrow {
    display: none;
  }
}


/* Card */
.astro-stat-card {
  background: #ffffff;
  border-radius: 0.8rem;
  padding: 0.9rem;
  border: 0.06rem solid #e6e6e6;
}

/* Text */
.astro-stat-label {
  font-size: 0.8rem;
  color: #777;
}

.astro-stat-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
}

/* Highlight Colors */
.astro-green {
  color: #16a34a;
}

.astro-blue {
  color: #2563eb;
}

/* Icon Box */
.astro-stat-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Icon Colors */
.astro-yellow {
  background: #fff7cc;
}

.astro-purple {
  background: #f3e8ff;
}

.astro-green-bg {
  background: #e6f9ef;
}

/* Responsive */
@media (max-width: 36rem) {
  .astro-stat-value {
    font-size: 1rem;
  }
}

/* Box */
.astro-trust-box {
  background: #f8fbf9;
  border-radius: 1rem;
  padding: 0.8rem 1rem;
  border: 0.06rem solid #e5eee9;
  gap: 1rem;
}

/* Left */
.astro-trust-label {
  font-size: 0.7rem;
  color: #1e8e5a;
  font-weight: 600;
  margin-right: 0.6rem;
}

.astro-trust-avatars {
  margin-right: 0.5rem;
}

.astro-avatar {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  object-fit: cover;
  margin-left: -0.4rem;
  border: 0.1rem solid #fff;
}

.astro-trust-count {
  background: #1e8e5a;
  color: #fff;
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 1rem;
  margin-right: 0.3rem;
}

.astro-trust-more {
  font-size: 0.75rem;
  color: #666;
}

/* Stats */
.astro-trust-stats {
  gap: 1rem;
}

.astro-trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.astro-trust-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: #e8f5ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.astro-trust-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e8e5a;
}

.astro-trust-text {
  font-size: 0.7rem;
  color: #666;
}

/* Responsive */
@media (max-width: 48rem) {
  .astro-trust-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .astro-trust-stats {
    width: 100%;
    justify-content: space-between;
  }
}

/* Card */
.astro-card-box {
  background: #f6efe8;
  border-radius: 1.2rem;
  padding: 1rem;
  box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.05);
}

/* Header */
.astro-card-header {
  margin-bottom: 0.6rem;
}

.astro-card-tag {
  background: #e7f6ee;
  color: #1e8e5a;
  font-size: 0.8rem;
  padding: 0.3rem 0.7rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.astro-card-icons i {
  font-size: 1rem;
  margin-left: 0.4rem;
  color: #444;
}

/* Body */
.astro-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.astro-card-sub {
  font-size: 0.85rem;
  color: #777;
}

.astro-card-img-box {
  margin-top: 0.8rem;
}

.astro-card-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Footer */
.astro-card-footer {
  background: #ffffff;
  border-radius: 0.8rem;
  padding: 0.7rem;
  margin-top: 0.8rem;
  align-items: center;
}

.astro-card-stat {
  flex: 1;
}

.astro-card-value {
  font-size: 1rem;
  font-weight: 600;
  color: #16a34a;
}

.astro-card-label {
  font-size: 0.75rem;
  color: #777;
}

.astro-card-divider {
  width: 0.06rem;
  background: #e5e5e5;
  margin: 0 0.6rem;
}

/* Responsive */
@media (max-width: 36rem) {
  .astro-card-title {
    font-size: 1.1rem;
  }
}

/* Section */
.spfy-section {
  background: #f8fafc;
}

/* Title */
.spfy-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111;
}

/* Step Layout */
.spfy-step {
  gap: 1rem;
}

/* Icon Box */
.spfy-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background: #fff;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #22c55e;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

/* Content */
.spfy-content {
  position: relative;
}

/* Badge */
.spfy-badge {
  display: inline-block;
  background: #22c55e;
  color: #fff;
  font-size: 1rem;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-bottom: 0.3rem;
}

/* Heading */
.spfy-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

/* Text */
.spfy-text {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0;
  max-width: 16rem;
}

/* Dotted Lines */
.spfy-line {
  position: absolute;
  top: 2rem;
  width: 8rem;
  border-top: 0.15rem dashed #cbd5e1;
}

.spfy-line-1 {
  left: 32%;
}

.spfy-line-2 {
  right: 32%;
}

/* Responsive */
@media (max-width: 62rem) {
  .spfy-line {
    display: none;
  }
}

@media (max-width: 48rem) {
  .spfy-title {
    font-size: 1.5rem;
  }

  .spfy-step {
    flex-direction: row;
  }

  .spfy-text {
    max-width: 100%;
  }
}


/* Section Background */
.ctaX-section {
  background: linear-gradient(90deg, #16a34a, #22c55e);
}

/* Main Box */
.ctaX-box {
  background: transparent;
  padding: 1.5rem 0;
}

/* Left */
.ctaX-left {
  gap: 1rem;
  max-width: 40rem;
}

/* Icon */
.ctaX-icon {
  font-size: 2.5rem;
  color: #d1fae5;
}

/* Title */
.ctaX-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

/* Subtext */
.ctaX-sub {
  font-size: 0.95rem;
  color: #dcfce7;
  margin: 0;
}

/* Right */
.ctaX-right {
  min-width: 16rem;
}

/* Button */
.ctaX-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  color: #16a34a;
  padding: 0.6rem 1.2rem;
  border-radius: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ctaX-btn:hover {
  background: #f0fdf4;
  transform: translateY(-0.1rem);
}

/* Note */
.ctaX-note {
  font-size: 0.75rem;
  color: #dcfce7;
  margin-top: 0.4rem;
}

/* Responsive */
@media (max-width: 62rem) {
  .ctaX-box {
    flex-direction: column;
    text-align: center;
  }

  .ctaX-left {
    justify-content: center;
  }

  .ctaX-right {
    text-align: center;
  }
}

@media (max-width: 48rem) {
  .ctaX-title {
    font-size: 1.3rem;
  }

  .ctaX-sub {
    font-size: 0.85rem;
  }
}


/* Wrapper */
.prgX-wrapper {
  gap: 1rem;
}

/* Step */
.prgX-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Circle */
.prgX-circle {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #e5e7eb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Active Step */
.prgX-step.active .prgX-circle {
  background: #16a34a;
  color: #fff;
}

/* Label */
.prgX-label {
  font-size: 0.95rem;
  color: #6b7280;
  white-space: nowrap;
}

/* Active Label */
.prgX-step.active .prgX-label {
  color: #16a34a;
  font-weight: 500;
}

/* Line */
.prgX-line {
  flex: 1;
  height: 0.15rem;
  background: #d1d5db;
}

/* Active Line */
.prgX-line.active {
  background: #16a34a;
}

/* Responsive */
@media (max-width: 48rem) {
  .prgX-wrapper {
    justify-content: center !important;
  }

  .prgX-line {
    width: 100%;
    height: 0.1rem;
  }
}


/* Card */
.brdX-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.05);
}

/* Title */
.brdX-title {
  font-size: 1.6rem;
  font-weight: 600;
}

.brdX-sub {
  font-size: 0.9rem;
  color: #6b7280;
}

/* Label */
.brdX-label {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  display: block;
}

/* Input */
.brdX-input {
  width: 100%;
  padding: 0.6rem;
  border: 0.1rem solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.9rem;
}

/* Tags */
.brdX-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.brdX-tag {
  padding: 0.3rem 0.6rem;
  background: #f3f4f6;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  cursor: pointer;
}

.brdX-tag.active {
  background: #dcfce7;
  color: #16a34a;
}

/* Tabs */
.brdX-tabs {
  display: flex;
  border: 0.1rem solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
}

.brdX-tab {
  flex: 1;
  padding: 0.5rem;
  background: #fff;
  border: none;
  font-size: 0.85rem;
}

.brdX-tab.active {
  background: #dcfce7;
  color: #16a34a;
}

/* Upload */
.brdX-upload {
  border: 0.1rem dashed #d1d5db;
  padding: 1.5rem;
  text-align: center;
  border-radius: 0.6rem;
  color: #6b7280;
}

/* Box */
.brdX-box {
  padding: 0.6rem;
  border: 0.1rem solid #e5e7eb;
  border-radius: 0.5rem;
  text-align: center;
  cursor: pointer;
  font-size: 0.85rem;
}

.brdX-box.active {
  border-color: #16a34a;
  background: #dcfce7;
}

/* Pills */
.brdX-pill {
  padding: 0.4rem 0.8rem;
  border: 0.1rem solid #e5e7eb;
  border-radius: 2rem;
  font-size: 0.8rem;
  cursor: pointer;
}

.brdX-pill.active {
  background: #dcfce7;
  border-color: #16a34a;
}

/* Button */
.brdX-btn {
  background: #16a34a;
  color: #fff;
  padding: 0.7rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.brdX-btn:hover {
  background: #15803d;
}

/* Footer */
.brdX-foot {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 48rem) {
  .brdX-card {
    padding: 1rem;
  }
}



/* Wrapper */
.nxtX-wrapper {
  max-width: 36rem;
  margin: auto;
}

/* Header */
.nxtX-header {
  background: #ecfdf5;
  padding: 1rem;
  border-radius: 0.6rem 0.6rem 0 0;
}

/* Title */
.nxtX-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: #111827;
  margin: 0;
}

/* Card */
.nxtX-card {
  background: #ffffff;
  padding: 1.2rem;
  border-radius: 0 0 0.8rem 0.8rem;
  box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.05);
}

/* Item */
.nxtX-item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.nxtX-item:last-child {
  margin-bottom: 0;
}

/* Icon */
.nxtX-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #ecfdf5;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6rem;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Title */
.nxtX-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

/* Text */
.nxtX-item-text {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0.2rem 0 0;
}

/* Hover Effect */
.nxtX-item:hover {
  transform: translateX(0.2rem);
  transition: 0.2s ease;
}

/* Responsive */
@media (max-width: 48rem) {
  .nxtX-card {
    padding: 1rem;
  }

  .nxtX-item-title {
    font-size: 0.9rem;
  }

  .nxtX-item-text {
    font-size: 0.8rem;
  }
}

/* Title */
.aiX-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #111827;
}

.aiX-title span {
  color: #16a34a;
}

.aiX-badge b {
  color: #16a34a;
}

/* Subtitle */
.aiX-sub {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 0.3rem;
}

/* Badge */
.aiX-badge {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.4rem 0.8rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background: #ffffff;
  border-radius: 2rem;
  font-size: 0.8rem;
  color: #374151;
}

/* Responsive */
@media (max-width: 48rem) {
  .aiX-title {
    font-size: 1.2rem;
  }

  .aiX-sub {
    font-size: 0.8rem;
  }
}



/* Card */
.progB-card {
  max-width: 28rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
}

/* Title */
.progB-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Item */
.progB-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
}

/* Icon */
.progB-icon {
  width: 2.2rem;
  height: 2.2rem;
  background: #ecfdf5;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-size: 1rem;
}

/* Text */
.progB-main {
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}

.progB-text span {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Status */
.progB-status {
  margin-left: auto;
  color: #16a34a;
  font-size: 1.1rem;
}

/* Done */
.progB-item.done .progB-main {
  color: #16a34a;
}

/* Loader */
.progB-loader {
  width: 1.2rem;
  height: 1.2rem;
  border: 0.15rem solid #d1fae5;
  border-top: 0.15rem solid #16a34a;
  border-radius: 50%;
  animation: progB-spin 1s linear infinite;
}

/* Animation */
@keyframes progB-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 48rem) {
  .progB-card {
    padding: 1.2rem;
  }
}


/* Title */
.ovrX-title {
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
}

.ovrX-title span {
  color: #16a34a;
  font-weight: 600;
}

/* Bar */
.ovrX-bar {
  width: 100%;
  max-width: 28rem;
  height: 0.5rem;
  background: #e5e7eb;
  border-radius: 1rem;
  margin: 0.6rem auto;
  overflow: hidden;
}

/* Fill */
.ovrX-fill {
  height: 100%;
  width: 0%;
  background: #16a34a;
  border-radius: 1rem;
  transition: width 0.6s ease;
}

/* Note */
.ovrX-note {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 48rem) {
  .ovrX-title {
    font-size: 0.9rem;
  }
}

/* Wrapper */
.featX-wrapper {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.05);
  gap: 1rem;
}

/* Item */
.featX-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
  min-width: 12rem;
}

/* Icon */
.featX-icon {
  width: 50px;
  height: 40px;
  background: #ecfdf5;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
}

/* Title */
.featX-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

/* Text */
.featX-text {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Divider */
.featX-divider {
  width: 0.08rem;
  height: 2rem;
  background: #e5e7eb;
}

/* Hover */
.featX-item:hover {
  transform: translateY(-0.1rem);
  transition: 0.2s ease;
}

/* Responsive */
@media (max-width: 48rem) {
  .featX-wrapper {
    align-items: flex-start;
  }

  .featX-icon {
    width: 50px;
    height: 50px;
  }

  .featX-divider {
    display: none;
  }
}


/* HEADING */

.priceX-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.priceX-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.priceX-title span {
  color: #16a34a;
}

.priceX-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

/* TOP BADGES */

.priceX-topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  background: #ffffff;
  border: 0.08rem solid #e5e7eb;
  border-radius: 5rem;
  padding: 0.8rem 1.5rem;
  max-width: max-content;
  margin: auto;
}

.priceX-topitem {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.priceX-topitem i {
  color: #16a34a;
  font-size: 1rem;
}

.priceX-divider {
  width: 0.08rem;
  height: 1rem;
  background: #d1d5db;
}

/* CARD */

.priceX-card {
  position: relative;
  background: #ffffff;
  border: 0.08rem solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  transition: 0.3s ease;
}

.priceX-card:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
}

/* POPULAR */

.priceX-popular {
  border: 0.12rem solid #7c3aed;
  overflow: hidden;
}

.priceX-badge {
  position: absolute;
  text-align: center;
  top: 0;
  left: 22%;
  right: 22%;
  background: linear-gradient(90deg, #7c3aed, #9333ea);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 2rem;
  border-radius: 0 0 1rem 1rem;
}

/* PLAN */

.priceX-plan {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  margin-top: 15px;
}

.priceX-green {
  color: #16a34a;
}

.priceX-purple {
  color: #7c3aed;
}

.priceX-desc {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

/* PRICE */

.priceX-pricewrap {
  display: flex;
  align-items: flex-end;
  margin-bottom: 0.5rem;
}

.priceX-price {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  line-height: 1;
}

.priceX-month {
  font-size: 1rem;
  color: #6b7280;
  margin-left: 0.3rem;
  margin-bottom: 0.3rem;
}

.priceX-bill {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

/* FEATURES */

.priceX-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.priceX-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  color: #374151;
}

.priceX-features i {
  color: #16a34a;
  font-size: 1rem;
  margin-top: 0.1rem;
}

.priceX-popular .priceX-features i {
  color: #7c3aed;
}

/* BUTTON */

.priceX-btn {
  width: 100%;
  border: none;
  border-radius: 0.6rem;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.3s ease;
}

.priceX-btn-green {
  background: #ffffff;
  border: 0.1rem solid #16a34a;
  color: #16a34a;
}

.priceX-btn-green:hover {
  background: #16a34a;
  color: #ffffff;
}

.priceX-btn-purple {
  background: linear-gradient(90deg, #7c3aed, #9333ea);
  color: #ffffff;
}

.priceX-btn-purple:hover {
  opacity: 0.9;
}

.priceX-note {
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* RESPONSIVE */

@media (max-width:62rem) {

  .priceX-title {
    font-size: 2.3rem;
  }

  .priceX-price {
    font-size: 2.4rem;
  }

}

@media (max-width:48rem) {

  .priceX-section {
    padding: 3rem 0;
  }

  .priceX-title {
    font-size: 1.9rem;
  }

  .priceX-subtitle {
    font-size: 1rem;
  }

  .priceX-topbar {
    border-radius: 1rem;
    padding: 1rem;
  }

  .priceX-divider {
    display: none;
  }

  .priceX-card {
    padding: 1.5rem;
  }

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

}

/* TABLE WRAPPER */

.cmpX-wrapper {
  background: #ffffff;
  border: 0.08rem solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.6rem 1.5rem rgba(0, 0, 0, 0.04);
}

/* TABLE */

.cmpX-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 48rem;
}

.cmpX-table th,
.cmpX-table td {
  padding: 1rem 1.2rem;
  border-bottom: 0.08rem solid #e5e7eb;
  font-size: 0.95rem;
  vertical-align: middle;
}

.cmpX-table th {
  background: #f9fafb;
  font-weight: 700;
  color: #111827;
}

/* COLUMN */

.cmpX-growth {
  background: #f0fdf4;
  text-align: center;
}

.cmpX-growth-head {
  color: #16a34a !important;
}

.cmpX-team {
  text-align: center;
  color: #374151;
}

/* FEATURE CELL */

.cmpX-feature {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
  color: #111827;
}

.cmpX-feature i {
  font-size: 1rem;
  color: #6b7280;
}

/* CHECK */

.cmpX-check {
  color: #16a34a;
  font-size: 1.2rem;
  font-weight: 700;
}

/* PRICE */

.cmpX-price {
  font-weight: 600;
  color: #4b5563;
}

.cmpX-total-growth {
  color: #16a34a;
  font-size: 2rem;
  font-weight: 700;
}

.cmpX-total-team {
  color: #ef4444;
  font-size: 2rem;
  font-weight: 700;
}

.cmpX-small {
  font-size: 0.95rem;
  font-weight: 500;
}

/* LAST ROW */

.cmpX-total-row td {
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: none;
}

.cmpX-total-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

/* HOVER */

.cmpX-table tbody tr {
  transition: 0.25s ease;
}

.cmpX-table tbody tr:hover {
  background: #fafafa;
}

/* RESPONSIVE */

.cmpX-scroll {
  overflow-x: auto;
}

.cmpX-scroll::-webkit-scrollbar {
  height: 0.5rem;
}

.cmpX-scroll::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 2rem;
}

@media (max-width:62rem) {

  .cmpX-total-growth,
  .cmpX-total-team {
    font-size: 1.5rem;
  }

  .cmpX-table th,
  .cmpX-table td {
    padding: 0.9rem;
  }

}

@media (max-width:48rem) {

  .cmpX-section {
    padding: 2.5rem 0;
  }

  .cmpX-table {
    min-width: 42rem;
  }

  .cmpX-table th,
  .cmpX-table td {
    font-size: 0.85rem;
  }

  .cmpX-total-growth,
  .cmpX-total-team {
    font-size: 1.3rem;
  }

}

/* CARD */

.saveX-card {
  position: relative;
  margin: auto;
  background: linear-gradient(180deg,
      #f3faf5 0%,
      #eef7f1 100%);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  overflow: hidden;
  border: 0.08rem solid #e3efe7;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.04);
  transition: 0.3s ease;
}

.saveX-card:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 1.2rem 2.5rem rgba(22, 163, 74, 0.08);
}

/* ICON */

.saveX-iconWrap {
  width: 4.8rem;
  height: 4.8rem;
  margin: auto;
  border-radius: 50%;
  border: 0.1rem solid #86efac;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  margin-bottom: 2rem;
}

.saveX-iconWrap i {
  color: #16a34a;
  font-size: 2rem;
}

/* TITLE */

.saveX-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

/* PRICE */

.saveX-price {
  font-size: 2rem;
  font-weight: 800;
  color: #16a34a;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.saveX-plus {
  font-size: 2.2rem;
}

/* MONTH */

.saveX-month {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

/* TEXT */

.saveX-text {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
}

.saveX-text span {
  color: #16a34a;
  font-weight: 700;
}



/* RESPONSIVE */

@media (max-width:62rem) {

  .saveX-price {
    font-size: 2.7rem;
  }

  .saveX-title,
  .saveX-month {
    font-size: 1.7rem;
  }

}

@media (max-width:48rem) {

  .saveX-section {
    padding: 2.5rem 0;
  }

  .saveX-card {
    padding: 2rem 1.5rem;
  }

  .saveX-price {
    font-size: 2.3rem;
  }

  .saveX-plus {
    font-size: 1.6rem;
  }

  .saveX-title,
  .saveX-month {
    font-size: 1.5rem;
  }

  .saveX-text {
    font-size: 1.1rem;
  }

}


/* FEATURES */

.brandX-featureWrap {
  background: #ffffff;
  border: 0.08rem solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.6rem 1.5rem rgba(0, 0, 0, 0.04);
  margin-bottom: 1.5rem;
}

.brandX-featureItem {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  position: relative;
}

.brandX-featureItem::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.08rem;
  height: 3rem;
  background: #e5e7eb;
  transform: translateY(-50%);
}

.brandX-featureCol:last-child .brandX-featureItem::after {
  display: none;
}

/* ICON */

.brandX-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #eef8f1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brandX-icon i {
  font-size: 1.8rem;
  color: #16a34a;
}

/* TEXT */

.brandX-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.4rem;
}

.brandX-text {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* CTA */

.brandX-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg,
      #047857 0%,
      #16a34a 100%);
  border-radius: 1rem;
  padding: 2rem;
  color: #ffffff;
  box-shadow: 0 1rem 2rem rgba(22, 163, 74, 0.18);
}

/* STARS */

.brandX-star {
  position: absolute;
  color: rgba(255, 255, 255, 0.15);
  font-size: 2rem;
  animation: brandXFloat 3s ease-in-out infinite;
}

.brandX-star1 {
  left: 2rem;
  top: 2rem;
}

.brandX-star2 {
  right: 2rem;
  top: 1.5rem;
}

@keyframes brandXFloat {

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

  50% {
    transform: translateY(-0.5rem);
  }

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

}

/* AVATAR */

.brandX-users {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.brandX-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  border: 0.15rem solid #ffffff;
  margin-left: -0.7rem;
}

.brandX-avatar:first-child {
  margin-left: 0;
}

.brandX-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA TEXT */

.brandX-founders {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.brandX-small {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.brandX-mainTitle {
  font-size: 1.6rem;
  color: white;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.brandX-mainSub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* BUTTON */

.brandX-btnWrap {
  text-align: end;
}

.brandX-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: #ffffff;
  color: #16a34a;
  padding: 1.2rem 3rem;
  border-radius: 0.8rem;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  transition: 0.3s ease;
  min-width: 18rem;
}

.brandX-btn:hover {
  transform: translateY(-0.2rem);
  background: #f0fdf4;
  color: #15803d;
}

.brandX-note {
  margin-top: 1rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

/* RESPONSIVE */

@media (max-width:75rem) {

  .brandX-mainTitle {
    font-size: 2.3rem;
  }

  .brandX-btn {
    min-width: 15rem;
  }

}

@media (max-width:62rem) {

  .brandX-featureItem::after {
    display: none;
  }

  .brandX-featureWrap .row {
    row-gap: 0;
  }

  .brandX-cta {
    text-align: center;
  }

  .brandX-users {
    justify-content: center;
  }

  .brandX-btnWrap {
    text-align: center;
    margin-top: 2rem;
  }

}

@media (max-width:48rem) {

  .brandX-section {
    padding: 2rem 0;
  }

  .brandX-featureItem {
    padding: 1.2rem;
  }

  .brandX-mainTitle {
    font-size: 1.8rem;
  }

  .brandX-mainSub {
    font-size: 1rem;
  }

  .brandX-btn {
    width: 100%;
    min-width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .brandX-founders {
    font-size: 1.2rem;
  }

}



/* BADGE */

.heroAiX-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: #eefaf1;
  border-radius: 5rem;
  color: #16a34a;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* TITLE */

.heroAiX-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: #111827;
  margin-bottom: 1.5rem;
}

.heroAiX-title span {
  color: #16a34a;
}

/* SUBTEXT */

.heroAiX-sub {
  font-size: 1.3rem;
  color: #6b7280;
  line-height: 1.8;
  max-width: 45rem;
  margin: auto;
}

/* BUTTON */

.heroAiX-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: #16a34a;
  color: #ffffff;
  text-decoration: none;
  padding: 1.2rem 2.5rem;
  border-radius: 0.8rem;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 2rem;
  transition: 0.3s ease;
  box-shadow: 0 1rem 2rem rgba(22, 163, 74, 0.18);
}

.heroAiX-btn:hover {
  background: #15803d;
  transform: translateY(-0.2rem);
  color: #ffffff;
}

.heroAiX-note {
  margin-top: 0.8rem;
  color: #9ca3af;
  font-size: 0.9rem;
}



.heroAiX-left {
  left: 2rem;
}

.heroAiX-right {
  right: 2rem;
}

/* REVIEWS */

.heroAiX-stars {
  text-align: left;
  color: #facc15;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.heroAiX-review {
  text-align: left;
  color: #4b5563;
  font-size: 0.95rem;
  margin-bottom: 1.4rem;
}

/* STAT */

.heroAiX-stat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.heroAiX-statIcon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #eefaf1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.heroAiX-statTitle {
  text-align: left;
  font-size: 1.4rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.2rem;
}

.heroAiX-statText {
  font-size: 0.9rem;
  color: #6b7280;
}

/* USERS */

.heroAiX-users {
  display: flex;
  margin-bottom: 1rem;
  justify-content: flex-end;
}

.heroAiX-user {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 0.18rem solid #ffffff;
  margin-left: -0.7rem;
}

.heroAiX-user:first-child {
  margin-left: 0;
}

.heroAiX-user img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heroAiX-rightText {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.8;
  text-align: right;
}

/* CENTER SYSTEM */

.heroAiX-system {
  position: relative;
  width: 38rem;
  height: 38rem;
  margin: 5rem auto 0;
}

/* CIRCLE */

.heroAiX-circle {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background:
    radial-gradient(circle,
      rgba(34, 197, 94, 0.15) 0%,
      rgba(34, 197, 94, 0.08) 50%,
      rgba(34, 197, 94, 0.03) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroAiX-center {
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: linear-gradient(180deg,
      #22c55e 0%,
      #15803d 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 1rem 2rem rgba(22, 163, 74, 0.25);
  position: relative;
  z-index: 5;
}

.heroAiX-center h3 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

/* AI BOX */

.heroAiX-box {
  position: absolute;
  width: 12rem;
  background: #ffffff;
  border: 0.08rem solid #e5e7eb;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.heroAiX-box:hover {
  transform: translateY(-0.3rem);
}

.heroAiX-boxTop {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.heroAiX-boxIcon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.8rem;
  background: #eefaf1;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.heroAiX-boxTitle {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.3rem;
}

.heroAiX-boxText {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #6b7280;
}

/* POSITIONS */

.heroAiX-top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.heroAiX-leftBox {
  left: 0;
  top: 35%;
}

.heroAiX-rightBox {
  right: 0;
  top: 35%;
}

.heroAiX-bottomLeft {
  bottom: 0;
  left: 3rem;
}

.heroAiX-bottomRight {
  bottom: 0;
  right: 3rem;
}

/* DASHED */

.heroAiX-line {
  position: absolute;
  border-top: 0.12rem dashed #86efac;
  width: 7rem;
}

.heroAiX-lineTop {
  top: 8rem;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}

.heroAiX-lineLeft {
  left: 9rem;
  top: 50%;
}

.heroAiX-lineRight {
  right: 9rem;
  top: 50%;
}

/* RESPONSIVE */

@media (max-width:75rem) {

  .heroAiX-side {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
  }

  .heroAiX-rightText {
    text-align: center;
  }

  .heroAiX-users {
    justify-content: center;
  }

  .heroAiX-title {
    font-size: 3.2rem;
  }

}

@media (max-width:62rem) {

  .heroAiX-system {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .heroAiX-circle {
    position: relative;
    width: 18rem;
    height: 18rem;
  }

  .heroAiX-box {
    position: relative;
    width: 100%;
    max-width: 22rem;
  }

  .heroAiX-line {
    display: none;
  }

}

@media (max-width:48rem) {



  .heroAiX-title {
    font-size: 2.2rem;
  }

  .heroAiX-sub {
    font-size: 1rem;
  }

  .heroAiX-btn {
    width: 100%;
  }

  .heroAiX-center {
    width: 9rem;
    height: 9rem;
  }

  .heroAiX-center h3 {
    font-size: 1.5rem;
  }

}




/* WRAPPER */

.storeAiX-wrapper {
  background: #f3faf5;
  border: 0.08rem solid #e2efe6;
  border-radius: 1.4rem;
  padding: 1rem;
  overflow: hidden;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.04);
}



.storeAiX-topbar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 1rem 1.2rem;
  border-bottom: 0.08rem solid #f1f5f9;
}

.storeAiX-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
}

.storeAiX-red {
  background: #fb7185;
}

.storeAiX-yellow {
  background: #facc15;
}

.storeAiX-green {
  background: #22c55e;
}



.storeAiX-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
}

.storeAiX-menu {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.storeAiX-menu span {
  cursor: pointer;
}


/* LEFT */

.storeAiX-content {
  max-width: 18rem;
}

.storeAiX-tag {
  display: inline-block;
  background: #dcfce7;
  color: #16a34a;
  padding: 0.3rem 0.8rem;
  border-radius: 5rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.storeAiX-title {
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1rem;
}

.storeAiX-title span {
  color: #16a34a;
}


/* BUTTON */

.storeAiX-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border-radius: 0.7rem;
  background: #16a34a;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: 0.3s ease;
}

.storeAiX-btn:hover {
  background: #15803d;
  color: #ffffff;
  transform: translateY(-0.15rem);
}

.storeAiX-product {
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
  animation: storeAiXFloat 3s ease-in-out infinite;
}

.storeAiX-product1 {
  width: 8rem;
  height: 16rem;
  animation-delay: 0s;
}

.storeAiX-product2 {
  width: 6rem;
  height: 12rem;
  animation-delay: 0.5s;
}

.storeAiX-product3 {
  width: 5rem;
  height: 11rem;
  animation-delay: 1s;
}

@keyframes storeAiXFloat {

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

  50% {
    transform: translateY(-0.5rem);
  }

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

}

/* RIGHT SIDE */

.storeAiX-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.storeAiX-number {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.storeAiX-circle {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.storeAiX-smallTitle {
  font-size: 0.9rem;
  font-weight: 700;
  color: #16a34a;
  letter-spacing: 0.08rem;
}

.storeAiX-mainTitle {
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 800;
  color: #111827;
  margin-bottom: 1rem;
}

/* LIST */

.storeAiX-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.storeAiX-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.storeAiX-icon {
  color: #000000;
  margin-top: 0.15rem;
}

.storeAiX-itemText {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width:75rem) {

  .storeAiX-mainTitle {
    font-size: 2.3rem;
  }

  .storeAiX-title {
    font-size: 2rem;
  }

}

@media (max-width:62rem) {

  .storeAiX-preview {
    border-right: none;
    border-bottom: 0.08rem solid #e2efe6;
  }

  .storeAiX-hero {
    flex-direction: column;
    text-align: center;
  }

  .storeAiX-content {
    max-width: 100%;
  }

  .storeAiX-products {
    justify-content: center;
  }

  .storeAiX-info {
    padding: 2rem;
  }

}

@media (max-width:48rem) {



  .storeAiX-preview {
    padding: 1rem;
  }

  .storeAiX-nav {
    flex-direction: column;
    gap: 1rem;
  }

  .storeAiX-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .storeAiX-hero {
    padding: 1.5rem;
  }

  .storeAiX-title {
    font-size: 1.7rem;
  }

  .storeAiX-mainTitle {
    font-size: 1.8rem;
  }

  .storeAiX-product1 {
    width: 5rem;
    height: 10rem;
  }

  .storeAiX-product2 {
    width: 4rem;
    height: 8rem;
  }

  .storeAiX-product3 {
    width: 3.5rem;
    height: 7rem;
  }

  .storeAiX-info {
    padding: 0rem;
  }

}

#purpel-bg {
  padding: 1rem;
  background-color: #f5f0ff;
  border: 1px solid #e4d8fa;
}

#purpel-text {
  color: #7c3aed;
  background-color: #e4d8fa;
}

#purpel {
  color: #7c3aed;
}

#blue-bg {
  padding: 1rem;
  background-color: #F4F9FE;
  border: 1px solid #abceff;
}

#blue-text {
  color: #408EFA;
  background-color: #D8EAFE;
}

#blue {
  color: #408EFA;
}

#yellow-bg {
  padding: 1rem;
  background-color: #FEFCF6;
  border: 1px solid #FEF0D7;
}

#yellow-text {
  color: #E3B165;
  background-color: #FEF0D7;
}

#yellow {
  color: #E3B165;
}

#red-bg {
  padding: 1rem;
  background-color: #FFF8F5;
  border: 1px solid #ffbebb;
}

#red-text {
  color: #E65852;
  background-color: #FEE3DD;
}

#red {
  color: #E65852;
}

:root {
  --auto-dark: #181818;
  --auto-text: #6d6d6d;
  --auto-green: #35c46a;
  --auto-green-bg: #e8f8ee;

  --auto-purple: #8b5cf6;
  --auto-purple-bg: #f1e8ff;

  --auto-blue: #3b82f6;
  --auto-blue-bg: #e7f1ff;

  --auto-orange: #f59e0b;
  --auto-orange-bg: #fff3de;

  --auto-success: #16a34a;
  --auto-success-bg: #eaf8ee;
}

.auto-flow-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--auto-dark);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.auto-flow-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}

.auto-flow-card {
  width: 10rem;
  text-align: center;
  position: relative;
}

.auto-flow-icon-wrap {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
}

.auto-flow-icon-wrap i {
  font-size: 1.8rem;
}

.auto-flow-step {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.08);
}

.auto-flow-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--auto-dark);
  margin-bottom: 0.55rem;
  line-height: 1.4;
}

.auto-flow-desc {
  font-size: 0.82rem;
  color: var(--auto-text);
  line-height: 1.6;
  margin: 0;
}

.auto-flow-arrow {
  font-size: 1.5rem;
  color: #9ca3af;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Color Styles */

.auto-flow-green {
  background: var(--auto-green-bg);
}

.auto-flow-green i {
  color: var(--auto-green);
}

.auto-flow-green .auto-flow-step {
  background: var(--auto-green);
}

.auto-flow-purple {
  background: var(--auto-purple-bg);
}

.auto-flow-purple i {
  color: var(--auto-purple);
}

.auto-flow-purple .auto-flow-step {
  background: var(--auto-purple);
}

.auto-flow-blue {
  background: var(--auto-blue-bg);
}

.auto-flow-blue i {
  color: var(--auto-blue);
}

.auto-flow-blue .auto-flow-step {
  background: var(--auto-blue);
}

.auto-flow-orange {
  background: var(--auto-orange-bg);
}

.auto-flow-orange i {
  color: var(--auto-orange);
}

.auto-flow-orange .auto-flow-step {
  background: var(--auto-orange);
}

.auto-flow-success {
  background: var(--auto-success-bg);
}

.auto-flow-success i {
  color: var(--auto-success);
}

.auto-flow-success .auto-flow-step {
  background: var(--auto-success);
}

/* Responsive */

@media (max-width: 991.98px) {

  .auto-flow-main {
    gap: 2rem;
  }

  .auto-flow-arrow {
    display: none;
  }

  .auto-flow-card {
    width: 14rem;
  }
}

@media (max-width: 575.98px) {


  .auto-flow-heading {
    font-size: 1.45rem;
    margin-bottom: 2.5rem;
  }

  .auto-flow-card {
    width: 100%;
    max-width: 18rem;
  }

  .auto-flow-icon-wrap {
    width: 4.4rem;
    height: 4.4rem;
  }

  .auto-flow-title {
    font-size: 0.95rem;
  }

  .auto-flow-desc {
    font-size: 0.8rem;
  }
}


.stx9-main-box {
  border: 0.0625rem solid #e7efea;
  border-radius: 0.8rem;
  overflow: hidden;
  background: #fbfdfc;
}

.stx9-item {
  min-height: 5.5rem;
  padding: 1.2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  text-align: center;
}

.stx9-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.0625rem;
  height: 60%;
  background: #e4ebe7;
}

.stx9-item:last-child::after {
  display: none;
}

.stx9-top {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
}

.stx9-top i {
  color: #16a34a;
  font-size: 1rem;
  line-height: 1;
}

.stx9-value {
  color: #16a34a;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.stx9-label {
  color: #6b7280;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.5;
}

/* Tablet */

@media (max-width: 991.98px) {

  .stx9-item {
    min-height: 6rem;
  }

  .stx9-item:nth-child(2)::after {
    display: none;
  }

  .stx9-item:nth-child(1),
  .stx9-item:nth-child(2) {
    border-bottom: 0.0625rem solid #e4ebe7;
  }
}

/* Mobile */

@media (max-width: 575.98px) {

  .stx9-wrapper {
    padding: 1.5rem 1rem;
  }

  .stx9-item {
    min-height: 5.8rem;
    padding: 1rem;
  }

  .stx9-item::after {
    display: none;
  }

  .stx9-item:not(:last-child) {
    border-bottom: 0.0625rem solid #e4ebe7;
  }

  .stx9-value {
    font-size: 1.2rem;
  }

  .stx9-label {
    font-size: 0.76rem;
  }
}

/* WRAPPER */

.rateX-wrap {
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

/* AVATARS */

.rateX-users {
  display: flex;
  align-items: center;
}

.rateX-user {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  border: 0.18rem solid #ffffff;
  margin-left: -0.7rem;
  box-shadow: 0 0.3rem 0.8rem rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.rateX-user:first-child {
  margin-left: 0;
}

.rateX-user:hover {
  transform: translateY(-0.2rem);
  z-index: 5;
}

.rateX-user img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* STARS */

.rateX-stars {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: #facc15;
  font-size: 1.2rem;
}

/* TEXT */

.rateX-text {
  font-size: 1.2rem;
  color: #4b5563;
  font-weight: 500;
}

.rateX-text strong {
  color: #111827;
  font-weight: 700;
}

/* RESPONSIVE */

@media (max-width:48rem) {

  .rateX-wrap {
    justify-content: center;
    text-align: center;
    gap: 1rem;
  }

  .rateX-text {
    width: 100%;
    font-size: 1rem;
  }

  .rateX-stars {
    justify-content: center;
  }

  .rateX-user {
    width: 2.6rem;
    height: 2.6rem;
  }

}


/* CARD */

.pawX-card {
  background: #fcf7f4;
  border: 0.08rem solid #efe5df;
  border-radius: 1.5rem;
  padding: 1rem;
  overflow: hidden;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.04);
}

/* RIGHT */

.pawX-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pawX-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fde7c9;
  color: #a16207;
  padding: 0.45rem 1rem;
  border-radius: 5rem;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  width: max-content;
}

.pawX-brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.pawX-sub {
  font-size: 1.2rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.pawX-revenue {
  font-size: 1.2rem;
  font-weight: 800;
  color: #111827;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.pawX-revenueText {
  font-size: 1.2rem;
  color: #374151;
  margin-bottom: 2rem;
}

/* STATS */

.pawX-stats {
  border-top: 0.08rem solid #ececec;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.pawX-stat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pawX-statIcon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pawX-statTitle {
  font-size: 1rem;
  font-weight: 800;
  color: #111827;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.pawX-statText {
  font-size: 1rem;
  color: #6b7280;
}

/* QUOTE */

.pawX-quote {
  margin-top: 1rem;
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem;
  border: 0.08rem solid #ececec;
}

.pawX-quoteIcon {
  color: #4ade80;
  font-size: 2rem;
}

.pawX-quoteText {
  font-size: 1.15rem;
  color: #374151;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.pawX-author {
  font-size: 1rem;
  font-weight: 700;
  color: #374151;
}

/* RESPONSIVE */

@media (max-width:75rem) {

  .pawX-brand {
    font-size: 1.3rem;
  }

  .pawX-revenue {
    font-size: 2.5rem;
  }

}



@media (max-width:48rem) {

  .pawX-section {
    padding: 2.5rem 0;
  }

  .pawX-card {
    padding: 1rem;
  }

  .pawX-top {
    flex-direction: column;
    gap: 1rem;
  }

  .pawX-hero {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .pawX-content {
    max-width: 100%;
  }

  .pawX-title {
    font-size: 1.8rem;
  }

  .pawX-brand {
    font-size: 1.4rem;
  }

  .pawX-revenue {
    font-size: 1.5rem;
  }

  .pawX-sub,
  .pawX-revenueText {
    font-size: 1rem;
  }

  .pawX-dog {
    width: 9rem;
  }

  .pawX-productLeft,
  .pawX-productRight {
    width: 3.5rem;
    height: 7rem;
  }

  .pawX-bottom {
    justify-content: center;
  }


  .pawX-quoteText {
    font-size: 1rem;
  }

}

#Beauty {
  color: #16a34a;
  background-color: #dcfce7;
}

/* TOP */

.snapX-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.snapX-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.snapX-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #16a34a;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: 0.3s ease;
}

.snapX-link:hover {
  color: #15803d;
  transform: translateX(0.15rem);
}

/* SCROLL */

.snapX-scroll {
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.snapX-scroll::-webkit-scrollbar {
  height: 0.5rem;
}

.snapX-scroll::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 5rem;
}

.snapX-card {
  background: #ffffff;
  border: 0.08rem solid #e5e7eb;
  border-radius: 1rem;
  padding: 1rem;
  transition: 0.3s ease;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.03);
  flex-shrink: 0;
}

.snapX-card:hover {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.06);
}

/* HEADER */

.snapX-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.snapX-brand {
  display: flex;
  gap: 0.7rem;
}

/* ICON */

.snapX-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.6rem;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* TEXT */

.snapX-name {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.snapX-category {
  font-size: 0.8rem;
  color: #6b7280;
}

/* IMAGE */



/* PRICE */

.snapX-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.3rem;
  line-height: 1;
}

.snapX-sub {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 0.8rem;
}

/* ROAS */

.snapX-roas {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #16a34a;
  font-size: 0.8rem;
  font-weight: 700;
  background: #ecfdf3;
  padding: 0.45rem 0.7rem;
  border-radius: 5rem;
}

/* RESPONSIVE */

@media (max-width:48rem) {

  .snapX-section {
    padding: 2.5rem 0;
  }

  .snapX-heading {
    font-size: 1.3rem;
  }

  .snapX-card {
    padding: 0.9rem;
  }

  .snapX-price {
    font-size: 1.5rem;
  }

  .snapX-image {
    width: 3rem;
    height: 3rem;
  }

}


/* CARD */

.testiX-card {
  background: #ffffff;
  border: 0.08rem solid #e5e7eb;
  border-radius: 1.2rem;
  padding: 1.6rem;
  height: 100%;
  transition: 0.3s ease;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.03);
}

.testiX-card:hover {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.06);
}

/* TOP */

.testiX-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* IMAGE */

.testiX-user {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 0.15rem solid #f3f4f6;
}

.testiX-user img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* INFO */

.testiX-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.testiX-role {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 0.7rem;
}

/* STARS */

.testiX-stars {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: #facc15;
  font-size: 1rem;
}

/* TEXT */

.testiX-text {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.9;
  margin: 0;
}

/* RESPONSIVE */

@media (max-width:48rem) {

  .testiX-section {
    padding: 2.5rem 0;
  }

  .testiX-card {
    padding: 1.3rem;
  }

  .testiX-user {
    width: 3.5rem;
    height: 3.5rem;
  }

  .testiX-name {
    font-size: 1.1rem;
  }

  .testiX-role {
    font-size: 0.9rem;
  }

  .testiX-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

}


.uploadX-drop {
  margin-top: 20px;
  position: relative;
  border: 0.12rem dashed #cbd5e1;
  border-radius: 1.2rem;
  background: #f8fafc;
  padding: 1rem;
  text-align: center;
  transition: 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.uploadX-drop:hover {
  border-color: #16a34a;
  background: #f0fdf4;
}

.uploadX-drop.uploadX-active {
  border-color: #16a34a;
  background: #ecfdf3;
  transform: scale(1.01);
}

/* ICON */

.uploadX-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 1.5rem;
  font-size: 2rem;
}

/* TEXT */

.uploadX-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.8rem;
}

.uploadX-text {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* BUTTON */

.uploadX-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.6rem;
  border-radius: 0.8rem;
  background: #16a34a;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  transition: 0.3s ease;
}

.uploadX-btn:hover {
  background: #15803d;
  transform: translateY(-0.15rem);
}

/* INPUT */

.uploadX-input {
  display: none;
}

.uploadX-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #f8fafc;
  border: 0.08rem solid #e5e7eb;
  border-radius: 1rem;
  padding: 1rem;
  animation: uploadXFade 0.3s ease;
}

@keyframes uploadXFade {

  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }

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

}

/* LEFT */

.uploadX-fileLeft {
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
}

.uploadX-fileIcon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.8rem;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.uploadX-fileName {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 16rem;
}

.uploadX-fileSize {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.2rem;
}

/* REMOVE */

.uploadX-remove {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: #fee2e2;
  color: #dc2626;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  flex-shrink: 0;
}

.uploadX-remove:hover {
  background: #fecaca;
  transform: scale(1.05);
}

/* RESPONSIVE */

@media (max-width:48rem) {

  .uploadX-section {
    padding: 2.5rem 0;
  }

  .uploadX-card {
    padding: 1.5rem;
  }

  .uploadX-title {
    font-size: 1.7rem;
  }

  .uploadX-drop {
    padding: 2rem 1.2rem;
  }

  .uploadX-icon {
    width: 4rem;
    height: 4rem;
    font-size: 1.6rem;
  }

  .uploadX-heading {
    font-size: 1.2rem;
  }

  .uploadX-btn {
    width: 100%;
  }

  .uploadX-file {
    flex-direction: column;
    align-items: flex-start;
  }

  .uploadX-remove {
    align-self: flex-end;
  }

  .uploadX-fileName {
    max-width: 12rem;
  }

}