:root {
  --ho-stroke: rgba(33, 150, 243, 0.28);
  --ho-text: #17324d;
  --ho-title: #123a63;
  --ho-muted: #6b7280;

  --ho-primary: #2196f3;
  --ho-primary-dark: #1976d2;
  --ho-primary-2: #42a5f5;
  --ho-cyan: #26a69a;

  --ho-blue-light: rgba(227, 242, 253, 0.82);
  --ho-surface: rgba(255, 255, 255, 0.58);
  --ho-surface-strong: rgba(255, 255, 255, 0.78);
  --ho-surface-soft: rgba(248, 251, 253, 0.7);

  --ho-glass:
    linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(227, 242, 253, 0.42)),
    radial-gradient(circle at 15% 20%, rgba(33, 150, 243, 0.18), transparent 35%),
    radial-gradient(circle at 85% 28%, rgba(38, 166, 154, 0.12), transparent 34%),
    radial-gradient(circle at 50% 105%, rgba(25, 118, 210, 0.1), transparent 42%);

  --ho-shadow:
    0 18px 45px rgba(25, 118, 210, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);

  --ho-card-shadow: 0 10px 28px rgba(25, 118, 210, 0.1);
  --ho-blur: blur(24px) saturate(165%);
  --ho-container: 1280px;
}

.ho-home-div {
  color: var(--ho-text);
  padding-left: 3%;
  padding-right: 3%;
}

.ho-container {
  width: min(var(--ho-container), calc(100% - 32px));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.ho-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    radial-gradient(rgba(33, 150, 243, 0.16) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.65) 1px, transparent 1px);
  background-size: 18px 18px, 28px 28px;
  z-index: 0;
}

.ho-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(65px);
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
  animation: ho-floatOrb 14s ease-in-out infinite alternate;
}

.ho-orb.ho-orb-1 {
  width: 280px;
  height: 280px;
  top: 90px;
  right: 6%;
  background: rgba(33, 150, 243, 0.2);
}

.ho-orb.ho-orb-2 {
  width: 230px;
  height: 230px;
  top: 460px;
  left: 4%;
  background: rgba(144, 202, 249, 0.22);
  animation-duration: 18s;
}

.ho-orb.ho-orb-3 {
  width: 220px;
  height: 220px;
  bottom: 120px;
  right: 14%;
  background: rgba(38, 166, 154, 0.16);
  animation-duration: 22s;
}

@keyframes ho-floatOrb {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(30px, -22px, 0) scale(1.08);
  }
}

.ho-section {
  padding: 50px 0;
  position: relative;
}

.ho-section-head {
  text-align: center;
  margin-bottom: 30px;
}

.ho-eyebrow,
.ho-proof-chip,
.ho-device-badge,
.ho-trust-item,
.ho-big-stat,
.ho-feature-card,
.ho-use-card,
.ho-step,
.ho-compare,
.ho-show-panel,
.ho-quote,
.ho-mega-cta,
.ho-faq-item,
.ho-floating-card,
.ho-device-shell,
.ho-app-screen,
.ho-sidebar,
.ho-stat-card,
.ho-panel,
.ho-mini-panel,
.ho-activity,
.ho-appointment,
.ho-show-box {
  border: 1px solid var(--ho-stroke);
  background: var(--ho-glass);
  box-shadow: var(--ho-shadow);
  backdrop-filter: var(--ho-blur);
  -webkit-backdrop-filter: var(--ho-blur);
}

.ho-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ho-primary-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ho-title);
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.35;
  margin: 16px 0 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.ho-lead {
  color: var(--ho-muted);
  max-width: 820px;
  margin: 0 auto;
  line-height: 2;
  font-size: 1rem;
}

.ho-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 16px;
  padding: 14px 20px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: 0.28s ease;
  cursor: pointer;
  white-space: nowrap;
}

.ho-btn:hover {
  transform: translateY(-2px);
}

.ho-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--ho-primary), var(--ho-primary-dark));
  box-shadow: 0 12px 26px rgba(33, 150, 243, 0.25);
}

.ho-btn-primary:hover {
  background: linear-gradient(135deg, var(--ho-primary-dark), var(--ho-primary));
  box-shadow: 0 16px 32px rgba(33, 150, 243, 0.32);
}

.ho-btn-outline {
  border-color: var(--ho-stroke);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ho-primary-dark);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ho-btn-outline:hover {
  background: var(--ho-blue-light);
}

