ul {
  list-style: none;
}

.gradient-text {
  background: var(--bs-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Common section spacing */
.why-section,
.showcase,
.app-preview,
.video-section,
.how-it-works,
.plans,
.testimonials,
.faq,
.cta-section,
.platforms {
  padding: 80px 0;
}

/* Common section header */
.section-header {
  text-align: center;
  margin: 0 auto 50px;
}

.section-tag,
.hero__badge,
.plan-card__badge {
  display: inline-block;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.section-tag,
.hero__badge {
  font-weight: 600;
  color: var(--bs-primary);
  background: rgba(0, 102, 255, 0.08);
}

.section-tag {
  /* font-size: 14px; */
  padding: 6px 16px;
  margin-bottom: 16px;
}

.hero__badge {
  /* font-size: 13px; */
  padding: 6px 14px;
  margin-bottom: 20px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle,
.showcase__text {
  color: #64748b;
}

.platforms__text,
.cta-section__text {
  color: rgba(255, 255, 255, 0.85);
}

/* Common card style */
.feature-card,
.testimonial-card,
.faq__item,
.plan-card,
.browser-mockup {
  background: #fff;
}

/* Common grid helpers */
.features-grid,
.showcase__grid,
.testimonials__grid,
.plans__grid,
.footer__grid {
  display: grid;
}

.features-grid,
.testimonials__grid {
  gap: 28px;
}

.features-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.showcase__grid {
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.testimonials__grid {
  grid-template-columns: repeat(3, 1fr);
}

.plans__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
  align-items: stretch;
}

.footer__grid {
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--bs-primary), #0088ff);
  color: #fff;
}

.btn--outline {
  background: #fff;
  color: var(--bs-primary);
  border: 2px solid var(--bs-primary);
}

.btn--outline:hover {
  background: transparent;
  border-color: var(--bs-primary);
  color: var(--bs-primary);
}

.btn--white {
  background: #fff;
  color: var(--bs-primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn--white:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  background-color: var(--bs-white-hover);
}

.btn--lg {
  padding: 10px 24px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo,
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.nav__logo {
  color: #0f172a;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link,
.dropdown__link {
  font-weight: 500;
  color: #475569;
  border-radius: 8px;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
}

.dropdown__link {
  display: block;
  padding: 10px 16px;
}

.nav__link:hover,
.dropdown__link:hover,
.dropdown__link.active {
  color: var(--bs-primary);
  background: rgba(0, 102, 255, 0.06);
}

.nav__dropdown {
  position: relative;
}

.dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
}

.nav__dropdown:hover .dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__cta {
  padding: 10px 24px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: #334155;
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
  background-image: url("../images/page_background.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__title {
  margin-bottom: 20px;
}

.hero__subtitle {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-number {
  font-weight: 700;
  color: #0f172a;
}

.hero__stat-label {
  color: #94a3b8;
  font-weight: 500;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: #e2e8f0;
}

.hero__image {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero__phone-group {
  position: relative;
  width: 380px;
  height: 550px;
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

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

.hero__shape--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.06), transparent 70%);
  top: -100px;
  right: -100px;
}

.hero__shape--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 198, 255, 0.06), transparent 70%);
  bottom: -100px;
  left: -50px;
}

/* ===== Phone Mockups ===== */
.phone-mockup {
  position: relative;
  display: inline-block;
  border-radius: 16.98% / 8.31%;
}

.phone-mockup__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 5;
}

/* Size variants */
.phone-mockup--front,
.phone-mockup--back,
.phone-mockup--showcase-front,
.phone-mockup--showcase-back {
  position: absolute;
}

.phone-mockup--front {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.phone-mockup--back {
  width: 100%;
  top: 20px;
  right: 0;
  z-index: 1;
  opacity: 0.88;
  transform: perspective(600px) rotateY(-5deg);
}

.phone-mockup--small {
  width: 100%;
  margin: 24px auto 0;
}

.phone-mockup--step {
  width: 250px;
  margin: 0 auto;
}

/* Showcase phone pairs */
.phone-mockup-pair {
  position: relative;
  width: 400px;
  height: 560px;
  margin: 0 auto;
}

.phone-mockup--showcase-front {
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.phone-mockup--showcase-back {
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1;
  opacity: 0.88;
  transform: perspective(600px) rotateY(-5deg);
}

/* ===== Social Proof ===== */
.social-proof {
  padding: 40px 0;
  background: var(--bs-primary);
}

.social-proof__grid {
  text-align: center;
}

.social-proof__number {
  display: block;
}

.social-proof__label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ===== Why Section / Feature Cards ===== */
.feature-card {
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
}

.feature-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(0, 102, 255, 0.1);
  transform: translateY(-4px);
}

.feature-card__icon,
.step-card__number,
.testimonial-card__avatar,
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  margin: 0 auto 20px;
}

.feature-card__icon--blue {
  background: rgba(0, 102, 255, 0.08);
  color: var(--bs-primary);
}

.feature-card__icon--purple {
  background: rgba(124, 58, 237, 0.08);
  color: #7c3aed;
}

.feature-card__icon--teal {
  background: rgba(0, 198, 255, 0.08);
  color: #0891b2;
}

.feature-card__title,
.step-card__title {
  font-weight: 600;
  color: #0f172a;
}

.feature-card__title {
  margin-bottom: 12px;
}

.step-card__title {
  margin-bottom: 10px;
}

.feature-card__text,
.step-card__text,
.testimonial-card__text,
.faq__answer p {
  line-height: 1.7;
}

.feature-card__text,
.step-card__text {
  color: #64748b;
}

.feature-card__image {
  margin-top: 8px;
}

/* ===== Showcase Sections ===== */
.showcase--gray,
.app-preview,
.how-it-works {
  background: #f8fafc;
}

.faq {
  background: #ebf1fd;
}

.showcase--reverse .showcase__grid {
  direction: ltr;
}

.showcase--reverse .showcase__grid > * {
  direction: ltr;
}

.showcase__content .section-tag {
  display: inline-block;
}

.showcase__content .section-title {
  text-align: left;
}

.showcase__text {
  margin-bottom: 28px;
}

.showcase__list,
.plan-card__features,
.faq__list,
.footer__links ul {
  display: flex;
  flex-direction: column;
}

.showcase__list {
  gap: 14px;
  margin-bottom: 32px;
}

.showcase__list li,
.plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
  color: #475569;
}

.showcase__list li svg,
.plan-card__features svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-card__features svg {
  flex: 0 0 20px;
}

/* ===== App Preview ===== */
.browser-mockup {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.browser-mockup__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.browser-mockup__dots {
  display: flex;
  gap: 8px;
}

.browser-mockup__dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.browser-mockup__dots span:nth-child(1) {
  background: #ff5f57;
}

.browser-mockup__dots span:nth-child(2) {
  background: #febc2e;
}

.browser-mockup__dots span:nth-child(3) {
  background: #28c840;
}

.browser-mockup__url {
  flex: 1;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 16px;
  color: #94a3b8;
}

.browser-mockup__body {
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.browser-mockup__screens {
  position: relative;
}

.browser-screen {
  width: 100%;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.browser-screen.active {
  display: block;
  opacity: 1;
}

.app-preview__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.app-preview__tab {
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  border: 2px solid #e2e8f0;
  background: #fff;
  color: #64748b;
  cursor: pointer;
}

.app-preview__tab:hover {
  border-color: var(--bs-primary);
  color: var(--bs-primary);
}

.app-preview__tab.active {
  background: linear-gradient(135deg, var(--bs-primary), #0088ff);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

/* ===== Video Section ===== */
.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  background: #f8fafc;
  border-radius: 20px;
  border: 2px dashed #e2e8f0;
  color: #94a3b8;
  gap: 20px;
  cursor: pointer;
}

.video-placeholder:hover {
  border-color: var(--bs-primary);
  background: rgba(0, 102, 255, 0.02);
}

.video-placeholder p {
  font-weight: 500;
}

/* ===== How It Works ===== */
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step-card {
  text-align: center;
  max-width: 300px;
  flex: 1;
}

.step-card__number,
.testimonial-card__avatar {
  color: #fff;
  background: var(--bs-primary);
}

.step-card__number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* font-size: 18px; */
  font-weight: 700;
  margin: 0 auto 24px;
}

.step-card__icon {
  margin-bottom: 24px;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 270px;
  color: var(--bs-primary);
}

/* ===== Subscription Plans ===== */
.plans {
  background: #fff;
  scroll-margin-top: 90px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 102, 255, 0.35);
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.1);
}

.plan-card--highlight {
  border: 2px solid var(--bs-primary);
  box-shadow: 0 18px 56px rgba(0, 102, 255, 0.16);
}

.plan-card__badge {
  padding: 6px 12px;
  background: rgba(0, 102, 255, 0.08);
  color: var(--bs-primary);
  font-weight: 700;
  text-transform: uppercase;
}

.plan-card__header {
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 24px;
}

.plan-card__eyebrow {
  display: block;
  font-weight: 700;
  color: var(--bs-primary);
  margin-bottom: 0px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.plan-card__title {
  margin-bottom: 18px;
}

.plan-card:not(.plan-card--highlight) .plan-card__title {
  padding-right: 0;
}

.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
}

.plan-card__price span {
  font-weight: 600;
  color: #64748b;
}

.plan-card__features {
  gap: 16px;
  margin-bottom: 32px;
  padding-left: 0;
}

.plan-card__cta {
  width: 100%;
  margin-top: auto;
  min-height: 48px;
}

/* ===== Platforms ===== */
.platforms {
  background: linear-gradient(135deg, var(--bs-primary), #0044cc);
  text-align: center;
}

.platforms__badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.platform-badge {
  display: inline-flex;
}

/* .platform-badge:hover {
  transform: translateY(-3px);
} */

/* ===== Testimonials ===== */
.testimonial-card {
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-card__text {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  display: flex;
  flex-grow: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  color: #0f172a;
}

.testimonial-card__author span {
  color: #94a3b8;
}

/* ===== FAQ ===== */

/* Start Updated new  */

.faq-section .accordion .accordion-item {
  background-color: #fff;
  border: none;
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 12px;
  box-shadow: 0px 2px 0px #c6d7f8;
}

/* Button */
.faq-section .accordion .accordion-item .accordion-button {
  background-color: transparent;
  box-shadow: none;
  padding: 0px !important;
  margin: 0px !important;
  font-size: var(--h5-size);
  line-height: var(--h5-line);
  color: var(--bs-dark-color);
  border-radius: 8px;
  font-weight: var(--fw-semibold);
}

.faq-section
  .page-template-templatemoon-ssh-php
  .accordion-item
  #heading1
  .accordion-button.collapsed {
  margin-bottom: 0px !important;
}

/* Header */
.faq-section .accordion .accordion-item .accordion-header {
  padding: 0px !important;
}

/* Body */
.faq-section .accordion .accordion-item .accordion-body {
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  padding: 8px 0 0 0;
  background-color: #fff;
}

/* Paragraph */
.faq-section .accordion .accordion-item .accordion-body p {
  color: #646b7b;
  margin: 0;
  font-size: var(--h5-size);
  line-height: var(--h5-line);
}

.faq-section .accordion .accordion-item .accordion-button .accordion-icons {
  cursor: pointer;
  min-width: 32px;
  width: auto;
}

.faq-section .accordion-button::after {
  display: none;
}

.faq-section
  .accordion
  .accordion-item
  .accordion-button[aria-expanded="false"]
  .accordion-icons {
  transform: rotate(180deg);
}

/* End Updated new  */
.faq__list {
  margin: 0 auto;
  gap: 12px;
}

.faq__item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 2px 0px #c6d7f8;
}

.faq__item:hover {
  border-color: var(--bs-primary);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  background: none;
  border: none;
  font-size: 22px;
  font-weight: 600;
  color: #3b4559;
  cursor: pointer;
  text-align: left;
}

.faq__icon {
  flex-shrink: 0;
  color: #ffffff;
  transition: transform 0.3s;
  background: var(--bs-primary);
  padding: 2px;
  border-radius: 7px;
  width: 24px;
  height: 24px;
}

.faq__item.active .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__item.active .faq__answer {
  max-height: 600px;
}

.faq__answer p {
  padding: 0 24px 20px;
  margin: 0;
  color: #646b7b;
  font-size: 18px;
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--bs-primary);
  text-align: center;
}

.cta-section__title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

/* ===== Footer ===== */
.footer {
  padding: 64px 0 0;
  background: #0f172a;
  color: #94a3b8;
}

.footer__logo {
  color: #fff;
  margin-bottom: 16px;
}

.footer__desc {
  line-height: 1.8;
  margin-bottom: 24px;
  color: #64748b;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #94a3b8;
}

.footer__social a:hover {
  background: var(--bs-primary);
  color: #fff;
}

.footer__links h4 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer__links ul {
  gap: 12px;
}

.footer__links a,
.footer__powered {
  color: #64748b;
}

.footer__links a:hover,
.footer__powered:hover {
  color: var(--bs-primary);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .showcase__grid {
    gap: 48px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans__grid {
    max-width: 820px;
  }

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

  .why-section,
  .showcase,
  .app-preview,
  .video-section,
  .how-it-works,
  .plans,
  .testimonials,
  .faq,
  .cta-section,
  .platforms {
    padding: 50px 0;
  }

  .feature-card {
    padding: 18px;
  }

  .app-preview__tab {
    padding: 5px 12px;
  }

  .section-header {
    margin: 0 auto 10px;
  }

  .testimonial-card {
    padding: 18px;
  }
}

@media (max-width: 768px) {
  .why-section,
  .showcase,
  .app-preview,
  .video-section,
  .how-it-works,
  .plans,
  .testimonials,
  .faq,
  .cta-section,
  .platforms {
    padding: 30px 0;
  }

  .nav__menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
  }

  .nav__menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__cta {
    display: none;
  }

  .nav__link {
    padding: 12px 16px;
  }

  .dropdown__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 16px;
    display: none;
  }

  .nav__dropdown.active .dropdown__menu {
    display: block;
  }

  .hero {
    padding: 100px 0 30px;
  }

  .hero__grid,
  .showcase__grid,
  .plans__grid,
  .testimonials__grid,
  .features-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 0px;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions,
  .hero__stats,
  .platforms__badges {
    justify-content: center;
  }

  .hero__phone-group {
    width: 320px;
    height: 500px;
    margin: 0 auto;
  }

  .phone-mockup--back {
    width: 200px;
  }

  .features-grid,
  .testimonials__grid {
    max-width: 480px;
    margin: 0 auto;
  }

  .features-grid {
    max-width: 420px;
  }

  .showcase--reverse .showcase__grid {
    direction: ltr;
  }

  .showcase__content,
  .showcase__content .section-title {
    text-align: center;
  }

  .showcase__list li {
    text-align: left;
  }

  .showcase__content .btn {
    margin: 0 auto;
  }

  .phone-mockup-pair {
    width: 320px;
    height: 480px;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .step-connector {
    transform: rotate(90deg);
    padding-top: 0;
  }

  .plan-card {
    padding: 28px;
  }

  .plan-card__title {
    padding-right: 0;
  }

  .footer__grid {
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .showcase.showcase--reverse .showcase__grid div:first-child {
    order: 2;
  }
  .showcase.showcase--reverse .showcase__grid div:last-child {
    order: 1;
  }
}

@media (max-width: 576px) {
  .hero__actions,
  .hero__stats {
    flex-direction: column;
    align-items: center;
  }

  .hero__stat-divider {
    width: 40px;
    height: 1px;
  }

  .plan-card {
    padding: 24px;
  }

  .hero__phone-group {
    width: 280px;
    height: 440px;
  }

  .phone-mockup--back {
    width: 170px;
  }

  .btn--lg {
    width: 100%;
    min-width: 100%;
  }
  .step-card__number {
    margin: 14px auto 24px;
  }
  .faq__question {
    font-size: 18px;
    line-height: 1.2;
  }
  .faq__answer p {
    font-size: 16px;
  }
}
