/* ═══ Untapped Agents — pricing.html ═══ */
/* Stripe-Level Premium Pricing Experience */

/* ━━━ UTILITIES ━━━ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .7; }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

@keyframes gradientSpin {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

@keyframes bounceScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes slideInOpacity {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ━━━ NOISE TEXTURE ━━━ */
.noise-bg {
  background-image: 
    radial-gradient(circle, var(--tbr) 0.5px, transparent 0.5px),
    radial-gradient(circle, var(--tbr) 0.5px, transparent 0.5px);
  background-size: 20px 20px, 25px 25px;
  background-position: 0 0, 10px 10px;
  background-attachment: fixed;
  opacity: .02;
  pointer-events: none;
  position: absolute;
  inset: 0;
}

/* ━━━ HERO ━━━ */
.phero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Grid dot pattern background */
.phero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: var(--cy);
  border-radius: 50%;
  filter: blur(180px);
  opacity: .04;
  pointer-events: none;
}

/* Decorative grid dots */
.phero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.phero > * {
  position: relative;
  z-index: 1;
}

.phero h1 {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--tbr);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  animation: fadeInUp .8s var(--ease-spring);
}

.phero h1 em {
  font-style: normal;
  font-family: 'Inter', 'DM Sans', sans-serif;
  color: var(--cy);
  font-weight: 700;
}

.phero p {
  font-size: 1.1rem;
  color: var(--tmd);
  max-width: 560px;
  margin: 0 auto 1rem;
  font-weight: 400;
  line-height: 1.8;
  animation: fadeInUp .8s var(--ease-spring) .1s both;
}

.phero .anchor {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: .85rem;
  color: var(--td);
  margin-top: 1.5rem;
  font-weight: 500;
  animation: slideDown .8s var(--ease-spring) .2s both;
}

.phero .anchor strong {
  color: var(--cy);
  font-weight: 600;
}

/* Floating badge under subtitle */
.phero .anchor::before {
  content: '✨ Trusted by teams worldwide';
  display: block;
  font-size: .65rem;
  margin-top: 1rem;
  padding: .5rem 1rem;
  background: var(--bg1);
  border: 1px solid var(--bdr);
  border-radius: 18px;
  color: var(--tmd);
}

/* ━━━ TIER GRID (3-tier layout) ━━━ */
.tier-grid{grid-template-columns:repeat(3,1fr)!important}
.tier-card{position:relative;display:flex;flex-direction:column}
.tier-card .tier-includes{margin:1rem 0;padding:1rem 0;border-top:1px solid var(--bdr);border-bottom:1px solid var(--bdr)}
.tier-include-label{font-family:'Inter','DM Sans',sans-serif;font-size:.55rem;font-weight:700;color:var(--tm);text-transform:uppercase;letter-spacing:.08em;margin-bottom:.5rem}
.tier-agent-name{font-family:'Inter','DM Sans',sans-serif;font-size:.7rem;font-weight:600;color:var(--tl);padding:.25rem 0}
.tier-agent-name+.tier-agent-name{margin-top:.35rem}
.tier-metrics{display:flex;flex-wrap:wrap;gap:.35rem;margin-bottom:.75rem}
.tier-metric{font-family:'Inter','DM Sans',sans-serif;font-size:.55rem;font-weight:600;color:var(--tmd);border:1px solid var(--bdr);background:var(--bg1);padding:.25rem .6rem;border-radius:100px}
.tier-ideal{font-family:'Inter','DM Sans',sans-serif;font-size:.65rem;color:var(--tmd);font-style:italic;margin-top:auto;padding-top:.5rem}
.tier-featured{border:2px solid var(--tbr)!important;box-shadow:0 4px 20px rgba(0,0,0,.08)!important}
.tier-badge{position:absolute;top:-.6rem;left:50%;transform:translateX(-50%);font-family:'Inter','DM Sans',sans-serif;font-size:.55rem;font-weight:700;color:#fff;background:var(--cy);padding:.25rem .85rem;border-radius:100px;letter-spacing:.05em;text-transform:uppercase;white-space:nowrap;z-index:1}

@media(max-width:1024px){.tier-grid{grid-template-columns:1fr!important}}

/* ━━━ AGENT PICKER ━━━ */
.picker {
  padding: 4rem 2rem 2rem;
  position: relative;
  background: var(--bg0);
}

/* Noise texture background */
.picker::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle, rgba(0, 0, 0, 0.01) 0.5px, transparent 0.5px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

.picker > * {
  position: relative;
  z-index: 1;
}

.picker-label {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: .7rem;
  color: var(--tmd);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: .05em;
  font-weight: 600;
  text-transform: uppercase;
  animation: fadeInUp .6s var(--ease-spring);
}

.agent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.ag {
  padding: 1.75rem 1.5rem;
  background: var(--bg0);
  border: 1px solid var(--bdr);
  border-radius: 16px;
  cursor: pointer;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  user-select: none;
  box-shadow: 0 1px 3px var(--shadow-s);
  animation: fadeInUp .6s var(--ease-spring) both;
}

.ag:nth-child(1) { animation-delay: .05s; }
.ag:nth-child(2) { animation-delay: .1s; }
.ag:nth-child(3) { animation-delay: .15s; }
.ag:nth-child(4) { animation-delay: .2s; }
.ag:nth-child(5) { animation-delay: .25s; }
.ag:nth-child(6) { animation-delay: .3s; }
.ag:nth-child(7) { animation-delay: .35s; }
.ag:nth-child(8) { animation-delay: .4s; }

/* Unselected cards: subtle top gradient bar */
.ag::before {
  display: none;
}

.ag:hover::before {
  display: none;
}

.ag:hover {
  background: var(--bg1);
  border-color: var(--bdrh);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

/* Selected state: subtle teal border glow */
.ag.sel {
  background: var(--bg0);
  border: 2px solid;
  border-color: var(--tbr);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
  transform: scale(1.01);
}

.ag.sel::before {
  display: none;
}

.ag-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .75rem;
}

.ag-ic {
  font-size: 1.25rem;
}

.ag-price {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: .65rem;
  color: var(--ag-c, var(--cy));
  font-weight: 700;
  letter-spacing: .02em;
}

.ag-name {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  color: var(--tbr);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: .35rem;
}

.ag-desc {
  font-size: .75rem;
  color: var(--tm);
  line-height: 1.5;
  font-weight: 400;
}

.ag-check {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--bdr);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  color: var(--bg0);
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  background: var(--bg0);
}