.ho-hero {
  padding: 38px 0 54px;
  position: relative;
}

.ho-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.ho-hero-copy {
  position: relative;
  z-index: 2;
}

.ho-hero-copy .ho-grad {
  font-size: 1.12rem;
  word-spacing: 3px;
}

.ho-hero-copy .ho-grad2 {
  font-size: 1rem;
  word-spacing: 3px;
  margin-top: 5px;
}

.ho-hero-copy .ho-hero-copy-h1 {
  font-size: 3rem;
}

.ho-hero h1 {
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.18;
  margin: 0 0 18px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ho-title);
  animation: ho-fadeUp 0.95s ease both;
}

.ho-hero h1 .ho-grad {
  background: linear-gradient(
    135deg,
    var(--ho-primary-dark) 0%,
    var(--ho-primary) 42%,
    var(--ho-cyan) 72%,
    #0f766e 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.ho-hero p {
  color: var(--ho-muted);
  line-height: 2;
  font-size: 1rem;
  max-width: 680px;
  margin: 0 0 28px;
  animation: ho-fadeUp 1.08s ease both;
}

.ho-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  animation: ho-fadeUp 1.18s ease both;
}

.ho-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: ho-fadeUp 1.28s ease both;
}

.ho-proof-chip {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ho-primary-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.ho-hero-visual {
  position: relative;
  min-height: 690px;
}

.ho-floating-card {
  position: absolute;
  border-radius: 24px;
  animation: ho-floatCard 5s ease-in-out infinite;
}

.ho-floating-card.ho-one {
  top: 50px;
  right: 0;
  width: 180px;
  padding: 16px;
  animation-delay: 0.4s;
}

.ho-floating-card.ho-two {
  left: 0;
  bottom: 95px;
  width: 200px;
  padding: 16px;
  animation-delay: 1.1s;
}

.ho-floating-card.ho-three {
  left: 70px;
  top: 20px;
  width: 170px;
  padding: 14px;
  animation-delay: 1.8s;
}

@keyframes ho-floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.ho-device-shell {
  position: absolute;
  inset: 32px 20px 0 20px;
  margin: auto;
  max-width: 620px;
  border-radius: 36px;
  padding: 16px;
  overflow: hidden;
}

.ho-device-shell::before,
.ho-big-stat::after,
.ho-feature-card::before,
.ho-mega-cta::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.ho-device-shell::before {
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.72),
    rgba(33, 150, 243, 0.08),
    rgba(33, 150, 243, 0.35)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.ho-device-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.ho-window-dots {
  display: flex;
  gap: 8px;
}

.ho-window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  background: var(--ho-primary);
  opacity: 0.55;
}

.ho-device-badge {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ho-primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.ho-app-screen {
  min-height: 590px;
  border-radius: 28px;
  padding: 16px;
  position: relative;
  z-index: 1;
}

.ho-app-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 16px;
  min-height: 560px;
}

