.hm-cms-v7,
.hm-cms-v7 * {
  box-sizing: border-box;
}

.hm-cms-v7 {
  --hm-blue: var(--hm-brand-blue,#0055DA);
  --hm-coral: var(--hm-brand-coral,#FF577F);
  --hm-orange: var(--hm-brand-orange,#FF884B);
  --hm-yellow: var(--hm-brand-yellow,#FFC764);
  --hm-cyan: var(--hm-brand-cyan,#CDFFFC);
  --hm-ink: var(--hm-brand-ink,#07111F);
  --hm-text: var(--hm-brand-text,#263548);
  --hm-muted: var(--hm-brand-muted,#64748B);
  --hm-bg: var(--hm-brand-surface,#F7FAFF);
  --hm-line: var(--hm-brand-line,#DFE8F3);
  direction: rtl;
  color: var(--hm-text);
  background: var(--hm-bg);
  overflow: hidden;
}

.hm-cms-v7 a { color: inherit; text-decoration: none; }
.hm-cms-v7 svg { display: block; }
.hm-cms-v7 img { max-width: 100%; height: auto; }

.hm-cms-v7__container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.hm-cms-v7__section {
  position: relative;
  padding: 86px 0;
}

.hm-cms-v7__section--white { background: #fff; }

.hm-cms-v7__section--soft {
  background:
    radial-gradient(circle at 8% 12%, rgba(0,85,218,.06), transparent 28%),
    radial-gradient(circle at 92% 84%, rgba(255,136,75,.07), transparent 28%),
    var(--hm-bg);
}

.hm-cms-v7__section--dark {
  color: #fff;
  background:
    radial-gradient(circle at 8% 18%, rgba(0,85,218,.34), transparent 30%),
    radial-gradient(circle at 90% 76%, rgba(205,255,252,.08), transparent 28%),
    linear-gradient(135deg,#07111F 0%,#0D2036 56%,#07111F 100%);
}

.hm-cms-v7__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 7px 13px;
  margin-bottom: 16px;
  border: 1px solid rgba(0,85,218,.18);
  border-radius: 999px;
  color: var(--hm-blue);
  background: rgba(0,85,218,.055);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.6;
}

.hm-cms-v7__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hm-orange);
  box-shadow: 0 0 0 6px rgba(255,136,75,.12);
}

.hm-cms-v7__section--dark .hm-cms-v7__eyebrow,
.hm-cms-v7__hero .hm-cms-v7__eyebrow {
  color: var(--hm-cyan);
  border-color: rgba(205,255,252,.18);
  background: rgba(205,255,252,.07);
}

.hm-cms-v7__title,
.hm-cms-v7__section-title {
  margin: 0;
  color: var(--hm-ink);
  font-weight: 950;
  letter-spacing: -.8px;
}

.hm-cms-v7__title {
  font-size: clamp(40px,5.5vw,68px);
  line-height: 1.18;
}

.hm-cms-v7__section-title {
  font-size: clamp(30px,3.8vw,48px);
  line-height: 1.42;
}

.hm-cms-v7__section--dark .hm-cms-v7__section-title { color: #fff; }

.hm-cms-v7__accent { color: var(--hm-cyan); }

.hm-cms-v7__rule {
  width: 112px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg,var(--hm-blue),var(--hm-cyan),var(--hm-yellow),var(--hm-orange));
}

.hm-cms-v7__lead {
  max-width: 840px;
  margin: 22px 0 0;
  color: var(--hm-muted);
  font-size: clamp(16.5px,1.5vw,20px);
  line-height: 2.08;
}

.hm-cms-v7__section--dark .hm-cms-v7__lead { color: #D2DEEA; }

.hm-cms-v7__head {
  display: grid;
  grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 36px;
}

.hm-cms-v7__intro {
  margin: 0;
  color: var(--hm-muted);
  font-size: 16px;
  line-height: 2.05;
}

.hm-cms-v7__section--dark .hm-cms-v7__intro { color: #C9D6E3; }

.hm-cms-v7__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hm-cms-v7__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 900;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.hm-cms-v7__btn:hover { transform: translateY(-2px); }

.hm-cms-v7__btn--primary {
  color: #fff !important;
  background: linear-gradient(135deg,var(--hm-blue),#0048B8);
  box-shadow: 0 16px 36px rgba(0,85,218,.23);
}

.hm-cms-v7__btn--warm {
  color: var(--hm-ink) !important;
  background: linear-gradient(135deg,var(--hm-yellow),var(--hm-orange));
  box-shadow: 0 16px 36px rgba(255,136,75,.22);
}

.hm-cms-v7__btn--ghost {
  color: var(--hm-blue) !important;
  border-color: rgba(0,85,218,.18);
  background: #fff;
}

.hm-cms-v7__hero {
  position: relative;
  padding: 86px 0 76px;
  color: #fff;
  background:
    radial-gradient(circle at 8% 18%,rgba(0,85,218,.42),transparent 32%),
    radial-gradient(circle at 92% 12%,rgba(205,255,252,.13),transparent 28%),
    radial-gradient(circle at 86% 88%,rgba(255,136,75,.10),transparent 24%),
    linear-gradient(135deg,#07111F 0%,#0D2036 58%,#07111F 100%);
}

.hm-cms-v7__hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.12fr) minmax(340px,.88fr);
  gap: 58px;
  align-items: center;
}

.hm-cms-v7__hero .hm-cms-v7__title { color: #fff; }
.hm-cms-v7__hero .hm-cms-v7__lead { color: #D8E3EE; }

.hm-cms-v7__tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hm-cms-v7__chip {
  padding: 7px 11px;
  border: 1px solid rgba(205,255,252,.14);
  border-radius: 999px;
  color: #DDEAF5;
  background: rgba(255,255,255,.055);
  font-size: 11px;
  font-weight: 850;
  direction: ltr;
}

.hm-cms-v7__browser {
  overflow: hidden;
  border: 1px solid rgba(205,255,252,.13);
  border-radius: 28px;
  background: rgba(255,255,255,.07);
  box-shadow: 0 30px 80px rgba(0,0,0,.24);
  backdrop-filter: blur(12px);
}

.hm-cms-v7__browser-top {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.04);
}

.hm-cms-v7__browser-top i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--hm-coral);
}

.hm-cms-v7__browser-top i:nth-child(2) { background: var(--hm-yellow); }
.hm-cms-v7__browser-top i:nth-child(3) { background: #35D07F; }

.hm-cms-v7__dashboard {
  padding: 23px;
}

.hm-cms-v7__dash-head {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 13px;
  align-items: center;
  margin-bottom: 20px;
}

.hm-cms-v7__logo {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(145deg,var(--hm-blue),#00A3D7);
  font-weight: 950;
}

.hm-cms-v7__lines span {
  display: block;
  height: 9px;
  margin: 7px 0;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}

.hm-cms-v7__lines span:first-child { width: 74%; }
.hm-cms-v7__lines span:last-child { width: 46%; }

.hm-cms-v7__dash-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
}

.hm-cms-v7__dash-card {
  min-height: 108px;
  padding: 16px;
  border: 1px solid rgba(205,255,252,.11);
  border-radius: 17px;
  background: rgba(255,255,255,.05);
}

.hm-cms-v7__dash-card b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 11px;
  color: var(--hm-ink);
  background: var(--hm-cyan);
  font-size: 12px;
}

.hm-cms-v7__dash-card:nth-child(2) b { background: var(--hm-yellow); }
.hm-cms-v7__dash-card:nth-child(3) b { background: #A8F0D0; }
.hm-cms-v7__dash-card:nth-child(4) b { background: #FFD2DE; }

.hm-cms-v7__dash-card strong {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}

.hm-cms-v7__dash-card span {
  display: block;
  margin-top: 5px;
  color: #BFCFDE;
  font-size: 11px;
  line-height: 1.7;
}

.hm-cms-v7__trust {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 12px;
  margin-top: 32px;
}

.hm-cms-v7__trust-item {
  padding: 18px;
  border: 1px solid rgba(205,255,252,.13);
  border-radius: 19px;
  background: rgba(255,255,255,.05);
}

.hm-cms-v7__trust-item strong {
  display: block;
  color: var(--hm-cyan);
  font-size: 13px;
  font-weight: 950;
  direction: ltr;
}

.hm-cms-v7__trust-item span {
  display: block;
  margin-top: 6px;
  color: #C9D6E3;
  font-size: 12px;
  line-height: 1.75;
}

.hm-cms-v7__cards {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 16px;
}

.hm-cms-v7__card {
  position: relative;
  min-height: 100%;
  padding: 24px 22px;
  border: 1px solid var(--hm-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(7,17,31,.07);
}

.hm-cms-v7__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  border-radius: 16px;
  color: #fff;
  background: var(--hm-blue);
  font-weight: 950;
  direction: ltr;
}

.hm-cms-v7__card:nth-child(2n) .hm-cms-v7__num {
  color: var(--hm-ink);
  background: var(--hm-yellow);
}

.hm-cms-v7__card:nth-child(3n) .hm-cms-v7__num {
  color: #fff;
  background: var(--hm-coral);
}

.hm-cms-v7__tag {
  display: inline-flex;
  padding: 6px 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: var(--hm-blue);
  background: rgba(0,85,218,.05);
  border: 1px solid rgba(0,85,218,.12);
  font-size: 11px;
  font-weight: 900;
  direction: ltr;
}

.hm-cms-v7__card h3 {
  margin: 0 0 10px;
  color: var(--hm-ink);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.65;
}

.hm-cms-v7__card p {
  margin: 0;
  color: var(--hm-muted);
  font-size: 14px;
  line-height: 1.95;
}

.hm-cms-v7__dark-card {
  min-height: 100%;
  padding: 24px 22px;
  border: 1px solid rgba(205,255,252,.13);
  border-radius: 24px;
  background: rgba(255,255,255,.055);
}

.hm-cms-v7__dark-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.65;
}

.hm-cms-v7__dark-card p {
  margin: 0;
  color: #C9D6E3;
  font-size: 14px;
  line-height: 1.95;
}

.hm-cms-v7__warning {
  padding: 34px;
  border: 1px solid rgba(205,255,252,.13);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 90%,rgba(255,136,75,.14),transparent 28%),
    radial-gradient(circle at 90% 10%,rgba(0,85,218,.20),transparent 28%),
    rgba(255,255,255,.045);
}

.hm-cms-v7__pricing {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
  max-width: 980px;
  margin-inline: auto;
}

.hm-cms-v7__price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 24px;
  border: 1px solid var(--hm-line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(7,17,31,.08);
}

.hm-cms-v7__price-card--store {
  border-color: rgba(255,136,75,.28);
  background: linear-gradient(145deg,#fff,rgba(255,199,100,.09));
}

.hm-cms-v7__price-card h3 {
  margin: 0 0 9px;
  color: var(--hm-ink);
  font-size: 21px;
  font-weight: 950;
}

.hm-cms-v7__price-card p {
  margin: 0;
  color: var(--hm-muted);
  font-size: 14px;
  line-height: 1.95;
}

.hm-cms-v7__price {
  margin: 20px 0;
  padding: 18px 0;
  border-top: 1px solid var(--hm-line);
  border-bottom: 1px solid var(--hm-line);
}

.hm-cms-v7__old {
  color: #8A96A7;
  font-size: 12px;
}

.hm-cms-v7__old del {
  margin-right: 6px;
  font-size: 16px;
  font-weight: 850;
}

.hm-cms-v7__current {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 6px;
  color: var(--hm-blue);
  font-size: 42px;
  font-weight: 950;
}

.hm-cms-v7__price-card--store .hm-cms-v7__current { color: var(--hm-orange); }

.hm-cms-v7__current small {
  color: var(--hm-text);
  font-size: 13px;
  font-weight: 850;
}

.hm-cms-v7__list {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.hm-cms-v7__list li {
  position: relative;
  padding-right: 17px;
  color: var(--hm-text);
  font-size: 13.5px;
  line-height: 1.85;
}

.hm-cms-v7__list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: .76em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #26B67A;
}

.hm-cms-v7__price-card .hm-cms-v7__btn { width: 100%; margin-top: auto; }

.hm-cms-v7__portfolio {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 16px;
}

.hm-cms-v7__project {
  overflow: hidden;
  border: 1px solid var(--hm-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(7,17,31,.07);
}

.hm-cms-v7__project-visual {
  height: 178px;
  padding: 18px;
  background: linear-gradient(135deg,#EAF3FF,#D6E7FF);
}

.hm-cms-v7__project:nth-child(2) .hm-cms-v7__project-visual { background: linear-gradient(135deg,#FFF3E8,#FFE2C8); }
.hm-cms-v7__project:nth-child(3) .hm-cms-v7__project-visual { background: linear-gradient(135deg,#E8FAF4,#CFEEE3); }
.hm-cms-v7__project:nth-child(4) .hm-cms-v7__project-visual { background: linear-gradient(135deg,#F1EDFF,#E2D9FF); }
.hm-cms-v7__project:nth-child(5) .hm-cms-v7__project-visual { background: linear-gradient(135deg,#E7F8FF,#CCEEFF); }
.hm-cms-v7__project:nth-child(6) .hm-cms-v7__project-visual { background: linear-gradient(135deg,#FFF0F0,#FFDADA); }

.hm-cms-v7__mock {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 17px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 16px 36px rgba(30,71,125,.10);
}

.hm-cms-v7__mock-top {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  background: #F4F7FB;
  border-bottom: 1px solid #E5EBF3;
}

.hm-cms-v7__mock-top i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #CCD5E2;
}

.hm-cms-v7__mock-body { padding: 13px; }

.hm-cms-v7__mock-hero {
  height: 55px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: linear-gradient(135deg,var(--hm-blue),#43A4EF);
}

.hm-cms-v7__project:nth-child(2) .hm-cms-v7__mock-hero { background: linear-gradient(135deg,var(--hm-orange),#FFB157); }
.hm-cms-v7__project:nth-child(3) .hm-cms-v7__mock-hero { background: linear-gradient(135deg,#0C9568,#50C59D); }
.hm-cms-v7__project:nth-child(4) .hm-cms-v7__mock-hero { background: linear-gradient(135deg,#7655D9,#AD8BF0); }
.hm-cms-v7__project:nth-child(5) .hm-cms-v7__mock-hero { background: linear-gradient(135deg,#108EC9,#5EC5EC); }
.hm-cms-v7__project:nth-child(6) .hm-cms-v7__mock-hero { background: linear-gradient(135deg,#DF4B4B,#F78A74); }

.hm-cms-v7__mock-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 6px;
}

.hm-cms-v7__mock-row span {
  height: 35px;
  border-radius: 7px;
  background: #EDF2F8;
}

.hm-cms-v7__project-body { padding: 20px; }

.hm-cms-v7__project-body h3 {
  margin: 0 0 7px;
  color: var(--hm-ink);
  font-size: 18px;
  font-weight: 950;
}

.hm-cms-v7__project-body p {
  min-height: 52px;
  margin: 0;
  color: var(--hm-muted);
  font-size: 13px;
  line-height: 1.85;
}

.hm-cms-v7__project-link {
  display: inline-flex;
  margin-top: 13px;
  color: var(--hm-blue) !important;
  font-size: 12px;
  font-weight: 900;
}

.hm-cms-v7__faq {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin-inline: auto;
}

.hm-cms-v7__faq details {
  overflow: hidden;
  border: 1px solid var(--hm-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(7,17,31,.055);
}

.hm-cms-v7__faq summary {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 16px 20px 16px 60px;
  color: var(--hm-ink);
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.8;
}

.hm-cms-v7__faq summary::-webkit-details-marker { display: none; }

.hm-cms-v7__faq summary::after {
  content: "+";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 11px;
  color: #fff;
  background: var(--hm-blue);
  font-size: 19px;
  font-weight: 950;
}

.hm-cms-v7__faq details[open] summary::after {
  content: "−";
  color: var(--hm-ink);
  background: var(--hm-yellow);
}

.hm-cms-v7__faq-answer {
  padding: 0 20px 18px;
}

.hm-cms-v7__faq-answer p {
  margin: 0;
  padding: 16px 18px;
  border-radius: 16px;
  color: var(--hm-muted);
  background: var(--hm-bg);
  font-size: 14.5px;
  line-height: 2;
}

.hm-cms-v7__note {
  margin-top: 18px;
  padding: 20px 22px;
  border-right: 4px solid var(--hm-blue);
  border-radius: 20px;
  color: var(--hm-text);
  background: linear-gradient(135deg,rgba(0,85,218,.06),rgba(205,255,252,.28));
  font-size: 15px;
  line-height: 2;
}

.hm-cms-v7__section--dark .hm-cms-v7__note {
  color: #E3EDF6;
  border-color: var(--hm-yellow);
  background: linear-gradient(135deg,rgba(255,199,100,.08),rgba(205,255,252,.04));
}

.hm-cms-v7__cta { text-align: center; }

.hm-cms-v7__cta .hm-cms-v7__section-title,
.hm-cms-v7__cta .hm-cms-v7__lead,
.hm-cms-v7__cta .hm-cms-v7__rule {
  margin-inline: auto;
}

.hm-cms-v7__cta .hm-cms-v7__actions { justify-content: center; }

.hm-cms-v7 a:focus-visible,
.hm-cms-v7 summary:focus-visible {
  outline: 3px solid rgba(255,87,127,.32);
  outline-offset: 4px;
}

@media (max-width:1040px) {
  .hm-cms-v7__hero-grid,
  .hm-cms-v7__head {
    grid-template-columns: 1fr;
  }
  .hm-cms-v7__hero-copy,
  .hm-cms-v7__head { text-align: center; }
  .hm-cms-v7__hero-copy .hm-cms-v7__eyebrow,
  .hm-cms-v7__hero-copy .hm-cms-v7__lead,
  .hm-cms-v7__hero-copy .hm-cms-v7__rule,
  .hm-cms-v7__head .hm-cms-v7__eyebrow,
  .hm-cms-v7__head .hm-cms-v7__intro,
  .hm-cms-v7__head .hm-cms-v7__rule { margin-inline: auto; }
  .hm-cms-v7__hero-copy .hm-cms-v7__actions { justify-content: center; }
  .hm-cms-v7__cards,
  .hm-cms-v7__portfolio { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .hm-cms-v7__trust { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width:680px) {
  .hm-cms-v7__container { width: min(100% - 28px,1240px); }
  .hm-cms-v7__hero,
  .hm-cms-v7__section { padding: 54px 0; }
  .hm-cms-v7__title { font-size: clamp(34px,10vw,47px); }
  .hm-cms-v7__section-title { font-size: clamp(27px,8vw,36px); }
  .hm-cms-v7__lead,
  .hm-cms-v7__intro { font-size: 15px; line-height: 2; }
  .hm-cms-v7__actions { flex-direction: column; }
  .hm-cms-v7__btn { width: 100%; }
  .hm-cms-v7__cards,
  .hm-cms-v7__pricing,
  .hm-cms-v7__portfolio,
  .hm-cms-v7__trust { grid-template-columns: 1fr; }
  .hm-cms-v7__dashboard { padding: 16px; }
  .hm-cms-v7__dash-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion:reduce) {
  .hm-cms-v7 *,
  .hm-cms-v7 *::before,
  .hm-cms-v7 *::after {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
