.hm-page{
  display:grid;
  gap:20px;
  font-family:"Plus Jakarta Sans",sans-serif;
  --hm-text:#0f172a;
  --hm-title:#0d2340;
  --hm-muted:#3f5a77;
  --hm-line:rgba(148,163,184,.18);
}

.hm-card{
  border:1px solid var(--hm-line);
  border-radius:28px;
  background:linear-gradient(180deg,#fff,#f8fbff);
  box-shadow:0 18px 42px rgba(15,23,42,.07);
  overflow:hidden;
}

.hm-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:10px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#164069;
}

.hm-kicker:before{
  content:"";
  width:22px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,#0ea5e9,#14b8a6);
}

.hm-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:12px;
  margin-bottom:16px;
}

.hm-head h2{
  margin:0;
  font-family:"Sora","Plus Jakarta Sans",sans-serif;
  font-size:clamp(19px,1.95vw,25px);
  line-height:1.2;
  letter-spacing:-.015em;
  color:var(--hm-title);
}

.hm-head p,
.hm-copy p,
.hm-product p,
.hm-service p,
.hm-step p,
.hm-system p,
.hm-final p{
  margin:6px 0 0;
  font-size:14px;
  line-height:1.6;
  color:var(--hm-muted);
}

.hm-hero,.hm-block,.hm-systems,.hm-final{padding:24px}

.hm-block,
.hm-systems,
.hm-final{
  content-visibility:auto;
  contain-intrinsic-size:1px 880px;
}

.hm-hero{
  background:
    radial-gradient(700px 260px at 0% 0%,rgba(59,130,246,.10),transparent 60%),
    radial-gradient(700px 260px at 100% 100%,rgba(20,184,166,.10),transparent 60%),
    linear-gradient(180deg,#f9fbff 0%,#eef4fb 100%);
}

.hm-hero-grid{
  display:grid;
  grid-template-columns:minmax(320px,.82fr) minmax(560px,1.18fr);
  gap:14px;
}

.hm-copy{
  display:grid;
  gap:12px;
  align-content:start;
}

.hm-copy h1{
  margin:0;
  font-family:"Sora","Plus Jakarta Sans",sans-serif;
  font-size:clamp(24px,2.2vw,32px);
  line-height:1.14;
  letter-spacing:-.03em;
  color:var(--hm-text);
  text-wrap:balance;
}

.hm-copy p{max-width:60ch}

.hm-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.hm-chips{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.hm-chips span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.16);
  background:rgba(255,255,255,.82);
  font-size:11px;
  font-weight:800;
  color:#12304e;
}

.hm-chips i{
  font-style:normal;
  color:#0ea5e9;
}

.hm-stage{
  display:grid;
  gap:10px;
}

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

.hm-stats article{
  position:relative;
  min-height:80px;
  padding:11px;
  border-radius:16px;
  border:1px solid rgba(148,163,184,.16);
  background:#fff;
}

.hm-stats article:after{
  content:"";
  position:absolute;
  top:11px;
  right:11px;
  width:9px;
  height:9px;
  border-radius:999px;
  background:linear-gradient(135deg,#22d3ee,#38bdf8);
}

.hm-stats strong{
  display:block;
  font-size:20px;
  color:#0f172a;
}

.hm-stats small{
  display:block;
  margin-top:6px;
  font-size:10px;
  color:#4d6884;
  text-transform:uppercase;
  letter-spacing:.08em;
}

@media(min-width:861px){
  .hm-stats article{
    min-height:58px;
    padding:10px 12px;
    display:flex;
    align-items:center;
    gap:8px;
  }

  .hm-stats article:after{
    top:50%;
    right:10px;
    transform:translateY(-50%);
  }

  .hm-stats strong{
    display:inline-block;
    font-size:19px;
    line-height:1;
    flex:0 0 auto;
  }

  .hm-stats small{
    display:inline-block;
    margin-top:0;
    font-size:10px;
    line-height:1.2;
    letter-spacing:.07em;
    padding-right:14px;
  }
}

.hm-feature-grid{
  display:grid;
  grid-template-columns:minmax(0,.77fr) minmax(348px,1fr);
  gap:10px;
}

.hm-spot{
  position:relative;
  min-height:304px;
  border-radius:24px;
  overflow:hidden;
  background:#102338;
}

.hm-spot:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(7,18,31,.04),rgba(7,18,31,.75));
}

.hm-spot img,.hm-product-media img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.hm-spot img{
  object-fit:contain;
  object-position:center center;
  background:#102338;
}

.hm-mini img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center center;
  background:#e8f2ff;
  border-radius:10px;
}

.hm-overlay{
  position:absolute;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:1;
  display:grid;
  gap:6px;
}

.hm-overlay b,.hm-type{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:max-content;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(7,18,31,.64);
  border:1px solid rgba(255,255,255,.14);
  font-size:10px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#d8f4ff;
}

.hm-overlay strong{
  font-size:21px;
  line-height:1.14;
  color:#fff;
  max-width:12ch;
}