.ho-sidebar {
  border-radius: 22px;
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.ho-side-pill {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(33, 150, 243, 0.2);
  color: var(--ho-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.ho-side-pill.ho-active {
  color: var(--ho-primary-dark);
  background: var(--ho-blue-light);
  border-color: rgba(33, 150, 243, 0.38);
}

.ho-dashboard {
  display: grid;
  gap: 16px;
}

.ho-top-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ho-stat-card,
.ho-panel,
.ho-mini-panel,
.ho-activity {
  border-radius: 22px;
}

.ho-stat-card {
  padding: 16px;
}

.ho-stat-card strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--ho-primary-dark);
}

.ho-sub {
  color: var(--ho-muted);
  font-size: 0.88rem;
  line-height: 1.8;
}

.ho-main-row {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 14px;
}

.ho-panel,
.ho-mini-panel {
  padding: 16px;
}

.ho-appointments {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.ho-appointment {
  padding: 14px;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
}

.ho-appointment strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.96rem;
  color: var(--ho-title);
}

.ho-tag {
  padding: 8px 10px;
  border-radius: 12px;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 800;
}

.ho-tag.ho-ok {
  background: rgba(38, 166, 154, 0.14);
  color: #00897b;
}

.ho-tag.ho-wait {
  background: rgba(255, 152, 0, 0.16);
  color: #ef6c00;
}

.ho-tag.ho-new {
  background: rgba(33, 150, 243, 0.15);
  color: var(--ho-primary-dark);
}

.ho-stack {
  display: grid;
  gap: 14px;
}

.ho-progress {
  margin-top: 12px;
  height: 10px;
  background: rgba(33, 150, 243, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.ho-progress span {
  display: block;
  width: 79%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    var(--ho-primary),
    var(--ho-cyan),
    var(--ho-primary-dark)
  );
  background-size: 200% 100%;
  animation: ho-gradientMove 4s linear infinite;
}

@keyframes ho-gradientMove {
  0% {
    background-position: 0 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.ho-activity-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.ho-activity {
  padding: 12px 14px;
}

@keyframes ho-fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.ho-trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.ho-trust-item {
  padding: 18px 14px;
  border-radius: 20px;
  text-align: center;
  color: var(--ho-primary-dark);
  font-weight: 800;
}

.ho-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ho-big-stat {
  padding: 24px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.ho-big-stat::after {
  inset: auto -30px -30px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.2), transparent 65%);
  filter: blur(18px);
}

.ho-big-stat strong {
  display: block;
  font-size: clamp(1.45rem, 2.35vw, 2.25rem);
  margin-bottom: 8px;
  font-weight: 900;
  color: var(--ho-primary-dark);
}

.ho-big-stat span {
  color: var(--ho-muted);
  line-height: 1.9;
  font-size: 0.95rem;
  display: block;
}

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

.ho-feature-card {
  padding: 24px;
  border-radius: 28px;
  transition: 0.28s ease;
  position: relative;
  overflow: hidden;
}

.ho-feature-card::before {
  inset: -40% auto auto -20%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.16), transparent 65%);
  filter: blur(12px);
}

.ho-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(33, 150, 243, 0.42);
}

.ho-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(
    135deg,
    rgba(33, 150, 243, 0.18),
    rgba(227, 242, 253, 0.88)
  );
  border: 1px solid rgba(33, 150, 243, 0.26);
  color: var(--ho-primary-dark);
  font-size: 1.4rem;
}

.ho-feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
  color: var(--ho-title);
}

.ho-feature-card p {
  margin: 0;
  color: var(--ho-muted);
  line-height: 1.95;
  font-size: 0.95rem;
}

.ho-use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ho-use-card {
  padding: 22px;
  border-radius: 24px;
  transition: 0.25s ease;
}

.ho-use-card:hover {
  transform: translateY(-4px);
  border-color: rgba(33, 150, 243, 0.42);
}

.ho-use-card h4 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--ho-title);
}

.ho-use-card p {
  margin: 0;
  color: var(--ho-muted);
  line-height: 1.85;
  font-size: 0.93rem;
}

.ho-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ho-step {
  position: relative;
  padding: 26px;
  border-radius: 28px;
}

.ho-step-no {
  position: absolute;
  top: 14px;
  left: 18px;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 900;
  color: rgba(33, 150, 243, 0.16);
}

.ho-step h3 {
  margin: 30px 0 12px;
  font-size: 1.05rem;
  color: var(--ho-title);
}

.ho-step p {
  margin: 0;
  color: var(--ho-muted);
  line-height: 1.95;
}

.ho-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}

.ho-compare,
.ho-show-panel {
  border-radius: 30px;
}

.ho-compare {
  padding: 28px;
}

.ho-compare ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 14px;
}

.ho-compare li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ho-muted);
  line-height: 1.9;
}

.ho-show-panel {
  padding: 20px;
}

.ho-show-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.ho-show-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ho-show-box {
  min-height: 150px;
  border-radius: 22px;
  padding: 16px;
}

.ho-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ho-quote {
  padding: 24px;
  border-radius: 28px;
}

.ho-quote p {
  color: var(--ho-muted);
  line-height: 2;
  margin: 0 0 20px;
  font-size: 0.97rem;
}

.ho-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ho-avatar {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--ho-primary-dark);
  background: var(--ho-blue-light);
  border: 1px solid rgba(33, 150, 243, 0.25);
}

.ho-author strong {
  display: block;
  font-size: 0.96rem;
  color: var(--ho-title);
}

.ho-author span {
  color: var(--ho-muted);
  font-size: 0.84rem;
}

.ho-mega-cta {
  padding: 34px;
  border-radius: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ho-mega-cta::before {
  inset: auto auto -80px -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 166, 154, 0.16), transparent 65%);
  filter: blur(18px);
}

