/* ====================================================================
   Cloudemy — .NET Development Page (dot-net.css)
   CSS extracted from web-development.css, scoped to the .NET page only.
   ==================================================================== */

/* ===== HERO ===== */
.web-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.web-hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.web-hero-blob--a {
  top: -80px;
  right: -60px;
  width: 440px;
  height: 400px;
  filter: blur(64px);
  background: radial-gradient(
    circle,
    rgba(109, 93, 252, 0.16),
    transparent 65%
  );
  animation: svc-drift 20s ease-in-out infinite;
}
.web-hero-blob--b {
  bottom: -40px;
  left: -40px;
  width: 360px;
  height: 320px;
  filter: blur(60px);
  background: radial-gradient(
    circle,
    rgba(91, 141, 239, 0.13),
    transparent 65%
  );
  animation: svc-drift 24s ease-in-out infinite reverse;
}
.web-hero-in {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 80px;
}
.web-hero-copy h1 {
  font-size: clamp(30px, 3.6vw, 54px);
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-bottom: 20px;
}
.web-hero-sub {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 28px;
}
.web-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.web-hero-visual {
  position: relative;
}
.web-browser-wrap {
  position: relative;
}

/* ===== TECH CARD GRID ===== */
.web-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.web-tech-grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.web-tech-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  transition: 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.web-tech-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-2);
  box-shadow: 0 24px 48px -24px rgba(60, 40, 120, 0.18);
}
.web-tech-card--featured {
  border-color: rgba(109, 93, 252, 0.3);
  background: linear-gradient(
    160deg,
    rgba(109, 93, 252, 0.03),
    rgba(91, 141, 239, 0.03)
  );
}
.web-tech-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.web-tech-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.web-tech-logo--react {
  background: rgba(97, 218, 251, 0.12);
  border: 1px solid rgba(97, 218, 251, 0.2);
}
.web-tech-logo--next {
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.web-tech-head h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: -0.02em;
}
.web-tech-when {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
}
.web-tech-card > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.web-tech-use {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.web-tech-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg-soft);
  border: 1px solid var(--line-2);
  padding: 3px 9px;
  border-radius: 999px;
}

/* ===== FEATURED BADGE ===== */
.app-platform-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--v1), var(--v2));
  color: white;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.mnt-platform-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(109, 93, 252, 0.1);
  border: 1px solid rgba(109, 93, 252, 0.2);
}
.mnt-platform-ico svg {
  width: 22px;
  height: 22px;
  stroke: var(--v1);
}
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .web-hero-in {
    grid-template-columns: 1fr;
    padding-top: 116px;
  }
  .web-hero-visual {
    display: none;
  }
  .web-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .web-hero-in {
    padding-top: 104px;
    padding-bottom: 56px;
  }
   .web-tech-grid, .web-tech-grid2 {
    grid-template-columns: 1fr;
  }
}
