    /* Core Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: var(--radius-full);
  padding: 0.75rem 1.6rem;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-btn);
}

.btn-primary {
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color: #111827;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #fbbf24, #facc15);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(250, 204, 21, 0.35);
}





/* =========================
   CONTACT PAGE
========================= */

.contact-form-section,
.contact-benefits,
.local-seo,
.contact-faq,
.contact-cta{
    padding:var(--section-space) 0;
}

.section-heading{
    text-align:center;
    max-width:720px;
    margin:0 auto 3rem;
}

.section-heading h2{
    font-size:clamp(2rem,4vw,3rem);
    font-weight:900;
    line-height:1.1;
    color:var(--text-strong);
    margin-bottom:1rem;
}

.section-heading p{
    font-size:1.05rem;
    line-height:1.8;
    color:var(--text-soft);
}

/* =========================
   CONTACT FORM
========================= */

#contactForm{
    max-width:900px;
    margin:auto;
    background:var(--card);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:2rem;
    box-shadow:var(--shadow-soft);
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:1.25rem;
    margin-bottom:1.25rem;
}

.field{
    display:flex;
    flex-direction:column;
}

.field label{
    font-size:.92rem;
    font-weight:600;
    margin-bottom:.5rem;
    color:var(--text-strong);
}

.field input,
.field select,
.field textarea{
    width:100%;
    border:1px solid rgba(148,163,184,.35);
    border-radius:14px;
    background:#fff;
    color:var(--text);
    padding:.95rem 1rem;
    font-size:.95rem;
    transition:
    border-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
    outline:none;
    border-color:#60a5fa;
    box-shadow:0 0 0 4px rgba(96,165,250,.15);
}

.field textarea{
    resize:vertical;
    min-height:170px;
}

#contactForm .btn{
    width:100%;
    margin-top:1.5rem;
}

/* Honeypot */

.hp-field{
    position:absolute;
    left:-9999px;
    opacity:0;
    pointer-events:none;
}

/* =========================
   BENEFITS
========================= */

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

.benefits-grid article{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:2rem;
    text-align:center;
    box-shadow:var(--shadow-soft);
}

.benefits-grid h3{
    font-size:1.25rem;
    margin-bottom:.75rem;
    color:var(--text-strong);
}

.benefits-grid p{
    color:var(--text-soft);
    line-height:1.7;
}

/* =========================
   LOCAL SEO
========================= */

.local-seo{
    text-align:center;
}

.area-tags{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:.75rem;
    margin-top:2rem;
}

.area-tags span{
    padding:.7rem 1rem;
    border-radius:999px;
    background:#fff;
    border:1px solid rgba(148,163,184,.25);
    font-size:.9rem;
    font-weight:600;
    box-shadow:0 4px 12px rgba(15,23,42,.05);
}

/* =========================
   FAQ
========================= */

.contact-faq h2{
    text-align:center;
    margin-bottom:2rem;
    font-size:clamp(2rem,4vw,2.7rem);
}

.contact-faq details{
    background:#fff;
    border:1px solid rgba(148,163,184,.25);
    border-radius:14px;
    margin-bottom:1rem;
    overflow:hidden;
}

.contact-faq summary{
    cursor:pointer;
    list-style:none;
    font-weight:700;
    padding:1.2rem 1.4rem;
    position:relative;
}

.contact-faq summary::-webkit-details-marker{
    display:none;
}

.contact-faq summary::after{
    content:"+";
    position:absolute;
    right:1.25rem;
    top:50%;
    transform:translateY(-50%);
    font-size:1.3rem;
}

.contact-faq details[open] summary::after{
    content:"−";
}

.contact-faq details p{
    padding:0 1.4rem 1.4rem;
    color:var(--text-soft);
    line-height:1.8;
}

/* =========================
   CTA
========================= */

.contact-cta{
    text-align:center;
}

