/* ============================================================
   Sellvia - Pricing
   Design system cloned from sellvia.com/social-media-marketing/
   (Arial base, amber CTA, dark hero + dark final CTA, rounded cards)
   All rules are scoped under #ml-pricing so the block can be
   dropped into the theme as css/pages/pricing.css
   ============================================================ */
@keyframes hpShine { 
  0% {
    transform: translateX(-140%);
  }
  40%, to {
    transform: translateX(260%);
  }
}
@keyframes ctaGlow {
  0%, to {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.18);
    filter: brightness(1.2);
  }
}
#ml-pricing {
  --c-black:#000;
  --c-near:#1a1e25;
  --c-gray1:#424245;
  --c-gray2:#5b5b63;
  --c-gray3:#86868b;
  --c-gray4:#d2d2d7;
  --c-gray5:#e8e8ed;
  --c-lightbg:#f6f6f9;
  --c-white:#fff;
  --c-dark:#0f0c09;
  --c-blue:#0085ff;
  --c-amber:#ffb200;
  --c-amber-d:#e6a100;
  --c-green:#30d158;
  --font:Arial,Helvetica,"Helvetica Neue",sans-serif;
  --ease:cubic-bezier(.25,.1,.25,1);
  --ease-out:cubic-bezier(0,0,.2,1);
  --ease-spring:cubic-bezier(.34,1.56,.64,1);
  --max:1055px;
  --max-wide:1316px;
  font-family: var(--font);
  color: var(--c-near);
  background: #fff;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

#ml-pricing, #ml-pricing * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#ml-pricing a {
  color: inherit;
  text-decoration: none;
}

#ml-pricing button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: 0 0;
}

#ml-pricing img, #ml-pricing svg {
  display: block;
  max-width: 100%;
}

#ml-pricing h1, #ml-pricing h2, #ml-pricing h3 {
  letter-spacing: normal;
  text-wrap: balance;
}

#ml-pricing .sec-in {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 28px;
}

#ml-pricing .sec-in.narrow {
  max-width: var(--max);
}

#ml-pricing .sec-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-amber);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

#ml-pricing .sec-body {
  font-size: 17px;
  color: var(--c-gray2);
  line-height: 1.6;
}

/* --- centred section head, built on the theme heading scale --- */
#ml-pricing .sec-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 52px;
}

#ml-pricing .sec-head h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.22;
  color: var(--c-near);
}

#ml-pricing .sec-head h2 .accent, #ml-pricing .final-in h2 .accent, #ml-pricing .hp-headline .accent {
  color: var(--c-amber);
}

#ml-pricing .sec-head .lead {
  font-size: 19px;
  color: var(--c-gray2);
  line-height: 1.55;
  margin-top: 16px;
}

/* --- buttons --- */
#ml-pricing .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 15px 35px;
  min-width: 300px;
  transition: background-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: 0;
  white-space: nowrap;
}

#ml-pricing .btn, #ml-pricing .btn-filled {
  background: var(--c-amber);
  color: #fff;
}

#ml-pricing .btn-filled:hover, #ml-pricing .btn:hover {
  background: var(--c-amber-d);
}

#ml-pricing .btn-sm {
  font-size: 15px;
  line-height: 24px;
  padding: 11px 26px;
  min-width: 0;
}

/* --- scroll reveal --- */
#ml-pricing.js .appear {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}

#ml-pricing .appear.is-visible {
  opacity: 1;
  transform: none;
}

#ml-pricing .appear.d1 {
  transition-delay: 0.08s;
}

#ml-pricing .appear.d2 {
  transition-delay: 0.16s;
}

#ml-pricing .appear.d3 {
  transition-delay: 0.24s;
}

#ml-pricing .appear.d4 {
  transition-delay: 0.32s;
}

#ml-pricing .appear.d5 {
  transition-delay: 0.4s;
}

#ml-pricing .appear.d6 {
  transition-delay: 0.48s;
}

@media (prefers-reduced-motion: reduce) {
  #ml-pricing .appear {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  #ml-pricing * {
    animation: none !important;
  }
}
/* ============================ HERO ============================ */
#ml-pricing .hero {
  --hp-ink:#fff;
  --hp-ink-2:rgba(255,255,255,.72);
  --hp-muted:rgba(255,255,255,.5);
  position: relative;
  color: var(--hp-ink);
  overflow: hidden;
  isolation: isolate;
  background: var(--c-dark);
}

