/* ============================================
   HOW TO APPLY - Enhanced Design
   ============================================ */

/* ---- Global text weight ---- */
.hta-section,
.hta-roadmap,
.hta-banner,
.demo-cta-section {
  font-weight: 500;
}

.hta-section p,
.hta-section span,
.hta-endorser-card p,
.hta-callout-content p,
.hta-timeline-content p,
.hta-split-card p,
.hta-action-card p,
.hta-doc-item span,
.hta-section-subtitle {
  font-weight: 500;
}

/* ---- Section Divider ---- */
.hta-section-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, #33afd9, transparent);
  max-width: 80%;
  margin: 0 auto;
}

/* ---- Section Base ---- */
.hta-section {
  padding: 5em 0;
  position: relative;
  overflow: hidden;
}

.hta-bg-white {
  background: #ffffff;
}

.hta-bg-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7fb 100%);
}

/* ---- Decorative background shapes ---- */
.hta-bg-white::before,
.hta-bg-gradient::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
}

.hta-bg-white::before {
  top: -100px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(51,175,217,0.06) 0%, transparent 70%);
}

.hta-bg-gradient::before {
  bottom: -120px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(28,68,137,0.06) 0%, transparent 70%);
}

/* ---- Section Header ---- */
.hta-section-header {
  text-align: center;
  margin-bottom: 3em;
  position: relative;
}

.hta-step-badge {
  display: inline-block;
  background: linear-gradient(135deg, #33afd9, #1c4489);
  color: #fff;
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.5em 1.8em;
  border-radius: 20px;
  margin-bottom: 1em;
  box-shadow: 0 4px 15px rgba(51, 175, 217, 0.3);
}

.hta-section-header h2 {
  font-family: "GothamBook", "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #1c4489;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: 0.3em;
}

.hta-section-subtitle {
  color: #777;
  font-size: 1rem;
  font-style: italic;
  margin: 0;
}

/* ============================================ */
/* PROGRESS ROADMAP BAR                         */
/* ============================================ */
.hta-roadmap {
  background: #1c4489;
  padding: 1.5em 0;
  position: relative;
}

.hta-roadmap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #33afd9, #1c4489, #33afd9);
}

.hta-roadmap-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.hta-roadmap-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
  padding: 0.5em 1.5em;
  transition: transform 0.3s ease;
}

.hta-roadmap-item:hover {
  transform: translateY(-3px);
}

.hta-roadmap-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}

.hta-roadmap-item:hover .hta-roadmap-icon {
  background: rgba(51,175,217,0.3);
  border-color: #33afd9;
}

.hta-roadmap-icon i {
  color: #fff;
  font-size: 1.1rem;
}

.hta-roadmap-item span {
  color: rgba(255,255,255,0.8);
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.hta-roadmap-connector {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.15), rgba(51,175,217,0.5), rgba(255,255,255,0.15));
  flex-shrink: 0;
}

/* ============================================ */
/* TIMELINE (Step 1)                            */
/* ============================================ */
.hta-timeline {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  padding-left: 60px;
}

/* Vertical line */
.hta-timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #33afd9, #1c4489, #33afd9);
  border-radius: 3px;
}

.hta-timeline-item {
  position: relative;
  margin-bottom: 1.5em;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hta-timeline-item.hta-visible {
  opacity: 1;
  transform: translateX(0);
}

.hta-timeline-item:nth-child(2) { transition-delay: 0.1s; }
.hta-timeline-item:nth-child(3) { transition-delay: 0.2s; }
.hta-timeline-item:nth-child(4) { transition-delay: 0.3s; }
.hta-timeline-item:nth-child(5) { transition-delay: 0.4s; }
.hta-timeline-item:nth-child(6) { transition-delay: 0.5s; }

.hta-timeline-dot {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #33afd9, #1c4489);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 5px rgba(51,175,217,0.15), 0 4px 12px rgba(28,68,137,0.2);
}

.hta-timeline-dot span {
  color: #fff;
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 0.9rem;
}

.hta-timeline-card {
  display: flex;
  align-items: center;
  gap: 1.2em;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 1.3em 1.8em;
  box-shadow: 0 4px 24px rgba(28, 68, 137, 0.08), 0 1px 4px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

/* Arrow pointing to timeline dot */
.hta-timeline-card::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid rgba(255,255,255,0.85);
}

.hta-timeline-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(28, 68, 137, 0.15);
}

