:root {
  --bg: #f7fbff;
  --surface: #ffffff;
  --surface-2: #eef6ff;
  --text: #0f172a;
  --muted: #5b6b82;
  --blue: #1d63ff;
  --blue-2: #18b8ff;
  --teal: #13d1bf;
  --purple: #7457ff;
  --green: #00a86b;
  --border: rgba(15, 23, 42, .10);
  --shadow: 0 24px 80px rgba(19, 72, 136, .15);
  --shadow-soft: 0 14px 40px rgba(23, 60, 120, .10);
  --radius: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(29, 99, 255, .16), transparent 34rem),
    radial-gradient(circle at 80% 20%, rgba(19, 209, 191, .16), transparent 30rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 40%, #f5f8ff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, .82);
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.nav-wrap {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.03em;
  font-size: 21px;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
}

.brand strong {
  color: var(--green);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 14px;
  color: #334155;
  font-weight: 650;
  font-size: 14px;
  border-radius: 999px;
}

.main-nav a:hover,
.main-nav .nav-cta {
  background: rgba(29, 99, 255, .09);
  color: var(--blue);
}

.main-nav .nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  box-shadow: 0 10px 28px rgba(29, 99, 255, .28);
}

.nav-toggle {
  display: none;
  border: 0;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  box-shadow: var(--shadow-soft);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px;
  background: var(--text);
  border-radius: 99px;
}

.hero {
  padding: 84px 0 54px;
  overflow: hidden;
}

.section-glow {
  position: relative;
}

.section-glow::before {
  content: "";
  position: absolute;
  inset: 80px auto auto 4%;
  width: 260px;
  height: 260px;
  background: linear-gradient(135deg, rgba(29, 99, 255, .22), rgba(116, 87, 255, .14));
  filter: blur(55px);
  z-index: -1;
}

.hero-grid,
.split-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  background: rgba(29, 99, 255, .08);
  border: 1px solid rgba(29, 99, 255, .12);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .01em;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(0, 168, 107, .12);
}

h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0;
  letter-spacing: -.045em;
}

h1 {
  margin-top: 22px;
  font-size: clamp(42px, 6vw, 72px);
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
}

h3 {
  font-size: 22px;
}

.hero-lead,
.section-copy p,
.section-center p,
.cta-card p {
  color: var(--muted);
  font-size: 18px;
}

.hero-lead {
  margin: 22px 0 0;
  max-width: 650px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 16px 32px rgba(29, 99, 255, .28);
}