.ho-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.ho-faq {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.ho-faq-item {
  border-radius: 22px;
  overflow: hidden;
}

.ho-faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ho-title);
  text-align: right;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  font-weight: 800;
}

.ho-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  padding: 0 20px;
  color: var(--ho-muted);
  line-height: 1.95;
}

.ho-faq-item.ho-active .ho-faq-a {
  max-height: 240px;
  padding: 0 20px 18px;
}

.ho-faq-icon {
  transition: 0.25s ease;
  flex: 0 0 auto;
  color: var(--ho-primary-dark);
}

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

@media (max-width: 1180px) {
  .ho-hero-grid,
  .ho-showcase {
    grid-template-columns: 1fr;
  }

  .ho-features-grid,
  .ho-use-grid,
  .ho-stats-grid,
  .ho-process-grid,
  .ho-testimonials,
  .ho-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ho-hero-visual {
    min-height: 720px;
  }
}

@media (max-width: 920px) {
  .ho-app-grid,
  .ho-top-stats,
  .ho-main-row,
  .ho-show-grid {
    grid-template-columns: 1fr;
  }

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

  .ho-hero-visual {
    min-height: 860px;
  }

  .ho-floating-card.ho-one {
    right: 10px;
  }

  .ho-floating-card.ho-two {
    left: 10px;
  }
}

@media (max-width: 680px) {
  .ho-container {
    width: calc(100% - 16px);
  }

  .ho-hero {
    padding-top: 18px;
  }

  .ho-hero h1 {
    font-size: 1.85rem;
  }

  .ho-hero-copy .ho-hero-copy-h1 {
    font-size: 2.2rem;
  }

  .ho-hero-copy .ho-grad {
    font-size: 1rem;
  }

  .ho-hero-copy .ho-grad2 {
    font-size: 0.92rem;
  }

  h2 {
    font-size: 1.45rem;
  }

  .ho-hero p,
  .ho-lead {
    font-size: 0.94rem;
  }

  .ho-hero-proof {
    gap: 8px;
  }

  .ho-proof-chip {
    font-size: 0.82rem;
    padding: 9px 12px;
  }

  .ho-section {
    padding: 66px 0;
  }

  .ho-features-grid,
  .ho-use-grid,
  .ho-stats-grid,
  .ho-process-grid,
  .ho-testimonials,
  .ho-trust-grid {
    grid-template-columns: 1fr;
  }

  .ho-device-shell {
    inset: 44px 0 0 0;
    border-radius: 24px;
    padding: 12px;
  }

  .ho-app-screen {
    border-radius: 20px;
    padding: 12px;
  }

  .ho-sidebar {
    grid-template-columns: 1fr;
  }

  .ho-floating-card {
    transform: scale(0.92);
  }

  .ho-floating-card.ho-three {
    left: 10px;
    top: 0;
  }

  .ho-floating-card.ho-one {
    right: 0;
    top: 36px;
  }

  .ho-floating-card.ho-two {
    left: 0;
    bottom: 70px;
  }
}








