/*--------------------------------------------------------------
# Addon Services Page
--------------------------------------------------------------*/
body.addon-page {
  background: #fff;
  color: #191f28;
  -webkit-font-smoothing: antialiased;
}

.addon-page .main {
  padding-top: 72px;
}

.addon-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* View switching */
.addon-view[hidden] {
  display: none !important;
}

.addon-detail-panel[hidden] {
  display: none !important;
}

.addon-detail-panel {
  scroll-margin-top: 96px;
}

/* Hub hero */
.addon-hub-hero {
  padding: 56px 0 48px;
  background: linear-gradient(180deg, #fafbfd 0%, #fff 100%);
}

.addon-hub-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 40px;
  align-items: center;
}

.addon-hub-label {
  display: inline-block;
  margin-bottom: 16px;
  color: #5831fb;
  font-size: 0.875rem;
  font-weight: 700;
}

.addon-hub-title {
  margin: 0 0 18px;
  color: #2b3674;
  font-size: clamp(1.875rem, 3.5vw, 2.625rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.addon-hub-desc {
  margin: 0 0 28px;
  max-width: 480px;
  color: #4e5968;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.72;
  word-break: keep-all;
}

.addon-hub-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #4318ff;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(88, 49, 251, 0.24);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.addon-hub-cta-btn:hover {
  background: #4a28d9;
  color: #fff;
  transform: translateY(-1px);
}

.addon-hub-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.connection-container {
  --primary-color: #5e3bee;
  --line-color: #c5b8f8;
  --outer-line-offset: 190px;
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 0 8px;
  text-align: center;
}

.bg-circle-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(94, 59, 238, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.center-pc-area {
  position: relative;
  display: inline-block;
  z-index: 10;
  margin-bottom: 64px;
}

.pc-badge {
  display: inline-block;
  background-color: #f0edff;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(94, 59, 238, 0.15);
  margin-bottom: 12px;
}

.laptop-wrapper {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.laptop-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(27, 37, 89, 0.12);
}

.line-outer-left {
  position: absolute;
  top: 200px;
  left: calc(50% - var(--outer-line-offset));
  width: 120px;
  height: 121px;
  border-top: 2px dotted var(--line-color);
  border-left: 2px dotted var(--line-color);
  border-top-left-radius: 24px;
  pointer-events: none;
  z-index: 5;
}

.line-outer-left::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.line-outer-right {
  position: absolute;
  top: 200px;
  right: calc(50% - var(--outer-line-offset));
  width: 120px;
  height: 121px;
  border-top: 2px dotted var(--line-color);
  border-right: 2px dotted var(--line-color);
  border-top-right-radius: 24px;
  pointer-events: none;
  z-index: 5;
}

.line-outer-right::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -4px;
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.sub-nodes-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 52px;
  width: 100%;
  min-height: 100px;
  margin: 0 auto;
  z-index: 10;
}

.node-item {
  position: relative;
  flex: 0 0 auto;
  max-width: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.node-item:first-child {
  position: absolute;
  left: calc(50% - var(--outer-line-offset));
  transform: translateX(-50%);
}

.node-item:last-child {
  position: absolute;
  left: calc(50% + var(--outer-line-offset));
  transform: translateX(-50%);
}

.node-item.inner-node::before {
  content: "";
  position: absolute;
  top: -64px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 64px;
  border-left: 2px dotted var(--line-color);
}

.node-item.inner-node::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.node-circle {
  width: 72px;
  height: 72px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(94, 59, 238, 0.08);
  margin-bottom: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.node-circle i {
  color: var(--primary-color);
  font-size: 1.5rem;
  line-height: 1;
}

.node-item:hover .node-circle {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(94, 59, 238, 0.15);
}

.node-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2b2b2b;
  white-space: nowrap;
}

/* Hub service cards */
.addon-hub-list {
  padding: 24px 0 56px;
  background: #fff;
}

.addon-hub-list-title {
  margin: 0 0 28px;
  color: #191f28;
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.addon-hub-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.addon-hub-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #eef1f5;
  box-shadow: 0 4px 20px rgba(27, 37, 89, 0.05);
  cursor: pointer;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.addon-hub-card:hover {
  box-shadow: 0 12px 32px rgba(27, 37, 89, 0.1);
  transform: translateY(-2px);
}

.addon-hub-card-main {
  display: grid;
  grid-template-columns: minmax(200px, 1.1fr) minmax(140px, 0.75fr) minmax(200px, 1.1fr);
  gap: 24px;
  align-items: center;
  padding: 28px 24px;
}

.addon-hub-card-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.addon-hub-card-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(88, 49, 251, 0.1);
  color: #5831fb;
  font-size: 1.25rem;
}

.addon-hub-card-head h3 {
  margin: 0 0 6px;
  color: #191f28;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.addon-hub-card-slogan {
  margin: 0 0 8px;
  color: #4318ff;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  word-break: keep-all;
}

.addon-hub-card-desc {
  margin: 0;
  color: #4e5968;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  word-break: keep-all;
}

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

.addon-hub-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #333d4b;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5;
  word-break: keep-all;
}

.addon-hub-card-features i {
  flex-shrink: 0;
  margin-top: 2px;
  color: #5831fb;
  font-size: 0.875rem;
}

.addon-hub-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-height: 160px;
  padding: 16px;
  border-radius: 14px;
  background: #f9fafb;
}

