/* Instagram / TikTok Management — shared product-line styles */

:root {
  --bg: #050505;
  --surface: #121212;
  --accent: #FF0AAE;
  --accent-glow: #FF4FD8;
  --text: #EAEAEA;
  --text-muted: #9CA3AF;
  --bg-soft: var(--surface);
  --card: var(--surface);
  --card-2: var(--surface);
  --muted: var(--text-muted);
  --line: rgba(255, 255, 255, 0.1);
  --lime: var(--accent);
  --lime-dark: var(--accent-glow);
  --max: 1180px;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.mgmt-page {
  margin: 0;
  background:
    radial-gradient(circle at 88% 3%, rgba(255, 79, 216, 0.08), transparent 24rem),
    radial-gradient(circle at 5% 42%, rgba(255, 10, 174, 0.04), transparent 22rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

.mgmt-page a {
  color: inherit;
}

.mgmt-page button,
.mgmt-page a {
  -webkit-tap-highlight-color: transparent;
}

.mgmt-page .container {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.mgmt-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--lime);
  color: #050505;
  text-decoration: none;
  font-weight: 800;
  transition: 0.25s ease;
  cursor: pointer;
}

.mgmt-page .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(255, 79, 216, 0.18);
}

.mgmt-page .btn.secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.mgmt-page .btn.secondary:hover {
  border-color: rgba(255, 10, 174, 0.55);
}

.mgmt-page .hero {
  padding: 88px 0 72px;
}

.mgmt-page .eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--lime);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.mgmt-page .eyebrow:before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--lime);
}

.mgmt-page h1,
.mgmt-page h2,
.mgmt-page h3,
.mgmt-page p {
  margin-top: 0;
}

.mgmt-page h1 {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 850;
}

.mgmt-page .lime {
  color: var(--lime);
}

.mgmt-page .hero-bottom {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: end;
}

.mgmt-page .lead {
  max-width: 720px;
  color: #9CA3AF;
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 30px;
}

.mgmt-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mgmt-page .hero-note {
  color: var(--muted);
  font-size: 14px;
  max-width: 330px;
}

.mgmt-page .stats {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
}

.mgmt-page .stat {
  padding: 22px 20px;
  min-height: 118px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.mgmt-page .stat:last-child {
  border-right: none;
}

.mgmt-page .stat strong {
  font-size: clamp(26px, 3.6vw, 40px);
  letter-spacing: -0.045em;
}

.mgmt-page .stat span {
  color: var(--muted);
  font-size: 14px;
}

.mgmt-page main > section {
  padding: 96px 0;
}

.mgmt-page main > section.hero {
  padding: 88px 0 72px;
}

.mgmt-page main > section.site-cta {
  padding: 72px 0 96px;
}

.mgmt-page .section-head {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  margin-bottom: 44px;
}

.mgmt-page .section-kicker {
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mgmt-page h2 {
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.055em;
  max-width: 820px;
  margin-bottom: 0;
}

.mgmt-page .deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.mgmt-page .feature {
  min-height: 180px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.mgmt-page .feature strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.mgmt-page .feature p {
  color: var(--muted);
  margin: 0;
}

.mgmt-page .result-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-content: center;
}

.mgmt-page .result-item {
  position: relative;
  padding: 17px 18px 17px 48px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  font-weight: 700;
  color: #EAEAEA;
}

.mgmt-page .result-item:before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(255, 79, 216, 0.45);
  transform: translateY(-50%);
}

.mgmt-page .approach {
  padding: 28px 32px;
  border-radius: 28px;
  border: 1px solid rgba(255, 10, 174, 0.2);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 79, 216, 0.1), transparent 18rem),
    linear-gradient(145deg, #121212, #121212);
}

.mgmt-page .approach h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  max-width: 760px;
  margin: 10px 0 12px;
}

.mgmt-page .approach p {
  margin: 0;
  max-width: 760px;
  color: #EAEAEA;
  font-size: 17px;
  line-height: 1.5;
}

.mgmt-page .mgmt-muted {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  max-width: 720px;
}

.mgmt-page #included,
.mgmt-page #details,
.mgmt-page #approach,
.mgmt-page #works,
.mgmt-page #contact {
  scroll-margin-top: calc(var(--site-header-height, 76px) + 16px);
}

.mgmt-page .site-crosssell {
  margin-top: 20px;
}

.mgmt-page .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.7s ease;
}

.mgmt-page .reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .mgmt-page .hero-bottom,
  .mgmt-page .section-head {
    grid-template-columns: 1fr;
  }

  .mgmt-page .stats {
    grid-template-columns: 1fr 1fr;
  }

  .mgmt-page .stat:nth-child(2) {
    border-right: none;
  }

  .mgmt-page .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .mgmt-page .container {
    width: min(calc(100% - 22px), var(--max));
  }

  .mgmt-page .hero,
  .mgmt-page main > section.hero {
    padding-top: 54px;
  }

  .mgmt-page main > section {
    padding: 72px 0;
  }

  .mgmt-page main > section.site-cta {
    padding: 48px 0 72px;
  }

  .mgmt-page .stats {
    grid-template-columns: 1fr 1fr;
  }

  .mgmt-page .stat {
    min-height: 0;
    padding: 16px 14px;
    border-right: none;
    border-bottom: 1px solid var(--line);
    gap: 8px;
  }

  .mgmt-page .stat:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .mgmt-page .stat:nth-child(3),
  .mgmt-page .stat:nth-child(4) {
    border-bottom: none;
  }

  .mgmt-page .stat strong {
    font-size: 24px;
  }

  .mgmt-page .stat span {
    font-size: 13px;
  }

  .mgmt-page .deliverables {
    grid-template-columns: 1fr;
  }

  .mgmt-page .feature {
    min-height: 0;
    padding: 20px;
  }

  .mgmt-page .feature strong {
    font-size: 24px;
  }

  .mgmt-page .result-list {
    grid-template-columns: 1fr;
  }

  .mgmt-page .result-item {
    padding: 15px 16px 15px 44px;
    font-size: 15px;
  }

  .mgmt-page .result-item:before {
    left: 16px;
  }

  .mgmt-page .approach {
    padding: 20px 18px;
  }

  .mgmt-page .approach h2 {
    font-size: 26px;
  }

  .mgmt-page .approach p {
    font-size: 15px;
  }

  .mgmt-page h1 {
    font-size: 50px;
  }
}