/* Mobile Optimization - Ultra Tighter Version */
/* Mobile Optimization - Extra Small */
@media (max-width: 576px) {
  :root {
    --ho-blur: blur(8px) saturate(145%);
  }

  .ho-home-div {
    padding-left: 1.5%;
    padding-right: 1.5%;
  }

  .ho-container {
    width: calc(100% - 10px);
  }

  .ho-section {
    padding: 16px 0;
  }

  .ho-section-head {
    margin-bottom: 12px;
  }

  .ho-hero {
    padding: 12px 0 18px;
  }

  h1,
  .ho-hero h1,
  .ho-hero-copy .ho-hero-copy-h1 {
    font-size: 1.28rem !important;
    line-height: 1.18;
    margin: 0 0 8px;
  }

  h2 {
    font-size: 1rem !important;
    line-height: 1.35;
    margin: 8px 0 6px;
  }

  h3 {
    font-size: 0.86rem !important;
    margin: 0 0 6px;
  }

  h4 {
    font-size: 0.78rem !important;
    margin: 0 0 5px;
  }

  p,
  .ho-lead,
  .ho-hero p,
  .ho-feature-card p,
  .ho-use-card p,
  .ho-step p,
  .ho-quote p,
  .ho-big-stat span,
  .ho-faq-a,
  .ho-sub,
  .ho-author span,
  .ho-compare li {
    font-size: 0.68rem !important;
    line-height: 1.55;
  }

  .ho-hero p,
  .ho-lead {
    margin-bottom: 10px;
  }

  .ho-hero-copy .ho-grad {
    font-size: 0.78rem;
    word-spacing: 1px;
  }

  .ho-hero-copy .ho-grad2 {
    font-size: 0.72rem;
    word-spacing: 1px;
    margin-top: 2px;
  }

  .ho-eyebrow,
  .ho-proof-chip,
  .ho-device-badge {
    padding: 5px 8px;
    font-size: 0.64rem;
    gap: 4px;
    border-radius: 999px;
  }

  .ho-btn {
    padding: 7px 10px;
    font-size: 0.66rem;
    border-radius: 10px;
    gap: 4px;
  }

  .ho-hero-actions {
    gap: 6px;
    margin-bottom: 10px;
  }

  .ho-hero-proof {
    gap: 6px;
  }

  .ho-hero-visual {
    min-height: 360px;
  }

  .ho-floating-card,
  .ho-feature-card,
  .ho-use-card,
  .ho-step,
  .ho-compare,
  .ho-show-panel,
  .ho-quote,
  .ho-mega-cta,
  .ho-faq-item,
  .ho-big-stat,
  .ho-show-box,
  .ho-stat-card,
  .ho-panel,
  .ho-mini-panel,
  .ho-activity,
  .ho-appointment,
  .ho-sidebar,
  .ho-app-screen,
  .ho-device-shell {
    border-radius: 14px;
  }

  .ho-feature-card,
  .ho-use-card,
  .ho-step,
  .ho-quote,
  .ho-big-stat {
    padding: 12px;
  }

  .ho-compare,
  .ho-show-panel,
  .ho-mega-cta,
  .ho-panel,
  .ho-mini-panel,
  .ho-sidebar,
  .ho-app-screen,
  .ho-device-shell {
    padding: 10px;
  }

  .ho-show-box,
  .ho-stat-card,
  .ho-activity,
  .ho-appointment {
    padding: 9px;
  }

  .ho-icon-box {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 0.88rem;
    margin-bottom: 8px;
  }

  .ho-feature-card h3,
  .ho-step h3 {
    font-size: 0.8rem;
    margin: 0 0 6px;
  }

  .ho-use-card h4 {
    font-size: 0.76rem;
    margin: 0 0 6px;
  }

  .ho-big-stat strong,
  .ho-stat-card strong {
    font-size: 0.88rem;
    margin-bottom: 4px;
  }

  .ho-step-no {
    font-size: 1.15rem;
    top: 6px;
    left: 10px;
  }

  .ho-step h3 {
    margin-top: 18px;
  }

  .ho-trust-item {
    padding: 10px 8px;
    border-radius: 12px;
    font-size: 0.72rem;
  }

  .ho-appointments {
    gap: 8px;
    margin-top: 8px;
  }

  .ho-appointment {
    gap: 6px;
  }

  .ho-appointment strong,
  .ho-author strong {
    font-size: 0.72rem;
    margin-bottom: 3px;
  }

  .ho-tag {
    padding: 5px 7px;
    border-radius: 8px;
    font-size: 0.6rem;
  }

  .ho-progress {
    margin-top: 8px;
    height: 6px;
  }

  .ho-activity-list {
    gap: 6px;
    margin-top: 8px;
  }

  .ho-activity {
    padding: 8px 10px;
  }

  .ho-device-top {
    margin-bottom: 8px;
  }

  .ho-window-dots {
    gap: 5px;
  }

  .ho-window-dots span {
    width: 7px;
    height: 7px;
  }

  .ho-device-badge {
    font-size: 0.6rem;
  }

  .ho-app-screen {
    min-height: 250px;
  }

  .ho-app-grid {
    gap: 8px;
    min-height: auto;
  }

  .ho-sidebar {
    gap: 8px;
  }

  .ho-side-pill {
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 0.64rem;
  }

  .ho-dashboard,
  .ho-stack {
    gap: 8px;
  }

  .ho-top-stats,
  .ho-main-row,
  .ho-show-grid,
  .ho-features-grid,
  .ho-use-grid,
  .ho-stats-grid,
  .ho-process-grid,
  .ho-testimonials,
  .ho-trust-grid,
  .ho-showcase,
  .ho-hero-grid {
    gap: 8px;
  }

  .ho-show-top {
    gap: 6px;
    margin-bottom: 8px;
  }

  .ho-show-box {
    min-height: 90px;
  }

  .ho-compare ul {
    margin-top: 10px;
    gap: 8px;
  }

  .ho-compare li {
    gap: 6px;
  }

  .ho-quote p {
    margin: 0 0 10px;
  }

  .ho-avatar {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    font-size: 0.68rem;
  }

  .ho-author {
    gap: 8px;
  }

  .ho-mega-cta {
    padding: 14px 10px;
  }

  .ho-cta-actions {
    gap: 6px;
    margin-top: 10px;
  }

  .ho-faq {
    gap: 8px;
  }

  .ho-faq-q {
    padding: 10px 12px;
    font-size: 0.7rem;
    gap: 6px;
  }

  .ho-faq-a {
    padding: 0 12px;
  }

  .ho-faq-item.ho-active .ho-faq-a {
    padding: 0 12px 10px;
    max-height: 220px;
  }

  .ho-floating-card {
    padding: 8px !important;
    width: 92px !important;
    font-size: 0.56rem !important;
    border-radius: 10px;
  }

  .ho-floating-card.ho-one {
    top: 24px;
    right: 0;
  }

  .ho-floating-card.ho-two {
    left: 0;
    bottom: 34px;
  }

  .ho-floating-card.ho-three {
    left: 6px;
    top: 2px;
  }

  .ho-device-shell {
    inset: 14px 0 0 0;
  }

  .ho-orb.ho-orb-1 {
    width: 100px;
    height: 100px;
    top: 30px;
    right: 2%;
  }

  .ho-orb.ho-orb-2 {
    width: 90px;
    height: 90px;
    top: 220px;
    left: 1%;
  }

  .ho-orb.ho-orb-3 {
    width: 90px;
    height: 90px;
    bottom: 50px;
    right: 8%;
  }
}