.addon-hub-card-visual img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.addon-hub-card-visual--qr img {
  max-height: 150px;
}

.addon-hub-card-go {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  border-left: 1px solid #eef1f5;
  background: #fafbfc;
  color: #8b95a1;
  font-size: 1.375rem;
  pointer-events: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.addon-hub-card:hover .addon-hub-card-go,
.addon-hub-card:focus-visible .addon-hub-card-go {
  background: #5831fb;
  color: #fff;
}

.addon-hub-card:focus-visible {
  outline: 2px solid #5831fb;
  outline-offset: 2px;
}

/* Hub highlights */
.addon-hub-highlights {
  padding: 0 0 56px;
  background: #fff;
}

.addon-hub-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.addon-hub-highlight {
  padding: 24px 20px;
  border-radius: 16px;
  background: #f9fafb;
  border: 1px solid #eef1f5;
  text-align: center;
}

.addon-hub-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(88, 49, 251, 0.1);
  color: #5831fb;
  font-size: 1.25rem;
}

.addon-hub-highlight strong {
  display: block;
  margin-bottom: 6px;
  color: #191f28;
  font-size: 0.9375rem;
  font-weight: 700;
}

.addon-hub-highlight span {
  color: #4e5968;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.55;
  word-break: keep-all;
}

/* Hub bottom CTA */
.addon-hub-bottom-cta {
  padding: 0 0 80px;
  background: #fff;
}

.addon-hub-bottom-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f4f0ff 0%, #eef1f5 100%);
  border: 1px solid rgba(88, 49, 251, 0.12);
}

.addon-hub-bottom-cta-copy h2 {
  margin: 0 0 8px;
  color: #191f28;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.addon-hub-bottom-cta-copy p {
  margin: 0;
  color: #4e5968;
  font-size: 0.9375rem;
  font-weight: 500;
}

.addon-hub-store-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

/* Detail context menu — fixed in left page gutter (desktop) */
.addon-detail-context {
  z-index: 25;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

#addon-detail-view.is-active .addon-detail-context.is-ready {
  opacity: 1;
  pointer-events: auto;
}

.addon-detail-context-menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px;
  border: 1px solid #e8ecf1;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(27, 37, 89, 0.08);
}

.addon-detail-context-back,
.addon-detail-nav-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #4e5968;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.addon-detail-context-back i,
.addon-detail-nav-btn i {
  flex-shrink: 0;
  width: 1rem;
  font-size: 1rem;
  line-height: 0;
  text-align: center;
  opacity: 0.85;
}

.addon-detail-context-back:hover,
.addon-detail-nav-btn:hover {
  background: #f5f7fa;
  color: #191f28;
}

.addon-detail-context-back:focus-visible,
.addon-detail-nav-btn:focus-visible {
  outline: 2px solid #5831fb;
  outline-offset: 2px;
}