#ml-pricing .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(900px 640px at 50% 6%, rgba(255, 178, 0, 0.13), rgba(255, 178, 0, 0.05) 44%, rgba(255, 178, 0, 0.015) 62%, transparent 78%);
}

#ml-pricing .hp-shell {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 110px 28px;
  text-align: center;
}

#ml-pricing .hp-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}

#ml-pricing .hp-headline {
  font-weight: 700;
  font-size: 52px;
  line-height: 1.14;
  color: #fff;
  margin: 0 auto 22px;
  max-width: 17ch;
}

#ml-pricing .hp-sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--hp-ink-2);
  max-width: 600px;
  margin: 0 auto 34px;
  font-weight: 400;
}

#ml-pricing .hp-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

#ml-pricing .hp-cta-primary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--c-amber);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 40px;
  text-transform: uppercase;
  padding: 15px 35px;
  min-width: 300px;
  border-radius: 5px;
  transition: background-color 0.2s;
}

#ml-pricing .hp-cta-primary:hover {
  background: var(--c-amber-d);
}

#ml-pricing .hp-cta-primary::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 45%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
  transform: translateX(-140%);
  animation: hpShine 5s ease-in-out infinite;
  will-change: transform;
}

#ml-pricing .hp-fine {
  font-size: 14px;
  color: var(--hp-muted);
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ======================= PLAN COMPARISON ======================= */
#ml-pricing .plans-sec {
  background: #fff;
  padding: 95px 0;
  scroll-margin-top: 24px;
}

#ml-pricing .table-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 6px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

#ml-pricing .table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#ml-pricing table.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

#ml-pricing table.compare th, #ml-pricing table.compare td {
  padding: 17px 22px;
  text-align: center;
  border-bottom: 1px solid var(--c-gray5);
  font-size: 16px;
  vertical-align: middle;
}

#ml-pricing table.compare thead th {
  background: #fff;
  border-bottom: 1px solid var(--c-gray4);
  padding: 46px 22px 26px;
  position: relative;
  vertical-align: top;
}

#ml-pricing table.compare th.feature, #ml-pricing table.compare td.feature {
  text-align: left;
  font-weight: 700;
  color: var(--c-near);
  width: 34%;
}

#ml-pricing table.compare td.feature {
  font-weight: 400;
  color: var(--c-gray2);
}

#ml-pricing table.compare thead th.feature {
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-gray3);
  vertical-align: bottom;
  padding-bottom: 28px;
}

#ml-pricing table.compare tbody tr:hover td {
  background: #fcfcfd;
}

#ml-pricing table.compare tbody tr:hover td.col-featured {
  background: #fff6e3;
}

#ml-pricing .plan-name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-gray3);
}

#ml-pricing .plan-price {
  display: block;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-near);
  margin-top: 8px;
}

#ml-pricing .plan-price small {
  font-size: 16px;
  font-weight: 400;
  color: var(--c-gray3);
}

#ml-pricing .plan-note {
  display: block;
  font-size: 14px;
  color: var(--c-gray3);
  line-height: 1.45;
  margin-top: 8px;
  font-weight: 400;
}

#ml-pricing .col-featured {
  background: #fffaf0;
}

#ml-pricing table.compare thead th.col-featured {
  background: #fffaf0;
  box-shadow: inset 0 4px 0 var(--c-amber);
}

#ml-pricing .col-featured .plan-name {
  color: var(--c-amber-d);
}

#ml-pricing .badge {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-amber);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

#ml-pricing .ck {
  width: 22px;
  height: 22px;
  margin: 0 auto;
  color: var(--c-green);
}

#ml-pricing .dash {
  color: var(--c-gray4);
}

#ml-pricing table.compare tbody tr.table-cta-row td {
  border-bottom: 0;
  padding: 28px 22px 34px;
  background: #fff;
}

#ml-pricing table.compare tbody tr.table-cta-row td.col-featured {
  background: #fffaf0;
}

#ml-pricing table.compare tbody tr.table-cta-row:hover td {
  background: #fff;
}

