/*****************************************************
  BUSINESS TAX PAGE — FULLY SCOPED / SAFE VERSION
 
******************************************************/

/* ===== Base scope ===== */
.business-tax-page {
  font-family: 'Inter', sans-serif;
  color: #0A1A2F;
}

/* =========================
   HERO 
========================= */

.business-tax-page .page-hero .hero-aup-inner {
  max-width: 980px;
}

.business-tax-page .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 241, 255, 0.82);
  margin-bottom: 14px;
}

.business-tax-page .hero-eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(to right, #00b46e, #36d28f);
  opacity: 0.95;
}

.business-tax-page .hero-subtext {
  color: #d8e1ec !important;
}

.business-tax-page .hero-bullets {
  list-style: none;
  padding: 0;
  margin: 18px auto 26px;
  max-width: 820px;
  display: grid;
  gap: 10px;
}

.business-tax-page .hero-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(232, 241, 255, 0.92);
  font-size: 15.5px;
  line-height: 1.5;
}

.business-tax-page .hero-bullets li::before {
  content: "✓";
  color: #36d28f;
  font-weight: 800;
  margin-top: 1px;
}

.business-tax-page .hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.business-tax-page .hero-microtrust {
  font-size: 13px;
  color: rgba(232, 241, 255, 0.78);
}

/* --------------------------
   SECTION WRAPPERS (Rhythm)
--------------------------- */
.business-tax-page section {
  padding: 80px 0;
}

.business-tax-page .section-light {
  background: linear-gradient(to bottom, #f7fbff 0%, #f9fcff 100%);
}

.business-tax-page .section-white {
  background: #FFFFFF;
}

/* ================================
   200K RHYTHM SYSTEM
================================ */
.section-white,
.section-light {
  padding-top: 96px;
  padding-bottom: 104px;
}

/* Slight compression before CTA */
.section-light:last-of-type {
  padding-bottom: 80px;
}

/* --------------------------
   SECTION TITLES
--------------------------- */
.business-tax-page h2.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 26px;
  color: #0A1A2F;
}

.section-title::after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  background: linear-gradient(to right, #00b46e, #36d28f);
  margin: 18px auto 0;
  border-radius: 4px;
}

/* --------------------------
   TEXT CONTENT
--------------------------- */
.business-tax-page main p,
.business-tax-page section p {
  font-size: 16px;
  line-height: 1.6;
  color: #1A2B3C;
  margin-bottom: 16px;
}

/* Prevent “long line fatigue” */
.business-tax-page p {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.business-tax-page .solutions-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 18px;
}

/* --------------------------
   CARD GRID
--------------------------- */
.business-tax-page .card-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 28px;
}

.business-tax-page .card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 28px;
  border-top: 4px solid #14C883;
  box-shadow:
    0 2px 6px rgba(10, 26, 47, 0.06),
    0 18px 42px rgba(10, 26, 47, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.business-tax-page .card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 6px 16px rgba(10, 26, 47, 0.08),
    0 28px 60px rgba(10, 26, 47, 0.14);
}

.business-tax-page .card h3 {
  font-size: 19px;
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.15px;
  color: #0A1A2F;
}

.business-tax-page .card p {
  font-size: 15.5px;
  line-height: 1.55;
  color: #3a4a5c;
  margin: 0;
}

/* --------------------------
   ICON CARDS (WHY MEED)
--------------------------- */
.business-tax-page .icon-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.business-tax-page .icon-card svg {
  margin-top: 2px;
  opacity: 0.95;
  flex: 0 0 auto;
}

.business-tax-page .icon-card-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.business-tax-page .icon-card-text h3 {
  font-size: 18px;
  margin: 0;
}

.business-tax-page .icon-card-text p {
  font-size: 15px;
  color: #425466;
}

/* --------------------------
   FAQ (details/summary)
--------------------------- */
.business-tax-page .faq-wrap {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
  padding: 0 18px;
}

.business-tax-page .faq-item {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E1E8EF;
  box-shadow: 0 3px 12px rgba(10, 26, 47, 0.06);
  overflow: hidden;
}

.business-tax-page .faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  font-size: 16.5px;
  font-weight: 650;
  color: #0A1A2F;
  list-style: none;
  position: relative;
}

.business-tax-page .faq-item summary::-webkit-details-marker {
  display: none;
}

.business-tax-page .faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  opacity: 0.75;
}

.business-tax-page .faq-item[open] summary::after {
  content: "–";
}

.business-tax-page .faq-body {
  padding: 0 22px 20px;
  color: #33475B;
  font-size: 15.5px;
  line-height: 1.65;
}

/* --------------------------
   IRS DISCLOSURE BLOCK
--------------------------- */
.business-tax-page .disclosure-box {
  background: linear-gradient(to bottom right, #061b33, #072244);
  color: #FFFFFF;
  padding: 52px 56px;
  border-radius: 16px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

.business-tax-page .disclosure-box p {
  font-size: 15.5px;
  line-height: 1.65;
  color: #d8e1ec !important;
  max-width: 880px;
  margin: 0 auto;
}

/* CTA wrapper safety */
.cta-wrapper {
  overflow: visible;
}

/* Soften transitions site-wide (page scoped) */
.business-tax-page * {
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

/* SAFETY: Never allow Business Tax page typography rules to override footer */
.business-tax-page footer p,
.business-tax-page footer a,
.business-tax-page footer li,
.business-tax-page footer h4,
.business-tax-page footer h5 {
  color: inherit;
}
.card {
  box-shadow:
    0 2px 8px rgba(10,26,47,0.06),
    0 30px 80px rgba(10,26,47,0.10);
}
.card::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  background: linear-gradient(to right, #00b46e, #36d28f);
  border-radius: 4px;
  margin-bottom: 14px;
}
.card h3 {
  font-weight: 700;
  letter-spacing: -0.25px;
}
.card-grid > .card:nth-child(-n+3) {
  border-top-width: 5px;
}
.card p {
  color: rgba(58,74,92,0.88);
}
.card-grid {
  row-gap: 36px;
}
.section-white {
  margin-top: 40px;
}
.icon-card {
  padding: 26px 28px;
  border-radius: 14px;
  background: linear-gradient(
    to bottom,
    #ffffff,
    #f9fcff
  );
}
.icon-card svg {
  stroke-width: 2.6;
}
.faq-item summary:hover {
  background: rgba(0,180,110,0.04);
}
.faq-item[open] {
  border-color: #00b46e;
}
.faq-item summary {
  font-weight: 600;
}
.disclosure-box {
  max-width: 1040px;
  font-size: 15.5px;
  letter-spacing: 0.1px;
}
.disclosure-box::before {
  content: "Compliance Notice";
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.7;
}
.business-tax-page .hero-trustline {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(232,241,255,0.75);
  letter-spacing: 0.02em;
}
.business-tax-page .card-grid > .card:nth-child(-n+3) {
  transform: translateY(-2px);
}
.business-tax-page .faq-item summary {
  padding-right: 48px;
}