@media (max-width: 420px) {
  .ho-home-div {
    padding-left: 1%;
    padding-right: 1%;
  }

  .ho-container {
    width: calc(100% - 8px);
  }

  h1,
  .ho-hero h1,
  .ho-hero-copy .ho-hero-copy-h1 {
    font-size: 1.12rem !important;
  }

  h2 {
    font-size: 0.92rem !important;
  }

  h3 {
    font-size: 0.8rem !important;
  }

  p,
  .ho-lead,
  .ho-hero p,
  .ho-feature-card p,
  .ho-use-card p,
  .ho-step p,
  .ho-quote p,
  .ho-big-stat span,
  .ho-faq-a,
  .ho-sub,
  .ho-author span,
  .ho-compare li {
    font-size: 0.62rem !important;
  }

  .ho-btn {
    padding: 6px 8px;
    font-size: 0.6rem;
  }

  .ho-feature-card,
  .ho-use-card,
  .ho-step,
  .ho-quote,
  .ho-big-stat,
  .ho-compare,
  .ho-show-panel,
  .ho-mega-cta,
  .ho-panel,
  .ho-mini-panel,
  .ho-sidebar,
  .ho-app-screen,
  .ho-device-shell {
    padding: 8px;
  }

  .ho-floating-card {
    width: 82px !important;
    font-size: 0.52rem !important;
    padding: 6px !important;
  }

  .ho-hero-visual {
    min-height: 320px;
  }

  .ho-app-screen {
    min-height: 220px;
  }
}

@media (max-width: 380px) {
  h1,
  .ho-hero h1,
  .ho-hero-copy .ho-hero-copy-h1 {
    font-size: 1rem !important;
  }

  h2 {
    font-size: 0.86rem !important;
  }

  .ho-btn {
    padding: 5px 7px;
    font-size: 0.56rem;
  }

  .ho-proof-chip,
  .ho-eyebrow,
  .ho-device-badge {
    font-size: 0.58rem;
    padding: 4px 7px;
  }

  .ho-show-box {
    min-height: 76px;
  }
}




.text-red {
  color : red;
  font-weight: bolder;
  text-decoration: solid;
}



/* رنگ سورمه‌ای برای بخش حوزه‌ها و آمارهای اصلی */
.ho-trust-item,
.ho-big-stat strong {
  color: #003274 !important;
}


.ho-section-head h2,
.ho-mega-cta h2 {
  font-size: clamp(1.1rem, 2vw, 1.55rem) !important;
  line-height: 1.55;
}