#ml-pricing table.compare tbody tr.table-cta-row:hover td.col-featured {
  background: #fffaf0;
}

/* ========================= INCLUDED ========================= */
#ml-pricing .feat-sec {
  background: var(--c-lightbg);
  padding: 95px 0;
}

#ml-pricing .feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

#ml-pricing .feat-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  padding: 34px 28px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
}

#ml-pricing .feat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 133, 255, 0.5);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05), 0 16px 36px rgba(0, 0, 0, 0.1);
}

#ml-pricing .feat-ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 133, 255, 0.12);
  color: var(--c-blue);
  margin-bottom: 22px;
}

#ml-pricing .feat-ic svg {
  width: 24px;
  height: 24px;
}

#ml-pricing .feat-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--c-near);
  margin-bottom: 11px;
  line-height: 1.3;
}

#ml-pricing .feat-card p {
  font-size: 16px;
  color: var(--c-gray2);
  line-height: 1.6;
}

/* ========================== FEES ========================== */
#ml-pricing .fees-sec {
  background: #fff;
  padding: 95px 0;
}

#ml-pricing .fee {
  border-bottom: 1px solid var(--c-gray5);
}

#ml-pricing .fee summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--c-gray1);
  transition: color 0.2s;
}

#ml-pricing .fee summary:hover, #ml-pricing .fee[open] summary {
  color: var(--c-near);
}

#ml-pricing .fee .acc-body {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--c-gray2);
  line-height: 1.65;
  max-width: 82ch;
}

#ml-pricing .legal-note {
  font-size: 14px;
  color: var(--c-gray3);
  line-height: 1.6;
  margin-top: 26px;
}

#ml-pricing .legal-note a, #ml-pricing .acc-body a {
  color: var(--c-gray1);
  text-decoration: underline;
  text-underline-offset: 2px;
}

#ml-pricing .legal-note a:hover, #ml-pricing .acc-body a:hover {
  color: var(--c-amber-d);
}

/* ========================== FAQ ========================== */
#ml-pricing .faq-sec {
  background: var(--c-lightbg);
  padding: 95px 0;
}

#ml-pricing .acc {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

#ml-pricing .acc:last-child {
  margin-bottom: 0;
}

#ml-pricing .acc[open] {
  border-color: rgba(255, 178, 0, 0.55);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

#ml-pricing .acc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--c-near);
}

#ml-pricing .acc .acc-body {
  padding: 0 26px 24px;
  font-size: 17px;
  color: var(--c-gray2);
  line-height: 1.6;
  max-width: 88ch;
}

#ml-pricing summary::-webkit-details-marker {
  display: none;
}

#ml-pricing summary::marker {
  content: "";
}

#ml-pricing .acc-ic {
  flex: 0 0 auto;
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-gray5);
  transition: background 0.25s;
}

#ml-pricing .fee .acc-ic {
  width: 22px;
  height: 22px;
  background: 0 0;
}

#ml-pricing details[open] .acc-ic {
  background: var(--c-amber);
}

#ml-pricing .fee[open] .acc-ic {
  background: 0 0;
}

#ml-pricing .acc-ic::before, #ml-pricing .acc-ic::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--c-gray2);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), background 0.25s;
}

#ml-pricing .acc-ic::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

#ml-pricing .acc-ic::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

#ml-pricing .acc[open] .acc-ic::before, #ml-pricing .acc[open] .acc-ic::after {
  background: #fff;
}

#ml-pricing .fee[open] .acc-ic::before, #ml-pricing .fee[open] .acc-ic::after {
  background: var(--c-amber-d);
}

#ml-pricing details[open] .acc-ic::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* ======================== FINAL CTA ======================== */
#ml-pricing .final-sec {
  background: var(--c-dark);
  color: #fff;
  padding: 95px 0;
  position: relative;
  overflow: hidden;
}

#ml-pricing .final-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  transform-origin: 50% 0;
  background: radial-gradient(680px 580px at 50% 0, rgba(43, 86, 166, 0.4), rgba(43, 86, 166, 0.16) 45%, transparent 72%);
  animation: ctaGlow 7s ease-in-out infinite;
}

#ml-pricing .final-in {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}

#ml-pricing .final-in h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 22px;
}