.ag.sel .ag-check {
  background: var(--ag-c, var(--cy));
  border-color: var(--ag-c, var(--cy));
  color: var(--bg0);
  animation: bounceScale .4s cubic-bezier(.16, 1, .3, 1);
}

.ag1 { --ag-c: var(--cy); }
.ag2 { --ag-c: var(--or); }
.ag3 { --ag-c: var(--gn); }
.ag4 { --ag-c: var(--bl); }
.ag5 { --ag-c: var(--pr); }
.ag6 { --ag-c: var(--pk); }
.ag7 { --ag-c: var(--yl); }
.ag8 { --ag-c: var(--rd); }

/* ━━━ SUMMARY BAR ━━━ */
.summary {
  padding: 1.5rem 2rem;
  position: sticky;
  bottom: 0;
  z-index: var(--z-sticky-summary);
  background: rgba(255, 255, 255, .95);
  border-top: 1px solid var(--bdr);
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  transition: all .3s;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, .04);
}

.sum-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.sum-count {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: .75rem;
  color: var(--tmd);
  font-weight: 500;
}

.sum-count strong {
  color: var(--tbr);
  font-weight: 700;
}

.sum-discount {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: .65rem;
  color: var(--gn);
  background: rgba(26, 138, 90, .06);
  padding: .3rem .75rem;
  border: 0.5px solid rgba(26, 138, 90, .15);
  border-radius: 6px;
  letter-spacing: .05em;
  font-weight: 600;
  animation: pulse 2s ease-in-out infinite;
}

.sum-total {
  text-align: right;
}

.sum-total .label {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: .65rem;
  color: var(--tmd);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .15rem;
  font-weight: 600;
}

.sum-total .price {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--tl);
  font-weight: 700;
  transition: font-size .3s cubic-bezier(.16, 1, .3, 1);
}

.sum-total .price:hover {
  font-size: 1.1rem;
}

.sum-total .per {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: .65rem;
  color: var(--tm);
  margin-left: .25rem;
  font-weight: 400;
}

.sum-total .savings {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: .6rem;
  color: var(--gn);
  margin-top: .25rem;
  font-weight: 600;
  animation: pulse 2.5s ease-in-out infinite .5s;
}

/* ━━━ COMPARISON TABLE ━━━ */
.comp {
  padding: 5rem 2rem 3rem;
}