.addon-detail-context-sep {
  height: 1px;
  margin: 6px 8px;
  background: #eef1f5;
}

.addon-detail-nav-btn.is-active {
  background: rgba(67, 24, 255, 0.08);
  color: #4318ff;
}

.addon-detail-nav-btn.is-active i {
  opacity: 1;
  color: #4318ff;
}

/* Desktop: pin further into left gutter */
@media (min-width: 1440px) {
  .addon-detail-context {
    position: fixed;
    top: 168px;
    left: max(8px, calc(50% - 500px - 248px));
    width: 196px;
    transform: translateX(-10px);
  }

  #addon-detail-view.is-active .addon-detail-context.is-ready {
    transform: translateX(0);
  }
}

/* Narrow / mid: compact sticky strip in content flow */
@media (max-width: 1439px) {
  .addon-detail-context {
    position: sticky;
    top: 64px;
    margin: 0 0 8px;
    padding: 12px 24px 4px;
    transform: translateY(8px);
  }

  #addon-detail-view.is-active .addon-detail-context.is-ready {
    transform: translateY(0);
  }

  .addon-detail-context-menu {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
    padding: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .addon-detail-context-menu::-webkit-scrollbar {
    display: none;
  }

  .addon-detail-context-back,
  .addon-detail-nav-btn {
    flex: 0 0 auto;
    width: auto;
    min-height: 36px;
    padding: 0 12px;
    white-space: nowrap;
  }

  .addon-detail-context-sep {
    flex: 0 0 auto;
    width: 1px;
    height: 20px;
    margin: 0 4px;
  }

  .addon-detail-nav-btn.is-active {
    background: #4318ff;
    color: #fff;
  }

  .addon-detail-nav-btn.is-active i {
    color: #fff;
  }
}

