:root {
  --section-space: clamp(4rem, 8vw, 7rem);
  --shadow-soft: 0 18px 45px rgba(26, 49, 62, 0.1);
  --square-pattern: url(../_images/square-lines.png);
}

section#m365-hero {
  background-image: url(../_images/main-pic-m365-blue.webp);
  background-position: center;
}
.section-pattern {
  background-color: #fff;
  background-image: var(--square-pattern);
}

.section-soft {
  background: var(--surface-light);
}

.section-dark {
  color: #fff;
  background:
    linear-gradient(rgba(47, 48, 54, 0.96), rgba(47, 48, 54, 0.96)),
    var(--square-pattern);
}

.section-gradient {
  color: #fff;
  background: linear-gradient(
    122deg,
    var(--blue-dark) 28%,
    var(--blue-light) 100%
  );
}

.section-kicker {
  color: var(--blue-medium);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-copy {
  max-width: 770px;
  margin-inline: auto;
  color: #5f6268;
}

.feature-card {
  height: 100%;
  padding: 1.75rem;
  background: #fff;
  border-top: 3px solid var(--blue-basic);
  border-radius: 0 0 1rem 1rem;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(26, 49, 62, 0.14);
}

.icon-frame {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1.1rem;
  color: var(--blue-dark);
  background: var(--surface-soft);
  border-radius: 0.8rem;
}

.icon-frame svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card p {
  margin-bottom: 0;
  color: #666a70;
}

.intro-panel {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: #fff;
  border-left: 6px solid var(--blue-basic);
  box-shadow: var(--shadow-soft);
}
.visual {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}
.glass {
  width: 100%;
  /* width: min(100%, 480px); */
  border-radius: 30px;
  background: #fff;
  /* background: rgba(255, 255, 255, 0.74); */
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 44px 34px;
  backdrop-filter: blur(14px);
  position: relative;
}
.ms-logo {
  display: grid;
  grid-template-columns: repeat(2, 34px);
  grid-template-rows: repeat(2, 34px);
  gap: 5px;
  width: 73px;
}
.ms-logo i:nth-child(1) {
  background: #f25022;
}
.ms-logo i:nth-child(2) {
  background: #7fba00;
}
.ms-logo i:nth-child(3) {
  background: #00a4ef;
}
.ms-logo i:nth-child(4) {
  background: #ffb900;
}
.glass h2 {
  margin: 0 0 5px;
  color: var(--ntit-dark);
  font-size: 26px;
  letter-spacing: -0.025em;
}
.glass p {
  margin: 0;
  color: var(--muted);
}
.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  margin-top: 28px;
}
.app {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #e4edf4;
  background: #fff;
  border-radius: 12px;
  padding: 11px 10px;
  font-weight: 700;
  font-size: 12px;
  color: #40566a;
}
@media (min-width: 600px) and (max-width: 991px) {
  .app-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .glass {
    padding: 12px;
  }
  .app-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .app-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.app b {
  width: 25px;
  height: 25px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
}
.word b {
  background: #185abd;
}
.excel b {
  background: #107c41;
}
.powerpoint b {
  background: #c43e1c;
}
.outlook b {
  background: #0078d4;
}
.onedrive b {
  background: #1687d9;
}
.teams b {
  background: #6264a7;
}
.float-badge {
  position: absolute;
  right: -17px;
  top: 56px;
  padding: 12px 15px;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 13px 30px rgba(14, 40, 65, 0.15);
  font-size: 12px;
  color: #4d6375;
  font-weight: 700;
}
/* .office-visual {
  position: relative;
  min-height: 390px;
  padding: 2rem;
  overflow: hidden;
  color: #fff;

  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(104, 212, 255, 0.8),
      transparent 25%
    ),
    linear-gradient(145deg, var(--blue-dark), #0594e1 65%, var(--blue-medium));
  border-radius: 0.25rem;
  box-shadow: var(--shadow-soft);
} */

/* .office-visual::before,
    .office-visual::after {
      content: "";
      position: absolute;
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 50%;
    }

    .office-visual::before {
      width: 360px;
      height: 360px;
      right: -145px;
      bottom: -130px;
    }

    .office-visual::after {
      width: 250px;
      height: 250px;
      right: -85px;
      bottom: -75px;
    } */

/* .visual-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      max-width: 390px;
      margin-top: 1.75rem;
    } */

.visual-box {
  min-height: 112px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(7px);
}

/* .visual-box:nth-child(2) {
  transform: translateY(1.5rem);
}

.visual-box:nth-child(3) {
  transform: translateY(-0.5rem);
} */

.visual-box strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.8rem;
}

.check-list {
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 0.75rem;
  padding-left: 1.8rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-basic);
  font-family: var(--WorkSansBold);
  font-weight: 700;
}

.license-card {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  color: #fff;
  background:
    radial-gradient(
      circle at 95% 5%,
      rgba(104, 212, 255, 0.45),
      transparent 28%
    ),
    linear-gradient(
      122deg,
      var(--blue-dark),
      var(--blue-medium) 55%,
      var(--blue-basic)
    );
  box-shadow: 0 24px 60px rgba(15, 121, 176, 0.25);
}

.license-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -45px;
  bottom: -45px;
  border: 20px solid rgba(255, 255, 255, 0.09);
  transform: rotate(15deg);
}

.price-label {
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  margin: 0.35rem 0 1rem;
  font-family: var(--WorkSansBold);
  font-size: clamp(1.65rem, 4vw, 2rem);
  line-height: 1.18;
}

.license-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.license-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.9rem;
}

.process {
  position: relative;
  display: grid;
  gap: 1rem;
  padding-left: 0;
  list-style: none;
  counter-reset: process;
}

.process::before {
  content: "";
  position: absolute;
  top: 2rem;
  bottom: 2rem;
  left: 27px;
  width: 3px;
  background: linear-gradient(var(--blue-light), var(--blue-dark));
}

.process-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  align-items: start;
  counter-increment: process;
}

.process-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #fff;
  background: var(--blue-basic);
  border: 6px solid #fff;
  border-radius: 0.35rem;
  box-shadow: 0 0 0 1px rgba(53, 183, 234, 0.2);
  font-family: var(--WorkSansBold);
}

.process-number::before {
  content: counter(process);
}

.process-content {
  padding: 0.7rem 0 1.7rem;
}

.process-content p {
  margin-bottom: 0;
  color: #666a70;
}

.service-note {
  height: 100%;
  padding: 3rem 2rem;
  color: #fff;
  background: var(--gray-dark);
}

.service-note .icon-frame {
  color: #fff;
  background: rgba(53, 183, 234, 0.15);
}

.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(12deg);
}

.cta-band::before {
  width: 160px;
  height: 160px;
  top: -70px;
  left: 6%;
}

.cta-band::after {
  width: 220px;
  height: 220px;
  right: 4%;
  bottom: -130px;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}
