:root {
  --msv-text: #162033;
  --msv-muted: #6e7a90;
  --msv-line: #dfe8f3;
  --msv-panel: #ffffff;
  --msv-panel-alt: #f7fafe;
  --msv-shadow: 0 18px 48px rgba(18, 37, 63, 0.08);
  --msv-radius-xl: 30px;
  --msv-radius-lg: 22px;
  --msv-green: #12b76a;
  --msv-blue: #2f80ff;
  --msv-purple: #8a4dff;
  --msv-orange: #ff8a1f;
}

* { box-sizing: border-box; }

.msv-page-body {
  background: #ffffff;
  color: var(--msv-text);
  font-family: 'Outfit', sans-serif;
}

.msv-page {
  width: 100%;
  overflow-x: clip;
  padding-bottom: 48px;
}

.msv-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.msv-hero {
  padding: 34px 0 12px;
}

.msv-hero__wrap {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid #e0ebf5;
  border-radius: 36px;
  padding: 42px 44px;
  box-shadow: var(--msv-shadow);
  position: relative;
  overflow: hidden;
}

.msv-hero__wrap::before,
.msv-hero__wrap::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: .18;
}

.msv-hero__wrap::before {
  width: 220px;
  height: 220px;
  background: rgba(47, 128, 255, .55);
  top: -60px;
  right: -30px;
}

.msv-hero__wrap::after {
  width: 180px;
  height: 180px;
  background: rgba(138, 77, 255, .45);
  bottom: -60px;
  left: -40px;
}

.msv-kicker,
.msv-section-head__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #0f1f34;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}

.msv-hero__copy {
  position: relative;
  z-index: 1;
}

.msv-hero__copy h1,
.msv-section-head h2 {
  margin: 18px 0 14px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
}

.msv-hero__copy h1 span,
.msv-section-head--center h2 span {
  color: var(--msv-purple);
}

.msv-hero__copy p,
.msv-section-head p {
  margin: 0;
  max-width: 920px;
  color: var(--msv-text);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.35;
}

.msv-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.msv-chip-row span {
  padding: 12px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #deebf8;
  box-shadow: 0 10px 24px rgba(18, 37, 63, 0.06);
  color: var(--msv-text);
  font-size: 15px;
  font-weight: 700;
}

.msv-highlights,
.msv-pricing,
.msv-bottom-strip {
  padding-top: 28px;
}

.msv-section-head {
  margin-bottom: 24px;
}

.msv-section-head h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.msv-section-head p {
  font-size: 19px;
  color: var(--msv-muted);
}

.msv-section-head--center {
  text-align: center;
}

.msv-section-head--center .msv-section-head__kicker {
  margin-inline: auto;
}

.msv-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.msv-feature-card {
  border-radius: var(--msv-radius-xl);
  border: 1px solid var(--msv-line);
  background: #ffffff;
  box-shadow: var(--msv-shadow);
  overflow: hidden;
  min-height: 530px;
  display: flex;
  flex-direction: column;
}