.hm-overlay p{
  margin:0;
  color:rgba(235,243,252,.95);
  font-size:12px;
  line-height:1.56;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.hm-mini-col{
  display:grid;
  gap:10px;
  grid-template-rows:repeat(2,minmax(0,1fr));
  min-height:304px;
  width:calc(100% - 4px);
  justify-self:end;
}

.hm-mini{
  display:grid;
  grid-template-columns:84px minmax(0,1fr);
  gap:9px;
  padding:10px 9px 8px;
  border-radius:18px;
  border:1px solid rgba(103,127,160,.28);
  background:linear-gradient(145deg,#e8eff8 0%,#d7e2f0 100%);
  box-shadow:0 10px 22px rgba(15,23,42,.09);
  min-height:142px;
}

.hm-mini > div:nth-child(2){
  display:grid;
  gap:4px;
  align-content:start;
}

.hm-mini-label{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:0;
  border:0;
  background:transparent;
  color:#244a71;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.hm-mini-label:before{
  content:"";
  width:6px;
  height:6px;
  border-radius:999px;
  background:linear-gradient(135deg,#0ea5e9,#14b8a6);
}

.hm-mini strong{
  font-size:14px;
  line-height:1.34;
  color:#102946;
}

.hm-mini p{
  margin:0;
  font-size:12px;
  color:#445e76;
  line-height:1.5;
  min-height:3em;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.hm-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:6px;
}

.hm-mini-foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:6px;
  margin-top:2px;
  border-top:1px solid rgba(148,163,184,.14);
  grid-column:1 / -1;
}

.hm-mini-foot .hm-rate-line{
  background:transparent !important;
  border:0 !important;
  padding:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
}

.hm-mini-foot .hm-stars{
  background:transparent !important;
  border:0 !important;
  padding:0 !important;
  border-radius:0 !important;
}

.hm-mini-foot .hm-stars i{
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
}

.hm-rate{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  font-weight:800;
  color:#fff;
}

.hm-rate:before{
  content:"\2605";
  color:#fbbf24;
}

.hm-rate.hm-dark{color:#1d4f7b}

.hm-rate-line{
  display:inline-flex;
  align-items:center;
  gap:5px;
  color:#fff;
}

.hm-rate-line strong{
  font-size:12px;
  font-weight:800;
}

.hm-rate-line.is-dark{color:#1d4f7b}
.hm-rate-line.is-rated strong{color:#fff}
.hm-rate-line.is-dark strong{color:#1d4f7b}
.hm-rate-line.is-dark.is-rated strong{color:#0f172a}
.hm-rate-line.is-empty strong{
  font-size:11px;
  font-weight:800;
  color:#64748b;
  letter-spacing:.02em;
}

.hm-stars{
  display:inline-flex;
  gap:2px;
}

.hm-stars i{
  font-style:normal;
  font-size:13px;
  line-height:1;
  color:rgba(255,255,255,.28);
}

.hm-rate-line.is-dark .hm-stars i{color:rgba(100,116,139,.34)}
.hm-stars i.on{color:#fbbf24}
.hm-rate-line.is-dark.is-rated .hm-stars i.off{color:rgba(148,163,184,.78)}
.hm-rate-line.is-dark.is-rated .hm-stars i.on{color:#f59e0b}

.hm-pointer{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0;
  border:0;
  background:transparent;
  color:#38bdf8;
  line-height:1;
}

.hm-pointer svg,.hm-view svg,.hm-icon svg{
  width:17px;
  height:17px;
  display:block;
  fill:none;
  stroke:currentColor;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.hm-pointer:hover{color:#f59e0b}
.hm-pointer-light{background:transparent;border:0;color:#0f67c6}

.hm-adv-grid,.hm-grid,.hm-service-grid,.hm-process-grid,.hm-systems-grid{
  display:grid;
  gap:14px;
}

.hm-adv-grid{grid-template-columns:repeat(3,minmax(0,1fr))}

.hm-adv,.hm-service,.hm-step{
  padding:18px;
  background:#fff;
  border:1px solid rgba(148,163,184,.16);
  border-radius:22px;
}

.hm-adv-top{
  display:grid;
  grid-template-columns:46px minmax(0,1fr);
  gap:12px;
  align-items:center;
}

.hm-icon{
  width:46px;
  height:46px;
  border-radius:16px;
  border:1px solid rgba(148,163,184,.16);
  background:linear-gradient(135deg,#ebf5ff,#f0fdfa);
  color:#0d4b7a;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hm-adv h3,.hm-service h3,.hm-step h3,.hm-system h3,.hm-product-top h3{
  margin:0;
  font-size:18px;
  line-height:1.3;
  color:#0f2642;
}

.hm-advantages{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(720px 280px at 8% -12%,rgba(56,189,248,.15),transparent 60%),
    radial-gradient(700px 260px at 96% 110%,rgba(37,99,235,.12),transparent 62%),
    linear-gradient(145deg,#f8fbff 0%,#eef4fb 56%,#f7fafd 100%);
}

.hm-advantages:before{
  content:"const designer = 'web';\Aconst developer = 'full-stack';\Aship(designer + developer);";
  position:absolute;
  right:18px;
  top:16px;
  white-space:pre;
  font-family:"JetBrains Mono","Fira Code","Consolas",monospace;
  font-size:11px;
  line-height:1.5;
  letter-spacing:.01em;
  color:rgba(30,64,96,.16);
  pointer-events:none;
  user-select:none;
  z-index:0;
}

.hm-advantages:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    repeating-linear-gradient(90deg,rgba(148,163,184,.12) 0 1px,transparent 1px 24px),
    repeating-linear-gradient(0deg,rgba(148,163,184,.08) 0 1px,transparent 1px 24px);
  opacity:.28;
  pointer-events:none;
  z-index:0;
}

.hm-advantages .hm-head,
.hm-advantages .hm-adv-grid{
  position:relative;
  z-index:1;
}

.hm-advantages .hm-adv-grid{gap:12px}

.hm-advantages .hm-head{margin-bottom:18px}

.hm-advantages .hm-head h2{
  color:#102b47;
  letter-spacing:-.018em;
}

.hm-advantages .hm-head p{
  font-size:13px;
  line-height:1.56;
  color:#58718a;
}

.hm-advantages .hm-kicker{color:#1a486f}
.hm-advantages .hm-kicker:before{background:linear-gradient(90deg,#38bdf8,#0284c7)}

.hm-advantages .hm-adv{
  padding:13px 14px 12px;
  border-radius:18px;
  border:1px solid rgba(122,151,186,.28);
  background:linear-gradient(180deg,rgba(255,255,255,.94),rgba(246,250,255,.9));
  box-shadow:0 12px 20px rgba(15,23,42,.07);
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
  display:grid;
  grid-template-columns:56px minmax(0,1fr);
  grid-template-areas:
    "icon title"
    "icon desc";
  column-gap:10px;
  row-gap:4px;
  align-items:start;
}

.hm-advantages .hm-adv:hover{
  transform:translateY(-2px);
  border-color:rgba(59,130,246,.42);
  box-shadow:0 18px 30px rgba(15,23,42,.12);
}

.hm-advantages .hm-adv-top{
  display:contents;
}

.hm-advantages .hm-icon{
  grid-area:icon;
  width:56px;
  height:56px;
  border-radius:18px;
  border:1px solid rgba(129,162,197,.26);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.85),0 8px 16px rgba(17,38,64,.12);
  align-self:start;
  margin-top:1px;
}

.hm-advantages .hm-icon svg{
  width:23px;
  height:23px;
  stroke-width:2.05;
}

.hm-advantages .hm-adv:nth-child(3n+1) .hm-icon{
  background:linear-gradient(145deg,#edf5ff,#dbeaff);
  color:#155792;
}

.hm-advantages .hm-adv:nth-child(3n+2) .hm-icon{
  background:linear-gradient(145deg,#e9fbf7,#d8f4ee);
  color:#0f6b63;
}

.hm-advantages .hm-adv:nth-child(3n+3) .hm-icon{
  background:linear-gradient(145deg,#fff6e8,#ffeccf);
  color:#9a5d14;
}

.hm-advantages .hm-adv h3{
  grid-area:title;
  margin-top:2px;
  font-size:15.5px;
  line-height:1.3;
  color:#102b47;
}

.hm-advantages .hm-adv p{
  grid-area:desc;
  margin:0;
  font-size:12.5px;
  line-height:1.58;
  color:#58718a;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.hm-showcase{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(760px 240px at 6% -10%,rgba(56,189,248,.12),transparent 64%),
    radial-gradient(620px 220px at 100% 108%,rgba(59,130,246,.1),transparent 66%),
    linear-gradient(145deg,#f8fbff 0%,#eff5fc 58%,#f7faff 100%);
}

.hm-showcase:before{
  content:"<section class=\"showcase-grid\">\\A  <article class=\"product-card\">\\A    <img src=\"preview.jpg\" alt=\"\" />\\A    <h3>Modern Web Interface</h3>\\A    <button class=\"btn\">Incele</button>\\A  </article>\\A</section>";
  position:absolute;
  right:20px;
  top:16px;
  width:320px;
  max-width:44%;
  white-space:pre;
  font-family:"JetBrains Mono","Fira Code","Consolas",monospace;
  font-size:10.5px;
  line-height:1.58;
  letter-spacing:.01em;
  color:rgba(16,58,94,.14);
  pointer-events:none;
  user-select:none;
  z-index:0;
}

.hm-showcase:after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(120deg,rgba(255,255,255,.3),transparent 42%),
    repeating-linear-gradient(90deg,rgba(148,163,184,.06) 0 1px,transparent 1px 22px),
    repeating-linear-gradient(0deg,rgba(148,163,184,.05) 0 1px,transparent 1px 22px);
  opacity:.33;
}

.hm-showcase .hm-head,
.hm-showcase .hm-panel{
  position:relative;
  z-index:1;
}

.hm-showcase .hm-head{margin-bottom:18px}

.hm-showcase .hm-head p{
  margin-top:8px;
  font-size:13px;
  line-height:1.58;
  color:#56708a;
  max-width:60ch;
}

.hm-showcase .hm-tabs{
  padding:4px;
  border-radius:999px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(132,158,189,.28);
  box-shadow:0 8px 18px rgba(15,23,42,.08);
}

.hm-showcase .hm-tab{
  min-height:36px;
  padding:0 14px;
  border-radius:999px;
  border-color:transparent;
  background:transparent;
  color:#2c4f72;
  font-size:12px;
  font-family:"Plus Jakarta Sans",sans-serif;
}

.hm-showcase .hm-tab.active{
  background:linear-gradient(135deg,#0f6fc8,#0ea5e9);
  color:#fff;
  box-shadow:0 10px 18px rgba(14,116,204,.3);
}

.hm-showcase .hm-grid{gap:16px}

.hm-showcase .hm-product{
  border-color:rgba(124,149,181,.24);
  box-shadow:0 14px 24px rgba(15,23,42,.08);
}

.hm-showcase .hm-product-media{
  background:linear-gradient(145deg,#102338,#173456 62%,#204a74);
  touch-action:pan-y;
}

.hm-showcase .hm-type{
  top:12px;
  left:12px;
  bottom:auto;
  background:rgba(8,22,37,.66);
  color:#dff2ff;
  border-color:rgba(255,255,255,.22);
  font-family:"Plus Jakarta Sans",sans-serif;
}

.hm-showcase .hm-product-body{
  padding:15px 15px 14px;
  gap:11px;
}

.hm-showcase .hm-gallery-dots{
  position:absolute;
  left:50%;
  bottom:10px;
  transform:translateX(-50%);
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:5px 8px;
  border-radius:999px;
  background:rgba(8,24,39,.56);
  border:1px solid rgba(56,189,248,.34);
  box-shadow:0 8px 16px rgba(2,12,27,.26);
  backdrop-filter:blur(2px);
}

.hm-showcase .hm-gallery-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  border:0;
  padding:0;
  background:rgba(103,232,249,.78);
  opacity:.88;
  cursor:pointer;
  transition:all .18s ease;
}

.hm-showcase .hm-gallery-dot:hover{
  opacity:1;
  background:#22d3ee;
}

.hm-showcase .hm-gallery-dot.is-active{
  width:18px;
  background:linear-gradient(90deg,#f59e0b,#fbbf24);
  opacity:1;
  box-shadow:0 0 0 1px rgba(255,255,255,.35),0 0 12px rgba(245,158,11,.44);
}

.hm-showcase .hm-product p{
  font-size:13px;
  line-height:1.56;
  color:#5a728b;
}

.hm-showcase .hm-pills{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:7px;
}

.hm-showcase .hm-pills span{
  min-height:33px;
  border-color:rgba(125,151,184,.28);
  white-space:nowrap;
}

.hm-showcase .hm-pills span:first-child{
  grid-column:1/-1;
  justify-self:start;
  width:auto;
  min-height:34px;
  padding:0 12px 0 10px;
  border-radius:11px;
  border:1px solid rgba(98,124,156,.36);
  border-left:4px solid #0ea5e9;
  background:linear-gradient(180deg,#e2ebf6,#d7e3f0);
  color:#143a61;
  font-size:12px;
  white-space:nowrap;
  text-align:left;
}

.hm-price-line{
  display:inline-flex;
  align-items:baseline;
  gap:6px;
  white-space:nowrap !important;
}

.hm-price-line .vat-note{
  font-size:8.5px;
  font-weight:700;
  color:#345b80;
  opacity:.75;
  letter-spacing:.02em;
}

.hm-showcase .hm-product-actions .btn{
  font-size:13px;
}

.hm-showcase .hm-product-actions{
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.hm-showcase .hm-product-actions .btn-ghost{
  position:relative;
  min-height:48px;
  font-size:14px;
  font-weight:800;
  gap:7px;
  border-color:rgba(95,125,159,.34);
  background:linear-gradient(180deg,#ffffff,#edf4ff);
  color:#1f4d78;
}

.hm-showcase .hm-product-actions .btn-ghost:before{
  content:"";
  width:11px;
  height:14px;
  flex:0 0 11px;
  background:currentColor;
  opacity:.82;
  clip-path:polygon(8% 0,8% 98%,36% 70%,53% 100%,72% 90%,54% 61%,94% 61%);
  transition:transform .18s ease,opacity .18s ease;
}

.hm-showcase .hm-product-actions .btn-ghost:hover{
  border-color:rgba(14,165,233,.46);
  color:#0d74bb;
  background:linear-gradient(180deg,#f8fdff,#dff1ff);
}

.hm-showcase .hm-product-actions .btn-ghost:hover:before{
  transform:translateX(1px) translateY(-1px);
  opacity:1;
}

.hm-showcase .hm-product-actions .btn-primary{
  min-height:40px;
  font-size:12px;
  font-weight:700;
  box-shadow:0 10px 18px rgba(16,111,197,.24);
}

.hm-showcase-slider-nav{
  display:none;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:10px;
}

.hm-showcase-slider-dots{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
}

.hm-showcase-slider-dot{
  width:7px;
  height:7px;
  border:1px solid rgba(32,91,140,.45);
  border-radius:999px;
  padding:0;
  background:transparent;
  cursor:pointer;
  transition:all .18s ease;
}

.hm-showcase-slider-dot.is-active{
  width:18px;
  border-color:#0ea5e9;
  background:transparent;
  box-shadow:0 0 0 1px rgba(14,165,233,.22) inset;
}

.hm-tabs{
  display:flex;
  gap:8px;
  flex-wrap:nowrap;
}

.hm-tab{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.18);
  background:#fff;
  color:#163b61;
  font-size:13px;
  font-weight:800;
  cursor:pointer;
}

.hm-tab.active{
  background:linear-gradient(135deg,#0ea5e9,#14b8a6);
  color:#fff;
  border-color:transparent;
}

.hm-panel{display:none}
.hm-panel.active{display:block}

.hm-grid{grid-template-columns:repeat(3,minmax(0,1fr))}

.hm-product{
  display:grid;
  grid-template-rows:minmax(228px,252px) 1fr;
  height:100%;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(148,163,184,.16);
  border-radius:22px;
  box-shadow:0 12px 26px rgba(15,23,42,.06);
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}

.hm-product:hover{
  transform:translateY(-3px);
  border-color:rgba(14,165,233,.34);
  box-shadow:0 18px 34px rgba(15,23,42,.12);
}

.hm-product-media{
  position:relative;
  height:100%;
  background:#102338;
}

.hm-type{
  position:absolute;
  left:16px;
  bottom:14px;
  z-index:1;
}

.hm-product-body{
  display:grid;
  gap:12px;
  padding:16px;
  grid-template-rows:auto auto minmax(62px,auto) auto auto;
  align-content:start;
}

.hm-product-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
}

.hm-product-top h3{
  margin:0;
  font-size:17px;
  line-height:1.32;
  overflow-wrap:anywhere;
  word-break:break-word;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.hm-product-metrics{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.hm-view{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  background:#eff6ff;
  border:1px solid rgba(59,130,246,.14);
  color:#1d4f7b;
  font-size:10px;
  font-weight:800;
}

.hm-product p{
  margin:0;
  min-height:0;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

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

.hm-pills span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:0 10px;
  border-radius:12px;
  border:1px solid rgba(148,163,184,.2);
  background:linear-gradient(180deg,#fff,#f8fbff);
  color:#163b61;
  font-size:11px;
  font-weight:800;
  white-space:nowrap;
}

.hm-pills span:first-child{
  grid-column:1/-1;
  justify-content:flex-start;
  min-height:38px;
  padding:0 12px;
  border-radius:14px;
  border-color:rgba(37,99,235,.36);
  color:#0b4fa2;
  font-size:13px;
}

.hm-product-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:auto;
}

.hm-product-actions .btn{min-height:44px}
.hm-product-actions form{margin:0}
.hm-product-actions form .btn{width:100%}

.hm-service-grid{grid-template-columns:repeat(4,minmax(0,1fr))}

.hm-no{
  width:40px;
  height:40px;
  border-radius:13px;
  background:linear-gradient(135deg,#0f172a,#1d4f7b);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:13px;
  font-weight:800;
}

.hm-service a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:14px;
  font-size:12px;
  font-weight:800;
  color:#0b67b8;
  text-decoration:none;
}

.hm-architecture{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(920px 320px at 18% -20%,rgba(125,211,252,.2),transparent 62%),
    radial-gradient(760px 260px at 86% 8%,rgba(191,219,254,.2),transparent 66%),
    linear-gradient(180deg,#f7fbff 0%,#eaf2fb 58%,#dfeaf6 100%);
}

.hm-architecture:before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:48%;
  background:
    linear-gradient(to top,rgba(19,40,67,.28),rgba(19,40,67,.03)) 3% 100%/8% 56% no-repeat,
    linear-gradient(to top,rgba(24,48,79,.34),rgba(24,48,79,.06)) 12% 100%/10% 68% no-repeat,
    linear-gradient(to top,rgba(20,43,72,.3),rgba(20,43,72,.04)) 24% 100%/9% 52% no-repeat,
    linear-gradient(to top,rgba(28,55,88,.36),rgba(28,55,88,.08)) 33% 100%/11% 72% no-repeat,
    linear-gradient(to top,rgba(20,45,75,.34),rgba(20,45,75,.06)) 46% 100%/10% 62% no-repeat,
    linear-gradient(to top,rgba(27,52,84,.38),rgba(27,52,84,.1)) 57% 100%/9% 76% no-repeat,
    linear-gradient(to top,rgba(19,43,72,.31),rgba(19,43,72,.06)) 67% 100%/11% 58% no-repeat,
    linear-gradient(to top,rgba(26,52,84,.36),rgba(26,52,84,.1)) 79% 100%/10% 70% no-repeat,
    linear-gradient(to top,rgba(21,44,74,.3),rgba(21,44,74,.05)) 90% 100%/9% 54% no-repeat,
    linear-gradient(180deg,transparent 0%,rgba(30,58,92,.14) 100%);
  box-shadow:inset 0 18px 28px rgba(255,255,255,.2);
  pointer-events:none;
  user-select:none;
  z-index:0;
  opacity:.9;
}

.hm-architecture:after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(520px 170px at 16% 94%,rgba(15,23,42,.12),transparent 72%),
    radial-gradient(480px 150px at 84% 90%,rgba(15,23,42,.11),transparent 74%),
    linear-gradient(180deg,rgba(255,255,255,.28),transparent 35%),
    repeating-linear-gradient(90deg,rgba(255,255,255,.16) 0 1px,transparent 1px 22px),
    repeating-linear-gradient(0deg,rgba(255,255,255,.08) 0 1px,transparent 1px 24px);
  opacity:.3;
}

.hm-architecture .hm-head,
.hm-architecture .hm-service-grid{
  position:relative;
  z-index:1;
}

.hm-architecture .hm-head h2{
  color:#102b47;
  letter-spacing:-.018em;
}

.hm-architecture .hm-head p{
  margin-top:8px;
  font-size:13px;
  line-height:1.58;
  color:#56718b;
  max-width:64ch;
}

.hm-architecture .hm-service-grid{gap:12px}

.hm-architecture .hm-service{
  display:grid;
  grid-template-columns:42px minmax(0,1fr);
  grid-template-areas:
    "no title"
    "no desc"
    "no link";
  column-gap:11px;
  row-gap:6px;
  padding:14px 14px 13px;
  border-radius:18px;
  border:1px solid rgba(122,151,186,.28);
  background:linear-gradient(180deg,rgba(255,255,255,.95),rgba(245,250,255,.9));
  box-shadow:0 12px 22px rgba(15,23,42,.08);
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}

.hm-architecture .hm-service:hover{
  transform:translateY(-2px);
  border-color:rgba(14,165,233,.42);
  box-shadow:0 18px 30px rgba(15,23,42,.12);
}

.hm-architecture .hm-no{
  grid-area:no;
  width:42px;
  height:42px;
  border-radius:14px;
  background:linear-gradient(145deg,#0f3a62,#0d5f93);
  font-size:12px;
}

.hm-architecture .hm-service h3{
  grid-area:title;
  margin:2px 0 0;
  font-size:16px;
  line-height:1.28;
  color:#112f4f;
}

.hm-architecture .hm-service p{
  grid-area:desc;
  margin:0;
  font-size:13px;
  line-height:1.56;
  color:#59748d;
}

.hm-architecture .hm-service a{
  grid-area:link;
  width:max-content;
  margin-top:2px;
  min-height:34px;
  padding:0 12px;
  border-radius:10px;
  border:1px solid rgba(96,124,160,.32);
  background:linear-gradient(180deg,#fff,#edf4ff);
  color:#0f5c9e;
}

.hm-architecture .hm-service a:hover{
  border-color:rgba(14,165,233,.46);
  background:linear-gradient(180deg,#f8fdff,#ddf2ff);
  color:#0d74bb;
}

.hm-workflow{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(760px 240px at 8% -12%,rgba(56,189,248,.13),transparent 62%),
    radial-gradient(740px 240px at 98% 110%,rgba(37,99,235,.1),transparent 64%),
    linear-gradient(145deg,#f8fbff 0%,#eef4fb 56%,#f7fbff 100%);
  --wf-arrow-main:linear-gradient(90deg,#14b8a6 0%,#0ea5e9 54%,#1d4ed8 100%);
  --wf-arrow-down:linear-gradient(180deg,#14b8a6 0%,#0ea5e9 54%,#1d4ed8 100%);
}

.hm-workflow:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    repeating-linear-gradient(90deg,rgba(148,163,184,.055) 0 1px,transparent 1px 26px),
    linear-gradient(180deg,transparent 64%,rgba(148,163,184,.08) 64%,rgba(148,163,184,.08) 65%,transparent 65%);
  opacity:.34;
}

.hm-workflow .hm-head,
.hm-workflow .hm-process-grid{
  position:relative;
  z-index:1;
}

.hm-workflow .hm-head{
  align-items:flex-start;
  gap:14px;
  padding-right:88px;
}

.hm-workflow .hm-head > div:first-child{
  min-width:0;
  flex:1 1 auto;
}

.hm-workflow-social{
  position:absolute;
  top:34px;
  right:0;
  margin:0;
  display:flex;
  align-items:center;
  gap:11px;
  flex:0 0 auto;
}

.hm-workflow-social-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:20px;
  height:20px;
  color:#4f6b86;
  text-decoration:none;
  transition:transform .18s ease,color .18s ease,opacity .18s ease;
}

.hm-workflow-social-link svg{
  width:100%;
  height:100%;
  display:block;
  fill:currentColor;
}

.hm-workflow-social-link.is-wa{color:#25d366}
.hm-workflow-social-link.is-ig{color:#e4405f}
.hm-workflow-social-link.is-tg{color:#229ed9}

.hm-workflow-social-link:hover{
  transform:translateY(-1px);
  opacity:.82;
}

.hm-workflow .hm-head h2{
  color:#102b47;
  letter-spacing:-.018em;
}

.hm-workflow .hm-head p{
  margin-top:8px;
  font-size:13px;
  line-height:1.58;
  color:#58718a;
  max-width:62ch;
}

.hm-workflow .hm-process-grid{
  row-gap:18px;
  column-gap:40px;
  position:relative;
  overflow:visible;
}

.hm-workflow .hm-process-grid:before{
  display:none;
}

.hm-workflow .hm-step{
  position:relative;
  z-index:auto;
  display:grid;
  grid-template-columns:minmax(0,1fr);
  grid-template-areas:
    "title"
    "desc";
  column-gap:0;
  row-gap:5px;
  padding:13px 14px 12px;
  border-radius:18px;
  border:1px solid rgba(122,151,186,.28);
  background:linear-gradient(180deg,rgba(255,255,255,.95),rgba(246,250,255,.9));
  box-shadow:0 12px 22px rgba(15,23,42,.08);
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
  overflow:visible;
}

.hm-workflow .hm-step:after{
  content:"";
  position:absolute;
  top:50%;
  right:-36px;
  width:46px;
  height:18px;
  transform:translateY(-50%);
  background:var(--wf-arrow-main);
  clip-path:polygon(0 35%,62% 35%,62% 16%,84% 16%,84% 0,100% 50%,84% 100%,84% 84%,62% 84%,62% 65%,0 65%);
  box-shadow:0 10px 18px rgba(15,103,198,.26),inset 0 1px 0 rgba(255,255,255,.45);
  pointer-events:none;
  z-index:2;
}

.hm-workflow .hm-step:nth-child(3n):after{
  top:auto;
  right:auto;
  left:50%;
  bottom:-30px;
  width:20px;
  height:40px;
  transform:translateX(-50%);
  background:var(--wf-arrow-down);
  clip-path:polygon(30% 0,70% 0,70% 62%,100% 62%,50% 100%,0 62%,30% 62%);
}

.hm-workflow .hm-step:last-child:after{
  display:none;
}

.hm-workflow .hm-step:hover{
  transform:translateY(-2px);
  border-color:rgba(14,165,233,.42);
  box-shadow:0 18px 30px rgba(15,23,42,.12);
}

.hm-workflow .hm-no{
  display:none;
}

.hm-workflow .hm-step h3{
  grid-area:title;
  margin:0;
  display:flex;
  align-items:center;
  gap:8px;
  font-size:16px;
  line-height:1.28;
  color:#112f4f;
}

.hm-workflow .hm-step h3:before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  flex:0 0 auto;
  background:linear-gradient(135deg,#14b8a6,#0ea5e9);
  box-shadow:0 0 0 3px rgba(14,165,233,.14);
}

.hm-workflow .hm-step p{
  grid-area:desc;
  margin:0;
  font-size:13px;
  line-height:1.56;
  color:#59748d;
}

.hm-process-grid,.hm-systems-grid{grid-template-columns:repeat(3,minmax(0,1fr))}

.hm-systems{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(840px 320px at -4% -8%,rgba(14,165,233,.18),transparent 64%),
    radial-gradient(720px 300px at 108% 112%,rgba(30,64,175,.22),transparent 64%),
    linear-gradient(140deg,#06101b 0%,#0c2136 54%,#12314a 100%);
  color:#fff;
}

.hm-systems:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    repeating-linear-gradient(90deg,rgba(148,163,184,.07) 0 1px,transparent 1px 24px),
    repeating-linear-gradient(0deg,rgba(148,163,184,.06) 0 1px,transparent 1px 24px);
  opacity:.32;
}

.hm-systems:after{
  content:"";
  position:absolute;
  width:360px;
  height:360px;
  right:-140px;
  top:-160px;
  border-radius:999px;
  background:radial-gradient(circle at 32% 36%,rgba(125,211,252,.24),rgba(14,116,204,.05) 62%,transparent 72%);
  pointer-events:none;
}

.hm-systems .hm-head,
.hm-systems .hm-systems-grid{
  position:relative;
  z-index:1;
}

.hm-systems .hm-head h2,
.hm-systems .hm-kicker{
  color:#fff;
}

.hm-systems .hm-kicker:before{
  background:linear-gradient(90deg,#67e8f9,#38bdf8);
}

.hm-systems .hm-head p{
  color:rgba(226,232,240,.9);
  max-width:64ch;
}

.hm-system{
  position:relative;
  overflow:hidden;
  display:grid;
  gap:10px;
  padding:19px 18px 16px;
  background:linear-gradient(165deg,rgba(255,255,255,.13),rgba(255,255,255,.05) 52%,rgba(255,255,255,.03));
  border:1px solid rgba(148,163,184,.26);
  border-radius:20px;
  box-shadow:0 14px 26px rgba(2,8,23,.28),inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter:blur(3px);
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}

.hm-system:before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:3px;
  background:linear-gradient(90deg,rgba(103,232,249,.94),rgba(59,130,246,.88));
  opacity:.88;
}

.hm-system:after{
  content:"";
  position:absolute;
  top:12px;
  right:12px;
  width:34px;
  height:34px;
  border-radius:12px;
  border:1px solid rgba(148,163,184,.28);
  background:
    linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,.02)),
    radial-gradient(circle at 30% 30%,rgba(125,211,252,.24),transparent 66%);
}

.hm-system:hover{
  transform:translateY(-2px);
  border-color:rgba(103,232,249,.4);
  box-shadow:0 20px 30px rgba(2,8,23,.36),inset 0 1px 0 rgba(255,255,255,.14);
}

.hm-system span{
  display:inline-flex;
  width:max-content;
  align-items:center;
  gap:8px;
  padding:5px 10px;
  border-radius:999px;
  border:1px solid rgba(125,211,252,.34);
  background:rgba(8,24,39,.46);
  font-size:10px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#93c5fd;
}

.hm-system span:before{
  content:"";
  width:6px;
  height:6px;
  border-radius:999px;
  background:#22d3ee;
  box-shadow:0 0 0 4px rgba(34,211,238,.16);
}

.hm-system h3{
  color:#f8fbff;
  font-size:18px;
  letter-spacing:-.012em;
}

.hm-system p{
  color:rgba(226,232,240,.86);
  font-size:13px;
  line-height:1.58;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.hm-system i{
  display:block;
  position:relative;
  height:20px;
  margin-top:4px;
  border:0;
  background:
    linear-gradient(90deg,rgba(34,211,238,.92),rgba(56,189,248,.72) 56%,rgba(96,165,250,.22))
    no-repeat
    0 62%
    / calc(100% - 16px) 2px;
  overflow:visible;
}

.hm-system i:before{
  content:"";
  position:absolute;
  left:0;
  top:-1px;
  font-size:9px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:rgba(186,230,253,.88);
}

.hm-system i:after{
  content:"";
  position:absolute;
  right:0;
  top:62%;
  width:8px;
  height:8px;
  border-radius:999px;
  transform:translateY(-50%);
  background:#67e8f9;
  box-shadow:0 0 0 4px rgba(103,232,249,.18);
}

.hm-system i:nth-of-type(1):before{content:"API";}
.hm-system i:nth-of-type(2):before{content:"Veri Tabani";}
.hm-system i:nth-of-type(3):before{content:"Grafik";}

.hm-systems-grid .hm-system:nth-child(3n+2) i:nth-of-type(1):before{content:"Guvenlik";}
.hm-systems-grid .hm-system:nth-child(3n+2) i:nth-of-type(2):before{content:"Onbellek";}
.hm-systems-grid .hm-system:nth-child(3n+2) i:nth-of-type(3):before{content:"Loglama";}

.hm-systems-grid .hm-system:nth-child(3n) i:nth-of-type(1):before{content:"Entegrasyon";}
.hm-systems-grid .hm-system:nth-child(3n) i:nth-of-type(2):before{content:"Otomasyon";}
.hm-systems-grid .hm-system:nth-child(3n) i:nth-of-type(3):before{content:"Raporlama";}

.hm-systems-grid .hm-system:nth-child(3n+2) i{
  background:
    linear-gradient(90deg,rgba(251,191,36,.92),rgba(245,158,11,.72) 56%,rgba(249,115,22,.22))
    no-repeat
    0 62%
    / calc(100% - 16px) 2px;
}

.hm-systems-grid .hm-system:nth-child(3n+2) i:after{
  background:#fbbf24;
  box-shadow:0 0 0 4px rgba(251,191,36,.2);
}

.hm-systems-grid .hm-system:nth-child(3n) i{
  background:
    linear-gradient(90deg,rgba(74,222,128,.9),rgba(16,185,129,.72) 56%,rgba(20,184,166,.22))
    no-repeat
    0 62%
    / calc(100% - 16px) 2px;
}

.hm-systems-grid .hm-system:nth-child(3n) i:after{
  background:#4ade80;
  box-shadow:0 0 0 4px rgba(74,222,128,.2);
}

.hm-system i:last-child{
  opacity:.74;
}

@media(max-width:860px){
  .hm-systems:before{opacity:.2}
  .hm-systems:after{
    width:280px;
    height:280px;
    right:-120px;
    top:-130px;
  }
  .hm-system{
    padding:15px 14px 13px;
    border-radius:18px;
    gap:8px;
  }
  .hm-system h3{font-size:16px}
  .hm-system p{font-size:12.5px}
  .hm-system i{
    height:18px;
  }
  .hm-system i:before{
    font-size:8px;
  }
  .hm-system i:after{
    width:7px;
    height:7px;
  }
  .hm-system:after{
    width:28px;
    height:28px;
    border-radius:10px;
    top:10px;
    right:10px;
  }
}

.hm-final{
  background:
    radial-gradient(700px 220px at 0% 0%,rgba(56,189,248,.14),transparent 60%),
    radial-gradient(700px 220px at 100% 100%,rgba(245,158,11,.12),transparent 60%),
    linear-gradient(135deg,#0b1624,#11253c);
  color:#fff;
  text-align:center;
  display:grid;
  gap:12px;
  align-content:center;
}

.hm-final .hm-kicker{color:#d7eaff}
.hm-final .hm-kicker:before{background:linear-gradient(90deg,#38bdf8,#f59e0b)}

.hm-final h2{
  margin:0;
  font-family:"Sora","Plus Jakarta Sans",sans-serif;
  font-size:clamp(24px,2.6vw,34px);
  line-height:1.16;
  letter-spacing:-.02em;
  color:#f8fcff !important;
  text-wrap:balance;
  max-width:22ch;
  margin-inline:auto;
}

.hm-final p{
  max-width:64ch;
  margin:0 auto;
  color:rgba(226,232,240,.9);
}

.hm-final .hm-actions{justify-content:center}

@media(min-width:1161px){
  .hm-workflow .hm-process-grid{
    grid-template-columns:none;
    grid-auto-flow:column;
    grid-auto-columns:minmax(0,1fr);
    column-gap:32px;
    row-gap:0;
  }
  .hm-workflow .hm-step:nth-child(3n):after{
    top:50%;
    right:-36px;
    left:auto;
    bottom:auto;
    width:46px;
    height:18px;
    transform:translateY(-50%);
    background:var(--wf-arrow-main);
    clip-path:polygon(0 35%,62% 35%,62% 16%,84% 16%,84% 0,100% 50%,84% 100%,84% 84%,62% 84%,62% 65%,0 65%);
  }
}

@media(max-width:1160px){
  .hm-hero-grid,.hm-adv-grid,.hm-grid,.hm-process-grid,.hm-systems-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .hm-workflow .hm-process-grid{
    row-gap:22px;
    column-gap:46px;
  }
  .hm-workflow .hm-step:after{
    top:50%;
    right:-32px;
    left:auto;
    bottom:auto;
    width:42px;
    height:17px;
    transform:translateY(-50%);
    clip-path:polygon(0 35%,62% 35%,62% 16%,84% 16%,84% 0,100% 50%,84% 100%,84% 84%,62% 84%,62% 65%,0 65%);
  }
  .hm-workflow .hm-step:nth-child(3n):after{
    top:50%;
    right:-32px;
    left:auto;
    bottom:auto;
    width:42px;
    height:17px;
    transform:translateY(-50%);
    clip-path:polygon(0 35%,62% 35%,62% 16%,84% 16%,84% 0,100% 50%,84% 100%,84% 84%,62% 84%,62% 65%,0 65%);
  }
  .hm-workflow .hm-step:nth-child(2n):after{
    top:auto;
    right:auto;
    left:50%;
    bottom:-30px;
    width:20px;
    height:40px;
    transform:translateX(-50%);
    background:var(--wf-arrow-down);
    clip-path:polygon(30% 0,70% 0,70% 62%,100% 62%,50% 100%,0 62%,30% 62%);
  }
  .hm-service-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .hm-feature-grid{grid-template-columns:1fr}
  .hm-mini-col{width:100%;justify-self:stretch}
  .hm-copy h1{font-size:clamp(22px,2.8vw,28px)}
}

@media(max-width:860px){
  .hm-card{
    box-shadow:0 12px 24px rgba(15,23,42,.06);
  }
  .hm-hero{
    background:linear-gradient(180deg,#f9fbff 0%,#eef4fb 100%);
  }
  .hm-block,
  .hm-systems,
  .hm-final{
    content-visibility:visible;
    contain-intrinsic-size:auto;
  }

  .hm-showcase{
    background:#fff;
  }
  .hm-showcase:before{display:none}
  .hm-showcase:after{display:none}
  .hm-architecture:before{
    height:34%;
    opacity:.42;
  }
  .hm-architecture:after{opacity:.22}
  .hm-workflow:before{opacity:.22}
  .hm-workflow .hm-head{
    gap:10px;
    padding-right:76px;
  }
  .hm-workflow-social{
    top:30px;
    right:0;
    gap:8px;
  }
  .hm-workflow-social-link{
    width:18px;
    height:18px;
  }
  .hm-workflow .hm-process-grid{
    row-gap:32px;
    column-gap:0;
  }
  .hm-workflow .hm-step{
    grid-template-columns:minmax(0,1fr);
    column-gap:0;
    row-gap:4px;
    padding:12px;
  }
  .hm-workflow .hm-step:after{
    top:auto;
    right:auto;
    left:50%;
    bottom:-30px;
    width:16px;
    height:24px;
    transform:translateX(-50%);
    background:var(--wf-arrow-down);
    clip-path:polygon(30% 0,70% 0,70% 56%,100% 56%,50% 100%,0 56%,30% 56%);
    z-index:3;
  }
  .hm-workflow .hm-step:nth-child(2n):after,
  .hm-workflow .hm-step:nth-child(3n):after{
    top:auto;
    right:auto;
    left:50%;
    bottom:-30px;
    width:16px;
    height:24px;
    transform:translateX(-50%);
    background:var(--wf-arrow-down);
    clip-path:polygon(30% 0,70% 0,70% 56%,100% 56%,50% 100%,0 56%,30% 56%);
    z-index:3;
  }
  .hm-workflow .hm-step:last-child:after{display:none}
  .hm-workflow .hm-step h3{font-size:15px}
  .hm-workflow .hm-step p{font-size:12.5px}
  .hm-architecture .hm-service{
    grid-template-columns:40px minmax(0,1fr);
    column-gap:10px;
    row-gap:5px;
    padding:12px;
  }
  .hm-architecture .hm-no{
    width:40px;
    height:40px;
    border-radius:13px;
  }
  .hm-architecture .hm-service h3{font-size:15px}
  .hm-architecture .hm-service p{font-size:12.5px}
  .hm-advantages:before{display:none}
  .hm-advantages:after{opacity:.18}
  .hm-advantages .hm-adv{
    grid-template-columns:48px minmax(0,1fr);
    column-gap:9px;
    row-gap:3px;
    padding:12px;
  }
  .hm-advantages .hm-adv-top{
    display:contents;
  }
  .hm-advantages .hm-icon{
    width:48px;
    height:48px;
    border-radius:16px;
  }
  .hm-advantages .hm-icon svg{
    width:20px;
    height:20px;
  }
  .hm-hero,.hm-block,.hm-systems,.hm-final{padding:20px}
  .hm-hero-grid,.hm-adv-grid,.hm-grid,.hm-process-grid,.hm-systems-grid,.hm-service-grid{
    grid-template-columns:1fr;
  }
  .hm-head{
    align-items:flex-start;
    flex-direction:column;
  }
  .hm-copy h1{
    max-width:none;
    font-size:clamp(22px,6.9vw,30px);
  }
  .hm-head p,.hm-copy p,.hm-final p{
    font-size:13px;
    line-height:1.62;
  }
  .hm-stats{
    grid-auto-flow:column;
    grid-auto-columns:minmax(112px,1fr);
    overflow-x:auto;
    overflow-y:hidden;
    padding-bottom:4px;
    scrollbar-width:none;
  }
  .hm-stats::-webkit-scrollbar,.hm-tabs::-webkit-scrollbar{display:none}
  .hm-tabs{width:100%;overflow-x:auto;padding-bottom:2px}
  .hm-showcase .hm-tabs{padding:3px}
  .hm-showcase .hm-panel{overflow:hidden}
  .hm-showcase .hm-grid{
    display:flex;
    flex-wrap:nowrap;
    gap:0;
    overflow-x:auto;
    overflow-y:visible;
    padding:2px 0 2px;
    margin:0;
    scroll-snap-type:x mandatory;
    scroll-padding-left:0;
    overscroll-behavior-x:contain;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    background:#fff;
  }
  .hm-showcase .hm-grid::-webkit-scrollbar{display:none}
  .hm-showcase .hm-product{
    flex:0 0 100%;
    width:100%;
    max-width:100%;
    min-width:100%;
    height:auto;
    scroll-snap-align:start;
    scroll-snap-stop:always;
    grid-template-rows:minmax(198px,218px) 1fr;
    box-shadow:0 4px 10px rgba(15,23,42,.06);
  }
  .hm-showcase-slider-nav{
    display:flex;
    margin-top:4px;
  }
  .hm-showcase .hm-gallery-dots{
    bottom:8px;
    gap:5px;
    padding:4px 7px;
  }
  .hm-actions,.hm-product-actions{display:grid;grid-template-columns:1fr}
  .hm-showcase .hm-product-actions{grid-template-columns:1fr 1fr}
}

@media(max-width:560px){
  .hm-page{gap:16px}
  .hm-card{border-radius:24px}
  .hm-product{grid-template-rows:minmax(210px,230px) 1fr}
  .hm-product-media{height:100%}
  .hm-product-top{flex-direction:column}
  .hm-product-metrics{justify-content:flex-start}
  .hm-showcase .hm-product-top{
    flex-direction:row;
    align-items:center;
    gap:8px;
  }
  .hm-showcase .hm-product-top h3{
    flex:1 1 auto;
    min-width:0;
  }
  .hm-showcase .hm-product{
    flex-basis:100%;
    width:100%;
    min-width:100%;
    max-width:100%;
    grid-template-rows:minmax(188px,206px) 1fr;
  }
  .hm-showcase-slider-nav{
    margin-top:4px;
    gap:8px;
  }
  .hm-showcase .hm-product-metrics{
    justify-content:flex-end;
    flex-wrap:nowrap;
    flex:0 0 auto;
  }
  .hm-product p{min-height:auto}
  .hm-pills{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:7px;
  }
  .hm-pills span{white-space:normal;text-align:center}
  .hm-pills span:first-child{grid-column:1/-1}
  .hm-pills .hm-price-line{white-space:nowrap !important; justify-content:flex-start}
  .hm-showcase .hm-gallery-dot{width:7px;height:7px}
  .hm-showcase .hm-gallery-dot.is-active{width:15px}
  .hm-mini{grid-template-columns:58px minmax(0,1fr)}
  .hm-spot{min-height:240px}
  .hm-stats article{min-height:80px;padding:12px 10px}
  .hm-stats strong{font-size:18px}
  .hm-stats small{font-size:9px}
  .hm-mini-foot{align-items:center}
  .hm-overlay strong{font-size:19px}
  .hm-overlay p{font-size:12px;line-height:1.56}
  .hm-final h2{font-size:clamp(22px,7.4vw,30px)}
}