/* Hero (legacy – kept for detail sections) */
.addon-hero {
  padding: 72px 0 40px;
  background: linear-gradient(180deg, #fafbfd 0%, #fff 100%);
}

.addon-hero-title {
  margin: 0 0 16px;
  color: #191f28;
  font-size: clamp(1.875rem, 3.5vw, 2.625rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.addon-hero-desc {
  margin: 0;
  max-width: 520px;
  color: #4e5968;
  font-size: clamp(1.0625rem, 1.8vw, 1.1875rem);
  font-weight: 500;
  line-height: 1.72;
  word-break: keep-all;
}

/* Quick nav */
.addon-quicknav {
  position: sticky;
  top: 72px;
  z-index: 20;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #eef1f5;
}

.addon-quicknav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.addon-quicknav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #f2f4f6;
  color: #4e5968;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.addon-quicknav-link:hover {
  background: #fff;
  color: #191f28;
  border-color: #e5e8eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.addon-quicknav-link.is-active {
  background: #fff;
  color: #5831fb;
  border-color: rgba(88, 49, 251, 0.2);
  box-shadow: 0 2px 10px rgba(88, 49, 251, 0.1);
}

.addon-quicknav-link--soon {
  opacity: 0.78;
}

.addon-quicknav-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: #e8ecf2;
  color: #6b7684;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Sections */
.addon-section {
  padding: 88px 0;
  background: #fff;
}

.addon-section--gray {
  background: #f2f4f6;
}

.addon-section-head {
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid #eef1f5;
}

.addon-section--gray .addon-section-head {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.addon-section-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(88, 49, 251, 0.08);
  color: #5831fb;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.addon-section-title {
  margin: 0 0 14px;
  color: #191f28;
  font-size: clamp(1.625rem, 2.8vw, 2.125rem);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.035em;
  word-break: keep-all;
}

.addon-section-desc {
  margin: 0;
  max-width: 600px;
  color: #4e5968;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.72;
  word-break: keep-all;
}

/* Mobile app tabs — match program-tabs (large pill chips) */
.addon-app-tabs-wrap {
  margin-bottom: 28px;
  margin-left: -24px;
  margin-right: -24px;
  padding: 0 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.addon-app-tabs-wrap::-webkit-scrollbar {
  display: none;
}

.addon-app-tabs {
  display: flex;
  align-items: center;
  justify-content: stretch;
  gap: 10px;
  width: 100%;
  padding-bottom: 4px;
}

.addon-app-tab {
  flex: 1 1 0;
  min-width: 0;
  padding: 16px 20px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #6b7684;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}

.addon-app-tab:hover {
  color: #333d4b;
  background: rgba(255, 255, 255, 0.6);
}

.addon-app-tab.is-active {
  background: #fff;
  color: #191f28;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.addon-app-tab:focus-visible {
  outline: 2px solid #5831fb;
  outline-offset: 2px;
}

.addon-app-screens-area.is-switching {
  opacity: 0.55;
  transition: opacity 0.2s ease;
}

.addon-app-panel {
  padding: 36px 32px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(27, 37, 89, 0.06);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.addon-app-panel.is-fading-out {
  opacity: 0;
  transform: translateY(10px);
}

.addon-app-panel.is-fading-in {
  opacity: 0;
  transform: translateY(10px);
}

.addon-app-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 48px;
  align-items: center;
}

.addon-app-layout--large {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
}

.addon-app-role {
  margin: 0 0 8px;
  color: #5831fb;
  font-size: 0.875rem;
  font-weight: 700;
}

.addon-app-heading {
  margin: 0 0 14px;
  color: #191f28;
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.addon-app-summary {
  margin: 0 0 28px;
  color: #4e5968;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.72;
  word-break: keep-all;
}

.addon-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.addon-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #333d4b;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  word-break: keep-all;
}

.addon-feature-list i {
  flex-shrink: 0;
  margin-top: 2px;
  color: #5831fb;
  font-size: 1.125rem;
}

.addon-app-download {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.addon-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #191f28;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.addon-store-btn:hover {
  background: #333d4b;
  color: #fff;
  transform: translateY(-1px);
}

.addon-store-btn--ghost {
  background: #fff;
  color: #191f28;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.addon-store-btn--ghost:hover {
  background: #f9fafb;
  color: #191f28;
}

.addon-app-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
}

.addon-app-visual img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 16px;
}

.addon-app-visual--large img {
  max-width: 380px;
}

/* App screen gallery */
.addon-app-screens-area {
  margin-top: 32px;
}

.addon-app-screens-role[hidden] {
  /* display: none !important; */
}

.addon-app-screens-wrap {
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.addon-app-screens-title {
  margin: 0 0 20px;
  color: #191f28;
  font-size: 1.0625rem;
  font-weight: 700;
}

.addon-app-screens {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.addon-app-screen {
  margin: 0;
  flex: 1 1 160px;
  max-width: 220px;
}

.addon-app-screen-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 20px;
  border-radius: 18px;
  background: #f2f4f6;
}

.addon-app-screen-frame img {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.addon-app-screen-label {
  margin-top: 12px;
  color: #333d4b;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

/* Preview hero (attendance) */
.addon-preview-hero {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
  padding: 36px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 8px 32px rgba(27, 37, 89, 0.06);
}

.addon-preview-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.addon-preview-hero-visual img {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
}

.addon-preview-hero-visual--qr img {
  max-width: 300px;
  max-height: 360px;
  object-fit: contain;
}

.addon-preview-hero-copy h3 {
  margin: 0 0 12px;
  color: #191f28;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
  word-break: keep-all;
}

.addon-preview-hero-copy p {
  margin: 0 0 20px;
  color: #4e5968;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.72;
  word-break: keep-all;
}

.addon-preview-hero-copy .addon-feature-list {
  margin-bottom: 0;
}

/* Feature cards grid */
.addon-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.addon-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 200px;
  padding: 28px 24px 24px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
}

.addon-section--gray .addon-card {
  background: #fff;
}

.addon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.04);
}

.addon-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: #f2f4f6;
  color: #5831fb;
  font-size: 1.25rem;
}

.addon-card-title {
  margin: 0 0 8px;
  color: #191f28;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  word-break: keep-all;
}

.addon-card-desc {
  flex: 1;
  margin: 0;
  color: #6b7684;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  word-break: keep-all;
}

.addon-section-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}