.btn-secondary {
  background: #fff;
  color: #142033;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.hero-pills,
.mini-features {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pills span,
.mini-features span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(29, 99, 255, .12);
  color: #29415f;
  font-weight: 700;
  font-size: 13px;
}

.hero-visual {
  padding: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(239,246,255,.72));
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 34px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.hero-visual img,
.visual-panel img,
.showcase-window img {
  border-radius: 24px;
}

.stats-strip {
  padding: 22px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(29, 99, 255, .10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.stats-grid div {
  padding: 10px 18px;
  border-right: 1px solid var(--border);
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid strong {
  display: block;
  font-size: 28px;
  letter-spacing: -.04em;
}

.stats-grid span {
  color: var(--muted);
  font-weight: 650;
}

.section {
  padding: 94px 0;
}

.section-copy > h2,
.section-center > h2 {
  margin-top: 16px;
}

.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 0 14px 36px;
  color: #344156;
  font-weight: 650;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 13px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-card,
.step-card,
.faq-item {
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.feature-card .icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(29, 99, 255, .12), rgba(19, 209, 191, .12));
  font-size: 26px;
}

.feature-card p,
.step-card p,
.faq-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.section-center {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 40px;
}

.showcase-window {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  gap: 8px;
  align-items: center;
  height: 46px;
  padding: 0 20px;
  background: linear-gradient(180deg, #fff, #eef5ff);
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.window-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f56;
}

.window-bar span:nth-child(2) {
  background: #ffbd2e;
}

.window-bar span:nth-child(3) {
  background: #27c93f;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card span {
  display: inline-flex;
  font-weight: 900;
  color: var(--blue);
  background: rgba(29, 99, 255, .09);
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 20px;
}

.reverse .split-grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(0, .84fr);
}

.visual-panel {
  background: linear-gradient(135deg, rgba(29, 99, 255, .10), rgba(19, 209, 191, .12));
  border-radius: 34px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.compat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.compat-grid span {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .80);
  border: 1px solid var(--border);
  font-weight: 800;
  color: #24344b;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
}

.faq-grid {
  align-items: start;
}

.accordion {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 22px 24px;
  color: var(--text);
  font-size: 17px;
  font-weight: 850;
  cursor: pointer;
}

.faq-item div {
  display: none;
  padding: 0 24px 22px;
}

.faq-item.is-open div {
  display: block;
}

.cta-section {
  padding: 40px 0 90px;
}

.cta-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  background:
    radial-gradient(circle at 20% 20%, rgba(29, 99, 255, .20), transparent 22rem),
    linear-gradient(135deg, #ffffff, #eef7ff);
  border: 1px solid rgba(29, 99, 255, .12);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.cta-card > img {
  width: 84px;
  height: 84px;
  border-radius: 22px;
}

.site-footer {
  padding: 54px 0 28px;
  background: #0f172a;
  color: #e2e8f0;
}

.footer-grid,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand img {
  box-shadow: none;
}

.site-footer p {
  max-width: 430px;
  color: #94a3b8;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-links a {
  color: #cbd5e1;
  font-weight: 700;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(226, 232, 240, .14);
  color: #94a3b8;
  font-size: 14px;
}

@media (max-width: 980px) {
  .main-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero-grid,
  .split-grid,
  .faq-grid,
  .reverse .split-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-visual {
    transform: none;
  }

  .stats-grid,
  .steps,
  .compat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .footer-grid,
  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .feature-card-grid,
  .stats-grid,
  .steps,
  .compat-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .stats-grid div:last-child {
    border-bottom: 0;
  }

  h1 {
    font-size: 40px;
  }

  .section {
    padding: 70px 0;
  }

  .cta-card {
    padding: 26px;
  }
}

/* Realistic design update: flatter product-site styling and no button shadows */
:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --text: #111827;
  --muted: #5f6b7a;
  --blue: #3858e9;
  --blue-2: #3858e9;
  --blue-dark: #2746d8;
  --green: #0a7f55;
  --border: #dfe5ee;
  --shadow: 0 14px 38px rgba(17, 24, 39, .08);
  --shadow-soft: 0 8px 24px rgba(17, 24, 39, .06);
  --radius: 20px;
  --radius-md: 14px;
}

body {
  background: #f6f8fb !important;
}

.section-glow::before {
  display: none !important;
}

.site-header {
  background: rgba(255, 255, 255, .96) !important;
  border-bottom: 1px solid var(--border) !important;
}

.hero {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%) !important;
}

.eyebrow,
.section-kicker,
.hero-pills span,
.mini-features span,
.main-nav a {
  border-radius: 10px !important;
}

/* Buttons: no shadows, no glossy generated-style gradients */
.btn,
.btn-primary,
.btn-secondary,
.main-nav .nav-cta,
.cta-actions .btn,
.hero-actions .btn {
  box-shadow: none !important;
  border-radius: 10px !important;
  transform: none !important;
  background-image: none !important;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.main-nav .nav-cta:hover {
  box-shadow: none !important;
  transform: none !important;
}

.btn-primary,
.main-nav .nav-cta {
  background: #3858e9 !important;
  border: 1px solid #3858e9 !important;
  color: #fff !important;
}

.btn-primary:hover,
.main-nav .nav-cta:hover {
  background: #2746d8 !important;
  border-color: #2746d8 !important;
}

.btn-secondary {
  background: #fff !important;
  border: 1px solid #dfe5ee !important;
  color: #142033 !important;
}

.btn-secondary:hover {
  background: #f8fafc !important;
  border-color: #cbd5e1 !important;
}

.hero-visual {
  transform: none !important;
  background: #fff !important;
  border: 1px solid #dfe5ee !important;
  border-radius: 22px !important;
  box-shadow: 0 14px 38px rgba(17, 24, 39, .08) !important;
}

.hero-visual img,
.visual-panel img,
.showcase-window img {
  border-radius: 16px !important;
}

.stats-grid,
.compat-grid span,
.feature-card,
.step-card,
.faq-item {
  background: #fff !important;
  border: 1px solid #dfe5ee !important;
  box-shadow: none !important;
}

.cta-card {
  background: #fff !important;
  border: 1px solid #dfe5ee !important;
  border-radius: 22px !important;
  box-shadow: 0 8px 24px rgba(17, 24, 39, .06) !important;
}

.visual-panel,
.showcase-window {
  background: #fff !important;
  border: 1px solid #dfe5ee !important;
  border-radius: 22px !important;
  box-shadow: 0 14px 38px rgba(17, 24, 39, .08) !important;
}

.window-bar {
  background: #f8fafc !important;
  border-bottom: 1px solid #dfe5ee !important;
}

.check-list li::before {
  background: #eef2ff !important;
  color: #3858e9 !important;
  border: 1px solid #dbe3ff !important;
}

.feature-card .icon {
  width: 52px !important;
  height: 52px !important;
  position: relative !important;
  display: grid !important;
  place-items: center !important;
  margin-bottom: 18px !important;
  border-radius: 14px !important;
  background: #f8fafc !important;
  border: 1px solid #dfe5ee !important;
  font-size: 0 !important;
}

.feature-card .icon::before,
.feature-card .icon::after {
  content: "" !important;
  position: absolute !important;
  display: block !important;
}

.icon-folder::before {
  width: 26px;
  height: 18px;
  border: 2px solid #3858e9;
  border-radius: 4px;
  bottom: 14px;
}

.icon-folder::after {
  width: 14px;
  height: 6px;
  border: 2px solid #3858e9;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  top: 14px;
  left: 13px;
}

.icon-search::before {
  width: 18px;
  height: 18px;
  border: 2px solid #3858e9;
  border-radius: 50%;
  top: 13px;
  left: 13px;
}

.icon-search::after {
  width: 12px;
  height: 2px;
  background: #3858e9;
  transform: rotate(45deg);
  right: 12px;
  bottom: 14px;
  border-radius: 99px;
}

.icon-video::before {
  width: 24px;
  height: 18px;
  border: 2px solid #3858e9;
  border-radius: 4px;
  left: 12px;
  top: 16px;
}

.icon-video::after {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #3858e9;
  right: 10px;
  top: 19px;
}

.icon-doc::before {
  width: 20px;
  height: 26px;
  border: 2px solid #3858e9;
  border-radius: 4px;
  top: 11px;
}

.icon-doc::after {
  width: 12px;
  height: 2px;
  background: #3858e9;
  top: 24px;
  left: 20px;
  box-shadow: 0 6px 0 #3858e9;
}

/* MediaPilot purchase block */
.purchase-section {
  padding: 46px 0 96px;
}

.purchase-card {
  background: #f3f5f8;
  border: 1px solid #edf0f4;
  border-radius: 30px;
  min-height: 410px;
  display: grid;
  place-items: center;
  padding: 58px 24px;
}

.purchase-panel {
  width: min(100%, 420px);
  text-align: center;
}

.purchase-logo {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  margin: 0 auto 14px;
}

.purchase-panel .section-kicker {
  margin-bottom: 14px;
}

.purchase-panel h2 {
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -.02em;
  margin: 0;
}

.purchase-intro {
  margin: 10px auto 24px;
  max-width: 350px;
  color: #5f6b7a;
  font-size: 14px;
  line-height: 1.55;
}

.purchase-tabs {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 18px;
}

.purchase-tab {
  border: 0;
  min-height: 47px;
  padding: 0 18px;
  background: #e6edf5;
  color: #283447;
  font: 800 15px/1 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: default;
  border-radius: 5px;
}

.purchase-tab.is-active {
  background: #2f8ff2;
  color: #fff;
}

.purchase-option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  background: transparent;
  border-radius: 12px;
  padding: 12px 0;
  cursor: pointer;
}

.purchase-option-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.purchase-option input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #2f8ff2;
  flex: 0 0 auto;
}

.purchase-option strong {
  display: block;
  color: #111827;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2;
}

.purchase-option small {
  display: block;
  margin-top: 3px;
  color: #5f6b7a;
  font-size: 12px;
  line-height: 1.35;
}

.purchase-price {
  color: #111827;
  font-size: 15px;
  white-space: nowrap;
}

.purchase-includes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 18px;
}