.hta-timeline-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eaf4f9, #d6ecf5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.hta-timeline-card:hover .hta-timeline-icon {
  background: linear-gradient(135deg, #33afd9, #1c4489);
}

.hta-timeline-icon i {
  font-size: 1.1rem;
  color: #1c4489;
  transition: color 0.3s ease;
}

.hta-timeline-card:hover .hta-timeline-icon i {
  color: #fff;
}

.hta-timeline-content h4 {
  font-family: "Montserrat-Bold", sans-serif;
  color: #1c4489;
  font-size: 1rem;
  margin-bottom: 0.2em;
}

.hta-timeline-content p {
  margin: 0;
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.hta-timeline-content a {
  color: #33afd9;
  text-decoration: none;
}

.hta-timeline-content a:hover {
  color: #1c4489;
  text-decoration: underline;
}

/* ============================================ */
/* SPLIT LAYOUT (Step 2)                        */
/* ============================================ */
.hta-split-layout {
  display: flex;
  gap: 2em;
  max-width: 950px;
  margin: 0 auto;
  align-items: stretch;
}

.hta-split-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(28, 68, 137, 0.08), 0 1px 4px rgba(0,0,0,0.04);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
}

.hta-split-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(28, 68, 137, 0.15), 0 4px 12px rgba(0,0,0,0.06);
}

.hta-split-card-accent {
  height: 5px;
  background: linear-gradient(90deg, #33afd9, #1c4489);
}

.hta-split-card-accent.accent-alt {
  background: linear-gradient(90deg, #1c4489, #33afd9, #1c4489);
}

.hta-split-card-inner {
  padding: 2.2em 1.8em;
  text-align: center;
}

.hta-big-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eaf4f9, #d6ecf5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2em;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hta-split-card:hover .hta-big-icon {
  background: linear-gradient(135deg, #33afd9, #1c4489);
  transform: scale(1.08);
}

.hta-big-icon i {
  font-size: 1.8rem;
  color: #1c4489;
  transition: color 0.3s ease;
}

.hta-split-card:hover .hta-big-icon i {
  color: #fff;
}

.hta-split-card h4 {
  font-family: "Montserrat-Bold", sans-serif;
  color: #1c4489;
  font-size: 1.15rem;
  margin-bottom: 0.75em;
}

.hta-split-divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #33afd9, #1c4489);
  margin: 0 auto 1.2em;
  border-radius: 2px;
  opacity: 0.5;
  transition: width 0.35s ease, opacity 0.35s ease;
}

.hta-split-card:hover .hta-split-divider {
  width: 80px;
  opacity: 1;
}

.hta-split-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* Document items */
.hta-doc-grid {
  display: flex;
  flex-direction: column;
  gap: 1em;
  text-align: left;
}

.hta-doc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8em;
}

.hta-doc-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #eaf4f9, #d6ecf5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hta-doc-icon i {
  font-size: 0.9rem;
  color: #1c4489;
}

.hta-doc-item span {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
  padding-top: 0.4em;
}

/* ============================================ */
/* CALLOUT BOX (Step 3)                         */
/* ============================================ */
.hta-callout-box {
  display: flex;
  align-items: center;
  gap: 1.5em;
  max-width: 800px;
  margin: 0 auto 2.5em;
  background: linear-gradient(135deg, rgba(51,175,217,0.08), rgba(28,68,137,0.05));
  border: 1px solid rgba(51,175,217,0.2);
  border-left: 5px solid #33afd9;
  border-radius: 0 16px 16px 0;
  padding: 1.5em 2em;
  box-shadow: 0 4px 24px rgba(28, 68, 137, 0.06);
}

.hta-callout-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #33afd9, #1c4489);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hta-callout-icon i {
  font-size: 1.4rem;
  color: #fff;
}