.addon-attendance-links {
  margin-top: 28px;
}

.addon-section-links-divider {
  color: #d1d6db;
  font-weight: 500;
}

.addon-section-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #3182f6;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.addon-section-link:hover {
  color: #1b64da;
  gap: 8px;
}

/* Split block */
.addon-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 48px;
  align-items: center;
}

.addon-split-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.addon-split-visual img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
}

.addon-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.addon-highlight-item {
  padding: 16px 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.addon-section--gray .addon-highlight-item {
  background: #fff;
}

.addon-highlight-item strong {
  display: block;
  margin-bottom: 4px;
  color: #191f28;
  font-size: 0.875rem;
  font-weight: 700;
}

.addon-highlight-item span {
  color: #6b7684;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5;
}

/* QR coming soon */
.addon-soon-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f8f9fb 0%, #eef1f5 100%);
  border: 1px dashed #d1d6db;
  overflow: hidden;
}

.addon-soon-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(88, 49, 251, 0.06);
  pointer-events: none;
}

.addon-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e8ecf2;
  color: #6b7684;
  font-size: 0.8125rem;
  font-weight: 700;
}

.addon-soon-title {
  margin: 0 0 10px;
  color: #191f28;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
  word-break: keep-all;
}

.addon-soon-desc {
  margin: 0;
  max-width: 520px;
  color: #6b7684;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.65;
  word-break: keep-all;
}

.addon-soon-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: #fff;
  color: #b0b8c1;
  font-size: 3rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* CTA */
.addon-cta {
  padding: 80px 0 104px;
  background: linear-gradient(180deg, #fff 0%, #f9fafb 100%);
  border-top: 1px solid #eef1f5;
}

.addon-cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 32px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #eef1f5;
  box-shadow: 0 8px 32px rgba(27, 37, 89, 0.05);
  text-align: center;
}

.addon-cta-title {
  margin: 0 0 14px;
  color: #191f28;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.addon-cta-desc {
  margin: 0 0 32px;
  color: #4e5968;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.72;
  word-break: keep-all;
}

.addon-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.addon-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.addon-cta-btn--primary {
  background: #5831fb;
  color: #fff;
  box-shadow: 0 4px 14px rgba(88, 49, 251, 0.28);
}

.addon-cta-btn--primary:hover {
  background: #4a28d9;
  color: #fff;
  transform: translateY(-1px);
}

.addon-cta-btn--ghost {
  background: #f2f4f6;
  color: #333d4b;
}

.addon-cta-btn--ghost:hover {
  background: #e5e8eb;
  color: #191f28;
}

/* App stats */
.addon-app-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 56px;
}

.addon-app-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 22px;
  border-radius: 18px;
  background: #fff;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.addon-app-stat i,
.addon-app-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 1.625rem;
  margin-bottom: 12px;
  color: #5831fb;
  font-size: 1.625rem;
  line-height: 1;
}

.addon-app-stat .addon-app-stat-icon--1234 {
  color: #4318ff;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.addon-app-stat strong {
  display: block;
  margin-bottom: 6px;
  color: #191f28;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.addon-app-stat span:not(.addon-app-stat-icon) {
  color: #4e5968;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.55;
}

/* App highlights (per role) */
.addon-app-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.addon-app-highlight {
  padding: 20px 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.addon-app-highlight strong {
  display: block;
  margin-bottom: 6px;
  color: #191f28;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  word-break: keep-all;
}

.addon-app-highlight span {
  color: #6b7684;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.55;
  word-break: keep-all;
}

/* App steps */
.addon-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
  margin-top: 24px;
}

.addon-step {
  padding: 28px 22px;
  border-radius: 18px;
  background: #fff;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.addon-step--accent {
  background: #5831fb;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(88, 49, 251, 0.25);
}

.addon-step--accent .addon-step-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.addon-step--accent h3,
.addon-step--accent p {
  color: #fff !important;
}

.addon-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: #f2f4f6;
  color: #5831fb;
  font-size: 1.25rem;
}

