body {
    background-color: #fff;
}

.navbar {
  background-color: #fff;
  box-shadow: none;
}

.navbar.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 12px rgba(20, 34, 61, 0.06);
}


.heo-section {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  box-sizing: border-box;
  font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue',
    Arial, 'Avenir', 'Montserrat', 'Corbel', 'URW Gothic',
    'Source Sans Pro', sans-serif;
}


.hero-content {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 22px;
}

.hero-star {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.hero-rating-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1E293B;
  letter-spacing: -0.01em;
}

.hero-rating-text {
  font-size: 1.05rem;
  font-weight: 400;
  color: #9AA0A6;
  letter-spacing: -0.01em;
  margin-left: 8px;
}

.hero-title {
  font-size: 4.25rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #14223D;
  margin: 0 auto 36px;
  max-width: 1000px;
  text-align: center;
}

.hero-title-accent {
  font-family: 'Shantell Sans', 'system-ui';
  color: #C667FF;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #e8e8e8;
  color: #14223D;
  padding: 8px 26px;
  border-radius: 12px;
  border: none;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease,
    transform 0.2s ease;
  cursor: pointer;
}

.hero-cta:hover {
  background-color: rgb(238, 238, 238);
}

.hero-cta:active {
  transform: translateY(1px);
}

.hero-cta-arrow {
  flex-shrink: 0;
}

.hero-preview {
  margin: 0 auto;
  width: 100%;
  max-width: 1180px;
}

.hero-preview img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid #E4E4E7;
  box-shadow: 0 8px 30px rgba(20, 34, 61, 0.06);
  background-color: #FFFFFF;
}

/* ---------- Hero build-in animation ---------- */
@keyframes hero-title-in {
  from {
    opacity: 0;
    transform: translateY(200px) scale(0.97);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes hero-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes hero-preview-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  animation: hero-title-in 1s cubic-bezier(0.22, 1, 0.36, 1) both;
  will-change: transform, filter, opacity;
}

.hero-rating {
  animation: hero-fade-in 220ms ease-out 420ms both;
}

.hero-cta {
  animation: hero-fade-in 820ms ease-out 920ms both;
}

.hero-preview {
  animation: hero-preview-in 600ms cubic-bezier(0.22, 1, 0.36, 1) 250ms both;
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  .hero-title,
  .hero-rating,
  .hero-cta,
  .hero-preview {
    animation: none;
  }
}

@media (max-width: 960px) {
  .hero-section {
    margin-top: 40px;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-preview {
    margin-top: 50px;
  }
}

@media (max-width: 640px) {
  .hero-section {
    margin-top: 28px;
    padding: 0 16px;
  }
  .hero-rating {
    margin-bottom: 16px;
  }
  .hero-rating-value,
  .hero-rating-text {
    font-size: 0.95rem;
  }
  .hero-star {
    width: 18px;
    height: 18px;
  }
  .hero-title {
    font-size: 2.1rem;
    margin-bottom: 26px;
    letter-spacing: -0.02em;
  }
  .hero-cta {
    font-size: 1rem;
    padding: 12px 22px;
  }
  .hero-preview {
    margin-top: 36px;
  }
  .hero-preview img {
    border-radius: 14px;
  }
}

.features-section {
  width: 100%;
  max-width: 1280px;
  margin: 4rem auto 3rem;
  padding: 0 20px;
  box-sizing: border-box;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.features-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.feature-card {
  background-color: var(--background-color);
  border-radius: 18px;
  padding: 26px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.features-column-large .feature-card {
  min-height: 340px;
}

.features-column:not(.features-column-large) .feature-card {
  min-height: 220px;
}

.feature-card.feature-card-export {
  max-height: 180px;
  min-height: 180px !important;
}

.feature-card.feature-card-colors {
  min-height: 160px !important;
  max-height: 160px !important;
}

.feature-card.feature-card-bullet {
  min-height: 315px !important;
}

.feature-card-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue',
    Arial, 'Avenir', 'Montserrat', 'Corbel', 'URW Gothic',
    'Source Sans Pro', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.18;
  color: var(--text-color);
  margin: 0;
  letter-spacing: -0.01em;
}

.feature-card-title-bottom {
  margin-top: auto;
}

.more-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-color);
  text-align: center;
  margin-top: 20px;
}

.feature-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin-top: 12px;
}

.feature-card-edit {
  overflow: visible;
}

.feature-card-visual-edit {
  justify-content: flex-start;
  margin-left: -10px;
  margin-top: auto;
  overflow: visible;
}

.feature-card-visual-edit svg {
  overflow: visible;
}

.feature-card-visual-customize {
  justify-content: flex-start;
  align-items: flex-end;
  flex: 1;
  margin-top: auto;
  gap: 14px;
}

.customize-letter {
  font-family: 'Times New Roman', Times, serif;
  font-size: 4.6rem;
  font-weight: 400;
  color: #D1D1D1;
  line-height: 1;
}