.contact-cta .container{
    max-width:850px;
    background:
    linear-gradient(
    135deg,
    #2563eb,
    #1d4ed8
    );
    color:#fff;
    border-radius:28px;
    padding:4rem 2rem;
    box-shadow:0 25px 60px rgba(37,99,235,.25);
}

.contact-cta h2{
    font-size:clamp(2rem,4vw,3rem);
    line-height:1.1;
    margin-bottom:1rem;
}

.contact-cta p{
    max-width:650px;
    margin:0 auto 2rem;
    opacity:.95;
    line-height:1.8;
}

.contact-cta .btn{
    background:#fff;
    color:#1d4ed8;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    #contactForm{
        padding:1.25rem;
    }

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

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

    .contact-cta .container{
        padding:3rem 1.25rem;
    }

}




.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 15px rgba(250, 204, 21, 0.25);
}
.small {
  font-size: 0.95rem;
  color: #94a3b8;
}

/* Modular Content Cards */
.checker-box,
.results,
.lead,
.thank {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  margin-bottom: 2.5rem;
}

/* Interactive Elements (Inputs & Buttons) */
.input-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .input-row {
    flex-direction: row;
  }
}

input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-family: inherit;
  font-size: 1rem;
  color: #0f172a;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15);
}

button {
  padding: 0.85rem 1.75rem;
  background-color: #38bdf8;
  border: none;
  border-radius: 10px;
  color: #0f172a;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

button:hover {
  background-color: #0ea5e9;
}

button:focus-visible {
  outline: 2px solid #0ea5e9;
  outline-offset: 2px;
}

button:active {
  transform: scale(0.98);
}

/* Structural States */
.hidden {
  display: none !important;
}

/* Score Components */
.score-wrap {
  text-align: center;
}

.score-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #f1f5f9;
  border: 4px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  margin: 1.5rem auto;
  color: #0f172a;
}

.grade {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.score-note {
  font-size: 0.95rem;
  color: #64748b;
  margin-top: 0.5rem;
}

.limit-message {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.4;
  display: none;
}

/* Green – plenty left */
.limit-ok {
  background: #e6f9ec;
  border-left: 4px solid #2ecc71;
  color: #1e7e34;
}

/* Amber – nearly out */
.limit-warning {
  background: #fff7e6;
  border-left: 4px solid #f1c40f;
  color: #8a6d1d;
}

/* Red – limit reached */
.limit-error {
  background: #fdecea;
  border-left: 4px solid #e74c3c;
  color: #a1261c;
}

/* Statistics Layout */
.stats-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 640px) {
  .stats-row {
    flex-direction: row;
  }
}