.addon-step h3 {
  margin: 0 0 10px;
  color: #191f28;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.addon-step p {
  margin: 0;
  color: #4e5968;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
}

.addon-step-arrow {
  display: flex;
  align-items: center;
  color: #b0b8c1;
  font-size: 1.25rem;
}

/* SMS cards with images */
.addon-sms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}

.addon-sms-card {
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.addon-section--gray .addon-sms-card {
  border-color: rgba(0, 0, 0, 0.05);
}

.addon-sms-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.addon-sms-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: #f2f4f6;
}

.addon-sms-card-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.addon-sms-card-icon--photo {
  width: 100%;
  height: auto;
  min-height: 140px;
  margin-bottom: 18px;
  padding: 16px;
  border-radius: 14px;
  background: #f2f4f6;
}

.addon-sms-card-icon--photo img {
  width: 100%;
  max-width: 180px;
  height: auto;
  max-height: 120px;
  object-fit: contain;
}

.addon-sms-card--soon {
  opacity: 0.88;
  border: 1px dashed #d1d6db;
}

.addon-sms-card--soon .addon-sms-card-icon {
  color: #8b95a1;
  font-size: 1.5rem;
}

.addon-sms-card h3 {
  margin: 0 0 10px;
  color: #191f28;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
}

.addon-sms-card p {
  margin: 0;
  color: #4e5968;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.65;
  word-break: keep-all;
}

.addon-sms-card-note {
  display: block;
  margin-top: 8px;
  color: #8b95a1;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Rate box */
.addon-rate-box {
  padding: 36px 32px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #eef1f5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.addon-section--gray .addon-rate-box {
  background: #fff;
}

.addon-rate-head {
  margin-bottom: 24px;
  text-align: center;
}

.addon-rate-head h3 {
  margin: 0 0 10px;
  color: #191f28;
  font-size: 1.3125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.addon-rate-head p {
  margin: 0;
  color: #4e5968;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.65;
}

.addon-rate-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 560px;
  margin: 0 auto;
}

.addon-rate-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid #f0f2f5;
}

.addon-rate-item span:first-child {
  color: #333d4b;
  font-size: 0.9375rem;
  font-weight: 600;
}

.addon-rate-item span:last-child {
  color: #191f28;
  font-size: 0.9375rem;
  font-weight: 700;
  white-space: nowrap;
}

.addon-rate-item .addon-rate-sale {
  color: #5831fb;
}

.addon-rate-item .addon-rate-old {
  margin-right: 6px;
  color: #b0b8c1;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: line-through;
}

.addon-rate-vat {
  margin: 14px 0 0;
  text-align: center;
  color: #8b95a1;
  font-size: 0.75rem;
  font-weight: 500;
}

.addon-rate-box--soon {
  background: linear-gradient(135deg, #f8f9fb 0%, #eef1f5 100%);
  border: 1px dashed #d1d6db;
}

.addon-rate-box--soon .addon-rate-head .addon-soon-badge {
  margin-bottom: 14px;
}

.addon-step--muted {
  opacity: 0.82;
  border: 1px dashed #d1d6db;
  background: #fafbfc;
}

.addon-sms-uses {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.addon-sms-use {
  padding: 22px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-left: 3px solid #5831fb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.addon-section:not(.addon-section--gray) .addon-sms-use {
  background: #f9fafb;
  border-color: #eef1f5;
  border-left-color: #5831fb;
}

.addon-sms-use strong {
  display: block;
  margin-bottom: 6px;
  color: #191f28;
  font-size: 0.9375rem;
  font-weight: 700;
}

.addon-sms-use span {
  color: #4e5968;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
}

.addon-sms-steps {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid #eef1f5;
}

.addon-section--gray .addon-sms-steps {
  border-top-color: rgba(0, 0, 0, 0.06);
}

.addon-sms-steps .consulting-steps-layout {
  grid-template-columns: 1fr;
  gap: 32px;
}

.addon-sms-steps .consulting-steps-intro {
  position: static;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid #eef1f6;
}

.addon-sms-steps .consulting-section-title {
  margin: 0;
  flex: 1 1 320px;
}

.addon-sms-steps .consulting-section-desc {
  flex: 0 0 auto;
  white-space: nowrap;
}

.addon-sms-steps .consulting-steps-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.addon-sms-steps .consulting-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 20px;
  border: 1px solid #eef1f6;
  border-radius: 20px;
  background: #fff;
  align-items: stretch;
}

.addon-sms-steps .consulting-step:first-child,
.addon-sms-steps .consulting-step:last-child {
  padding: 24px 20px;
  border-bottom: 1px solid #eef1f6;
}

.addon-sms-steps .consulting-step-bg-num {
  align-self: flex-start;
  padding-top: 0;
  font-size: clamp(2rem, 2.8vw, 2.75rem);
}

.addon-sms-steps .consulting-step-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
  flex: 1;
  align-items: stretch;
}