.hta-callout-content h4 {
  font-family: "Montserrat-Bold", sans-serif;
  color: #1c4489;
  font-size: 1.05rem;
  margin-bottom: 0.3em;
}

.hta-callout-content p {
  margin: 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* Next steps header with decorative lines */
.hta-next-steps-header {
  display: flex;
  align-items: center;
  gap: 1.5em;
  max-width: 600px;
  margin: 0 auto 2em;
}

.hta-next-steps-header h4 {
  font-family: "Montserrat-Bold", sans-serif;
  color: #1c4489;
  font-size: 1.05rem;
  white-space: nowrap;
  margin: 0;
}

.hta-decorative-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, #33afd9, transparent);
  border-radius: 2px;
}

/* Action cards (send code / watch video) */
.hta-action-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5em;
  max-width: 700px;
  margin: 0 auto 2.5em;
}

.hta-action-card {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 2em 1.5em;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(28, 68, 137, 0.08);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.35s ease;
}

.hta-action-card.hta-visible {
  opacity: 1;
  transform: translateY(0);
}

.hta-action-card::before {
  content: '';
  display: block;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #33afd9, #1c4489);
  position: absolute;
  top: 0;
  left: 0;
}

.hta-action-card:hover {
  box-shadow: 0 12px 40px rgba(28, 68, 137, 0.15);
}

.hta-action-number {
  position: absolute;
  top: 15px;
  right: 15px;
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 2.5rem;
  color: rgba(28,68,137,0.06);
  line-height: 1;
}

.hta-action-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eaf4f9, #d6ecf5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1em;
}

.hta-action-icon i {
  font-size: 1.3rem;
  color: #1c4489;
}

.hta-action-card h4 {
  font-family: "Montserrat-Bold", sans-serif;
  color: #1c4489;
  font-size: 1.05rem;
  margin-bottom: 0.5em;
}

.hta-action-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.hta-action-connector {
  color: #33afd9;
  font-size: 1.5rem;
  flex-shrink: 0;
  opacity: 0.6;
}

/* ============================================ */
/* ENDORSER SECTION (Step 4)                    */
/* ============================================ */
.hta-bg-endorser {
  background: linear-gradient(rgba(28,68,137,0.65), rgba(28,68,137,0.65)), url("/images/arrow-background.png") center center / cover no-repeat;
  background-color: #1c4489;
  color: #fff;
  overflow: hidden;
}

.hta-header-light h2 {
  color: #fff;
}

.hta-header-light .hta-section-subtitle {
  color: rgba(255,255,255,0.7);
}

.hta-badge-light {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: none;
}

.hta-endorser-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.hta-endorser-card {
  flex: 0 0 auto;
  width: 200px;
  text-align: center;
  padding: 2em 1.5em;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 16px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hta-endorser-card.hta-visible {
  opacity: 1;
  transform: translateY(0);
}

.hta-endorser-card.hta-visible:hover {
  transform: translateY(-4px);
}

.hta-endorser-card:nth-child(2) { transition-delay: 0.1s; }
.hta-endorser-card:nth-child(3) { transition-delay: 0.2s; }
.hta-endorser-card:nth-child(4) { transition-delay: 0.3s; }
.hta-endorser-card:nth-child(5) { transition-delay: 0.4s; }
.hta-endorser-card:nth-child(6) { transition-delay: 0.5s; }
.hta-endorser-card:nth-child(7) { transition-delay: 0.6s; }

.hta-endorser-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transform: translateY(-4px);
}

.hta-endorser-num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #33afd9, #1c4489);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 0.75rem;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hta-endorser-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eaf4f9, #d6ecf5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8em;
  transition: background 0.3s ease;
}

.hta-endorser-card:hover .hta-endorser-icon {
  background: linear-gradient(135deg, #33afd9, #1c4489);
}

.hta-endorser-icon i {
  font-size: 1.1rem;
  color: #1c4489;
  transition: color 0.3s ease;
}

.hta-endorser-card:hover .hta-endorser-icon i {
  color: #fff;
}

.hta-endorser-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
}

.hta-endorser-card a {
  color: #33afd9;
  text-decoration: none;
}

.hta-endorser-card a:hover {
  color: #1c4489;
  text-decoration: underline;
}