.purchase-includes span {
  background: #fff;
  border: 1px solid #dfe5ee;
  border-radius: 999px;
  color: #344156;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
}

.paynowjih32 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 282px;
  margin: 0 auto;
  box-sizing: border-box;
}

.pay-now-btn {
  position: relative;
  width: 100%;
  min-height: 49px;
  padding: 12px 44px 12px 18px;
  border: 0;
  border-radius: 5px;
  background: #333333;
  color: #fff;
  font: 400 16px/1.1 system-ui, -apple-system, Roboto, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  cursor: pointer;
  transition: background-color .18s ease, transform .18s ease;
}

.pay-now-btn:hover {
  background: #222222;
}

.pay-now-btn:active {
  transform: translateY(1px);
}

.pay-now-btn:focus-visible {
  outline: 3px solid rgba(47, 143, 242, .28);
  outline-offset: 3px;
}

.paystripelogo {
  height: 15px;
  width: auto;
  vertical-align: middle;
  transform: scale(1.28) rotate(32deg);
  position: absolute;
  bottom: 16px;
  right: 12px;
}

#totalamounttopay {
  letter-spacing: .2px;
}

.payment-summary {
  min-height: 22px;
  margin: 12px 0 0;
  color: #48556a;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
}

.payment-summary i {
  color: #263247;
}

@media (max-width: 620px) {
  .purchase-section {
    padding: 34px 0 70px;
  }

  .purchase-card {
    min-height: auto;
    padding: 34px 18px;
    border-radius: 22px;
  }

  .purchase-panel {
    width: 100%;
  }

  .purchase-tabs,
  .purchase-tab,
  .paynowjih32 {
    width: 100%;
    max-width: 100%;
  }

  .purchase-option {
    align-items: flex-start;
  }

  .purchase-price {
    padding-top: 1px;
  }
}