.stat-box {
  flex: 1;
  padding: 1.25rem;
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.stat-box span {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
}

/* Status Variations */
.red { background-color: #ef4444; }
.amber { background-color: #f59e0b; color: #1e293b; } /* Adjusted contrast for dark text */
.green { background-color: #22c55e; }

/* Progress Bars */
.bar {
  margin: 1.5rem 0;
}

.bar label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.bar-bg {
  background-color: #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.bar-fill {
  height: 14px;
  background-color: #38bdf8;
  border-radius: 8px;
  width: 0%;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Content Lists */
.impact-box {
  background-color: #f1f5f9;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.fix-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fix-list li {
  background-color: #ffffff;
  padding: 1rem 1.25rem;
  border-left: 4px solid #38bdf8;
  margin-bottom: 0.75rem;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.fix-list li:last-child {
  margin-bottom: 0;
}

/* Full Width Call to Action */
.cta-btn {
  margin-top: 1.5rem;
  width: 100%;
  padding: 1.1rem;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

.cta-btn:hover {
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.4);
}

/* High-Performance Hardware Accelerated Animations */
.fade-in {
  animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reduced Motion Support for Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ===== FOOTER ===== */

.site-footer {
  margin-top: auto;
  border-top: 1px solid rgba(0,0,0,.08);

  background: linear-gradient(
    180deg,
    #ffffff,
    #f1f5f9
  );

  color: var(--text);

  /* FIX: ensure breathing room at bottom */
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.footer-cta-mobile {
  color: #fff !important;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;

  padding: 4rem 1.5rem;

  max-width: 1120px;
  margin: 0 auto;
}

/* LOGO — now visible and premium */
.footer-logo {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-strong);
  margin-bottom: .6rem;
}

.footer-logo span {
  background: linear-gradient(145deg, #fde68a, #facc15, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Brand text */
.footer-brand p {
  max-width: 320px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* Links + Contact */
.footer-contact,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.footer-contact h3,
.footer-links h3 {
  margin: 0 0 .4rem;
  font-size: .95rem;
  color: var(--text-strong);
}

.footer-contact a,
.footer-links a {
  color: var(--text-soft);
  transition: color .2s ease;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: var(--accent);
}

/* Bottom strip */
.footer-bottom {
  text-align: center;
  padding: 1.25rem;

  /* FIX: better mobile-safe spacing */
  padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0));

  border-top: 1px solid rgba(0,0,0,.08);
  color: var(--text-soft);
  font-size: .82rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand p {
    margin: auto;
  }
}

/* Mobile CTA */
.footer-cta-mobile {
  display: none;
}

@media (max-width: 768px) {
  .footer-cta-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: .75rem;
    padding: .8rem 1rem;

    border-radius: 12px;

    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    font-weight: 600;

    transition: transform .2s ease;
  }

  .footer-cta-mobile:active {
    transform: scale(.98);
  }
}
.tool-notice{
    margin-top:1rem;
    padding:0.85rem 1rem;
    font-size:0.9rem;
    line-height:1.6;
    color:var(--text-soft);
    background:rgba(37,99,235,.06);
    border:1px solid rgba(37,99,235,.12);
    border-radius:12px;
    text-align:center;
    max-width:700px;
    margin-left:auto;
    margin-right:auto;
}

.tool-notice strong{
    color:var(--text);
}
/* How It Works */
.how-it-works {
  background: #f0f6ff;
  border-radius: 16px;
  padding: 28px;
  margin: 32px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  border: 1px solid rgba(59,130,246,.15); /* soft blue */
  text-align: center;
}

.how-it-works h2{
    margin:0 0 16px;
    font-size:1.7rem;
    line-height:1.2;
    color:#0f172a;
}

.how-it-works p{
    margin:0 0 14px;
    color: #334155;
    line-height:1.7;
    font-size:1rem;
}

.how-it-works p:last-child{
    margin-bottom:0;
}

@media (max-width:768px){
    .how-it-works{
        padding:22px;
        margin:24px 0;
    }

    .how-it-works h2{
        font-size:1.4rem;
    }
}
.about-content{
    max-width: 820px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 3.5rem; /* reduced vertical space */
    color: var(--text);
}

/* reset inner spacing baseline */
.about-content > *{
    max-width: 100%;
}

/* Heading 1 */
.about-content h1{
    margin: 0 0 1.5rem;
    text-align: center;
    font-size: clamp(1.9rem, 4vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Section headings (KEY CHANGE) */
.about-content h2{
    margin: 2rem 0 0.75rem; /* was 3rem → now tighter */
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: var(--text-strong);
    position: relative;
}

/* smaller underline spacing */
.about-content h2::after{
    content: "";
    display: block;
    width: 36px;
    height: 3px;
    margin-top: 8px; /* reduced */
    background: linear-gradient(90deg, #facc15, #f97316);
    border-radius: 999px;
    opacity: 0.9;
}

/* Paragraphs (slightly tighter flow) */
.about-content p{
    margin: 0 0 0.9rem; /* was 1.1rem */
    font-size: 1.02rem;
    line-height: 1.7; /* slightly tighter but still readable */
    color: var(--text-soft);
}

/* Strong emphasis */
.about-content strong{
    color: var(--text);
    font-weight: 700;
}

/* last paragraph cleanup */
.about-content section:last-child p:last-child{
    margin-bottom: 0;
}

.business-directory-promo
 {
    padding:6rem 0; /* Increased padding for more breathing room */
    position:relative;
    overflow:hidden;
    background: #0f172a; /* Dark sleek background to make gradients pop */
}
.list-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: #facc15; /* gold accent */
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  vertical-align: middle;
  margin-right: 0.45rem;
  transition: stroke 0.2s ease, transform 0.2s ease;
}

li:hover .list-icon {
  stroke: #fbbf24; /* slightly brighter on hover */
  transform: scale(1.1);
}
/* Animated ambient background glow */
.business-directory-promo::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 15% 20%, rgba(37,99,235,.25), transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(250,204,21,.2), transparent 50%);
    pointer-events:none;
    filter: blur(40px);
    animation: pulseGlow 8s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.business-directory-promo{
    padding:5rem 1.5rem;
    margin:4rem 0;
    background:linear-gradient(
        135deg,
        #0f172a 0%,
        #1e293b 100%
    );
    border-radius:24px;
    position:relative;
    overflow:hidden;
}

.business-directory-promo::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,
    rgba(37,99,235,.15),
    transparent 40%);
    pointer-events:none;
}

.business-directory-promo{
    max-width:900px;
    margin:0 auto;
    text-align:center;
    position:relative;
    z-index:1;
}

.audit-badge{
    display:inline-block;
    padding:.55rem 1rem;
    margin-bottom:1.5rem;
    border-radius:999px;
    background:rgba(250,204,21,.12);
    border:1px solid rgba(250,204,21,.25);
    color:#facc15;
    font-size:.75rem;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.business-directory-promo h2{
    margin:0 0 1.25rem;
    font-size:clamp(2rem,5vw,3.2rem);
    line-height:1.15;
    font-weight:900;
    color:#ffffff;
}

.business-directory-promo p{
    max-width:700px;
    margin:0 auto 1.25rem;
    font-size:1.05rem;
    line-height:1.8;
    color:#cbd5e1;
}

.business-directory-promo .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:1rem;
    padding:1rem 2rem;
    border-radius:12px;
    background:#2563eb;
    color:#ffffff;
    font-weight:700;
    text-decoration:none;
    transition:.25s ease;
}

.business-directory-promo .btn:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
}

@media (max-width:768px){

    .business-directory-promo{
        padding:3.5rem 1.25rem;
        border-radius:18px;
    }

    .business-directory-promo h2{
        font-size:2rem;
    }

    .business-directory-promo p{
        font-size:1rem;
    }

    .business-directory-promo .btn{
        width:100%;
        max-width:320px;
    }
}
/* shared section system */
.section{
    max-width: 820px;
    margin: 0 auto;
    padding: 4rem 1.25rem;
}

/* spacing between sections automatically flows */
.section + .section{
    margin-top: 1.5rem;
      }
/* ===== _ ===== */

.included{
padding:4rem 0;
}

.included h2,
.comparison h2,
.why-rctx h2,
.pricing-faq h2,
.pricing-cta h2{
text-align:center;
margin-bottom:2rem;
font-size:clamp(2rem,4vw,3rem);
}

.included-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:1rem;
}

.included-item{
background:#fff;
padding:1rem;
border-radius:16px;
border:1px solid rgba(0,0,0,.08);
font-weight:600;
box-shadow:var(--shadow-soft);
}

/* ===== PRICING CARDS ===== */

.card-pricing{
display:grid;
grid-template-columns:2fr 1fr;
gap:2rem;
margin-top:2rem;
padding:2rem;
border-radius:24px;
background:#fff;
box-shadow:var(--shadow-soft);
}

.card-pricing.featured{
border:3px solid var(--accent);
position:relative;
}

.card-pricing.featured::before{
content:"MOST POPULAR";
position:absolute;
top:-14px;
left:50%;
transform:translateX(-50%);
background:var(--accent);
padding:.45rem 1rem;
border-radius:999px;
font-size:.75rem;
font-weight:700;
}

.price-info ul{
padding:0;
margin:1.5rem 0 0;
list-style:none;
}

.price-info li{
display:flex;
gap:.75rem;
align-items:flex-start;
margin-bottom:.9rem;
}

.price-tag{
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:1.5rem;
border-radius:18px;
background:#f8fafc;
}

.cost{
font-size:3rem;
font-weight:900;
line-height:1;
}

.cost span{
font-size:1rem;
font-weight:600;
}

/* ===== COMPARISON ===== */

.comparison{
padding:5rem 0;
}

.comparison-table{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:var(--shadow-soft);
}

.row{
display:grid;
grid-template-columns:2fr 1fr 1fr;
}

.row div{
padding:1rem;
border-bottom:1px solid rgba(0,0,0,.08);
}

.row.head{
background:#0f172a;
color:#fff;
font-weight:700;
}

/* ===== BENEFITS ===== */

.why-rctx{
padding:5rem 0;
}

.benefits-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:1.5rem;
}

.benefits-grid article{
background:#fff;
padding:2rem;
border-radius:20px;
box-shadow:var(--shadow-soft);
}

.benefits-grid h3{
margin-bottom:.75rem;
}

/* ===== FAQ ===== */

.pricing-faq{
padding:5rem 0;
}

.pricing-faq details{
background:#fff;
border-radius:16px;
padding:1rem 1.25rem;
margin-bottom:1rem;
box-shadow:var(--shadow-soft);
}

.pricing-faq summary{
cursor:pointer;
font-weight:700;
}

.pricing-faq p{
margin-top:1rem;
}

/* ===== CTA ===== */

.pricing-cta{
padding:5rem 0;
text-align:center;
}

.pricing-cta p{
max-width:700px;
margin:1rem auto 2rem;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

.card-pricing{
grid-template-columns:1fr;
}

.row{
grid-template-columns:1.5fr 1fr 1fr;
}

.cost{
font-size:2.5rem;
}

}

.pricing-audience{
    max-width:900px;
    margin:0 auto 3rem;
    text-align:center;
    padding:2rem;
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    border-radius:20px;
    box-shadow:0 15px 40px rgba(15,23,42,.06);
}

.audience-label{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:.45rem .9rem;
    margin-bottom:1rem;
    border-radius:999px;
    background:rgba(37,99,235,.08);
    color:var(--primary);
    font-size:.85rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.pricing-audience h2{
    margin-bottom:1rem;
    font-size:clamp(1.8rem,4vw,2.6rem);
    line-height:1.1;
    color:var(--text-strong);
}

.audience-text{
    max-width:700px;
    margin:0 auto;
    color:var(--text-soft);
    line-height:1.8;
}

.audience-tags{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:.75rem;
    margin-top:1.75rem;
}

.audience-tags span{
    padding:.65rem 1rem;
    border-radius:999px;
    background:#f8fafc;
    border:1px solid rgba(15,23,42,.08);
    font-size:.9rem;
    font-weight:600;
    color:var(--text);
    transition:.25s ease;
}

.audience-tags span:hover{
    transform:translateY(-2px);
    border-color:rgba(37,99,235,.25);
    box-shadow:0 8px 20px rgba(37,99,235,.08);
}

@media(max-width:768px){

    .pricing-audience{
        padding:1.5rem;
        margin-bottom:2rem;
    }

    .pricing-audience h2{
        font-size:1.8rem;
    }

    .audience-tags{
        gap:.5rem;
    }

    .audience-tags span{
        font-size:.85rem;
        padding:.55rem .85rem;
    }

}