.addon-sms-steps .consulting-step-copy {
  max-width: none;
  flex: 1;
}

.addon-sms-steps .consulting-step-copy h3 {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.45;
}

.addon-sms-steps .consulting-step-copy p {
  font-size: 0.8125rem;
  line-height: 1.55;
}

.addon-sms-steps .consulting-step-media {
  width: 100%;
  max-width: none;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: #f8f9fb;
  border: 1px solid #eef1f6;
  margin-top: auto;
}

.addon-sms-steps .consulting-step-media img {
  object-fit: contain;
  object-position: center;
  background: #f8f9fb;
}

/* FAQ — match experience.html custom-faq accordion */
.custom-faq {
  max-width: 100%;
  margin: 56px 0 0;
  padding: 0;
  font-family: inherit;
}

.custom-faq h1,
.custom-faq h2 {
  margin: 0 0 28px;
  color: #4154f1;
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.2;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  border: none;
  transition: background 0.2s;
}

.faq-item.active {
  background: #e4e4e4;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 24px;
  font-size: clamp(1.0625rem, 1.8vw, 1.4375rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  color: #191f28;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.faq-item:not(.active):hover .faq-question {
  background: #f7f7f7;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  margin-left: 8px;
  color: #191f28;
  transition: transform 0.2s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: clamp(0.9375rem, 1.4vw, 1.1875rem);
  background: #fff;
  padding: 0 24px;
  border-top: 1px solid #ededed;
  color: #222;
  line-height: 1.7;
  word-break: keep-all;
  transition:
    max-height 0.3s cubic-bezier(0.67, 0.13, 0.1, 1.11),
    padding 0.2s;
}

.faq-item.active .faq-answer {
  padding: 18px 24px 26px;
  max-height: 480px;
  transition:
    max-height 0.4s cubic-bezier(0.67, 0.13, 0.1, 1.11),
    padding 0.3s;
}

@media (max-width: 600px) {
  .custom-faq h1,
  .custom-faq h2 {
    font-size: 2rem;
    margin-bottom: 24px;
  }

  .faq-question {
    font-size: 1.0625rem;
    padding: 18px;
  }

  .faq-icon {
    font-size: 1.5rem;
  }

  .faq-answer {
    font-size: 0.9375rem;
    padding: 0 18px;
  }

  .faq-item.active .faq-answer {
    padding: 14px 18px 20px;
  }
}

.addon-subsection-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 56px 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eef1f5;
  color: #191f28;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.addon-subsection-title::before {
  content: "";
  flex-shrink: 0;
  width: 4px;
  height: 1.15em;
  border-radius: 2px;
  background: #5831fb;
}

