:root{
  --pricing-hero-space:92px;
  --pricing-card-gap:24px;
  --pricing-copy-width:760px;
  --pricing-border-strong:2px;
}
.pricing-hero{
  position:relative;
  max-width:100%;
  overflow-x:clip;
  padding-top:var(--pricing-hero-space);
  padding-bottom:var(--pricing-hero-space);
  background:linear-gradient(180deg,var(--color-hero-top),var(--color-hero-bottom));
}
.pricing-hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:40px;
  border-radius:var(--radius-section) var(--radius-section) 0 0;
  background:var(--color-paper);
}
.pricing-hero-inner{
  position:relative;
  z-index:2;
  text-align:center;
}
.pricing-hero h1{
  margin-top:18px;
}
.pricing-hero-copy{
  max-width:var(--pricing-copy-width);
  margin:20px auto 0;
  color:var(--color-muted);
  font-size:17px;
}
.pricing-fact-row{
  max-width:900px;
  margin:22px auto 0;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.pricing-fact-row span{
  min-height:32px;
  padding:5px 12px;
  display:inline-flex;
  align-items:center;
  border:1px solid var(--color-border);
  border-radius:var(--radius-pill);
  background:var(--color-panel);
  color:var(--color-muted);
  font-size:12px;
  font-weight:700;
  box-shadow:0 8px 20px var(--shadow-small);
}
.pricing-hero-decor{
  position:absolute;
  inset:0;
  max-width:100%;
  overflow:hidden;
  pointer-events:none;
}
.pricing-orb{
  position:absolute;
  display:block;
  border-radius:50%;
}
.pricing-orb-a{
  width:280px;
  height:280px;
  top:34px;
  left:-90px;
  background:var(--color-circle-a);
}
.pricing-orb-b{
  width:190px;
  height:190px;
  right:-42px;
  bottom:32px;
  background:var(--color-circle-b);
}
.pricing-triangle{
  position:absolute;
  right:14%;
  top:54px;
  width:0;
  height:0;
  border-left:18px solid transparent;
  border-right:18px solid transparent;
  border-bottom:32px solid var(--color-pink);
  transform:rotate(14deg);
}
.pricing-main{
  background:var(--color-paper);
}
.pricing-tabs{
  margin-bottom:30px;
  display:flex;
  justify-content:center;
}
.pricing-tabs .tab-switcher{
  width:max-content;
}
.plan-summary{
  min-height:150px;
  margin-top:18px;
  color:var(--color-muted);
}
.traffic-grid .plan-summary{
  min-height:176px;
}
.billing-note{
  margin-top:28px;
  padding:22px 24px;
  border-left:4px solid var(--color-accent);
  border-radius:0 var(--radius-card) var(--radius-card) 0;
  background:var(--color-blue-soft);
  box-shadow:0 14px 30px var(--shadow-small);
}
.billing-note strong{
  display:block;
  color:var(--color-accent-dark);
}
.billing-note p{
  margin-top:6px;
  color:var(--color-muted);
}
.included-section{
  position:relative;
  border-radius:var(--radius-section) var(--radius-section) 0 0;
  background:var(--color-bg);
}
.included-grid{
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  gap:var(--pricing-card-gap);
}
.included-card{
  min-width:0;
  min-height:240px;
  position:relative;
  padding:30px;
  overflow:hidden;
  border:1px solid var(--color-highlight);
  border-radius:var(--radius-card);
  box-shadow:0 18px 40px var(--shadow-soft),inset 0 0 0 1px var(--color-highlight);
}
.included-card:nth-child(4n+1),
.included-card:nth-child(4n+4){
  grid-column:span 7;
}
.included-card:nth-child(4n+2),
.included-card:nth-child(4n+3){
  grid-column:span 5;
}
.included-blue{
  background:var(--color-blue-soft);
}
.included-yellow{
  background:var(--color-yellow-soft);
}
.included-pink{
  background:var(--color-pink-soft);
}
.included-card h3{
  position:relative;
  z-index:1;
  max-width:75%;
}
.included-card p{
  position:relative;
  z-index:1;
  max-width:88%;
  margin-top:14px;
  color:var(--color-muted);
}
.included-mark{
  position:absolute;
  right:22px;
  top:14px;
  color:var(--color-panel);
  font-family:var(--font-display);
  font-size:76px;
  font-weight:700;
  line-height:1;
}
.comparison-section{
  background:var(--color-paper);
}
.comparison-explain{
  margin-top:32px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.comparison-explain article{
  min-width:0;
  padding:24px;
  border:1px solid var(--color-border);
  border-radius:var(--radius-card);
  background:var(--color-panel);
  box-shadow:0 14px 32px var(--shadow-small);
}
.comparison-explain h3{
  color:var(--color-accent-dark);
}
.comparison-explain p{
  margin-top:12px;
  color:var(--color-muted);
}
.payment-section{
  border-radius:var(--radius-section) var(--radius-section) 0 0;
  background:var(--color-bg);
}
.payment-layout{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);
  gap:42px;
  align-items:stretch;
}
.payment-copy{
  padding-top:12px;
}
.payment-copy h2{
  margin-bottom:20px;
}
.payment-copy p{
  color:var(--color-muted);
  font-size:16px;
}
.payment-methods{
  margin-top:26px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.payment-methods span{
  min-height:46px;
  padding:0 20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:var(--pricing-border-strong) solid var(--color-border);
  border-radius:var(--radius-button);
  background:var(--color-panel);
  color:var(--color-text);
  font-weight:800;
  box-shadow:0 10px 22px var(--shadow-small);
}
.refund-card{
  min-width:0;
  padding:32px;
  border:1px solid var(--color-border);
  border-radius:var(--radius-card);
  background:var(--color-yellow-soft);
  box-shadow:0 22px 48px var(--shadow-soft),inset 0 0 0 1px var(--color-highlight);
}
.refund-card-tag{
  display:inline-flex;
  min-height:28px;
  padding:4px 11px;
  align-items:center;
  border-radius:var(--radius-pill);
  background:var(--color-yellow);
  color:var(--color-text);
  font-size:12px;
  font-weight:800;
}
.refund-card h2{
  margin-top:18px;
  font-size:clamp(30px,4vw,42px);
}
.refund-card p{
  margin-top:14px;
  color:var(--color-muted);
}
.refund-card .btn{
  margin-top:22px;
}
.faq-section{
  background:var(--color-paper);
}
@media (max-width:900px){
  .included-card:nth-child(n){
    grid-column:1/-1;
  }
  .comparison-explain{
    grid-template-columns:1fr;
  }
  .payment-layout{
    grid-template-columns:1fr;
  }
  .plan-summary,
  .traffic-grid .plan-summary{
    min-height:0;
  }
}
@media (max-width:768px){
  :root{
    --pricing-hero-space:68px;
  }
  .pricing-orb,
  .pricing-triangle{
    display:none;
  }
  .pricing-hero-copy{
    font-size:15px;
  }
  .included-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width:640px){
  .pricing-hero{
    padding-top:52px;
    padding-bottom:72px;
  }
  .pricing-fact-row{
    align-items:stretch;
    flex-direction:column;
  }
  .pricing-fact-row span{
    justify-content:center;
  }
  .billing-note{
    padding:20px;
  }
  .included-card{
    min-height:0;
    padding:24px;
  }
  .included-card h3,
  .included-card p{
    max-width:100%;
  }
  .included-mark{
    display:none;
  }
  .payment-methods{
    display:grid;
    grid-template-columns:1fr;
  }
  .refund-card{
    padding:24px;
  }
}