.customize-letter-1 { color: #BFBFBF; }
.customize-letter-2 { color: #D6D6D6; }
.customize-letter-3 { color: #E2E2E2; }

.feature-card-visual-collapse {
  justify-content: flex-start;
  margin-top: auto;
  margin-left: -10px;
  overflow: visible;
}

.feature-card-visual-collapse svg {
  overflow: visible;
  margin-top: 45px;
}

.feature-card-expand .feature-card-expand-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  height: 100%;
}

.feature-card-expand-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-accent {
  color: #b061ff;
}

.feature-card-visual-images {
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: auto;
  margin-right: -8px;
  margin-bottom: -68px;
}

/* ----- Export card ----- */
.feature-card-visual-export {
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-top: 20px;
}

.feature-card-visual-bullet {
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: auto;
  margin-bottom: -20px;
  margin-right: -20px;
}


.feature-card.feature-card-expand {
  min-height: 120px !important;
}

.feature-card-images {
  min-height: 280px !important;
}

.feature-card.feature-card-collapse {
  min-height: 260px !important;
}

.feature-card-colors {
  align-items: center;
  justify-content: space-between;
}

.feature-card-visual-colors {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  margin-top: -20px;
}

.feature-card-colors .feature-card-title-bottom {
  text-align: center;
  align-self: stretch;
}

@media (max-width: 960px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .features-column-large {
    grid-column: 1 / -1;
    flex-direction: row;
  }
  .features-column-large .feature-card {
    flex: 1;
    min-height: 255px;
  }
  .features-column:not(.features-column-large) .feature-card {
    min-height: 230px;
  }
}

@media (max-width: 640px) {
  .features-section {
    margin: 24px auto 20px;
    padding: 0 14px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .features-column {
    gap: 12px;
  }
  .features-column-large {
    flex-direction: column;
  }
  .features-column-large .feature-card,
  .features-column:not(.features-column-large) .feature-card {
    min-height: 220px;
  }
  .feature-card {
    padding: 22px 24px;
  }
  .feature-card-title {
    font-size: 1.35rem;
  }
}

.pricing-section {
    background-color: var(--background-color);
}

.ai-assistant-section {
  width: 100%;
  max-width: 1280px;
  margin: 5rem auto;
  padding: 0 20px;
  box-sizing: border-box;
  font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue',
    Arial, 'Avenir', 'Montserrat', 'Corbel', 'URW Gothic',
    'Source Sans Pro', sans-serif;
}

.ai-assistant-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 100 / 64;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  margin: 0 auto;
  container-type: inline-size;
}

@media (max-width: 650px) {
  .ai-assistant-section {
    overflow: hidden;
  }
  .ai-assistant-container {
    transform: scale(1.6);
    transform-origin: center center;
    margin-top: 120px;
    margin-bottom: 120px;
  }
}

.ai-assistant-center {
  text-align: center;
  z-index: 2;
  position: relative;
}

.ai-assistant-title {
  font-size: 4rem;
  font-weight: 600;
  color: #14223D;
  margin: 0 0 14px;
  letter-spacing: -0.025em;
  line-height: 1;
}

.ai-assistant-subtitle {
  font-size: 1.4rem;
  color: #7C8087;
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.005em;
}

@media (max-width: 775px) {
  .section-title#pricing {
    color: var(--text-color) !important;
  }
}

.ai-pill {
  position: absolute;
  display: inline-block;
  padding: 16px 26px;
  border-radius: 30px;
  border: 4px solid #ffffff;
  outline: 0;
  box-shadow: none;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.005em;
  z-index: 1;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
}

.ai-pill::before,
.ai-pill::after {
  content: none;
  display: none;
}

.ai-pill-tail-bl {
  border-bottom-left-radius: 10px;
}

.ai-pill-tail-br {
  border-bottom-right-radius: 10px;
}

.ai-pill-tail-tl {
  border-top-left-radius: 10px;
}

.ai-pill-tail-tr {
  border-top-right-radius: 10px;
}

.ai-pill-dark {
  background-color: #9B5AD7;
}

.ai-pill-light {
  background-color: #C667FF;
}

.ai-pill-top-1 {
  top: 110px;
  left: 120px;
  transform: rotate(-14deg);
  max-width: 260px;
  z-index: 3;
}

.ai-pill-top-2 {
  top: 155px;
  left: 32%;
  transform: rotate(5deg);
  max-width: 270px;
  z-index: 3;
}

.ai-pill-top-3 {
  top: 140px;
  right: 160px;
  transform: rotate(10deg);
  max-width: 340px;
  z-index: 6;
}

.ai-pill-bottom-1 {
  bottom: 140px;
  left: 5%;
  transform: rotate(9deg);
  max-width: 520px;
  z-index: 2;
}

.ai-pill-bottom-2 {
  bottom: 75px;
  left: 38%;
  transform: rotate(-4deg);
  z-index: 3;
}

.ai-pill-bottom-3 {
  top: 380px;
  right: 120px;
  transform: rotate(-12deg);
  max-width: 300px;
  z-index: 1;
}

@media (max-width: 960px) {
  .ai-assistant-container {
    height: 560px;
  }
  .ai-assistant-title {
    font-size: 3rem;
  }
  .ai-assistant-subtitle {
    font-size: 1.15rem;
  }
  .ai-pill {
    font-size: 0.95rem;
    padding: 12px 18px;
    border-radius: 30px;
    border-width: 3px;
  }
  .ai-pill-tail-bl { border-bottom-left-radius: 8px; }
  .ai-pill-tail-br { border-bottom-right-radius: 8px; }
  .ai-pill-tail-tl { border-top-left-radius: 8px; }
  .ai-pill-tail-tr { border-top-right-radius: 8px; }
  .ai-pill-top-1 {
    top: 20px;
    left: 4%;
    max-width: 210px;
  }
  .ai-pill-top-2 {
    top: 125px;
    left: 30%;
    max-width: 210px;
  }
  .ai-pill-top-3 {
    top: 90px;
    right: 4%;
    max-width: 260px;
  }
  .ai-pill-bottom-1 {
    bottom: 140px;
    left: 3%;
    max-width: 400px;
  }
  .ai-pill-bottom-2 {
    bottom: 50px;
    left: 32%;
  }
  .ai-pill-bottom-3 {
    bottom: 155px;
    right: 4%;
  }
}

@media (max-width: 640px) {
  .ai-assistant-section {
    margin: 3rem auto;
    padding: 0 14px;
  }
  .ai-assistant-container {
    height: 460px;
  }
  .ai-assistant-title {
    font-size: 2.1rem;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
  }
  .ai-assistant-subtitle {
    font-size: 0.95rem;
  }
  .ai-pill {
    font-size: 0.72rem;
    padding: 8px 13px;
    border-radius: 22px;
    border-width: 2px;
    line-height: 1.25;
  }
  .ai-pill-tail-bl { border-bottom-left-radius: 6px; }
  .ai-pill-tail-br { border-bottom-right-radius: 6px; }
  .ai-pill-tail-tl { border-top-left-radius: 6px; }
  .ai-pill-tail-tr { border-top-right-radius: 6px; }
  .ai-pill-top-1 {
    top: 10px;
    left: 2%;
    max-width: 130px;
  }
  .ai-pill-top-2 {
    top: 95px;
    left: 28%;
    max-width: 140px;
  }
  .ai-pill-top-3 {
    top: 65px;
    right: 2%;
    max-width: 160px;
  }
  .ai-pill-bottom-1 {
    bottom: 110px;
    left: 2%;
    max-width: 230px;
  }
  .ai-pill-bottom-2 {
    bottom: 30px;
    left: 28%;
    max-width: 160px;
  }
  .ai-pill-bottom-3 {
    bottom: 100px;
    right: 3%;
    max-width: 130px;
  }
}

/* Keep the assistant composition scaling as one 1000x640 unit (64/100 height-to-width). */
.ai-assistant-container {
  aspect-ratio: 100 / 64;
  height: auto;
}

.ai-assistant-title {
  font-size: 6.4cqw;
  margin-bottom: 1.4cqw;
  letter-spacing: -0.025em;
}

.ai-assistant-subtitle {
  font-size: 2.24cqw;
}

.ai-pill {
  padding: 1.6cqw 2.6cqw;
  border-radius: 3cqw;
  border-width: 0.4cqw;
  font-size: 1.84cqw;
  line-height: 1.22;
}

.ai-pill-tail-bl { border-bottom-left-radius: 1cqw; }
.ai-pill-tail-br { border-bottom-right-radius: 1cqw; }
.ai-pill-tail-tl { border-top-left-radius: 1cqw; }
.ai-pill-tail-tr { border-top-right-radius: 1cqw; }

.ai-pill-top-1 {
  top: 11cqw;
  left: 12cqw;
  max-width: 26cqw;
}

.ai-pill-top-2 {
  top: 15.5cqw;
  left: 32cqw;
  max-width: 27cqw;
}

.ai-pill-top-3 {
  top: 14cqw;
  right: 16cqw;
  max-width: 34cqw;
}

.ai-pill-bottom-1 {
  bottom: 14cqw;
  left: 5cqw;
  max-width: 52cqw;
}

.ai-pill-bottom-2 {
  bottom: 7.5cqw;
  left: 38cqw;
}

.ai-pill-bottom-3 {
  top: 38cqw;
  bottom: auto;
  right: 12cqw;
  max-width: 30cqw;
}


.list span {
    background-color: transparent;
}

.list span svg {
    stroke: #1E293B !important;
}

.navbutton {
  border-radius: 12px;
}
.review-avatar {
  border-radius: 14px;
}

.get-started-button {
  background-color: #fff;
  color: #14223D;
  border-radius: 14px;
}

.white-p {
  opacity: 0.5;
}

.pricing-small-title {
  color: #14223D !important;
}

.examples-section {
  background-color: var(--background-color);
}

.reviews-section {
  background-color: #fff;
}

.review-card, .carousel-card {
  background-color: var(--background-color);
}

.accordion-item {
  background-color: var(--background-color);
  border-radius: 14px;
  border: none;
}

.accordion {
  margin-bottom: 6rem;
}

.faq-section-contact-link span, .faq-container-centered .section-title {
  color: #14223D;
  font-weight: 600;
}