.comp-head {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp .8s var(--ease-spring);
}

.comp-head h2 {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: clamp(.8rem, 2vw, 1.2rem);
  color: var(--tbr);
  line-height: 1.8;
  margin-bottom: .75rem;
  font-weight: 700;
}

.comp-head p {
  font-size: .95rem;
  color: var(--tmd);
  max-width: 500px;
  margin: 0 auto;
  font-weight: 400;
}

.ctbl-wrap {
  border: 1px solid var(--bdr);
  background: var(--bg0);
  overflow: hidden;
  margin-bottom: 3rem;
  border-radius: 18px;
  animation: fadeInUp .8s var(--ease-spring) .1s both;
}

.ctbl {
  width: 100%;
  border-collapse: collapse;
}

.ctbl thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tmd);
  background: var(--bg1);
  border-bottom: 0.5px solid var(--bdr);
}

.ctbl td {
  padding: .85rem 1.25rem;
  border-bottom: 0.5px solid var(--bdr);
  font-size: .82rem;
  vertical-align: middle;
  font-weight: 400;
}

.ctbl tr:last-child td {
  border-bottom: none;
}

.ctbl tbody tr {
  transition: all .2s cubic-bezier(.16, 1, .3, 1);
  background: #fff;
}

.ctbl tbody tr:nth-child(even) {
  background: #f9f9fb;
}

.ctbl tbody tr:hover {
  background: var(--bg1);
}

.ctbl .cn {
  font-weight: 700;
  color: var(--tl);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.ctbl .cn::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: .3;
}

.ctbl .cp {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: .65rem;
  color: var(--tl);
  white-space: nowrap;
  font-weight: 700;
  background: inherit;
  padding: .25rem .5rem;
  border-radius: 4px;
}

.ctbl .ch {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: .65rem;
  color: var(--rd);
  text-decoration: line-through;
  opacity: .5;
  white-space: nowrap;
  font-weight: 500;
}

.ctbl .cs {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: .65rem;
  color: var(--gn);
  font-weight: 700;
}

.ctbl .cg {
  color: var(--tmd);
  font-size: .8rem;
  font-weight: 400;
}

/* ━━━ BUNDLES ━━━ */
.bundles {
  padding: 0 2rem 4rem;
}

.bun-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.bun {
  padding: 2.5rem 2rem;
  background: var(--bg0);
  border: 1px solid var(--bdr);
  border-radius: 18px;
  text-align: center;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
  position: relative;
  overflow: hidden;
  animation: fadeInUp .8s var(--ease-spring) both;
}

.bun:nth-child(1) { animation-delay: .05s; }
.bun:nth-child(2) { animation-delay: .1s; }
.bun:nth-child(3) { animation-delay: .15s; }

/* Decorative corner accent — hidden by default, subtle on hover */
.bun::before {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at top right, rgba(158, 82, 97, .08), transparent 70%);
  border-radius: 0 18px 0 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.bun:hover::before {
  opacity: 1;
  visibility: visible;
}

.bun:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
  border-color: var(--bdrh);
}

/* Featured bundle */
.bun.ft {
  border: 2px solid var(--tbr);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  background: var(--bg0);
  position: relative;
}

.bun.ft::after {
  display: none;
}

.bun.ft:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
}

.bun.ft::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: .6rem;
  color: var(--cy);
  letter-spacing: .08em;
  white-space: nowrap;
  font-weight: 700;
  text-transform: uppercase;
  animation: slideDown .6s var(--ease-spring);
}

.bun-disc {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--cy), rgba(158, 82, 97, .7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .5rem;
  font-weight: 700;
}

.bun-name {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--tbr);
  margin-bottom: .25rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.bun-sub {
  font-size: .75rem;
  color: var(--td);
  font-weight: 400;
}

.bun-ex {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: .7rem;
  color: var(--tmd);
  margin-top: .75rem;
  line-height: 1.6;
  font-weight: 400;
}

/* ━━━ CUSTOM BUILD ━━━ */
.custom {
  padding: 0 2rem 5rem;
}

.cbox {
  border: 1px dashed var(--bdrh);
  background: var(--bg1);
  padding: 3rem;
  text-align: center;
  position: relative;
  border-radius: 18px;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  animation: fadeInUp .8s var(--ease-spring) .2s both;
}