#ml-pricing .final-in p {
  font-size: 19px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto 34px;
}

#ml-pricing .final-in .final-fine {
  margin: 18px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  display: inline-flex;
  align-items: center;
  max-width: none;
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 1290px) {
  #ml-pricing .hp-headline {
    font-size: 48px;
  }
  #ml-pricing .feat-grid {
    gap: 18px;
  }
  #ml-pricing .feat-card {
    padding: 30px 24px;
  }
}
@media (max-width: 1199px) {
  #ml-pricing .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  #ml-pricing .hp-shell {
    padding-top: 88px;
    padding-bottom: 88px;
  }
  #ml-pricing .sec-head h2 {
    font-size: 32px;
  }
  #ml-pricing .final-in h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  #ml-pricing .hp-headline {
    font-size: 32px;
    line-height: 1.2;
  }
  #ml-pricing .hp-sub {
    font-size: 17px;
  }
  #ml-pricing .sec-head h2, #ml-pricing .final-in h2 {
    font-size: 26px;
    line-height: 1.25;
  }
  #ml-pricing .sec-head {
    margin-bottom: 38px;
  }
  #ml-pricing .sec-head .lead {
    font-size: 17px;
  }
  #ml-pricing .feat-card h3, #ml-pricing .acc summary {
    font-size: 17px;
  }
  #ml-pricing .acc summary {
    padding: 18px 20px;
  }
  #ml-pricing .acc .acc-body {
    padding: 0 20px 20px;
    font-size: 16px;
  }
  #ml-pricing .faq-sec, #ml-pricing .feat-sec, #ml-pricing .final-sec, #ml-pricing .plans-sec {
    padding: 60px 0;
  }
  #ml-pricing .fees-sec {
    padding: 60px 0;
  }
  #ml-pricing .hp-shell {
    padding: 64px 28px;
  }
  #ml-pricing .feat-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  #ml-pricing .btn, #ml-pricing .hp-cta-primary {
    width: 100%;
    min-width: auto;
    max-width: 420px;
    font-size: 17px;
    line-height: 40px;
    padding: 15px 24px;
  }
  #ml-pricing .btn-sm {
    width: auto;
    font-size: 15px;
    line-height: 24px;
    padding: 11px 22px;
  }
  #ml-pricing .hp-cta-row {
    flex-direction: column;
    align-items: stretch;
    max-width: 420px;
    margin: 0 auto;
  }
  #ml-pricing .table-card {
    border-radius: 16px;
  }
  /* keep the comparison readable while it scrolls sideways:
     the feature column stays pinned so every value keeps its label */
  #ml-pricing table.compare {
    min-width: 700px;
    table-layout: fixed;
  }
  #ml-pricing table.compare th.feature, #ml-pricing table.compare td.feature {
    position: sticky;
    left: 0;
    z-index: 2;
    width: 190px;
    background: #fff;
    box-shadow: 1px 0 0 var(--c-gray5);
  }
  #ml-pricing table.compare tbody tr:hover td.feature {
    background: #fff;
  }
  #ml-pricing table.compare th, #ml-pricing table.compare td {
    padding: 14px 14px;
    font-size: 15px;
  }
  #ml-pricing table.compare thead th {
    padding: 42px 14px 22px;
  }
  #ml-pricing table.compare thead th.feature {
    padding-bottom: 24px;
  }
  #ml-pricing .plan-price {
    font-size: 30px;
  }
  #ml-pricing .plan-note {
    font-size: 13px;
  }
  #ml-pricing table.compare tbody tr.table-cta-row td {
    padding: 22px 14px 26px;
  }
}
@media (max-width: 600px) {
  #ml-pricing .sec-in {
    padding-left: 16px;
    padding-right: 16px;
  }
  #ml-pricing .hp-shell {
    padding-left: 16px;
    padding-right: 16px;
  }
  #ml-pricing .final-in {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 400px) {
  #ml-pricing .hp-headline {
    font-size: 28px;
  }
  #ml-pricing .sec-head h2, #ml-pricing .final-in h2 {
    font-size: 22px;
  }
  #ml-pricing .btn, #ml-pricing .hp-cta-primary {
    font-size: 16px;
  }
}

/*# sourceMappingURL=pricing.css.map */