.addon-section--gray .addon-subsection-title {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

/* Reveal */
.addon-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.addon-section.is-visible .addon-reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .addon-hub-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .addon-hub-hero-visual {
    order: -1;
  }

  .connection-container {
    max-width: 400px;
  }

  .addon-hub-card-main {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .addon-hub-card-visual {
    min-height: 140px;
  }

  .addon-hub-card-visual img {
    max-height: 160px;
  }

  .addon-hub-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .addon-hub-bottom-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .addon-detail-context {
    top: 56px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .addon-app-layout,
  .addon-split,
  .addon-preview-hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .addon-app-panel {
    padding: 28px 24px;
  }

  .addon-preview-hero {
    padding: 28px 24px;
  }

  .addon-preview-hero-visual {
    order: -1;
  }

  .addon-app-visual {
    order: -1;
  }

  .addon-cards,
  .addon-sms-grid,
  .addon-app-highlights,
  .addon-app-stats,
  .addon-sms-uses {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .addon-sms-steps .consulting-steps-intro {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
    padding-bottom: 20px;
  }

  .addon-sms-steps .consulting-section-title {
    flex: none;
    margin: 0;
  }

  .addon-sms-steps .consulting-section-desc {
    white-space: normal;
    margin: 0;
  }

  .addon-sms-steps .consulting-steps-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .addon-sms-steps .consulting-step {
    padding: 20px 18px;
  }

  .addon-sms-steps .consulting-step:first-child,
  .addon-sms-steps .consulting-step:last-child {
    padding: 20px 18px;
  }

  .addon-steps {
    grid-template-columns: 1fr;
  }

  .addon-step-arrow {
    display: none;
  }

  .addon-soon-card {
    grid-template-columns: 1fr;
    padding: 32px 28px;
  }

  .addon-soon-visual {
    justify-self: start;
  }
}

@media (max-width: 767px) {
  .addon-app-tabs-wrap {
    margin-bottom: 20px;
  }

  .addon-app-tabs {
    gap: 8px;
  }

  .addon-app-tab {
    padding: 14px 12px;
    font-size: 0.9375rem;
  }

  .addon-hub-hero {
    padding: 40px 0 32px;
  }

  .line-outer-left,
  .line-outer-right,
  .node-item.inner-node::before,
  .node-item.inner-node::after {
    display: none;
  }

  .sub-nodes-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    min-height: 0;
  }

  .node-item:first-child,
  .node-item:last-child {
    position: static;
    transform: none;
  }

  .node-item {
    max-width: 120px;
  }

  .node-circle {
    width: 64px;
    height: 64px;
  }

  .node-circle i {
    font-size: 1.25rem;
  }

  .addon-hub-card {
    grid-template-columns: 1fr;
  }

  .addon-hub-card-go {
    width: 100%;
    height: 48px;
    border-left: none;
    border-top: 1px solid #eef1f5;
  }

  .addon-hub-highlight-grid {
    grid-template-columns: 1fr;
  }

  .addon-hub-store-btns {
    width: 100%;
  }

  .addon-hub-store-btns .addon-store-btn {
    flex: 1;
    justify-content: center;
  }

  .addon-hero {
    padding: 48px 0 28px;
  }

  .addon-quicknav {
    top: 64px;
    padding: 10px 0;
  }

  .addon-quicknav-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .addon-quicknav-list::-webkit-scrollbar {
    display: none;
  }

  .addon-quicknav-link {
    flex-shrink: 0;
  }

  .addon-section {
    padding: 64px 0;
  }

  .addon-section-head {
    margin-bottom: 36px;
    padding-bottom: 20px;
  }

  .addon-app-panel {
    padding: 24px 20px;
  }

  .addon-cta-inner {
    padding: 36px 24px;
  }

  .addon-cards,
  .addon-sms-grid,
  .addon-highlight-grid,
  .addon-app-highlights,
  .addon-app-stats,
  .addon-sms-uses,
  .addon-app-screens {
    grid-template-columns: 1fr;
  }

  .addon-card {
    min-height: 0;
  }

  .addon-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .addon-cta-btn {
    width: 100%;
  }

  .addon-sms-steps .consulting-steps-intro {
    gap: 4px;
    padding-bottom: 16px;
  }

  .addon-sms-steps .consulting-step-media {
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .addon-reveal,
  .addon-app-panel,
  .addon-card,
  .addon-quicknav-link,
  .addon-cta-btn,
  .addon-detail-context {
    transition: none;
  }

  .addon-reveal {
    opacity: 1;
    transform: none;
  }

  .addon-card:hover {
    transform: none;
  }

  .addon-detail-context,
  #addon-detail-view.is-active .addon-detail-context.is-ready {
    opacity: 1;
    transform: none;
  }
}