.cbox::before {
  content: 'CUSTOM_BUILD';
  position: absolute;
  top: -.6rem;
  left: 2rem;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  color: var(--tmd);
  background: var(--bg0);
  padding: 0 .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: slideDown .6s var(--ease-spring);
}

.cbox::after {
  display: none;
}

.cbox:hover {
  background: var(--bg2);
  border-color: var(--bdrh);
}

.cbox h3 {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: .75rem;
  color: var(--tbr);
  margin-bottom: .75rem;
  line-height: 1.8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  position: relative;
  z-index: 1;
}

.cbox > p {
  color: var(--tmd);
  font-size: .9rem;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  line-height: 1.75;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.cbox .cprice {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: .75rem;
  color: var(--td);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* ━━━ FAQ ━━━ */
.faq {
  padding: 0 2rem 5rem;
}

.faq-head {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp .8s var(--ease-spring);
}

.faq-head h2 {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: .85rem;
  color: var(--tbr);
  line-height: 1.8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.fq {
  border: 0.5px solid var(--bdr);
  background: var(--bg0);
  margin-bottom: 0;
  border-radius: 16px;
  overflow: hidden;
  animation: fadeInUp .8s var(--ease-spring) both;
}

.fq:nth-child(1) { animation-delay: .05s; }
.fq:nth-child(2) { animation-delay: .1s; }
.fq:nth-child(3) { animation-delay: .15s; }
.fq:nth-child(4) { animation-delay: .2s; }
.fq:nth-child(5) { animation-delay: .25s; }
.fq:nth-child(6) { animation-delay: .3s; }

.fq:not(:last-child) {
  margin-bottom: .5rem;
}

.fq summary {
  padding: 1.25rem 1.5rem;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--tl);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .2s cubic-bezier(.16, 1, .3, 1);
  text-transform: uppercase;
  letter-spacing: .01em;
  position: relative;
}

.fq summary::-webkit-details-marker { display: none; }
.fq summary::marker { display: none; content: ''; }

.fq summary:hover {
  background: var(--bg1);
}

.fq summary::after {
  content: '+';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .03);
  color: var(--tmd);
  font-size: 1.1rem;
  flex-shrink: 0;
  font-weight: 400;
  line-height: 1;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.fq[open] summary {
  background: var(--bg1);
}

.fq[open] summary::after {
  content: '−';
  background: rgba(158, 82, 97, .08);
}

.fq .ans {
  padding: 1.25rem 1.5rem;
  font-size: .85rem;
  color: var(--tmd);
  line-height: 1.75;
  font-weight: 400;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s cubic-bezier(.16, 1, .3, 1);
  opacity: 0;
  transform: translateY(-10px);
  transition: 
    max-height .3s cubic-bezier(.16, 1, .3, 1),
    opacity .3s cubic-bezier(.16, 1, .3, 1),
    transform .3s cubic-bezier(.16, 1, .3, 1);
}

.fq[open] .ans {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}

/* ━━━ CTA SECTION ━━━ */
.pcta {
  text-align: center;
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
  background: #1d1d1f;
  color: #f5f5f7;
}

.pcta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(158, 82, 97, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.pcta > * {
  position: relative;
  z-index: 1;
}

.pcta h2 {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.pcta h2 em {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-style: italic;
  font-weight: 400;
  color: var(--cy);
  -webkit-text-fill-color: var(--cy);
  padding-right: .12em;
  margin-right: -.02em;
}

.pcta p {
  font-size: 1rem;
  color: #a1a1a6;
  max-width: 460px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.pcta-acts {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp .8s var(--ease-spring) .2s both;
}

/* ━━━ RESPONSIVE DESIGN ━━━ */
@media (max-width: 1024px) {
  .agent-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bun-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .phero {
    padding: 7rem 1.5rem 3rem;
  }

  .phero h1 {
    font-size: clamp(.9rem, 2.5vw, 1.5rem);
  }

  .phero .anchor::before {
    font-size: .6rem;
    padding: .4rem .75rem;
  }

  .agent-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ag {
    animation-delay: 0s !important;
  }

  .picker {
    padding: 3rem 1.5rem 1rem;
  }

  .picker-label {
    margin-bottom: 1.5rem;
  }

  .summary {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .sum-left {
    flex-direction: column;
    gap: .75rem;
    width: 100%;
  }

  .sum-total {
    text-align: center;
    width: 100%;
  }

  .ctbl-wrap {
    overflow-x: auto;
    animation-delay: 0s !important;
  }

  .ctbl {
    min-width: 650px;
  }

  .comp,
  .bundles,
  .custom,
  .faq {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .bun-grid {
    grid-template-columns: 1fr;
  }

  .bun {
    animation-delay: 0s !important;
  }

  .fq {
    animation-delay: 0s !important;
  }

  .comp-head h2 {
    font-size: clamp(.7rem, 1.8vw, 1rem);
  }

  .cbox {
    padding: 2.5rem 1.5rem;
  }

  .cbox::before {
    left: 1rem;
    font-size: .55rem;
    padding: 0 .5rem;
  }

  .pcta {
    padding: 3rem 1.5rem 4rem;
  }

  .pcta h2 {
    font-size: clamp(.55rem, 1.2vw, .75rem);
    margin-bottom: 1rem;
  }

  .pcta p {
    font-size: .85rem;
    margin-bottom: 1.5rem;
  }

  .pcta-acts {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .phero {
    padding: 5rem 1rem 2.5rem;
  }

  .phero h1 {
    font-size: clamp(.8rem, 2vw, 1.2rem);
    margin-bottom: 1rem;
  }

  .phero p {
    font-size: .95rem;
    margin-bottom: .75rem;
  }

  .phero .anchor {
    font-size: .75rem;
  }

  .phero .anchor::before {
    font-size: .55rem;
    padding: .35rem .5rem;
    margin-top: .75rem;
  }

  .agent-grid {
    gap: .75rem;
  }

  .ag {
    padding: 1.5rem 1rem;
  }

  .ag-top {
    margin-bottom: .5rem;
  }

  .ag-ic {
    font-size: 1rem;
  }

  .ag-name {
    font-size: .65rem;
  }

  .ag-desc {
    font-size: .7rem;
  }

  .picker {
    padding: 2rem 1rem 0.5rem;
  }

  .picker-label {
    font-size: .65rem;
    margin-bottom: 1.25rem;
  }

  .summary {
    padding: 1rem 1.25rem;
    gap: .75rem;
  }

  .sum-count {
    font-size: .7rem;
  }

  .sum-discount {
    font-size: .6rem;
    padding: .25rem .5rem;
  }

  .sum-total .label {
    font-size: .6rem;
  }

  .sum-total .price {
    font-size: .9rem;
  }

  .sum-total .per {
    font-size: .6rem;
  }

  .sum-total .savings {
    font-size: .55rem;
  }

  .comp {
    padding: 3rem 1rem 2rem;
  }

  .comp-head {
    margin-bottom: 2rem;
  }

  .comp-head h2 {
    font-size: clamp(.65rem, 1.5vw, .9rem);
  }

  .comp-head p {
    font-size: .85rem;
  }

  .ctbl {
    font-size: .7rem;
  }

  .ctbl td {
    padding: .6rem .85rem;
  }

  .ctbl thead th {
    padding: .8rem 1rem;
    font-size: .55rem;
  }

  .bundles {
    padding: 0 1rem 2.5rem;
  }

  .bun {
    padding: 2rem 1.5rem;
  }

  .bun-disc {
    font-size: 1.25rem;
  }

  .bun-name {
    font-size: .75rem;
  }

  .bun-sub {
    font-size: .7rem;
  }

  .bun-ex {
    font-size: .65rem;
  }

  .custom {
    padding: 0 1rem 2.5rem;
  }

  .cbox {
    padding: 2rem 1rem;
  }

  .cbox::before {
    left: .75rem;
    top: -.5rem;
  }

  .cbox h3 {
    font-size: .7rem;
  }

  .cbox > p {
    font-size: .8rem;
    margin-bottom: 1rem;
  }

  .cbox .cprice {
    font-size: .7rem;
  }

  .faq {
    padding: 0 1rem 2.5rem;
  }

  .faq-head {
    margin-bottom: 2rem;
  }

  .faq-head h2 {
    font-size: .75rem;
  }

  .fq summary {
    padding: 1rem 1.25rem;
    font-size: .75rem;
  }

  .fq .ans {
    padding: 1rem 1.25rem;
    font-size: .8rem;
  }

  .pcta {
    padding: 2.5rem 1rem 3rem;
  }

  .pcta h2 {
    font-size: clamp(.5rem, 1vw, .65rem);
    margin-bottom: .75rem;
  }

  .pcta p {
    font-size: .8rem;
    max-width: 100%;
    margin-bottom: 1.25rem;
  }
}