.msv-feature-card__visual {
  height: 240px;
  padding: 18px;
  position: relative;
  background: linear-gradient(180deg, #fbfdff 0%, #eef5fc 100%);
}

.msv-feature-card__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.msv-feature-card__badge {
  align-self: flex-start;
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  background: #334155;
  padding: 8px 12px;
  border-radius: 999px;
}

.msv-feature-card h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.msv-feature-card p {
  margin: 0;
  color: var(--msv-muted);
  font-size: 19px;
  line-height: 1.42;
}

.msv-slogan-stack {
  position: relative;
  margin-top: auto;
  min-height: 58px;
  border-radius: 18px;
  background: #f5f8fc;
  overflow: hidden;
}

.msv-slogan {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 19px;
  font-weight: 800;
  padding: 10px 14px;
  opacity: 0;
  transform: translateY(100%);
  transition: transform .5s ease, opacity .35s ease;
}

.msv-slogan.is-active {
  opacity: 1;
  transform: translateY(0);
}

.msv-feature-card--dns .msv-slogan { color: var(--msv-orange); }
.msv-feature-card--set .msv-slogan { color: var(--msv-purple); }
.msv-feature-card--tracking .msv-slogan { color: var(--msv-green); }
.msv-feature-card--excel .msv-slogan { color: var(--msv-blue); }

.msv-art {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.msv-art--dns {
  background: radial-gradient(circle at 50% 46%, rgba(255, 176, 76, .42), rgba(255, 255, 255, 0) 48%), linear-gradient(180deg, #fff8ef 0%, #fff3e2 100%);
}

.msv-orb {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: 126px;
  height: 126px;
  border-radius: 50%;
  border: 5px solid #b38cff;
  box-shadow: inset 0 0 0 6px rgba(255,255,255,.55);
}

.msv-orb::before,
.msv-orb::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 4px solid #b38cff;
}

.msv-orb::before { width: 100%; height: 45%; top: 26%; }
.msv-orb::after { width: 45%; height: 100%; left: 26%; }

.msv-ring {
  position: absolute;
  left: 50%;
  top: 62%;
  transform: translateX(-50%);
  width: 180px;
  height: 42px;
  border: 4px solid #ff972d;
  border-radius: 50%;
}

.msv-chip {
  position: absolute;
  right: 18px;
  bottom: 30px;
  padding: 12px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff912c, #d76810);
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}

.msv-art--mailset {
  background: radial-gradient(circle at center, rgba(182, 136, 255, .28), transparent 50%), linear-gradient(180deg, #faf5ff 0%, #f3ebff 100%);
}

.msv-env {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 110px;
  border-radius: 24px;
  background: linear-gradient(135deg, #bc91ff, #8450ff);
  box-shadow: 0 20px 36px rgba(138, 77, 255, .22);
}

.msv-env::before,
.msv-env::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: 24px;
}

.msv-env::before {
  clip-path: polygon(0 0, 50% 56%, 100% 0, 100% 14%, 50% 68%, 0 14%);
  background: rgba(255,255,255,.75);
}

.msv-user {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 12px 24px rgba(74, 53, 120, .12);
}

.msv-user::before,
.msv-user::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #8d5dff;
}

.msv-user::before { top: 8px; width: 12px; height: 12px; border-radius: 50%; }
.msv-user::after { top: 22px; width: 22px; height: 8px; border-radius: 999px; }
.msv-user--1 { left: 18px; top: 24px; }
.msv-user--2 { right: 18px; top: 24px; }
.msv-user--3 { left: 18px; bottom: 24px; }
.msv-user--4 { right: 18px; bottom: 24px; }

.msv-art--tracking {
  background: radial-gradient(circle at center, rgba(18, 183, 106, .22), transparent 48%), linear-gradient(180deg, #eefbf4 0%, #e4f7ed 100%);
}

.msv-chart {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 30px;
  height: 92px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.75));
  box-shadow: inset 0 0 0 1px rgba(18, 183, 106, .14);
}

.msv-chart::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 48px;
  background: linear-gradient(135deg, transparent 0 5%, #12b76a 5% 12%, transparent 12% 20%, #12b76a 20% 28%, transparent 28% 38%, #12b76a 38% 48%, transparent 48% 58%, #12b76a 58% 70%, transparent 70%);
  clip-path: polygon(0 72%, 12% 62%, 24% 65%, 36% 32%, 50% 50%, 66% 18%, 82% 42%, 100% 10%, 100% 100%, 0 100%);
  opacity: .9;
}

.msv-stat {
  position: absolute;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
}

.msv-stat--good { left: 18px; top: 22px; background: linear-gradient(135deg, #15c273, #0e9657); }
.msv-stat--warn { right: 18px; top: 34px; background: linear-gradient(135deg, #2f80ff, #1059c7); }

.msv-art--excel {
  background: radial-gradient(circle at center, rgba(47, 128, 255, .18), transparent 48%), linear-gradient(180deg, #f2f9ff 0%, #eaf5ff 100%);
}

.msv-sheet {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 134px;
  height: 162px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fdff, #dff1ff);
  box-shadow: 0 18px 34px rgba(47, 128, 255, .16);
}

.msv-sheet::before {
  content: "";
  position: absolute;
  inset: 22px 18px 18px;
  background:
    linear-gradient(#bddcff 0 0) 0 0/100% 3px no-repeat,
    linear-gradient(#d2e8ff 0 0) 0 20%/100% 3px no-repeat,
    linear-gradient(#d2e8ff 0 0) 0 40%/100% 3px no-repeat,
    linear-gradient(#d2e8ff 0 0) 0 60%/100% 3px no-repeat,
    linear-gradient(#d2e8ff 0 0) 0 80%/100% 3px no-repeat,
    linear-gradient(90deg, #d2e8ff 0 0) 25% 0/3px 100% no-repeat,
    linear-gradient(90deg, #d2e8ff 0 0) 55% 0/3px 100% no-repeat;
}

.msv-xls,
.msv-plus {
  position: absolute;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
}

.msv-xls {
  left: 28px;
  top: 34px;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0ea55c, #0a7b43);
  font-size: 34px;
}

.msv-plus {
  right: 30px;
  bottom: 34px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #55c4ff, #2b93df);
  font-size: 34px;
}

.msv-billing-toggle {
  width: fit-content;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: #f1f5fb;
  border: 1px solid #dfe8f3;
}

.msv-billing-toggle button {
  min-width: 128px;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--msv-text);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.msv-billing-toggle button.is-active {
  background: linear-gradient(90deg, var(--msv-purple), #b56dff);
  color: #fff;
  box-shadow: 0 12px 28px rgba(138, 77, 255, .22);
}

.msv-billing-toggle__save {
  padding: 0 14px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #e8fff1;
  color: #0c9c56;
  font-weight: 800;
}

.msv-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.msv-package-card {
  position: relative;
  background: var(--msv-panel);
  border: 1px solid var(--msv-line);
  border-radius: var(--msv-radius-xl);
  box-shadow: var(--msv-shadow);
  padding: 30px 28px;
}

.msv-package-card.is-highlighted {
  border-color: rgba(138, 77, 255, .42);
  box-shadow: 0 24px 56px rgba(138, 77, 255, .14);
}

.msv-package-card__badge {
  position: absolute;
  left: 50%;
  top: -13px;
  transform: translateX(-50%);
  padding: 9px 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, var(--msv-purple), #b56dff);
  font-size: 14px;
  font-weight: 800;
}

.msv-package-card__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.msv-package-card__icon {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 30px;
  background: #eef5ff;
}

.msv-package-card--business .msv-package-card__icon { background: #f3ebff; }
.msv-package-card--pro .msv-package-card__icon { background: #fff2e6; }

.msv-package-card__titlebox h3 {
  margin: 0 0 6px;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.msv-package-card__titlebox p {
  margin: 0;
  color: var(--msv-muted);
  font-size: 18px;
  line-height: 1.4;
}

.msv-price-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 28px;
}

.msv-price-row strong {
  font-size: 58px;
  line-height: .95;
  letter-spacing: -0.04em;
}

.msv-package-card--starter .msv-price-row strong { color: #286fff; }
.msv-package-card--business .msv-price-row strong { color: var(--msv-purple); }
.msv-package-card--pro .msv-price-row strong { color: var(--msv-orange); }

.msv-price-row span {
  font-size: 28px;
  color: #455167;
  padding-bottom: 6px;
}

.msv-price-meta {
  margin-top: 10px;
  min-height: 24px;
  color: var(--msv-muted);
  font-size: 16px;
}

.msv-feature-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
}

.msv-feature-list li {
  position: relative;
  padding-left: 26px;
  font-size: 18px;
  color: var(--msv-text);
}

.msv-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
}

.msv-package-card--starter .msv-feature-list li::before { color: #1dbb67; }
.msv-package-card--business .msv-feature-list li::before { color: var(--msv-purple); }
.msv-package-card--pro .msv-feature-list li::before { color: var(--msv-orange); }

.msv-package-card__button {
  width: 100%;
  min-height: 62px;
  margin-top: 28px;
  border: 0;
  border-radius: 18px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
}

.msv-package-card--starter .msv-package-card__button { background: linear-gradient(90deg, #2f80ff, #235fe8); }
.msv-package-card--business .msv-package-card__button { background: linear-gradient(90deg, var(--msv-purple), #a452ff); }
.msv-package-card--pro .msv-package-card__button { background: linear-gradient(90deg, #ffb51f, #ff6a00); }

.msv-bottom-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.msv-mini-card {
  border-radius: 24px;
  border: 1px solid var(--msv-line);
  background: var(--msv-panel-alt);
  padding: 22px;
  box-shadow: var(--msv-shadow);
}

.msv-mini-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
}

.msv-mini-card span {
  color: var(--msv-muted);
  font-size: 17px;
  line-height: 1.4;
}

@media (max-width: 1180px) {
  .msv-feature-grid,
  .msv-package-grid,
  .msv-bottom-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .msv-shell {
    width: min(100% - 20px, 1280px);
  }

  .msv-hero__wrap {
    padding: 24px 18px;
    border-radius: 26px;
  }

  .msv-hero__copy h1,
  .msv-section-head h2 {
    font-size: 38px;
  }

  .msv-hero__copy p,
  .msv-section-head p {
    font-size: 18px;
  }

  .msv-feature-grid,
  .msv-package-grid,
  .msv-bottom-strip__grid {
    grid-template-columns: 1fr;
  }

  .msv-feature-card {
    min-height: auto;
  }

  .msv-feature-card__visual {
    height: 220px;
  }

  .msv-feature-card h3 {
    font-size: 30px;
  }

  .msv-feature-card p,
  .msv-slogan,
  .msv-feature-list li,
  .msv-package-card__titlebox p,
  .msv-mini-card span {
    font-size: 16px;
  }

  .msv-package-card {
    padding: 24px 18px;
  }

  .msv-package-card__titlebox h3 {
    font-size: 34px;
  }

  .msv-price-row strong {
    font-size: 46px;
  }

  .msv-price-row span {
    font-size: 24px;
  }

  .msv-package-card__button {
    min-height: 56px;
    font-size: 20px;
  }

  .msv-billing-toggle {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .msv-billing-toggle__save {
    width: 100%;
    justify-content: center;
  }
}

/* Mailserver sayfa aşağı kaydırma */
.msv-page {
    margin-top: 170px;
}

/* Mobil */
@media (max-width: 768px) {
    .msv-page {
        margin-top: 150px;
    }
}