/* Video in dark section */
.hta-video-light {
  margin-top: 3em;
}

.hta-video-card-light {
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
}

.hta-video-card-light::before {
  background: linear-gradient(90deg, #33afd9, rgba(255,255,255,0.3), #33afd9) !important;
}

.hta-video-card-light h4 {
  color: #fff !important;
}

/* ============================================ */
/* VIDEO CARD                                   */
/* ============================================ */
.hta-video-wrap {
  max-width: 700px;
  margin: 2.5em auto 0;
  position: relative;
}

.hta-video-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(28, 68, 137, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hta-video-card::before {
  content: '';
  display: block;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #33afd9, #1c4489);
}

.hta-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28, 68, 137, 0.15);
}

.hta-video-card h4 {
  font-family: "Montserrat-Bold", sans-serif;
  color: #1c4489;
  text-align: center;
  margin: 0.8em 0 0.6em;
  font-size: 1.1rem;
}

.hta-video-card .video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 0 0 16px 16px;
}

.hta-video-card .video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-thumbnail {
  position: relative;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}

.video-thumbnail a {
  display: block;
  position: relative;
}

.video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
  transform: scale(1.05);
}

.video-thumbnail .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #029781;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.video-thumbnail:hover .play-button {
  background: #027a68;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail .play-button i {
  color: #fff;
  font-size: 1.5rem;
  margin-left: 4px;
}

/* ============================================ */
/* CONTACT SECTION                              */
/* ============================================ */
.hta-contact-section {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9ff 100%);
}

.hta-contact-card {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 24px rgba(28, 68, 137, 0.08);
}

.hta-contact-card::before {
  content: '';
  display: block;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #33afd9, #1c4489);
}

.hta-contact-card-inner {
  padding: 2.5em 2em;
}

.hta-contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eaf4f9, #d6ecf5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1em;
}

.hta-contact-icon i {
  font-size: 1.6rem;
  color: #1c4489;
}

.hta-contact-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #1c4489;
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}

.hta-contact-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1em;
}

.hta-contact-info {
  margin: 1.5em 0;
}

.hta-phone-link {
  display: inline-block;
  background: linear-gradient(135deg, #33afd9, #1c4489);
  color: #fff;
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 0.7em 2em;
  border-radius: 6px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hta-phone-link:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: #fff;
}

.hta-phone-link i {
  margin-right: 0.4em;
}

.hta-thank-you {
  font-family: "Montserrat-Bold", sans-serif;
  color: #1c4489;
  font-size: 1.1rem;
  margin-top: 0.5em;
  margin-bottom: 0 !important;
}

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */
@media (max-width: 991px) {
  .hta-split-layout {
    flex-direction: column;
    align-items: center;
  }

  .hta-split-card {
    max-width: 500px;
    width: 100%;
  }

  .hta-action-cards {
    flex-direction: column;
  }

  .hta-action-connector {
    transform: rotate(90deg);
  }

  .hta-endorser-card {
    width: 180px;
  }

  .hta-roadmap-bar {
    flex-wrap: wrap;
    gap: 0.5em;
  }

  .hta-roadmap-connector {
    display: none;
  }

  .hta-roadmap-item {
    padding: 0.5em 1em;
  }
}

@media (max-width: 576px) {
  .hta-timeline {
    padding-left: 50px;
  }

  .hta-timeline-dot {
    left: -50px;
    width: 34px;
    height: 34px;
  }

  .hta-timeline-dot span {
    font-size: 0.8rem;
  }

  .hta-timeline-card {
    flex-direction: column;
    gap: 0.5em;
    padding: 1em 1.2em;
  }

  .hta-timeline-card::before {
    display: none;
  }

  .hta-callout-box {
    flex-direction: column;
    text-align: center;
    gap: 1em;
    padding: 1.5em;
  }

  .hta-endorser-grid {
    gap: 1.5em;
  }

  .hta-endorser-card {
    width: 45%;
    flex: 0 0 auto;
  }

  .hta-roadmap-icon {
    width: 40px;
    height: 40px;
  }

  .hta-roadmap-item span {
    font-size: 0.65rem;
  }
}
